/* =====================================================
   LANDING PAGE - BOT PREMIUM
   
   ESPECIFICAÇÕES DO HEADER:
   1. 100% transparente em todas as seções
   2. Fixo no topo com scroll
   3. Mantém transparência ao rolar
   4. Links sempre brancos e visíveis
   5. Logo fixo no topo (não rola)
   6. Z-index 9999 para ficar sobre tudo
   7. Transições suaves de 0.3s
   
   HIERARQUIA DE Z-INDEX:
   - Header: 9999 (sempre por cima)
   - Texto fixo hero: 9998 (abaixo do header)
   - Hero section: 2
   - Vídeo de fundo: 1
   - Outras sections: 1
===================================================== */

/* Reset e Configurações Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    margin-bottom: 0;
    padding-bottom: 0;
}

html {
    scroll-behavior: auto; /* Removido smooth para usar apenas Lenis */
    margin: 0;
    padding: 0;
}

main {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* ========== SWIPER CUSTOMIZATION ========== */

.swiper {
    width: 100%;
    height: auto;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    content: '';
    font-size: 20px;
    color: white;
    font-weight: bold;
}

.swiper-button-prev {
    left: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12l4.58-4.59z"/></svg>');
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
}

.swiper-button-next {
    right: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"/></svg>');
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
}

/* ========== ANIMAÇÕES DE ENTRADA ========== */

/* Animação Fade-in + Slide-up */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - Fixo no topo, sem movimentos */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    display: flex;
    align-items: center;
    background: transparent !important;
    z-index: 9999;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
    margin: 0;
    border: none;
}



/* Navbar - Layout fixo */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 72px;
    padding: 0 3rem;
    position: relative;
}

/* Menu links */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    margin-left: auto;
}

.nav-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.nav-menu a {
    color: #fff !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    padding: 0;
    margin: 0;
    background: transparent !important;
    display: inline-block;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 12px rgba(102, 126, 234, 0.3);
}

/* Menu links estáticos - sem efeitos */
.nav-menu a.active {
    font-weight: 600;
    color: #fff !important;
}

/* Brand Logo */
.nav-brand {
    position: relative;
    display: flex;
    align-items: center;
    height: 40px;
    z-index: 1;
}

.nav-brand h2 {
    color: #fff !important;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.35));
}

/* Menu Hambúrguer */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 2rem;
    background: transparent !important;
    border: none;
    padding: 0.5rem;
    z-index: 2;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #fff !important;
    margin: 4px 0;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Link ativo - apenas cor e underline (sem alterar altura/offset) */
.nav-menu a[aria-current="page"],
.nav-menu a.active {
    background: transparent !important;
    color: #fff !important;
    font-weight: 600;
    /* Garante que não altera o layout */
    height: 40px;
    line-height: 1;
    padding: 0 16px;
}

.nav-menu a[aria-current="page"]::after,
.nav-menu a.active::after {
    opacity: 1;
    transform: scaleX(1);
}

/* Variáveis do header */
:root {
    --header-height: 84px; /* Altura do header + espaçamento */
}

/* Garantir hierarquia de z-index em todas as seções */
section {
    position: relative;
    z-index: 1;
}

/* Hero tem z-index maior que outras seções mas menor que header */
section#home {
    z-index: 2;
}

/* ========== HERO SECTION - VÍDEO 100% COVER ========== 
   HIERARQUIA DE Z-INDEX:
   - header          -> z-index: 9999 (sempre por cima)
   - .hero-fixed     -> z-index: 2 (texto sticky)
   - .hero-overlay   -> z-index: 1 (gradiente leve)
   - .hero-video     -> z-index: 0 (vídeo de fundo)
   - .hero           -> position: relative; overflow: hidden;
   
   IMPORTANTE:
   - Vídeo ocupa 100% (inset: 0) com object-fit: cover
   - Ancorado no canto direito superior (object-position: right top)
   - Overlay apenas para contraste do texto (gradiente leve da esquerda)
   - Texto mantém posição sticky funcionando
   - SEM backgrounds/gradientes que tampem o vídeo
========================================================= */

.hero {
    position: relative;
    min-height: 60vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: transparent !important; /* Sem gradiente/fundo - vídeo deve aparecer */
    z-index: 1;
    scroll-margin-top: var(--header-height, 72px);
    padding-top: var(--header-height, 80px);
}

/* Remover pseudo-elementos que possam tapar o vídeo */
.hero::before,
.hero::after {
    content: none !important;
    background: none !important;
}

/* Container do vídeo de fundo - 100% da área, ancorado direito/superior */
.hero-video-container {
    position: absolute;
    inset: 0; /* top:0; right:0; bottom:0; left:0; */
    z-index: 0;
    pointer-events: none; /* vídeo não intercepta cliques */
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* cobre toda a área */
    object-position: right top; /* âncora no canto direito superior */
    display: block;
    filter: none !important;
    opacity: 1 !important;
}

/* Hero Fallback Image */
.hero-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-fallback-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.3;
}

/* Hero Overlay - gradiente leve para contraste do texto */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    /* Gradiente suave da esquerda para direita, apenas para contraste */
    background: linear-gradient(90deg, 
        rgba(8, 12, 24, 0.55) 0%, 
        rgba(8, 12, 24, 0.25) 35%, 
        rgba(8, 12, 24, 0.05) 70%, 
        rgba(8, 12, 24, 0) 100%);
}

