/* Reset e variáveis */
:root {
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(0, 0%, 7%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(0, 0%, 7%);
    --primary: hsl(116, 73%, 24%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(116, 73%, 95%);
    --secondary-foreground: hsl(116, 73%, 24%);
    --muted: hsl(0, 0%, 96%);
    --muted-foreground: hsl(0, 0%, 40%);
    --border: hsl(0, 0%, 90%);
    --urgency: hsl(0, 84%, 50%);
    --star-color: hsl(45, 100%, 51%);
}

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

/* Container */
.container {
    max-width: 672px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.container-wide {
    max-width: 896px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Icons */
.icon {
    width: 1.25rem;
    height: 1.25rem;
}

.icon-small {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

/* Top Banner */
.gradient-banner {
    background: linear-gradient(135deg, hsl(116, 73%, 24%), hsl(140, 60%, 35%));
    padding: 0.75rem 1rem;
    text-align: center;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary-foreground);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
}

/* Hero Section */
.hero-section {
    background-color: var(--background);
    padding: 2rem 1rem;
}

.hero-section h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-section h2 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.hero-text {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.hero-subtext {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 448px;
    margin: 0 auto 1.5rem;
    aspect-ratio: 9 / 16;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    background-color: rgba(0, 0, 0, 0.05);
}

.video-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-caption {
    font-size: 0.875rem;
    font-style: italic;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.payment-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.payment-badge .icon {
    color: var(--primary);
}

.payment-badge span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
}

.price-old {
    text-decoration: line-through;
    color: var(--muted-foreground);
    font-size: 1.25rem;
}

.price-new {
    color: var(--primary);
    font-weight: 700;
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
}

.btn-cta {
    display: inline-block;
    width: 100%;
    max-width: 448px;
    background-color: var(--primary);
    color: var(--primary-foreground);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.75rem;
    animation: pulse-green 2s ease-in-out infinite;
}

.btn-cta:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.btn-cta:active {
    transform: scale(0.95);
}

@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 0 0 0 hsla(116, 73%, 24%, 0.4);
    }
    50% {
        box-shadow: 0 0 0 12px hsla(116, 73%, 24%, 0);
    }
}

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    justify-content: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    max-width: 448px;
    margin: 0 auto;
}

.info-box span {
    text-align: left;
}

/* Benefits Section */
.benefits-section {
    background-color: var(--muted);
    padding: 2.5rem 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-section h1 {
        font-size: 1.875rem;
    }
    
    .hero-section h2 {
        font-size: 1.25rem;
    }
    
    .banner-content {
        font-size: 1rem;
    }
}

.benefit-card {
    background-color: var(--card);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

.benefit-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary);
    stroke-width: 2;
}

.benefit-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--background);
    padding: 2.5rem 1rem;
}

.section-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.stars {
    display: flex;
    gap: 0.125rem;
}

.star {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--star-color);
}

.testimonial-text {
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.testimonial-author {
    font-size: 0.875rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--foreground);
}

.testimonial-screenshot {
    margin-top: 1rem;
    border-radius: 0.5rem;
    width: 100%;
    max-width: 384px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-footer {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    margin-top: 2rem;
}

/* Offer Section */
.offer-section {
    background-color: var(--background);
    padding: 2rem 1rem;
}

.urgency-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--urgency);
    margin-bottom: 1rem;
}

.urgency-badge span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
}

.countdown-timer {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.countdown-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.countdown-value {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: var(--urgency);
}

.price-container {
    margin-top: 1.5rem;
}

.urgency-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Product Offers Section */
.product-offers-section {
    background: linear-gradient(135deg, hsl(116, 73%, 20%), hsl(140, 50%, 28%));
    padding: 2.5rem 1rem;
}

.section-title-white {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-foreground);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .section-title-white {
        font-size: 1.5rem;
    }
}

.offers-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.offer-card {
    background-color: var(--card);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.offer-image {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 1rem;
    border-radius: 0.5rem;
    display: block;
}

.offer-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.offer-price a {
    color: var(--foreground);
    text-decoration: none;
}

.offer-price a:hover {
    text-decoration: underline;
}

.payment-confirmation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--primary);
}

/* FAQ Section */
.faq-section {
    background-color: var(--background);
    padding: 2.5rem 1rem;
}

.section-subtitle {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.text-primary {
    color: var(--primary);
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 0 1rem;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--foreground);
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.faq-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-bottom: 1rem;
    color: var(--muted-foreground);
}

/* Final CTA Section */
.final-cta-section {
    background-color: var(--muted);
    padding: 2.5rem 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, hsl(116, 73%, 20%), hsl(140, 50%, 28%));
    padding: 2rem 1rem;
    text-align: center;
}

.footer-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-foreground);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    margin-top: 1rem;
}
