/* ============================
   TELUX LANDING PAGE - STYLES
   Cores: Preto e Amarelo
   Foco: Alta Conversão
   ============================ */

/* ---------- CSS VARIABLES ---------- */
:root {
    --black-900: #0a0a0a;
    --black-800: #111111;
    --black-700: #1a1a1a;
    --black-600: #222222;
    --black-500: #2a2a2a;
    --black-400: #333333;
    --black-300: #444444;

    --yellow-500: #FFD700;
    --yellow-400: #FFE135;
    --yellow-300: #FFEB3B;
    --yellow-600: #E6C200;
    --yellow-glow: rgba(255, 215, 0, 0.3);

    --white: #ffffff;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-30: rgba(255, 255, 255, 0.3);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-05: rgba(255, 255, 255, 0.05);

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
    --border-radius-sm: 10px;
    --border-radius-xs: 6px;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background-color: var(--black-900);
    color: var(--white-90);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* ---------- UTILITY ---------- */
.text-gradient {
    background: linear-gradient(135deg, var(--yellow-500) 0%, var(--yellow-300) 50%, var(--yellow-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: var(--black-800);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid var(--yellow-500);
    color: var(--yellow-500);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--white);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--white-70);
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 60px;
    transition: var(--transition);
    cursor: pointer;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--yellow-500), var(--yellow-400));
    color: var(--black-900);
    box-shadow: 0 4px 30px var(--yellow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(255, 215, 0, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.1rem;
}

.btn-pulse {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 30px var(--yellow-glow); }
    50% { box-shadow: 0 4px 50px rgba(255, 215, 0, 0.6); }
}

/* ---------- HERO ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 40%);
    z-index: 0;
}

.floating-particles {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--yellow-500);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 6s infinite;
}

@keyframes float-particle {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--yellow-500);
    letter-spacing: 1.5px;
    margin-bottom: 32px;
    animation: fadeInDown 0.8s ease-out;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--yellow-500);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero h1 {
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--white);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--white-70);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta {
    animation: fadeInUp 0.8s ease-out 0.6s both;
    margin-bottom: 56px;
}

.hero-micro-text {
    margin-top: 14px;
    font-size: 0.85rem;
    color: var(--white-50);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--yellow-500);
}

.stat-star {
    font-size: 0.8em;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--white-50);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--white-10);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInUp 1s ease-out 1.2s both;
    z-index: 1;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--white-30);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--yellow-500);
    border-radius: 2px;
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

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

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- PAIN SECTION ---------- */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.pain-card {
    background: var(--black-700);
    border: 1px solid var(--white-10);
    border-radius: var(--border-radius);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.pain-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pain-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.pain-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.pain-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.pain-card p {
    font-size: 0.95rem;
    color: var(--white-70);
    line-height: 1.6;
}

/* ---------- SOLUTION SECTION ---------- */
.section-solution {
    background: linear-gradient(180deg, var(--black-900) 0%, var(--black-800) 100%);
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: var(--black-700);
    border: 1px solid var(--white-05);
    border-radius: var(--border-radius);
    transition: var(--transition);
    opacity: 0;
    transform: translateX(-20px);
}

.feature-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.feature-item:hover {
    border-color: rgba(255, 215, 0, 0.2);
    background: var(--black-600);
}

.feature-icon-wrap {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    font-size: 1.6rem;
}

.feature-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--white-70);
    line-height: 1.6;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--black-700);
    border: 1px solid var(--white-10);
    border-radius: var(--border-radius);
    padding: 32px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--yellow-500);
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--white-70);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--yellow-500), var(--yellow-600));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--black-900);
}

.testimonial-author strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--white-50);
}

/* ---------- COMPARISON TABLE ---------- */
.section-compare {
    background: var(--black-900);
}

.compare-table-wrap {
    overflow-x: auto;
    border-radius: var(--border-radius);
    border: 1px solid var(--white-10);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.compare-table th,
.compare-table td {
    padding: 18px 24px;
    text-align: center;
    border-bottom: 1px solid var(--white-05);
}

.compare-table th {
    font-weight: 700;
    font-size: 0.95rem;
    padding: 20px 24px;
    background: var(--black-700);
}

.compare-table th:first-child {
    text-align: left;
}

.compare-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--white-90);
}

.compare-others {
    color: var(--white-50);
}

.compare-telux {
    color: var(--yellow-500);
    font-weight: 600 !important;
}

.highlight-cell {
    background: rgba(255, 215, 0, 0.05);
}

.compare-table tbody tr {
    transition: var(--transition);
}