/* Hero Inner Container */
.hero-inner {
    position: relative;
    min-height: 60vh;
    width: 100%;
    padding-top: var(--header-height, 84px);
    padding-bottom: var(--hero-bottom-pad, 80px);
    overflow: visible;
}

/* Remover pseudo-elementos que possam tapar o vídeo */
.hero-inner::before,
.hero-inner::after {
    content: none !important;
    background: none !important;
}

/* Hero Fixed - TODO o conteúdo em um único bloco sticky */
.hero-fixed {
    position: sticky;
    top: var(--header-height, 84px);
    left: 0;
    padding: 0 clamp(16px, 4vw, 48px);
    max-width: 720px;
    color: #fff;
    opacity: 1;
    filter: none;
    z-index: 2; /* acima do vídeo e overlay */
    pointer-events: auto;
    overflow: visible;
    background: transparent !important;
    box-shadow: none !important;
}

/* Remover pseudo-elementos que possam tapar o vídeo */
.hero-fixed::before,
.hero-fixed::after {
    content: none !important;
    background: none !important;
}

/* Suaviza animações */
.hero-fixed * {
    will-change: transform;
}

/* Título Principal do Hero */
.hero-fixed h1 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

/* Subtítulo do Hero */
.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2rem 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

/* Benefícios principais no hero */
.hero-benefits {
    margin-bottom: 1rem;
    width: 100%;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: clamp(0.875rem, 1.8vw, 1.125rem);
    line-height: 1.5;
}

