/* styles.css */

:root {
    --bg-color: #050811; /* Deep dark blue space */
    --surface-color: rgba(5, 8, 17, 0.75); /* Mais escuro e menos transparente para dar contraste */
    --surface-border: rgba(255, 255, 255, 0.15); /* Bordas mais marcadas */
    --text-primary: #FFFFFF;
    --text-secondary: #E2E8F0; /* Texto secundário mais claro para brilhar no fundo escuro */
    
    --neon-cyan: #00F0FF;
    --neon-purple: #7000FF;
    --glow-cyan: rgba(0, 240, 255, 0.5);
    --glow-purple: rgba(112, 0, 255, 0.5);
    
    --font-sans: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-sans);
    /* Fundo híbrido com gradiente radial e poster-fundo estático para fallback no mobile */
    background: radial-gradient(circle at 50% 30%, rgba(5, 8, 17, 0.6) 0%, rgba(5, 8, 17, 0.98) 100%), url('poster-fundo.jpg') no-repeat center center fixed;
    background-size: cover;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

/* Background Effects - Aurora Mesh Gradient */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -2;
    opacity: 0.45;
    animation: float 25s ease-in-out infinite alternate;
    pointer-events: none;
    will-change: transform;
}

.top-glow {
    top: -200px;
    left: -200px;
    background: var(--glow-purple);
}

.bottom-glow {
    bottom: -200px;
    right: -200px;
    background: var(--glow-cyan);
    animation-delay: -10s;
}

/* Grid Overlay for futuristic vibe */
.grid-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
      linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -3;
    pointer-events: none;
    opacity: 0; /* Começa invisível, o JS faz o fade-in quando carregado */
    transform: translateZ(0);
    will-change: transform, opacity;
    transition: opacity 1.5s ease; /* Transição suave ao aparecer */
}

.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -3;
    pointer-events: none;
    opacity: 0.15; /* Sutil para não brigar com a leitura dos textos */
    transform: translateZ(0);
    will-change: transform;
}

/* Animação suave e fluida simulando uma aurora cósmica */
@keyframes float {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(80px, 60px) scale(1.2) rotate(45deg); }
    100% { transform: translate(-40px, 120px) scale(0.9) rotate(-45deg); }
}

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

/* Typography */
h1, h2, h3 {
    font-family: var(--font-display);
    line-height: 1.2;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.95); /* Destaque máximo para títulos */
}

.text-gradient {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.8)); /* Sombra para o gradiente recortado */
}

/* Navbar Unificada (Ticker + Botão) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    z-index: 1000;
    background: rgba(5, 8, 17, 0.95);
    border-bottom: 1px solid var(--surface-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 32px;
}

.navbar::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 350px;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(5, 8, 17, 1) 60%);
    z-index: 2;
    pointer-events: none;
}

.nav-actions {
    position: relative;
    z-index: 10;
    margin-left: auto; /* Garante que o botão fique na extrema direita */
}

.nav-actions .btn-outline {
    background: #050811; /* Fundo sólido para não misturar com o texto passando */
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-sans);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--surface-border);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--neon-cyan);
    background: rgba(0, 240, 255, 0.1);
}

.btn-primary {
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-cyan));
    color: #fff;
    box-shadow: 0 4px 20px rgba(112, 0, 255, 0.4);
    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.2), transparent);
    transition: all 0.5s ease;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary:hover {
    box-shadow: 0 4px 30px rgba(0, 240, 255, 0.6);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
}

.hero-content {
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 100px;
    color: var(--neon-cyan);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 650px;
    margin-inline: auto;
}

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

/* Tech Ticker (Marquee na Navbar) */
.tech-ticker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap; /* CRÍTICO: Impede que o texto quebre em várias linhas */
    z-index: 1; /* Fica no fundo da navbar */
}

.ticker-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap; /* CRÍTICO: Impede quebra de linha interna */
    animation: scrollTicker 45s linear infinite;
    color: var(--text-secondary);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.ticker-track span {
    display: inline-block;
}

.ticker-track .dot {
    color: var(--neon-cyan);
    margin: 0 24px;
    opacity: 0.6;
}

.ticker-track:hover {
    animation-play-state: paused;
}

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

/* Features Section */
.features {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 600px;
    margin-inline: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Glass Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.glass-card {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6); /* Sombra extra atrás dos cards para desgrudar do vídeo */
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(30, 41, 59, 0.5);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

.glass-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 56px;
    height: 56px;
    background: rgba(112, 0, 255, 0.1);
    border: 1px solid rgba(112, 0, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--neon-cyan);
    font-size: 28px;
    transition: all 0.3s ease;
}

.glass-card:hover .card-icon {
    background: var(--neon-purple);
    color: #fff;
    border-color: var(--neon-purple);
    box-shadow: 0 0 20px rgba(112, 0, 255, 0.4);
}

.glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.glass-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* CTA Section */
.final-cta {
    padding: 100px 0;
    text-align: center;
}

