/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #22c55e;
    --dark-blue: #0f172a;
    --text-main: #334155;
    --text-light: #64748b;
    --bg-yellow: #fefce8;
    --bg-blue: #f0f9ff;
    --white: #ffffff;
    --border-color: #e2e8f0;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
}

h1, h2, h3 {
    color: var(--dark-blue);
    font-weight: 700;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 10px auto 40px;
}

/* Pulsating Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.pulse-anim {
    animation: pulse 2s infinite;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-green);
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px 30px;
    border-radius: 50px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    background-color: #16a34a;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Top Banner Marquee */
.top-banner {
    background-color: #ef4444;
    color: var(--white);
    padding: 12px 0;
    font-weight: 700;
    font-size: 1rem;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}

.marquee-text {
    display: flex;
    animation: marquee 15s linear infinite;
    width: max-content;
}

.marquee-text span {
    padding-right: 20px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Hero Section */
.hero {
    background: radial-gradient(circle at center, #fffbeb, #fefce8);
    padding: 60px 0;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content .subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-image {
    flex: 1;
}

/* Exemplos Section with Marquee */
.exemplos {
    padding: 80px 0;
    overflow: hidden;
}

.marquee-images {
    overflow: hidden;
    white-space: nowrap;
    padding: 20px 0;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.marquee-images-content {
    display: inline-flex;
    animation: marquee-img 30s linear infinite;
    gap: 20px;
    width: max-content;
}

.marquee-images-content:hover {
    animation-play-state: paused;
}

.marquee-images-content img {
    height: 350px;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

@keyframes marquee-img {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Para Quem Section */
.para-quem {
    background-color: var(--bg-blue);
    padding: 80px 0;
}

.pq-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.pq-content {
    flex: 1;
}

.pq-content h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.check-list {
    list-style: none;
    margin-bottom: 30px;
}

.check-list li {
    background-color: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.check-list li::before {
    content: '✓';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background-color: #3b82f6;
    color: white;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 0.9rem;
    font-weight: bold;
}

.pq-image {
    flex: 1;
}

.pq-image img {
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

/* Benefícios Section */
.beneficios {
    padding: 80px 0;
}

.grid-beneficios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.card-beneficio {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.card-beneficio:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.blue-icon { background-color: #e0f2fe; }
.green-icon { background-color: #dcfce7; }
.orange-icon { background-color: #ffedd5; }
.gray-icon { background-color: #f1f5f9; }

/* Prova Social */
.prova-social {
    background-color: #f8fafc;
    padding: 80px 0;
}

.grid-social {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.grid-social img {
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

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

.badge-top {
    display: inline-block;
    background-color: #fef08a;
    color: #854d0e;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid #fde047;
}

.subtitle-green {
    color: var(--primary-green);
    font-weight: 600;
}

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

.card-bonus {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.card-bonus img {
    border-radius: 12px;
    margin-bottom: 15px;
}

.card-bonus h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.card-bonus p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.price-bonus {
    font-size: 0.9rem;
    color: var(--text-light);
}

.gratis-tag {
    background-color: #eff6ff;
    color: #2563eb;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-left: 5px;
}

.pb-text {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.text-purple {
    color: #7e22ce;
}

/* Planos Section */
.planos {
    background-color: var(--bg-yellow);
    padding: 80px 0;
}

.grid-planos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.card-plano {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
    position: relative;
    border: 1px solid var(--border-color);
    text-align: left;
}

.card-plano.recomendado {
    border: 3px solid #f97316;
    transform: scale(1.05);
    background-color: #fffbeb;
}

.mais-escolhido {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f97316;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
}

.plano-tag, .plano-tag-blue {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.plano-tag { background-color: #f1f5f9; color: #475569; }
.plano-tag-blue { background-color: #e0e7ff; color: #4338ca; }

.card-plano h3 { font-size: 1.8rem; margin-bottom: 5px; }
.plano-desc { font-size: 0.9rem; color: var(--text-light); margin-bottom: 20px; min-height: 45px;}
.plano-img { margin-bottom: 20px; }

.plano-price {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.old-price { text-decoration: line-through; color: var(--text-light); font-size: 0.9rem; }
.new-price { font-size: 1.2rem; }
.new-price strong { font-size: 2.5rem; color: var(--dark-blue); }
.new-price-big strong { font-size: 3rem; color: var(--primary-green); }
.promo-text { color: #4338ca; font-weight: 700; font-size: 0.85rem; margin: 5px 0; }
.payment-info { font-size: 0.75rem; color: var(--text-light); font-weight: 600; display: block; margin-top: 5px; }

.plano-features { list-style: none; margin-bottom: 30px; }
.plano-features li { margin-bottom: 10px; font-size: 0.9rem; display: flex; align-items: flex-start; gap: 10px; }
.plano-features .disabled { color: #94a3b8; }
.check { color: var(--primary-green); font-weight: bold; }
.cross { color: #ef4444; font-weight: bold; }
.gift { font-size: 1.1rem; }

.card-plano .cta-button { width: 100%; font-size: 1rem; padding: 12px; }

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #f8fafc;
}

.accordion {
    max-width: 800px;
    margin: 40px auto 0;
}

.accordion-item {
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: #f1f5f9;
}

.arrow {
    transition: transform 0.3s;
    font-size: 0.8rem;
}

.accordion-item.active .arrow {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
}

.accordion-item.active .accordion-content {
    padding: 0 20px 20px;
    max-height: 200px;
}

/* CTA Final */
.cta-final {
    padding: 80px 0;
    background-color: var(--bg-blue);
}

.final-box {
    background-color: var(--white);
    max-width: 500px;
    margin: 40px auto 0;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.final-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.final-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
}

/* Footer */
footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-left {
    max-width: 400px;
}

.footer-desc {
    color: #cbd5e1;
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.copy, .footer-support {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.disclaimer {
    color: #94a3b8;
    font-size: 0.8rem;
    font-style: italic;
    margin-top: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.footer-links a {
    color: #cbd5e1;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-container, .pq-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .trust-badges {
        justify-content: center;
        flex-wrap: wrap;
    }

    .card-plano.recomendado {
        transform: scale(1);
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
    
    .check-list li {
        text-align: left;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background-color: #ffffff;
    width: 92%;
    max-width: 540px;
    border-radius: 26px;
    padding: 30px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-height: 95vh;
    overflow-y: auto;
}

.modal-overlay.open .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #64748B;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #1E293B;
}

.modal-badge {
    background: linear-gradient(135deg, #fef08a 0%, #fde047 100%);
    color: #854d0e;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    display: table;
    margin: 0 auto 15px;
}

.modal-headline {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1E293B;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 10px;
}

.modal-subtitle {
    font-size: 0.95rem;
    color: #64748B;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.5;
}

.modal-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 15px;
}

.modal-card-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1E293B;
    margin-bottom: 15px;
    text-align: center;
}

.modal-benefits {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 10px;
}

.modal-benefits li {
    font-size: 0.85rem;
    color: #334155;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: 500;
}

.modal-benefits .icon {
    font-size: 1rem;
    line-height: 1;
}

.modal-price-card {
    background-color: #FFF9F3;
    border: 1px dashed #FF7A00;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.modal-price-card .old-price {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 5px;
}

.modal-price-card .new-price-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1E293B;
}

.modal-price-card .new-price-val {
    font-size: 3rem;
    font-weight: 800;
    color: #E65100;
    line-height: 1;
    margin: 5px 0 10px;
}

.modal-price-card .savings {
    color: #16A34A;
    font-weight: 700;
    font-size: 0.9rem;
}

.modal-cta-btn {
    display: block;
    width: 100%;
    height: 58px;
    background: linear-gradient(to bottom, #FF7A00, #FFA726);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    line-height: 58px;
    box-shadow: 0 10px 15px -3px rgba(255, 122, 0, 0.3);
}

.modal-cta-btn:hover {
    transform: scale(1.02);
    filter: brightness(0.95);
}

.modal-payment-icons {
    background-color: #e0f2fe;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.modal-no-btn {
    display: block;
    width: 100%;
    background: none;
    border: none;
    color: #64748B;
    font-size: 0.85rem;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s;
    text-align: center;
}

.modal-no-btn:hover {
    color: #FF7A00;
}

/* Make body unscrollable when modal is open */
body.modal-open {
    overflow: hidden;
}

@media (max-width: 600px) {
    .modal-benefits {
        grid-template-columns: 1fr;
    }
    .modal-headline {
        font-size: 1.3rem;
    }
    .modal-price-card .new-price-val {
        font-size: 2.5rem;
    }
    .modal-cta-btn {
        font-size: 0.95rem;
        line-height: 1.2;
        padding: 15px;
    }
}

/* New Animations & Tweaks */
@keyframes soft-jump {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes soft-jump-scale {
    0%, 100% { transform: translateY(0) scale(1.05); }
    50% { transform: translateY(-8px) scale(1.05); }
}

@keyframes attention {
    0%, 100% { transform: scale(1); }
    10% { transform: scale(0.95) rotate(-2deg); }
    20% { transform: scale(1.05) rotate(2deg); }
    30% { transform: scale(1.05) rotate(-2deg); }
    40% { transform: scale(1.05) rotate(2deg); }
    50% { transform: scale(1) rotate(0); }
}

.card-plano {
    animation: soft-jump 4s ease-in-out infinite;
}

.card-plano.recomendado {
    animation: soft-jump-scale 4s ease-in-out infinite;
    animation-delay: 1s; /* Offset for a better look */
}

/* Make modal CTA super catchy */
.modal-cta-btn {
    animation: attention 3s ease-in-out infinite;
    animation-delay: 1s;
}

.modal-content {
    padding: 20px;
}
