:root {
    --primary-blue: #0d47a1;
    --dark-blue: #002171;
    --light-blue: #5472d3;
    --accent-yellow: #ffca28;
    --accent-orange: #ff6f00;
    --success-green: #00c853;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --radius-md: 12px;
    --radius-lg: 20px;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
}

/* Navbar */
.navbar {
    background: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 8px;
}

.text-yellow {
    color: var(--accent-yellow);
}

.btn-sm {
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: transform 0.2s;
}

.btn-sm:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 60px 0 90px;
    /* Reduced to eliminate blue gap */
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 .highlight {
    color: var(--accent-yellow);
    position: relative;
}

.hero .subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--success-green);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(46, 213, 115, 0.4);
}

.btn-primary:hover {
    background: #00e676;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 200, 83, 0.5);
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 10px 25px rgba(46, 213, 115, 0.4), 0 0 0 0 rgba(46, 213, 115, 0.4);
    }

    70% {
        box-shadow: 0 10px 25px rgba(46, 213, 115, 0.4), 0 0 0 15px rgba(46, 213, 115, 0);
    }

    100% {
        box-shadow: 0 10px 25px rgba(46, 213, 115, 0.4), 0 0 0 0 rgba(46, 213, 115, 0);
    }
}

.hero-image {
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.hero-image img {
    max-width: 100%;
    width: 350px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.wave-bottom {
    line-height: 0;
    width: 100%;
    margin-top: -100px;
    /* Pull wave up */
    position: relative;
    z-index: 1;
}

/* Problem Section */
.problem {
    padding: 60px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 40px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card-problem {
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-problem:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.card-problem:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: var(--shadow-md);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}

.icon-box.red {
    background: #ffebee;
    color: #e53935;
}

.card-problem h3 {
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.card-problem p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.problem-summary {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #e3f2fd;
    border-radius: var(--radius-md);
    color: var(--primary-blue);
    font-weight: 700;
}

/* Solution Section */
.solution {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 0 0 80px;
    /* Remove top padding, handled by wave */
    position: relative;
    text-align: center;
}

.wave-top {
    line-height: 0;
    width: 100%;
    position: relative;
    top: -1px;
    /* Fix small gap */
    z-index: 1;
}

.solution .container {
    padding-top: 40px;
}

.text-white {
    color: var(--white);
}

.solution-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent-yellow);
}

.solution-desc {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px;
    opacity: 0.9;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.step-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--radius-md);
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Button Shine Effect */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}



.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-yellow);
    color: var(--dark-blue);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--accent-yellow);
}

.step-card h3 {
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.time-badge {
    background: rgba(0, 0, 0, 0.2);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
}

/* Benefits */
.benefits {
    padding: 80px 0;
    background: var(--white);
}

.benefits-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.benefits-list ul {
    list-style: none;
    margin-top: 20px;
}

.benefits-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.text-green {
    color: var(--success-green);
}

.benefits-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-md);
    align-items: flex-start;
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    background: #e3f2fd;
    padding: 10px;
    border-radius: 10px;
}

.benefit-item h4 {
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.benefit-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Features Bar */
.features-bar {
    background: #f1f8e9;
    padding: 40px 0;
    text-align: center;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--dark-blue);
    font-weight: 600;
}

.feature i {
    font-size: 1.5rem;
    color: var(--success-green);
}

.tagline {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Timer Section */
.timer-section {
    padding: 60px 0;
    background: var(--white);
    text-align: center;
}

.timer-box {
    background: #fff3e0;
    border: 2px solid #ffe0b2;
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.timer-label {
    background: #ef6c00;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
}

.timer-box h3 {
    color: #e65100;
    font-size: 1.8rem;
    margin: 15px 0 5px;
}

.date-display {
    color: var(--text-light);
    margin-bottom: 20px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-unit span {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1;
}

.time-unit small {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-light);
}

.separator {
    font-size: 2rem;
    color: var(--dark-blue);
    font-weight: 700;
    margin-top: -5px;
}

.timer-warning {
    color: #d32f2f;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Pricing */
.pricing {
    padding: 80px 0;
    background: var(--bg-light);
}

.pricing-sub {
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-light);
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 100%;
    max-width: 350px;
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid #eee;
}

.pricing-card.featured {
    border: 2px solid var(--accent-yellow);
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
    z-index: 2;
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-yellow);
    color: var(--dark-blue);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    /* Reduced font size for single line */
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
    white-space: nowrap;
    /* Force single line */
    z-index: 2;
}

.card-header {
    text-align: center;
    margin-bottom: 20px;
}

.plan-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
}