.compare-table tbody tr:hover {
    background: var(--white-05);
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

/* ---------- OFFER / PRICING ---------- */
.section-offer {
    background: linear-gradient(180deg, var(--black-800) 0%, var(--black-900) 100%);
    padding: 80px 0 100px;
}

.offer-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--black-700);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(255, 215, 0, 0.08);
    position: relative;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--yellow-500), var(--yellow-300), var(--yellow-500));
}

.offer-urgency {
    background: linear-gradient(135deg, var(--yellow-500), var(--yellow-400));
    color: var(--black-900);
    text-align: center;
    padding: 14px;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.urgency-icon {
    font-size: 1.1rem;
    animation: pulse-icon 1s infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.offer-content {
    padding: 48px 40px 40px;
    text-align: center;
}

.offer-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.offer-subtitle {
    color: var(--white-70);
    margin-bottom: 36px;
    font-size: 1rem;
}

.price-block {
    margin-bottom: 36px;
}

.price-original {
    font-size: 1rem;
    color: var(--white-50);
    margin-bottom: 8px;
}

.price-original s {
    color: #ff5555;
}

.price-current {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--yellow-500);
    margin-top: 10px;
}

.price-value {
    font-size: 5rem;
    font-weight: 900;
    color: var(--yellow-500);
    line-height: 1;
}

.price-cents {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--yellow-500);
    margin-top: 10px;
}

.price-period {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white-50);
    display: block;
    -webkit-text-fill-color: var(--white-50);
}

.price-savings {
    margin-top: 4px;
}

.savings-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(255, 215, 0, 0.15);
    color: var(--yellow-500);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.offer-benefits {
    list-style: none;
    text-align: left;
    margin-bottom: 36px;
}

.offer-benefits li {
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--white-90);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--white-05);
}

.offer-benefits li:last-child {
    border-bottom: none;
}

.check {
    color: var(--yellow-500);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.offer-content .btn {
    width: 100%;
    justify-content: center;
    font-size: 1.05rem;
}

.offer-guarantee {
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--white-50);
}

/* Countdown */
.countdown-bar {
    background: var(--black-600);
    padding: 24px;
    text-align: center;
    border-top: 1px solid var(--white-05);
}

.countdown-bar p {
    font-size: 0.85rem;
    color: var(--white-70);
    margin-bottom: 12px;
    font-weight: 600;
}

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

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

.countdown-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--yellow-500);
    background: var(--black-800);
    padding: 8px 16px;
    border-radius: var(--border-radius-xs);
    min-width: 64px;
}

.countdown-label {
    display: block;
    font-size: 0.7rem;
    color: var(--white-50);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-sep {
    font-size: 2rem;
    font-weight: 800;
    color: var(--yellow-500);
    margin-bottom: 20px;
}

/* ---------- FAQ ---------- */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--black-700);
    border: 1px solid var(--white-05);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white-90);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--yellow-500);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--yellow-500);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: var(--white-70);
    line-height: 1.7;
}

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

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

/* ---------- FINAL CTA ---------- */
.section-final-cta {
    background:
        radial-gradient(ellipse at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 60%),
        var(--black-900);
    padding: 100px 0;
}

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

.final-cta-content h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.final-cta-content p {
    font-size: 1.1rem;
    color: var(--white-70);
    margin-bottom: 36px;
    line-height: 1.7;
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--black-800);
    border-top: 1px solid var(--white-05);
    padding: 40px 0;
}

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