.benefit-item i {
    color: #4ade80;
    font-size: 1.2rem;
    min-width: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-item span {
    opacity: 0.95;
    flex: 1;
}

/* Linha de incentivo (kicker) */
.hero-kicker {
    margin: 1rem 0;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 500;
    color: #cbd5e1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

/* CTA Section */
.cta-section {
    position: relative;
    margin: 1rem 0;
    text-align: left;
    width: 100%;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    padding: clamp(12px, 2vw, 20px) clamp(24px, 4vw, 44px);
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(14px, 2vw, 18px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.cta-button i {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.cta-button:hover i {
    transform: translateX(5px) scale(1.1);
}

.cta-subtitle {
    margin-top: 1rem;
    font-size: 1rem;
    opacity: 0.9;
    color: #f0f0f0;
    font-weight: 500;
}

/* Social Proof */
.social-proof {
    margin-top: 1.2rem;
    text-align: left;
    width: 100%;
}

.proof-text {
    color: #e0e0e0;
    font-size: clamp(14px, 1.8vw, 16px);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.proof-text strong {
    color: #4ade80;
    font-weight: 600;
}

.proof-stats {
    display: flex;
    justify-content: flex-start;
    gap: clamp(16px, 3vw, 32px);
    flex-wrap: wrap;
    margin-top: 12px; /* Espaço entre CTA e indicadores */
}

.stat-item {
    text-align: center;
    min-width: 70px;
}

.stat-number {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: clamp(12px, 1.5vw, 14px);
    color: #d0d0d0;
    opacity: 0.8;
}

/* Scroll offset para todas as seções com ID */
section[id] {
    scroll-margin-top: var(--header-height, 72px);
}

/* GARANTIA: Header 100% transparente sempre */
.header,
.header *,
.navbar,
.navbar *,
.nav-menu,
.nav-menu *,
.nav-menu li,
.nav-menu a,
.nav-brand,
.nav-brand * {
    background: transparent !important;
    background-color: transparent !important;
}

/* Remove fundos brancos de links */
a:focus,
a:hover,
a:active {
    background: transparent !important;
}

/* Transições suaves de 0.3s */
.nav-menu a,
.nav-brand h2,
.hamburger,
.hamburger span {
    transition: all 0.3s ease !important;
}

/* Box-sizing global */
* {
    box-sizing: border-box;
}

/* Seção do YouTube - movida para baixo */
.youtube-section {
    padding: 4rem 0;
    background: #fff;
    position: relative;
    z-index: 10;
}

/* Vídeo do Produto - YouTube - sem sombra */
.product-video-container {
    margin: 0 auto;
    background: transparent;
    border-radius: 20px;
    padding: 2rem;
    max-width: 800px;
}

.youtube-video {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    transition: transform 0.3s ease;
    border: none;
    box-shadow: none;
}

.youtube-video:hover {
    transform: scale(1.02);
}

.video-caption {
    text-align: center;
    margin-top: 1.5rem;
}

.video-caption p {
    color: #333;
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.8;
}

/* Responsivo para Hero Section */
@media (max-width: 768px) {
    :root {
        --header-height: 72px;
    }
    
    .navbar {
        padding: 0 2rem;
    }
    
    .hero {
        min-height: 100vh;
        height: auto;
        justify-content: center;
        align-items: center;
        background: transparent !important;
        padding-top: calc(var(--header-height) + 2rem);
        padding-bottom: 2rem;
        overflow: hidden;
    }
    
    .hero-video-container {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
    }
    
    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        opacity: 0.4; /* Mais suave no mobile para melhor legibilidade */
    }
    
    .hero-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;
        background: rgba(8, 12, 24, 0.7); /* Overlay mais forte no mobile */
    }
    
    .hero-content {
        max-width: 100%;
        padding-inline: clamp(16px, 5vw, 24px);
        margin-left: auto;
        margin-right: auto;
        z-index: 10;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-benefits {
        margin-bottom: 2rem;
    }
    
    .benefit-item {
        justify-content: center;
        text-align: left;
    }
    
    .cta-section {
        text-align: center;
    }
    
    .social-proof {
        text-align: center;
    }
    
    .proof-stats {
        justify-content: center;
        gap: clamp(12px, 4vw, 24px);
    }
    
    /* Menu mobile */
    .header {
        height: 64px;
    }
    
    .hamburger {
        display: flex;
        z-index: 10001;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(15, 15, 35, 0.98) !important;
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: left 0.3s ease;
        backdrop-filter: blur(20px);
        padding: 6rem 2rem 2rem;
        gap: 8px;
        z-index: 10000;
        justify-content: flex-start;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        width: 100%;
        max-width: 300px;
        height: 48px;
        padding: 0 24px !important;
        background: transparent !important;
        border-radius: 10px;
        margin: 0 auto;
        font-size: 1.1rem;
    }
    
    .nav-menu a::after {
        bottom: 8px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: calc(var(--header-height) + 1rem);
        background: transparent !important;
        overflow: hidden;
    }
    
    .hero-content {
        padding-inline: 16px;
    }
    
    .benefit-item {
        justify-content: flex-start;
    }
    
    .proof-stats {
        gap: 12px;
    }
    
    .stat-item {
        min-width: 60px;
    }
    
    .social-proof {
        margin-top: 2rem;
    }
}

.product-video {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Video Fallback Block */
.video-fallback-block {
    width: 100%;
    max-width: 600px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.fallback-thumbnail {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
}

.thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.fallback-thumbnail:hover .thumbnail-img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.fallback-thumbnail:hover .play-overlay {
    background: rgba(0, 0, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.fallback-content {
    padding: 2rem;
    text-align: center;
}

.fallback-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.fallback-content p {
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.whatsapp-demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-demo-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section {
    margin-top: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    border: 2px solid rgba(102, 126, 234, 0.6);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6), 0 0 0 1px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.8);
}

.cta-subtitle {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4a5568;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat h3 {
    font-size: 2rem;
    color: #667eea;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #4a5568;
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-video-container {
    width: 100%;
    max-width: 560px;
    margin-left: auto;
}

.responsive-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.responsive-video-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: none;
    border-radius: 16px;
}

/* Manter estilos antigos para compatibilidade (caso existam outros elementos) */
.about-placeholder {
    width: 400px;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.about-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.about-placeholder p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Benefits Section */
.benefits {
    padding: 3rem 0;
    background: #fff;
    scroll-margin-top: 100px;
}

.benefits h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 700;
}

.benefits-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: #fff;
    padding: 1.2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.benefit-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 0.8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

.benefit-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 600;
    line-height: 1.3;
}

.benefit-card p {
    color: #4a5568;
    line-height: 1.4;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
    margin-top: 4rem;
    padding: 4rem 0;
    background: #f8fafc;
    border-radius: 20px;
}

.testimonials h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #2d3748;
    font-weight: 600;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #4a5568;
    line-height: 1.6;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: #667eea;
    position: absolute;
    top: -1rem;
    left: -1rem;
}

.testimonial-author strong {
    color: #2d3748;
    font-weight: 600;
}

.testimonial-author span {
    color: #667eea;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.25rem;
}

/* Final CTA Section - NOVA VERSÃO */
/* Seção Final CTA removida - agora Contact Section é a última */

.guarantee-content i {
    font-size: 2rem;
    color: #10b981;
    flex-shrink: 0;
}

.guarantee-text {
    display: flex;
    flex-direction: column;
}

.guarantee-text strong {
    color: #2d3748;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.guarantee-text span {
    color: #4a5568;
    font-size: 0.9rem;
}

/* Contact Section - Última seção da página */
.contact-section {
    padding: 8rem 0 6rem 0; /* Padding inferior reduzido */
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    margin-bottom: 0;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 700;
}

.contact-header p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-container {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    position: relative;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px 20px 0 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

.error-message {
    color: #e53e3e;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #e53e3e;
    background: #fed7d7;
}

.form-group.error .error-message {
    display: block;
}

.form-group.success input,
.form-group.success textarea {
    border-color: #38a169;
    background: #f0fff4;
}

.form-submit {
    text-align: center;
    margin-top: 1rem;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

.submit-btn.loading .btn-text {
    opacity: 0;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-disclaimer {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #4a5568;
    opacity: 0.8;
}

/* Success/Error States */
.form-success {
    background: #f0fff4;
    color: #38a169;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 1rem;
    border: 1px solid #9ae6b4;
}

.form-error {
    background: #fed7d7;
    color: #e53e3e;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 1rem;
    border: 1px solid #feb2b2;
}

/* Responsive Design for Contact */
@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 0;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .submit-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.75rem;
    }
}

/* Footer */
.footer {
    background: #2d3748;
    color: #fff;
    padding: 3rem 0 1rem;
    margin: 0;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section h3 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: #a0aec0;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #667eea;
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: #667eea;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #4a5568;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #667eea;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 1rem;
    text-align: center;
    color: #a0aec0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .product-video-container {
        margin-bottom: 2rem;
    }
    
    .product-video {
        max-width: 100%;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-placeholder {
        width: 100%;
        max-width: 350px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .cta-button, .cta-primary, .cta-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .navbar {
        padding: 1rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card, .testimonial {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling enhancement - Usando apenas Lenis */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: auto; /* Lenis controla o scroll */
    }
}

/* ========== NOVOS EFEITOS MODERNOS DE SCROLL ========== */

/* 1. Reveal Text Animation */
.reveal-text {
    position: relative;
    overflow: hidden;
}

.reveal-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateX(-100%);
    animation: revealText 1.5s ease-out forwards;
}

@keyframes revealText {
    to {
        transform: translateX(100%);
    }
}

/* 2. Tilt Cards Effect */
.tilt-card {
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    cursor: pointer;
}

.tilt-card:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

/* 3. Floating Elements */
.floating-element {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* 4. Parallax Section */
.parallax-section {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* 5. Counter Animation Enhancement */
.counter {
    font-weight: 700;
    color: #667eea;
    transition: all 0.3s ease;
}

.counter.counting {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}

/* 6. Gradient Animation Background */
.animated-gradient {
    background: linear-gradient(-45deg, #667eea, #764ba2, #f093fb, #f5576c);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* 7. Morphing Shapes */
.morphing-shape {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morph 8s ease-in-out infinite;
    transition: all 1s ease-in-out;
}

@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

/* 8. Magnetic Button Effect */
.magnetic-btn {
    position: relative;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    transform-style: preserve-3d;
}

.magnetic-btn:hover {
    transform: translateY(-5px) scale(1.05);
    filter: brightness(1.2);
}

.magnetic-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.magnetic-btn:hover::before {
    opacity: 1;
    animation: shine 0.6s ease-in-out;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) skewX(-15deg);
    }
    100% {
        transform: translateX(200%) skewX(-15deg);
    }
}

/* 9. Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* 10. Advanced Loading States */
.skeleton-loader {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* 11. 3D Flip Cards */
.flip-card {
    perspective: 1000px;
    width: 100%;
    height: 300px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* 12. Glassmorphism Effect */
.glassmorphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* 13. Smooth Cursor Follow - REMOVIDO */
/* Efeito removido para melhor usabilidade */

/* 14. Text Stroke Animation */
.text-stroke {
    -webkit-text-stroke: 2px #667eea;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.text-stroke:hover {
    -webkit-text-fill-color: #667eea;
    transform: scale(1.05);
}

/* 15. Particle Background Effect */
.particle-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(102, 126, 234, 0.5);
    border-radius: 50%;
    animation: particleFloat 6s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* 16. Interactive Hover Zones */
.hover-zone {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hover-zone::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hover-zone:hover::before {
    width: 300%;
    height: 300%;
}

/* Responsividade para novos efeitos */
@media (max-width: 768px) {
    /* Header mobile com novo layout */
    .hamburger {
        display: flex;
        margin-left: 0; /* Remove margem no mobile */
    }
    
    .nav-brand {
        left: 1rem; /* Ajusta posição no mobile */
    }
    
    .navbar {
        padding: 1rem;
        justify-content: flex-end; /* Mantém alinhamento à direita */
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 1.5rem;
        backdrop-filter: blur(15px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Stagger animation para itens do menu */
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }
    
    .tilt-card:hover {
        transform: scale(1.02);
    }
    
    .magnetic-btn:hover {
        transform: translateY(-2px) scale(1.02);
    }
    
    .reveal-text::after {
        animation-duration: 1s;
    }
    
    /* Nova seção CTA responsiva */
    .cta-header h2 {
        font-size: 2rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-content i {
        margin-bottom: 1rem;
    }
    
    /* Video fallback responsivo */
    .video-fallback-block {
        max-width: 100%;
        margin: 0 1rem;
    }
    
    .fallback-thumbnail {
        height: 200px;
    }
    
    .fallback-content {
        padding: 1.5rem;
    }
    
    .fallback-content h3 {
        font-size: 1.25rem;
    }
    
    .play-overlay {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Vídeo do Produto - YouTube */
.product-video-container {
    margin: 3rem 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.youtube-video {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.youtube-video:hover {
    transform: scale(1.02);
}

.video-caption {
    text-align: center;
    margin-top: 1rem;
}

.video-caption p {
    color: #fff;
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

/* Responsivo para o vídeo do YouTube */
@media (max-width: 768px) {
    .youtube-video {
        height: 250px;
    }
    
    .product-video-container {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .video-caption p {
        font-size: 1rem;
    }
}

/* ===== MELHORIAS DE ACESSIBILIDADE ===== */

/* Foco visível personalizado para todos os elementos interativos */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus,
[tabindex]:focus,
.hamburger:focus {
    outline: 3px solid #667eea;
    outline-offset: 2px;
    border-radius: 4px;
    box-shadow: 0 0 0 1px rgba(102, 126, 234, 0.3);
}

/* Foco já definido acima no padrão normalizado */

/* Foco para botões CTA */
.cta-button:focus {
    outline: 3px solid #fff;
    outline-offset: 3px;
    transform: translateY(-3px) scale(1.02);
}

/* Foco para botão de submit */
.submit-btn:focus {
    outline: 3px solid #667eea;
    outline-offset: 3px;
    transform: translateY(-2px);
    box-shadow: 
        0 0 0 1px rgba(102, 126, 234, 0.3),
        0 10px 25px rgba(102, 126, 234, 0.4);
}

/* Foco para campos de formulário */
.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Foco para links sociais */
.social-links a:focus {
    outline: 2px solid #667eea;
    outline-offset: 3px;
    transform: translateY(-2px) scale(1.1);
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
}

/* Foco para menu hambúrguer */
.hamburger:focus {
    outline: 2px solid #fff;
    outline-offset: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

/* Indicador visual para link ativo do menu */
.nav-menu a[aria-current="page"] {
    background: rgba(102, 126, 234, 0.15) !important;
    font-weight: 600;
    height: 40px;
    line-height: 1;
}

/* Link ativo quando header scrolled - mantém consistência */
.header.scrolled .nav-menu a[aria-current="page"],
.header.scrolled .nav-menu a.active {
    background: rgba(102, 126, 234, 0.15) !important;
    color: #fff !important;
    font-weight: 600;
}

/* Melhoria no contraste para botões em modo de alto contraste */
@media (prefers-contrast: high) {
    a:focus,
    button:focus,
    input:focus,
    textarea:focus {
        outline: 4px solid #000;
        outline-offset: 2px;
    }
    
    .nav-menu a:focus {
        outline: 3px solid #000;
        background: #fff;
        color: #000;
    }
}

/* Animações reduzidas para usuários que preferem menos movimento */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    /* Mantém apenas transições essenciais para foco */
    a:focus,
    button:focus,
    input:focus,
    textarea:focus {
        transition: outline 0.15s ease;
    }
}

/* ========== SEÇÃO FINAL CTA COM CARTÃO WHATSAPP ========== */

.final-cta-new {
    padding: 100px 20px 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.cta-content-new {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-header {
    text-align: center;
    margin-bottom: 4rem;
}

.cta-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-header p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
}

/* Container dos cartões de contato - centralizado */
.contact-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: 2rem 0;
}

/* Cartão de contato individual */
.contact-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    width: 340px;
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.whatsapp-card .contact-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
}

.contact-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.contact-card p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 240px;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
}

.whatsapp-btn:hover {
    background: #1EBE5D;
    transform: scale(1.05);
}

/* ========== SEÇÃO DE CONTATO COM BOTÃO WHATSAPP ========== */

.contact-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-header p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Container do botão WhatsApp */
.whatsapp-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 1.5rem;
    padding-bottom: 60px;
    text-align: center;
}

/* Botão grande do WhatsApp */
.whatsapp-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    padding: clamp(12px, 2vw, 20px) clamp(24px, 4vw, 44px);
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(14px, 2vw, 18px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    border: 2px solid rgba(102, 126, 234, 0.6);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    margin: 0 auto;
}

.whatsapp-btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.whatsapp-btn-large:hover::before {
    left: 100%;
}

.whatsapp-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4), 0 0 0 1px rgba(102, 126, 234, 0.3);
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    border-color: rgba(102, 126, 234, 0.8);
}

.whatsapp-btn-large i {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-btn-large:hover i {
    transform: translateX(5px) scale(1.1);
}

.whatsapp-btn-large span {
    font-weight: 600;
    line-height: 1;
}

/* Texto abaixo do botão */
.whatsapp-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-style: italic;
}

/* ========== RESPONSIVIDADE PARA MOBILE ========== */

/* Tablets e telas médias */
@media (max-width: 1024px) {
    .header {
        padding-left: 320px;
    }
    
    .hero-fixed {
        padding: 0 2rem;
        max-width: 600px;
    }
    
    .hero-fixed h1 {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    }
    
    .about-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-video-container {
        margin-left: 0;
        max-width: 100%;
    }
}

/* Ajustes para resolução 1366x768 e similares */
@media (min-width: 1280px) and (max-width: 1440px) {
    .hero-fixed {
        padding: 0 max(3rem, 48px);
        max-width: 650px;
    }
}

/* Ajustes para resolução 1920x1080 e maiores */
@media (min-width: 1920px) {
    .hero-fixed {
        padding: 0 5rem;
        max-width: 750px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header {
        padding-left: 20px;
    }
    
    .hero-inner {
        padding-top: 72px;
        padding-bottom: var(--hero-bottom-pad, 120px); /* Menos espaço em mobile */
    }
    
    .hero-fixed {
        top: 72px;
        padding: 0 1.5rem;
        max-width: 100%;
    }
    
    .hero-fixed h1 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .hero-subtitle {
        font-size: clamp(0.875rem, 2.5vw, 1rem);
    }
    
    .hero-kicker {
        font-size: clamp(0.8rem, 2vw, 0.9rem);
    }
    
    .benefit-item {
        font-size: clamp(0.8rem, 2vw, 0.95rem);
    }
    
    /* Botão WhatsApp responsivo */
    .whatsapp-btn-large {
        width: 260px;
        height: 56px;
        font-size: 1rem;
    }
    
    .whatsapp-btn-large i {
        font-size: 1.5rem;
    }
    
    .whatsapp-subtitle {
        font-size: 0.875rem;
        padding: 0 20px;
    }
    
    .contact-section {
        padding: 60px 20px 40px 20px; /* Padding inferior reduzido */
    }
    
    .whatsapp-cta-container {
        padding-bottom: 40px; /* Reduzido em mobile */
    }
    
    /* Menu mobile - manter consistência */
    .nav-menu {
        height: auto;
        gap: 16px;
    }
    
    .nav-menu a {
        height: 40px;
        line-height: 1;
        padding: 8px 14px;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        height: 40px;
        padding: 8px 14px;
    }
}

/* ========== ABOUT VIDEO CONTAINER STYLES ========== */

.about-video-container {
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    text-align: left;
}

.about-video-title {
    font-size: 1.45rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.about-video-subtitle {
    font-size: 1rem;
    opacity: .85;
    margin-bottom: 18px;
}

.responsive-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    margin-bottom: 16px;
}

.responsive-video-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: none;
    border-radius: 16px;
}

.about-video-cta {
    display: inline-block;
    background: #25D366;
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(0,0,0,0.20);
    transition: transform .25s ease, box-shadow .25s ease;
}

.about-video-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.26);
}

.about-video-note {
    font-size: .92rem;
    opacity: .75;
    margin-top: 10px;
}

@media (max-width: 1024px) {
    .about-content {
        flex-direction: column;
        gap: 40px;
    }
    .about-video-container {
        margin-left: 0;
        max-width: 100%;
    }
}

/* ========== CTA VIDEO - HOVER ROXO FIXO ========== */

.cta-video:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
    color: #fff !important;
    border-color: rgba(102, 126, 234, 0.8) !important;
}

/* ========== FAQ SECTION STYLES ========== */

.faq-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #ebe6ff 0%, #f3ecff 50%, #ede7ff 100%);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.3), transparent);
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto 60px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* FAQ Item */
.faq-item {
    border: 1.5px solid rgba(102, 126, 234, 0.15);
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.12);
}

.faq-item.active {
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.15);
}

/* FAQ Trigger Button */
.faq-trigger {
    width: 100%;
    padding: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
    text-align: left;
}

.faq-trigger:focus {
    outline: 2px solid rgba(102, 126, 234, 0.5);
    outline-offset: -2px;
}

.faq-trigger:hover {
    background-color: rgba(102, 126, 234, 0.03);
}

.faq-item.active .faq-trigger {
    background-color: rgba(102, 126, 234, 0.05);
}

.faq-header-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.faq-icon {
    font-size: 1.5rem;
    color: #6c63ff;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.faq-item.active .faq-icon {
    color: #5f54e8;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question {
    color: #5f54e8;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 8px;
    background-color: rgba(102, 126, 234, 0.1);
    color: #6c63ff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
}

.faq-trigger:hover .faq-toggle {
    background-color: rgba(102, 126, 234, 0.2);
}

.faq-item.active .faq-toggle {
    background-color: #6c63ff;
    color: #fff;
    transform: rotate(180deg);
}

/* FAQ Content */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-content {
    max-height: 1000px;
}

.faq-text {
    padding: 0 24px 24px 24px;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.8;
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA After FAQ */
.faq-cta {
    text-align: center;
    padding: 40px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(95, 84, 232, 0.08) 100%);
    border: 1.5px solid rgba(102, 126, 234, 0.2);
    margin-top: 40px;
}

.faq-cta p {
    font-size: 1.1rem;
    color: #1a1a2e;
    margin-bottom: 20px;
    font-weight: 500;
}

.faq-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 16px;
    }

    .faq-header h2 {
        font-size: 2rem;
    }

    .faq-subtitle {
        font-size: 1rem;
    }

    .faq-trigger {
        padding: 20px;
    }

    .faq-header-content {
        gap: 12px;
    }

    .faq-icon {
        font-size: 1.3rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-text {
        padding: 0 20px 20px 20px;
        font-size: 0.95rem;
    }

    .faq-cta {
        padding: 30px 20px;
    }

    .faq-cta p {
        font-size: 1rem;
        margin-bottom: 16px;
    }
}

/* ========== LIVE NOTIFICATIONS BALLOONS ========== */

.notifications-container {
    position: relative;
    width: 100%;
    padding: 80px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f7ff 100%);
}

.notifications-column {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.notification-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 50px;
    font-size: 1.5rem;
    color: #1a1a2e;
    font-weight: 600;
}

.notification-title i {
    color: #6c63ff;
    font-size: 2rem;
}

.balloons-area {
    position: relative;
    height: 400px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.1);
    overflow: hidden;
    padding: 20px;
}

/* Estilo do Balão */
.notification-balloon {
    position: absolute;
    bottom: 0;
    left: 20px;
    background: linear-gradient(135deg, #6c63ff 0%, #7b7fff 100%);
    color: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.25);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    max-width: 280px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.notification-balloon.light {
    background: linear-gradient(135deg, #a8a1ff 0%, #b8b0ff 100%);
    box-shadow: 0 4px 15px rgba(168, 161, 255, 0.3);
}

/* Flag do País */
.balloon-flag {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Ícone do Serviço */
.balloon-icon {
    font-size: 0.9rem;
    flex-shrink: 0;
    opacity: 0.9;
}

/* Conteúdo do Balão */
.balloon-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Serviço no Balão */
.balloon-service {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Número no Balão */
.balloon-number {
    font-size: 0.8rem;
    opacity: 0.85;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.3px;
}

/* Animação de Subida */
@keyframes floatUp {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        transform: translateY(-420px) translateX(0);
        opacity: 0;
    }
}

/* Animação Alternativa com Movimento Horizontal */
@keyframes floatUpSide {
    0% {
        transform: translateY(0) translateX(-30px);
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        transform: translateY(-420px) translateX(30px);
        opacity: 0;
    }
}

/* Variação de Posição Horizontal */
.notification-balloon.pos-left {
    left: 20px;
}

.notification-balloon.pos-center {
    left: 50%;
    transform: translateX(-50%);
}

.notification-balloon.pos-right {
    left: auto;
    right: 20px;
}

/* Duração Aleatória */
.notification-balloon.duration-slow {
    animation: floatUp 10s ease-out forwards;
}

.notification-balloon.duration-medium {
    animation: floatUp 8s ease-out forwards;
}

.notification-balloon.duration-fast {
    animation: floatUp 6s ease-out forwards;
}

.notification-balloon.side-left {
    animation: floatUpSide 9s ease-out forwards;
}

.notification-balloon.side-right {
    animation: floatUpSide 7s ease-out forwards;
}

/* Variação de Tamanho */
.notification-balloon.size-small {
    padding: 12px 16px;
    font-size: 0.85rem;
}

.notification-balloon.size-large {
    padding: 18px 24px;
    font-size: 1rem;
}

/* Responsivo */
@media (max-width: 768px) {
    .notifications-container {
        padding: 60px 16px;
    }

    .balloons-area {
        height: 300px;
        padding: 16px;
    }

    .notification-title {
        font-size: 1.25rem;
        margin-bottom: 40px;
    }

    .notification-balloon {
        max-width: 200px;
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .notification-balloon.pos-left {
        left: 16px;
    }

    .notification-balloon.pos-right {
        right: 16px;
    }

    @keyframes floatUp {
        0% {
            transform: translateY(0) translateX(0);
            opacity: 1;
        }
        85% {
            opacity: 1;
        }
        100% {
            transform: translateY(-320px) translateX(0);
            opacity: 0;
        }
    }

    @keyframes floatUpSide {
        0% {
            transform: translateY(0) translateX(-20px);
            opacity: 1;
        }
        85% {
            opacity: 1;
        }
        100% {
            transform: translateY(-320px) translateX(20px);
            opacity: 0;
        }
    }
}

/* ========== LIVE PROOF SECTION ========== */

.live-proof-section {
    margin: 120px 0;
    padding: 80px 0;
    background: linear-gradient(
        180deg,
        #f3f1ff 0%,
        #e8e6ff 20%,
        #d9d6ff 45%,
        #c8c4ff 70%,
        #b9b4ff 100%
    );
    background-attachment: fixed;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.live-proof-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 50% 0%,
        rgba(108, 99, 255, 0.25),
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

.live-proof-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.live-proof-header h2 {
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.live-proof-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.live-proof-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Top: Notifications (100% width) */
.live-proof-notifications {
    position: relative;
    width: 100%;
}

.live-proof-column {
    position: relative;
}

.live-proof-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 1.3rem;
    color: #1a1a2e;
    font-weight: 600;
}

.live-proof-title i {
    color: #6c63ff;
    font-size: 1.8rem;
}

.live-balloons-area {
    min-height: 380px;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 30px 20px;
    box-shadow: none !important;
    border: none !important;
    overflow: visible !important;
    position: relative;
    width: 100%;
}

/* Bottom: Slider (centered, max-width 520px) */
.live-proof-slider {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.live-proof-slider .swiper-wrapper-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(108, 99, 255, 0.15);
    background: linear-gradient(135deg, #f4f0ff 0%, #ede8ff 100%);
    border: 1px solid rgba(108, 99, 255, 0.1);
}

/* Swiper config for 1.2 slides view */
.live-proof-slider .mySwiper {
    padding: 20px 0;
}

.live-proof-slider .swiper-wrapper {
    align-items: center;
}

.live-proof-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
}

.live-proof-slider .slide-image-container {
    width: 100%;
    max-width: 280px;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(108, 99, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    aspect-ratio: 9/16;
    background: #f8f7ff;
}

.live-proof-slider .slide-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-proof-slider .slide-image-container:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(108, 99, 255, 0.3);
}

/* Responsive - Live Proof Section */
@media (max-width: 1024px) {
    .live-proof-content {
        gap: 40px;
    }

    .live-proof-header h2 {
        font-size: 2rem;
    }

    .live-balloons-area {
        min-height: 320px;
    }

    .live-proof-slider {
        max-width: 480px;
    }
}

@media (max-width: 768px) {
    .live-proof-section {
        padding: 60px 0;
        margin: 80px 0;
    }

    .live-proof-header {
        margin-bottom: 60px;
    }

    .live-proof-header h2 {
        font-size: 1.75rem;
    }

    .live-proof-subtitle {
        font-size: 1rem;
    }

    .live-proof-title {
        font-size: 1.25rem;
        margin-bottom: 30px;
        padding: 0;
    }

    .live-balloons-area {
        min-height: 240px;
        padding: 20px;
    }

    .live-proof-slider {
        max-width: 100%;
        width: 100%;
        padding: 0 10px;
    }

    .live-proof-slider .slide-image-container {
        max-width: 240px;
    }
}

/* ========== NOTIFICATIONS AND SLIDER LAYOUT (LEGACY - DEPRECATED) ========== */

.notifications-and-slider {
    display: none; /* Hidden - use live-proof-section instead */
}

/* Screenshots Slider */
.screenshots-container {
    position: relative;
    width: 100%;
}

.screenshots-column {
    position: relative;
}

.screenshots-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 50px;
    font-size: 1.5rem;
    color: #1a1a2e;
    font-weight: 600;
}

.screenshots-title i {
    color: #6c63ff;
    font-size: 2rem;
}

.swiper-wrapper-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(108, 99, 255, 0.15);
    background: linear-gradient(135deg, #f4f0ff 0%, #ede8ff 100%);
}

.mySwiper {
    width: 100%;
    height: auto;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
}

.slide-image-container {
    width: 100%;
    max-width: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(108, 99, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    aspect-ratio: 9/16;
}

.slide-image-container:hover {
    transform: scale(0.98);
    box-shadow: 0 8px 24px rgba(108, 99, 255, 0.3);
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Swiper Navigation Buttons */
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #6c63ff 0%, #7b7fff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(108, 99, 255, 0.3);
    border: none;
    color: white;
    font-size: 18px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: linear-gradient(135deg, #7b7fff 0%, #8a85ff 100%);
    box-shadow: 0 6px 16px rgba(108, 99, 255, 0.4);
    transform: translateY(-50%) scale(1.05);
}

.swiper-button-prev {
    left: -60px;
}

.swiper-button-next {
    right: -60px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: '';
    font-size: 20px;
    color: white;
}

/* Swiper Pagination */
.swiper-pagination {
    position: relative;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(108, 99, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: linear-gradient(135deg, #6c63ff 0%, #7b7fff 100%);
    width: 24px;
    border-radius: 4px;
}

/* Modal Fullscreen para Imagem */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-modal.active {
    display: flex;
    opacity: 1;
}

.image-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    animation: zoomIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.image-modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.image-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Responsivo */
@media (max-width: 1024px) {
    .notifications-and-slider {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .swiper-button-prev {
        left: 10px;
    }
    
    .swiper-button-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .notifications-and-slider {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-top: 60px;
    }
    
    .screenshots-title {
        font-size: 1.25rem;
        margin-bottom: 40px;
    }
    
    .swiper-wrapper-container {
        border-radius: 12px;
    }
    
    .slide-image-container {
        max-width: 240px;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .swiper-button-prev {
        left: 5px;
    }
    
    .swiper-button-next {
        right: 5px;
    }
    
    .image-modal-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
}

/* ========================================
   AJUSTES MOBILE ADICIONAIS
   Melhorias gerais para responsividade
======================================== */

@media (max-width: 768px) {
    /* Hero Section - Ajustes de texto e espaçamento */
    .hero h1 {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.95rem, 4vw, 1.1rem);
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .hero-benefits {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-benefits .benefit-item {
        font-size: 0.9rem;
        padding: 0.5rem;
    }
    
    .hero-benefits .benefit-item i {
        font-size: 1rem;
        min-width: 20px;
    }
    
    .hero-kicker {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 14px 24px;
        font-size: 1rem;
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    
    .social-proof {
        margin-top: 2rem;
        padding: 1.5rem 1rem;
    }
    
    .proof-text {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .proof-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* About Section - Melhorias de layout */
    .about {
        padding: 60px 20px;
    }
    
    .about-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .about-stats .stat {
        text-align: center;
        padding: 1.5rem;
    }
    
    .about-stats .stat h3 {
        font-size: 2rem;
    }
    
    .about-stats .stat p {
        font-size: 0.95rem;
    }
    
    /* Benefits Section - Cards responsivos */
    .benefits {
        padding: 60px 20px;
    }
    
    .benefits h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .benefits-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-card .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .benefit-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .benefit-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Live Proof Section - Ajustes */
    .live-proof-section {
        padding: 60px 20px;
    }
    
    .live-proof-header h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .live-proof-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .live-proof-content {
        gap: 2rem;
    }
    
    .live-proof-title {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .live-proof-title i {
        font-size: 1.3rem;
    }
    
    .balloons-area {
        height: 300px;
        padding: 15px;
    }
    
    /* About Video - Responsividade */
    .about-video-container {
        padding: 1.5rem;
    }
    
    .about-video-title {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .about-video-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .responsive-video-wrapper {
        margin-bottom: 1.5rem;
    }
    
    .about-video-note {
        font-size: 0.9rem;
        margin-top: 1rem;
    }
    
    /* Contact Section */
    .contact {
        padding: 60px 20px;
    }
    
    .contact h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        font-size: 1rem;
        padding: 12px 16px;
    }
    
    .submit-btn {
        padding: 14px 24px;
        font-size: 1rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    /* Ajustes extras para telas muito pequenas */
    .hero h1 {
        font-size: 1.4rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-benefits .benefit-item {
        font-size: 0.85rem;
    }
    
    .cta-button {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .navbar {
        padding: 0 1rem;
    }
    
    .nav-brand h2 {
        font-size: 1.3rem;
    }
    
    .about,
    .benefits,
    .live-proof-section,
    .contact {
        padding: 40px 16px;
    }
    
    .benefit-card {
        padding: 1.25rem;
    }
    
    .benefit-card .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* Ajustes MOBILE gerais */
@media (max-width: 768px) {
  /* Botão principal do topo e do contato */
  .whatsapp-btn-large {
    padding: 0.9rem 1.4rem;
    font-size: 0.95rem;
    white-space: normal;      /* deixa o texto quebrar */
  }

  .whatsapp-btn-large span {
    display: inline-block;
    max-width: 220px;         /* limita a largura do texto */
    line-height: 1.3;
    text-align: center;
  }
}