.card-header h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin: 5px 0;
}

.price {
    text-align: center;
    margin-bottom: 30px;
}

.currency {
    font-size: 1.2rem;
    vertical-align: top;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.old-price {
    text-decoration: line-through;
    color: #ef5350;
    font-size: 1rem;
    display: block;
}

.current-price .amount {
    color: var(--success-green);
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    display: flex;
    gap: 10px;
}

.features-list li i {
    color: var(--success-green);
    margin-top: 4px;
}

.btn-outline {
    display: block;
    text-align: center;
    padding: 12px;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.pricing-card .btn-primary {
    width: 100%;
    display: flex;
}

.save-badge {
    background: #e8f5e9;
    color: var(--success-green);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-top: 5px;
}

.bonus-wrapper {
    margin: 20px 0;
    text-align: left;
}

.bonus-header {
    background: #e3f2fd;
    color: var(--primary-blue);
    text-align: center;
    font-weight: 700;
    padding: 8px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    border: 1px solid #bbdefb;
}

.bonus-item {
    background: #fff8e1;
    /* Fundo amarelo suave */
    border: 1px solid #ffecb3;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 10px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.bonus-item i {
    color: #ffa000;
    font-size: 1.1rem;
    margin-top: 2px;
}

.bonus-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--dark-blue);
    margin-bottom: 3px;
    line-height: 1.3;
}

.bonus-item p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

.mini-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* Guarantee */
.guarantee {
    padding: 80px 0;
    text-align: center;
    background: var(--white);
}

.guarantee-box {
    max-width: 600px;
    margin: 0 auto 50px;
}

.guarantee-box>i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px 0;
    font-size: 0.9rem;
    color: var(--success-green);
    font-weight: 600;
}

.btn-green {
    background: var(--success-green);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.4);
}

.btn-green:hover {
    background: #00e676;
    transform: translateY(-2px);
}

.final-cta p {
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--dark-blue);
}

/* Footer */
footer {
    background: var(--dark-blue);
    color: rgba(255, 255, 255, 0.6);
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .grid-2,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .btn-primary {
        padding: 15px 20px;
        font-size: 1rem;
        /* Slightly smaller font on mobile */
        white-space: nowrap;
        /* Force single line */
        width: 100%;
        /* Full width on mobile */
    }

    .benefits-wrapper {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .features-grid {
        gap: 20px;
    }

    .feature {
        width: 45%;
    }

    .testimonial-card {
        min-width: 280px;
    }

    /* Carrossel horizontal em mobile se quiser, mas aqui vai empilhar */
}

/* --- New Sections Styles --- */

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #fdfbf7;
    /* Tom levemente quente/papel */
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stars {
    color: var(--accent-yellow);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-yellow);
}

.testimonial-author h4 {
    color: var(--dark-blue);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.testimonial-author small {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
    font-family: inherit;
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-question i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
    color: var(--primary-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Active State */
.faq-item.active .faq-question {
    color: var(--primary-blue);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    /* Valor arbitrário suficiente */
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal.delay-1 {
    transition-delay: 0.1s;
}

.reveal.delay-2 {
    transition-delay: 0.2s;
}

.reveal.delay-3 {
    transition-delay: 0.3s;
}

.reveal.delay-4 {
    transition-delay: 0.4s;
}

/* Floating Animation */
@keyframes coin-float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: coin-float 3s ease-in-out infinite;
}

/* Sales Notification */
.sales-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9999;
    transform: translateX(150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0f0f0;
    max-width: 320px;
}

.sales-notification.active {
    transform: translateX(0);
}

.notification-icon {
    width: 35px;
    height: 35px;
    background: #e8f5e9;
    color: var(--success-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.notification-content p {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.notification-content strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.notification-content small {
    font-size: 0.7rem;
    color: var(--text-light);
    display: block;
}

@media (max-width: 768px) {
    .sales-notification {
        top: 20px;
        right: 10px;
        /* Margem menor no mobile */
        left: auto;
        border-radius: 10px;
        /* Menos arredondado no mobile para caber melhor texto */
    }
}