:root {
    --primary-color: #CD3102;
    --secondary-color: #C04B28;
    --text-color: #333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../img/imgtopo.svg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero h1, .hero h2, .hero p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero h2 {
    font-size: 2em;
    margin-bottom: 30px;
    font-weight: 600;
}

.subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
}

/* CTA and Timer */
.cta-timer {
    margin-top: 40px;
    background: rgba(0, 0, 0, 0.4);
    display: inline-block;
    padding: 30px 50px;
    border-radius: 15px;
}

.price {
    margin-bottom: 25px;
    text-align: center;
}

.price .original {
    display: inline-block;
    text-decoration: line-through;
    font-size: 2em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.price .discount {
    display: block;
    font-size: 3.5em;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin: 15px 0;
}

.cta-button {
    display: inline-block;
    padding: 20px 40px;
    background-color: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2em;
    transition: all 0.3s;
    border: 2px solid var(--white);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    min-height: 44px;
    animation: gentlePulse 3s infinite;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background-color: transparent;
    color: var(--white);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.benefits h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5em;
    color: var(--text-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.benefit-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    max-width: 100%;
    height: auto;
}

.benefit-item h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Bonus Section */
.bonus {
    padding: 80px 0;
    background-color: var(--white);
}

.bonus h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5em;
}

.bonus-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bonus-item {
    padding: 30px;
    background: var(--light-bg);
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.bonus-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Pricing Section */
.pricing {
    padding: 60px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/imgpgto.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing .container {
    width: 100%;
    max-width: 1200px;
    z-index: 1;
}

.price-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-card h2 {
    color: var(--white);
    font-size: 2em;
    margin-bottom: 20px;
}

.price-tag {
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.price-tag .original {
    display: block;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5em;
    margin-bottom: 10px;
}

.price-tag .current {
    display: block;
    font-size: 3.5em;
    color: var(--white);
    font-weight: 700;
    margin: 15px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.price-tag .payment {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2em;
}

.features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 40px;
    border-radius: 10px;
}

.features li {
    margin: 15px 0;
    font-size: 1.1em;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.features li::before {
    content: "✅";
    font-size: 1.2em;
}

.buy-button {
    display: inline-block;
    padding: 20px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2em;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    max-width: 300px;
    margin: 20px 0;
}

.buy-button:hover {
    transform: translateY(-2px);
    background-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.guarantee {
    margin-top: 30px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.guarantee img {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.guarantee p {
    font-size: 1.1em;
    margin: 0;
}

/* Warranty Section */
.warranty {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.warranty-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
}

.warranty-text {
    flex: 1;
}

.warranty-text h2 {
    color: var(--primary-color);
    font-size: 3em;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.warranty-text p {
    font-size: 1.3em;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.6;
}

.warranty-features {
    list-style: none;
    padding: 0;
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.warranty-features li {
    font-size: 1.2em;
    color: #333;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 10px;
    transition: transform 0.3s ease;
}

.warranty-features li:hover {
    transform: translateX(10px);
}

.warranty-features li::before {
    content: "✓";
    color: var(--primary-color);
    font-size: 1.4em;
    font-weight: bold;
}

.warranty-seal {
    flex: 0 0 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.warranty-seal::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(205,49,2,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.warranty-seal img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.2));
    transition: all 0.5s ease;
    animation: pulseAndFloat 4s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes pulseAndFloat {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.05);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

.warranty-seal:hover img {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 30px 40px rgba(0,0,0,0.3));
}

@media (max-width: 768px) {
    .warranty {
        padding: 50px 0;
    }

    .warranty-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 20px;
    }

    .warranty-text h2 {
        font-size: 2.5em;
    }

    .warranty-text p {
        font-size: 1.2em;
    }

    .warranty-seal {
        flex: 0 0 300px;
    }

    .warranty-seal::before {
        width: 350px;
        height: 350px;
    }

    .warranty-features {
        padding: 20px;
    }

    .warranty-features li {
        justify-content: center;
        font-size: 1.1em;
    }

    .warranty-features li:hover {
        transform: none;
    }
}

@media (max-width: 768px) {
    .warranty-seal {
        flex: 0 0 250px;
    }
    
    .warranty-seal img {
        width: 250px;
        height: auto;
    }
}

/* Footer */
footer {
    background-color: #333;
    color: var(--white);
    padding: 20px 0;
    text-align: center;
}

/* Animações essenciais */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes gentlePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 2.2em;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero h2 {
        font-size: 1.5em;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .subtitle {
        font-size: 1.1em;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .cta-timer {
        margin: 20px 10px;
        padding: 20px;
        width: calc(100% - 20px);
        max-width: 400px;
    }

    .price .original {
        font-size: 1.6em;
    }

    .price .discount {
        font-size: 2.8em;
    }

    .cta-button, .buy-button {
        padding: 15px 30px;
        font-size: 1.1em;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .benefit-item {
        padding: 20px;
    }

    .benefit-item img {
        width: 60px;
        height: 60px;
    }

    .bonus-items {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .bonus-item {
        padding: 20px;
    }

    .price-card {
        margin: 0 10px;
        padding: 20px;
    }

    .features {
        padding-left: 10px;
    }

    .features li {
        font-size: 1em;
        margin: 10px 0;
    }

    .guarantee img {
        width: 80px;
    }

    .pricing {
        min-height: auto;
        padding: 40px 0;
    }

    .price-card {
        margin: 0 15px;
        padding: 20px;
    }

    .price-tag .current {
        font-size: 2.8em;
    }

    .features {
        padding: 15px 25px;
    }

    .buy-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8em;
    }

    .hero h2 {
        font-size: 1.3em;
    }

    .price .original {
        font-size: 1.4em;
    }

    .price .discount {
        font-size: 2.4em;
    }

    .cta-timer {
        padding: 15px;
    }

    .benefit-item, .bonus-item {
        padding: 15px;
    }
}

/* Garantindo que imagens não ultrapassem a largura da tela */
img {
    max-width: 100%;
    height: auto;
}

/* Melhorando a experiência de toque em dispositivos móveis */
button, 
a.cta-button, 
a.buy-button {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    min-height: 44px; /* Tamanho mínimo recomendado para alvos de toque */
}

/* Evitando texto muito pequeno */
body {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Melhorando a rolagem em dispositivos móveis */
html, body {
    overflow-x: hidden;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}