.cta-box {
    padding: 64px 32px;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.2) 100%);
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-box p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-inline: auto;
}

/* Footer */
footer {
    border-top: 1px solid var(--surface-border);
    padding: 60px 0 40px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 12px 24px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link.instagram {
    color: #E1306C;
}

.social-link.instagram:hover {
    background: rgba(225, 48, 108, 0.1);
    border-color: #E1306C;
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.4);
    transform: translateY(-3px);
}

.social-link.whatsapp {
    color: #25D366;
}

.social-link.whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25D366;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-3px);
}

.footer-note {
    opacity: 0.6;
}

/* Melhorias adicionais de responsividade para telas muito pequenas */
@media (max-width: 480px) {
    /* Garantir que nenhum elemento ultrapasse a largura da tela */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Melhorar legibilidade do texto em telas pequenas */
    body {
        font-size: 16px; /* Tamanho base mínimo para boa legibilidade */
        line-height: 1.6;
    }

    /* Ajustar especificamente o hero para evitar quebras estranhas */
    .hero {
        min-height: auto;
        height: auto;
        padding-top: 70px !important;
        padding-bottom: 40px !important;
    }

    .hero h1 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        word-wrap: break-word;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.4 !important;
        max-width: 90% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Melhorar os botões para toque em telas pequenas */
    .btn, .btn-large, .btn-outline, .btn-nav {
        min-height: 48px !important; /* Tamanho mínimo recomendado para toque */
        padding-left: 16px !important;
        padding-right: 16px !important;
        font-size: 0.95rem !important;
    }

    /* Ajustar o navbar para mobile */
    .navbar {
        height: 60px !important;
        padding: 0 12px !important;
    }

    .navbar::after {
        width: 200px !important;
    }

    /* Melhorar o ticker em telas pequenas */
    .tech-ticker {
        height: 60px !important;
    }

    .ticker-track {
        font-size: 0.85rem !important;
        gap: 8px !important;
    }

    .ticker-track span,
    .ticker-track .dot {
        margin: 0 4px !important;
    }

    /* Melhorar os cards em telas pequenas */
    .glass-card {
        margin: 0 10px !important;
        padding: 18px !important;
    }

    .glass-card h3 {
        font-size: 1.25rem !important;
    }

    .glass-card p {
        font-size: 0.9rem !important;
    }

    /* Melhorar a seção de autoridade */
    .authority-content {
        gap: 25px !important;
    }

    .authority-text h2 {
        font-size: 1.75rem !important;
    }

    .authority-text p {
        font-size: 0.95rem !important;
    }

    /* Melhorar o FAQ */
    .faq-question {
        font-size: 1.1rem !important;
        padding: 18px 20px !important;
    }

    .faq-answer-inner {
        font-size: 0.95rem !important;
        padding: 0 18px 18px 18px !important;
    }

    /* Melhorar o CTA final */
    .cta-box {
        padding: 30px 20px !important;
    }

    .cta-box h2 {
        font-size: 1.9rem !important;
    }

    .cta-box p {
        font-size: 1rem !important;
    }

    /* Melhorar o botão flutuante do WhatsApp */
    .floating-whatsapp {
        width: 56px !important;
        height: 56px !important;
        font-size: 28px !important;
        bottom: 20px !important;
        right: 20px !important;
    }

    /* Melhorar o footer */
    .footer {
        padding: 30px 0 20px !important;
    }

    .footer-socials {
        gap: 12px !important;
    }

    .social-link {
        padding: 10px 14px !important;
        font-size: 0.85rem !important;
    }

    .social-link i {
        font-size: 1.1rem !important;
    }

    .footer-note {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 360px) {
    /* Ajustes para telas extremamente pequenas */
    .hero h1 {
        font-size: 1.6rem !important;
    }

    .hero-subtitle {
        font-size: 0.9rem !important;
    }

    .section-header h2, .cta-box h2, .authority-text h2 {
        font-size: 1.5rem !important;
    }

    .glass-card {
        padding: 16px !important;
        margin: 0 8px !important;
    }

    .glass-card h3 {
        font-size: 1.15rem !important;
    }

    .glass-card p {
        font-size: 0.85rem !important;
    }

    .btn, .btn-large, .btn-outline, .btn-nav {
        min-height: 44px !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
        font-size: 0.9rem !important;
    }

    .navbar {
        height: 56px !important;
        padding: 0 10px !important;
    }

    .navbar::after {
        width: 150px !important;
    }

    .tech-ticker {
        height: 56px !important;
    }

    .ticker-track {
        font-size: 0.8rem !important;
        gap: 6px !important;
    }

    .ticker-track span,
    .ticker-track .dot {
        margin: 0 3px !important;
    }

    .faq-question {
        font-size: 1rem !important;
        padding: 16px 16px !important;
    }

    .faq-answer-inner {
        font-size: 0.9rem !important;
        padding: 0 16px 16px 16px !important;
    }

    .cta-box h2 {
        font-size: 1.6rem !important;
    }

    .cta-box p {
        font-size: 0.9rem !important;
    }

    .floating-whatsapp {
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
        bottom: 16px !important;
        right: 16px !important;
    }

    .footer {
        padding: 25px 0 16px !important;
    }

    .footer-socials {
        gap: 10px !important;
    }

    .social-link {
        padding: 8px 12px !important;
        font-size: 0.8rem !important;
    }

    .social-link i {
        font-size: 1rem !important;
    }

    .footer-note {
        font-size: 0.75rem !important;
    }
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulseWhatsapp 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
}

@keyframes pulseWhatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- High Conversion Funnel Styles --- */

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.avatar-group {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface-color);
    border: 2px solid var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-cyan);
    margin-left: -12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    overflow: hidden; /* Corta a imagem no formato circular */
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar:first-child {
    margin-left: 0;
}

