html { scroll-behavior: smooth; }
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: #ffffff;
    border-bottom: 1px solid #969b9b;
    padding: 1.45rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-logo {
    width: 140px;
    height: auto;
}

.header-actions {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: nowrap;
}

.link-secondary {
    color: #61bcef;
    font-weight: 700;
    font-size: 1.15rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.25rem;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}
.link-secondary svg { width: 1em; height: 1em; flex-shrink: 0; }
.link-secondary:link,
.link-secondary:visited { color: #61bcef; }
.link-secondary:active { color: #61bcef; border-bottom-color: #61bcef; }
.link-secondary:hover,
.link-secondary:focus {
    color: #61bcef;
    border-bottom-color: #61bcef;
    outline: none;
    transform: translateY(-1px);
}

.btn-primary {
    background: #61bcef;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(97, 188, 239, 0.3);
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(97, 188, 239, 0.4);
}
.whatsapp-fab {
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 9999px;
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #16a34a; /* green-600 */
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    text-decoration: none;
}
.whatsapp-fab i { color: #16a34a; font-size: 18px; }
.whatsapp-text { font-size: 0.9rem; font-weight: 600; }
.whatsapp-fab:hover { background: #ecfdf5; color: #065f46; border-color: #16a34a; }
.whatsapp-fab:focus { outline: none; box-shadow: 0 0 0 3px rgba(22,163,74,0.35); }

.slogan-section {
    flex: 1;
    text-align: center;
    margin: 0 2rem;
}

.slogan {
    font-size: 1.5rem;
    font-weight: 700;
    color: #61bcef;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out;
    margin: 0;
}

/* Introduction Section */
.intro-section {
    padding: 4rem 0;
    background: #ffffff;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-title {
    font-size: 3rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Hero subheadline */
.intro-subheadline {
    font-size: 1.25rem;
    font-weight: 700;
    color: #61bcef;
    margin-top: -0.5rem;
    margin-bottom: 0.75rem;
}

/* Hero eyebrow (emphasis for EA) */
.intro-eyebrow {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.intro-description {
    font-size: 1.125rem;
    color: #969b9b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.intro-stats {
    display: flex;
    gap: 2rem;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #61bcef;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #969b9b;
    font-weight: 500;
}

/* Exam Preview */
.intro-visual {
    display: flex;
    justify-content: center;
}

.exam-preview {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 560px;
    border: 1px solid #e2e8f0;
}

/* Preview image replacing the mock question UI */
.exam-image {
    display: block;
    width: 100%;
    height: auto;
}

.exam-header {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.exam-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.exam-timer {
    font-weight: 700;
    font-size: 1.1rem;
}

.exam-question {
    padding: 1.5rem;
}

.question-number {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.question-text {
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.question-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.option {
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.option.active {
    border-color: #3b82f6;
    background: #eff6ff;
    color: #1e40af;
}

.exam-controls {
    padding: 1rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 0.75rem;
}

.control-btn {
    background: #f1f5f9;
    border: none;
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    color: #64748b;
    transition: all 0.2s ease;
}

.control-btn:hover {
    background: #e2e8f0;
    color: #3b82f6;
}

/* Analytics Preview Section */
.analytics-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.analytics-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.analytics-visual {
    display: flex;
    justify-content: center;
}

.analytics-preview {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 640px;
    border: 1px solid #e2e8f0;
}

.analytics-image {
    display: block;
    width: 100%;
    height: auto;
}

.analytics-text {
    padding: 1rem 0;
}

.analytics-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.analytics-subheadline {
    font-size: 1.25rem;
    font-weight: 700;
    color: #61bcef;
    margin-bottom: 1rem;
}

.analytics-description {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.analytics-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.analytics-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a1a;
}

.analytics-features li i {
    color: #22c55e;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .analytics-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .analytics-content > .analytics-visual {
        order: 2;
    }
    
    .analytics-content > .analytics-text {
        order: 1;
        text-align: center;
    }
    
    .analytics-title {
        font-size: 2rem;
    }
    
    .analytics-features {
        grid-template-columns: 1fr;
        text-align: left;
        max-width: 280px;
        margin: 0 auto;
    }
}

/* Question Review Section */
.review-section {
    padding: 4rem 0;
    background: #ffffff;
}

.review-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.review-visual {
    display: flex;
    justify-content: center;
}

.review-preview {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 640px;
    border: 1px solid #e2e8f0;
}

.review-image {
    display: block;
    width: 100%;
    height: auto;
}

.review-text {
    padding: 1rem 0;
}

.review-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.review-subheadline {
    font-size: 1.25rem;
    font-weight: 700;
    color: #61bcef;
    margin-bottom: 1rem;
}

.review-description {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.review-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.review-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a1a;
}

.review-features li i {
    color: #22c55e;
    font-size: 1rem;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: white;
}

.ea-score-section {
    padding: 3.5rem 0 4rem;
    background: #ffffff;
}

.ea-score-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 1.5rem;
    max-width: 720px;
    margin: 0 auto;
}

.ea-score-card {
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 1.25rem 1rem;
    text-align: center;
    background: #ffffff;
}

.ea-score-card-highlight {
    border-color: #60a5fa;
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.25);
    grid-column: 2;
    padding: 1.4rem 1.15rem;
}

.ea-score-range {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1e40af;
    margin-bottom: 0.25rem;
}

.ea-score-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.feature-description {
    color: #64748b;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    scroll-margin-top: 96px; /* offset do header sticky ao navegar via âncora */
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Inline benefits (pills) to reduce CTA height */
.cta-benefits-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.5rem 0.75rem;
    border-radius: 9999px;
    font-weight: 600;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.benefit-item i {
    color: #60a5fa;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.btn-cta {
    background: white;
    color: #1e40af;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.cta-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

/* CTA dynamic pricing */
.cta-price-lines { display: flex; align-items: center; gap: 0.5rem; }
.price-original { text-decoration: line-through; opacity: 0.9; }
.promo-badge { display:inline-block; background:#f59e0b; color:#1a1a1a; font-weight:800; padding: 2px 8px; border-radius:9999px; font-size: 0.75rem; }
.price-original {
    text-decoration-line: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(255,255,255,0.85);
    position: relative;
}
.price-original::after {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 50%;
    height: 2px;
    background: rgba(255,255,255,0.95);
    transform: translateY(-50%);
}
.price-promo { font-weight: 900; font-size: 1.25rem; }
.savings-note { color:#22c55e; font-weight:800; font-size:1rem; }

.price-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 32px;
    width: auto;
}

.footer-tagline {
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-column a {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #3b82f6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 36px;
    height: 36px;
    background: #374151;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: #3b82f6;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #ffffff; /* melhorar contraste */
    font-size: 0.875rem;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: underline;
}

.footer-social {
    margin-top: 0.5rem;
}

.footer-instagram {
    height: 40px;
    width: auto;
    vertical-align: middle;
    filter: none !important;
}

/* Top EA Hero */
.ea-hero-top {
    padding: 3rem 0 2rem;
    background: #ffffff;
    text-align: center;
}

.ea-hero-top .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ea-headline {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: #61bcef;
    margin: 0 auto 0.5rem;
    white-space: nowrap;
    display: inline-block;
    width: max-content;
    text-align: center;
}

.ea-subheadline {
    font-size: 1.125rem;
    color: #475569;
}

/* Pricing Modal */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-overlay.open { display: flex; }

/* Fallback sem JS: abrir modal quando o alvo #pricingModal é navegável */
.modal-overlay:target { display: flex; }

.modal-dialog {
    position: relative;
    background: #ffffff;
    width: 100%;
    max-width: min(760px, calc(100vw - 32px));
    border-radius: 12px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.25);
    border: 1px solid #e2e8f0;
    padding: 24px;
    max-height: calc(100dvh - 64px);
    overflow: auto;
    overscroll-behavior: contain;
    z-index: 1001;
}

.modal-header {
    text-align: center;
    margin-bottom: 1rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
}

.modal-subtitle { color: #475569; }

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    background: transparent;
    color: #64748b;
    cursor: pointer;
    font-size: 1.25rem;
}

.modal-close:focus { outline: 2px solid #61bcef; outline-offset: 2px; }

.plans {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.plan-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    background: #ffffff;
}

.plan-card.featured {
    border: 2px solid #61bcef;
    box-shadow: 0 12px 28px rgba(97,188,239,0.25);
}

.plan-title { font-weight: 700; margin-bottom: 4px; }
.plan-note { color: #64748b; font-size: 0.9rem; margin-bottom: 8px; }
.price-row { display: flex; align-items: baseline; gap: 8px; margin: 8px 0; }
.price-now { font-size: 1.75rem; font-weight: 800; color: #0f172a; }
.price-old { color: #94a3b8; text-decoration: line-through; }
.bf-badge { display:inline-block; background:#1e40af; color:white; font-weight:700; padding: 2px 8px; border-radius:9999px; font-size:0.75rem; }

.btn-plan {
    display: inline-flex; align-items: center; justify-content:center; gap: 0.5rem;
    width: 100%;
    background: #61bcef; color: #ffffff; border:none; cursor:pointer;
    padding: 0.75rem 1rem; border-radius: 8px; font-weight: 700; font-size: 1rem;
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 2px 8px rgba(97,188,239,0.3);
}
.btn-plan:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(97,188,239,0.5); }

.modal-note { margin-top: 0.75rem; color: #64748b; text-align: center; }

@media (max-width: 768px) {
    .plans { grid-template-columns: 1fr; }
}

/* Success Stories */
.success-section {
    padding: 4rem 0;
    background: #ffffff;
}

.success-media {
    display: flex;
    justify-content: center;
}

.success-image {
    width: 100%;
    max-width: 1000px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

/* Coming Soon Section */
.coming-soon-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdf4 100%);
}

.coming-soon-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #1e40af;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.coming-soon-badge i {
    font-size: 0.75rem;
}

.coming-soon-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
}

.coming-soon-description {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.coming-soon-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.coming-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.coming-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #61bcef 0%, #3b82f6 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.coming-feature-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.coming-feature-text p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.coming-soon-note {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e40af;
}

.coming-soon-note i {
    color: #61bcef;
}

@media (max-width: 768px) {
    .coming-soon-features {
        grid-template-columns: 1fr;
    }
    
    .coming-soon-title {
        font-size: 1.75rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header { padding: 0.85rem 0; }
    .header-logo { width: 125px; }
    .header-content { gap: 0.5rem; }
    .header-actions { gap: 1.3rem; justify-content: flex-end; flex-wrap: nowrap; }
    .btn-primary { padding: 0.6rem 1.1rem; font-size: 0.95rem; }
    .link-secondary { font-size: 1.05rem; }
    .ea-headline { white-space: normal; display: block; width: 100%; font-size: clamp(1.6rem, 7vw, 2.2rem); line-height: 1.25; margin: 0 0 0.5rem; padding: 0 8px; text-wrap: balance; }
    .slogan {
        font-size: 1.75rem;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .intro-title {
        font-size: 2.25rem;
    }
    
    .intro-stats { justify-content: center; }
    .features-grid { grid-template-columns: 1fr; }
    
    .review-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .review-content > .review-text {
        order: 1;
        text-align: center;
    }
    
    .review-content > .review-visual {
        order: 2;
    }
    
    .review-title {
        font-size: 2rem;
    }
    
    .review-features {
        grid-template-columns: 1fr;
        text-align: left;
        max-width: 280px;
        margin: 0 auto;
    }
    .ea-score-grid {
        max-width: 100%;
        grid-template-columns: 1fr;
    }
    .ea-score-card-highlight { grid-column: auto; }
    
    .cta-benefits {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .header-actions { gap: 1.1rem; }
    .btn-primary { padding: 0.55rem 1rem; font-size: 0.9rem; }
    .link-secondary { font-size: 1rem; }
    .slogan {
        font-size: 1.5rem;
    }
    
    .intro-title {
        font-size: 1.875rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    /* Modal refinements on small screens */
    .modal-overlay { padding: 12px; }
    .modal-dialog { padding: 16px; max-height: calc(100dvh - 24px); }
    .modal-title { font-size: 1.25rem; }
    .plans { gap: 0.75rem; }
    .btn-plan { font-size: 0.95rem; padding: 0.65rem 0.9rem; }
}
.ea-score-section {
  background-color: #234aba;
  color: white;
  padding: 80px 20px;
}

.ea-score-section .section-title {
  color: white;
}

.ea-score-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
}

.ea-score-range {
  color: white;
  font-weight: 700;
}

.ea-score-label {
  color: rgba(255, 255, 255, 0.85);
}

.ea-score-card-highlight {
  background: white;
  color: #234aba;
}

.ea-score-card-highlight .ea-score-range,
.ea-score-card-highlight .ea-score-label {
  color: #234aba;
}
.pricing-section {
  padding-top: 50px;
  padding-bottom: 50px;
}
.plans-highlight-center {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: end;
}

.plans-highlight-center .plan-card.featured {
  transform: translateY(-20px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.three-column-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.plan-card {
  max-width: 100%;
}.hero-free-btn {
  margin-top: 24px;
  display: inline-block;
}.plan-includes-small {
  font-size: 0.8rem; /* pequeno e discreto */
  color: #555;       /* cinza suave */
  margin-top: 5px;   /* distância do botão */
  line-height: 1.4;
  text-align: left;  /* melhor para listas */
  padding-left: 15px; /* dá um pequeno recuo para os ticks */
}

.plan-includes-small ul {
  list-style: none; /* remove bullets padrão */
  padding: 0;
  margin: 5px 0 0 0;
}

.plan-includes-small li::before {
  content: "✓ "; /* check antes de cada item */
  color: green; /* cor do check */
  font-weight: bold;
}