.footer-brand {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.footer-text {
    font-size: 0.85rem;
    color: var(--white-50);
    margin-bottom: 8px;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: var(--white-30);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ---------- FLOATING WHATSAPP ---------- */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsapp-bounce 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp svg {
    fill: white;
}

@keyframes whatsapp-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* ---------- NOTIFICATION BAR ---------- */
.notification-bar {
    position: fixed;
    bottom: 100px;
    left: 24px;
    background: var(--black-600);
    border: 1px solid var(--white-10);
    border-radius: var(--border-radius-sm);
    padding: 14px 20px;
    z-index: 998;
    transform: translateX(-120%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    max-width: 320px;
}

.notification-bar.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-avatar {
    font-size: 1.4rem;
}

.notification-text {
    font-size: 0.85rem;
    color: var(--white-70);
    line-height: 1.4;
}

.notification-text strong {
    color: var(--yellow-500);
}

/* ---------- RESPONSIVE ---------- */

/* --- LARGE DESKTOP (1200px+) --- */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }

    .pain-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- TABLET (769px - 1024px) --- */
@media (max-width: 1024px) {
    .section {
        padding: 80px 0;
    }

    .hero {
        padding: 70px 0 50px;
    }

    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header {
        margin-bottom: 48px;
    }

    .solution-features {
        max-width: 100%;
    }
}

/* --- MOBILE (até 768px) --- */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-desc {
        font-size: 0.95rem;
    }

    .section-tag {
        font-size: 0.7rem;
        padding: 5px 14px;
    }

    /* Hero mobile */
    .hero {
        min-height: auto;
        padding: 80px 0 50px;
    }

    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .hero h1 br {
        display: none;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 14px;
        margin-bottom: 24px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 28px;
        line-height: 1.6;
    }

    .hero-cta {
        margin-bottom: 36px;
    }

    .hero-micro-text {
        font-size: 0.8rem;
    }

    /* Stats mobile - horizontal compacto */
    .hero-stats {
        flex-direction: row;
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }

    .stat-divider {
        width: 1px;
        height: 30px;
    }

    /* SCROLL INDICATOR - esconder no mobile */
    .scroll-indicator {
        display: none;
    }

    /* Pain cards mobile */
    .pain-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pain-card {
        padding: 28px 24px;
    }

    .pain-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .pain-card h3 {
        font-size: 1.05rem;
    }

    .pain-card p {
        font-size: 0.9rem;
    }

    /* Features mobile */
    .feature-item {
        flex-direction: row;
        align-items: center;
        gap: 16px;
        padding: 20px;
    }

    .feature-icon-wrap {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .feature-icon {
        font-size: 1.3rem;
    }

    .feature-text h3 {
        font-size: 1rem;
    }

    .feature-text p {
        font-size: 0.88rem;
    }

    /* Testimonials mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonial-text {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }

    .testimonial-author span {
        font-size: 0.73rem;
    }

    .author-avatar {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }

    /* Comparison table mobile */
    .compare-table-wrap {
        border-radius: 12px;
        -webkit-overflow-scrolling: touch;
    }

    .compare-table {
        font-size: 0.82rem;
        min-width: 480px;
    }

    .compare-table th,
    .compare-table td {
        padding: 14px 12px;
    }

    .compare-table th {
        font-size: 0.82rem;
        padding: 16px 12px;
    }

    /* Offer card mobile */
    .section-offer {
        padding: 60px 0 80px;
    }

    .offer-content {
        padding: 32px 20px 28px;
    }

    .offer-content h2 {
        font-size: 1.6rem;
    }

    .offer-subtitle {
        font-size: 0.9rem;
        margin-bottom: 28px;
    }

    .price-value {
        font-size: 4rem;
    }

    .price-currency {
        font-size: 1.3rem;
    }

    .price-cents {
        font-size: 1.5rem;
    }

    .offer-benefits li {
        font-size: 0.88rem;
        padding: 9px 0;
    }

    /* Botões mobile - full width */
    .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 18px 24px;
        font-size: 0.95rem;
    }

    .offer-content .btn {
        font-size: 0.9rem;
    }

    .offer-guarantee {
        font-size: 0.75rem;
    }

    /* Countdown mobile */
    .countdown-bar {
        padding: 20px 16px;
    }

    .countdown-num {
        font-size: 1.6rem;
        padding: 6px 14px;
        min-width: 56px;
    }

    .countdown-sep {
        font-size: 1.6rem;
    }

    /* FAQ mobile */
    .faq-question {
        padding: 16px 20px;
        font-size: 0.9rem;
    }

    .faq-answer p {
        padding: 0 20px 16px;
        font-size: 0.88rem;
    }

    /* Final CTA mobile */
    .section-final-cta {
        padding: 60px 0;
    }

    .final-cta-content h2 {
        font-size: 1.6rem;
    }

    .final-cta-content p {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }

    /* Notification mobile */
    .notification-bar {
        left: 12px;
        right: 12px;
        bottom: 20px;
        max-width: none;
    }

    /* Footer mobile */
    .footer {
        padding: 32px 0;
    }

    .footer-brand {
        font-size: 1.3rem;
    }

    .footer-text {
        font-size: 0.8rem;
    }

    .footer-disclaimer {
        font-size: 0.7rem;
    }
}

/* --- SMALL MOBILE (até 380px) --- */
@media (max-width: 380px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 1.45rem;
    }

    .hero-subtitle {
        font-size: 0.88rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    .price-value {
        font-size: 3.5rem;
    }

    .price-currency {
        font-size: 1.1rem;
    }

    .price-cents {
        font-size: 1.3rem;
    }

    .offer-content h2 {
        font-size: 1.4rem;
    }

    .btn {
        padding: 14px 20px;
        font-size: 0.85rem;
    }

    .countdown-num {
        font-size: 1.4rem;
        min-width: 48px;
        padding: 6px 10px;
    }

    .testimonial-text {
        font-size: 0.85rem;
    }
}