.social-proof p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 200px;
    text-align: left;
    line-height: 1.4;
}

.social-proof strong {
    color: var(--text-primary);
    text-shadow: 0 0 10px var(--glow-cyan);
}

/* Authority Section */
.authority {
    padding: 100px 0;
}

.authority-content {
    display: flex;
    align-items: center;
    gap: 64px;
}

.authority-text {
    flex: 1;
}

.authority-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.authority-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.authority-text p strong {
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

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

.visual-card {
    text-align: center;
    padding: 48px;
    width: 100%;
    max-width: 400px;
}

.visual-card i {
    font-size: 4rem;
    color: var(--neon-purple);
    margin-bottom: 32px;
    display: inline-block;
    filter: drop-shadow(0 0 20px var(--glow-purple));
}

.stats {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid var(--surface-border);
    padding-top: 32px;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--text-primary);
    text-shadow: 0 0 15px var(--glow-cyan);
}

.stat-item span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 32px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question i {
    color: var(--neon-cyan);
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

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

.faq-answer-inner {
    padding: 0 32px 32px 32px;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Urgency Badge */
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 60, 60, 0.1);
    border: 1px solid rgba(255, 60, 60, 0.4);
    color: #ff5252;
    padding: 8px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 32px;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(255, 60, 60, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 60, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 60, 60, 0); }
}

/* Animations (will be triggered by JS) */
.hidden-onload {
    opacity: 0;
    transform: translateY(20px);
}

.fade-in {
    animation: fadeIn 0.8s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .section-header h2, .cta-box h2, .authority-text h2 {
        font-size: 2rem;
    }

    .glass-card {
        padding: 24px;
    }

    .authority-content {
        flex-direction: column;
        gap: 48px;
    }

    .social-proof {
        flex-direction: column;
        text-align: center;
    }

    .social-proof p {
        text-align: center;
        max-width: 100%;
    }

    /* Reduza o padding nas seções para mobile */
    .features, .authority, .faq, .final-cta {
        padding: 60px 0;
    }

    /* Reduza o padding-top do hero */
    .hero {
        padding-top: 60px;
    }

    /* Ajuste a navbar para telas muito pequenas */
    .navbar {
        height: 56px;
        padding: 0 16px;
    }

    .navbar::after {
        width: 200px; /* Reduza a largura do gradiente em telas pequenas */
    }

    /* Ajuste o tamanho da fonte do ticker em telas pequenas */
    .tech-ticker {
        font-size: 0.85rem;
    }

    .ticker-track {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    /* Ajustes específicos para telas muito pequenas (como iPhone SE) */
    .hero h1 {
        font-size: 2rem;
    }

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

    .section-header h2, .cta-box h2, .authority-text h2 {
        font-size: 1.75rem;
    }

    .section-header p, .cta-box p, .authority-text p, .faq-list .faq-question {
        font-size: 1rem;
    }

    .glass-card h3 {
        font-size: 1.25rem;
    }

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

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }

    /* Ajuste ainda mais o padding das seções */
    .features, .authority, .faq, .final-cta {
        padding: 40px 0;
    }

    .hero {
        padding-top: 40px;
    }

    /* Reduza a altura da navbar ainda mais */
    .navbar {
        height: 52px;
    }

    .nav-actions .btn-outline {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    /* Ajuste o social proof */
    .social-proof {
        gap: 12px;
    }

    .avatar {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .social-proof p {
        font-size: 0.9rem;
    }

    /* Ajuste o ticker para telas muito pequenas */
    .tech-ticker {
        height: 48px; /* Reduza a altura da navbar em telas muito pequenas */
    }

    .ticker-track {
        gap: 12px; /* Reduza o espaçamento entre os termos */
    }

    .ticker-track span,
    .ticker-track .dot {
        margin: 0 8px; /* Reduza a margem horizontal */
    }

    /* Ajuste o botão flutuante do WhatsApp */
    .floating-whatsapp {
        width: 56px;
        height: 56px;
        font-size: 32px;
        bottom: 24px;
        right: 24px;
    }

    /* Ajuste o footer */
    .footer-socials {
        gap: 16px;
    }

    .social-link {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .social-link i {
        font-size: 1.2rem;
    }
}
