/* ==========================================================================
   CSS Custom - Carvalho Publicidade & Marketing
   ========================================================================== */

:root {
    /* Color Palette */
    --space-black: #020107;
    --polar-white: #FFFFFF;
    --cosmic-pink: #C870F0;
    --midnight-purple: #4D00FF;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--midnight-purple) 0%, var(--cosmic-pink) 100%);
    --gradient-glow: linear-gradient(90deg, var(--midnight-purple), var(--cosmic-pink), var(--midnight-purple));
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    
    /* Spacing & Layout */
    --container-width: 1200px;
    --section-padding: 100px 0;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
    font-family: var(--font-primary);
    background-color: var(--space-black);
    color: var(--polar-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

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

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

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-inline: auto;
}

/* ==========================================================================
   Background & Glow Effects
   ========================================================================== */
.bg-glows {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    animation: floatGlow 10s infinite alternate ease-in-out;
}

.glow-purple {
    background: var(--midnight-purple);
    top: -10%;
    left: -10%;
}

.glow-pink {
    background: var(--cosmic-pink);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* ==========================================================================
   Glassmorphism
   ========================================================================== */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 20px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--polar-white);
    position: relative;
    z-index: 1;
    background-size: 200% auto;
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-2px);
}

.btn-glow {
    position: relative;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: var(--gradient-glow);
    background-size: 400%;
    z-index: -1;
    filter: blur(10px);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    border-radius: 50px;
}

.btn-glow:hover::before {
    opacity: 0.7;
    animation: animateGlow 8s linear infinite;
}

@keyframes animateGlow {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

.btn-secondary {
    background: rgba(255,255,255,0.05);
    color: var(--polar-white);
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--polar-white);
    border: 1px solid var(--midnight-purple);
}

.btn-outline:hover {
    background: var(--midnight-purple);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   Header / Navbar
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(2, 1, 7, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.logo-mark {
    height: 46px;
    width: auto;
    display: block;
}

/* Logo completa no rodapé */
.footer-logo img {
    height: 150px;
    width: auto;
    max-width: 100%;
    display: block;
}

.logo-dot {
    color: var(--cosmic-pink);
    font-size: 2rem;
    line-height: 0;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--polar-white);
    cursor: pointer;
    font-size: 1.5rem;
}

/* Botão WhatsApp dentro do menu mobile (oculto no desktop) */
.nav-whatsapp-link {
    display: none;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px; /* Offset nav */
    position: relative;
}

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

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

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    max-width: 600px;
    margin-inline: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
}

/* ==========================================================================
   Sobre
   ========================================================================== */
.sobre {
    padding: var(--section-padding);
}

.sobre-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-text {
    padding-right: 40px;
}

.sobre-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sobre-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: var(--transition-smooth);
}

.sobre-card:hover {
    background: rgba(255,255,255,0.05);
    transform: translateX(10px);
    border-color: rgba(200, 112, 240, 0.3);
}

.card-icon {
    color: var(--cosmic-pink);
    margin-bottom: 8px;
}

/* ==========================================================================
   Serviços
   ========================================================================== */
.servicos {
    padding: var(--section-padding);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.servico-card {
    padding: 40px 30px;
    text-align: left;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(200, 112, 240, 0.15), transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.servico-card:hover {
    transform: translateY(-10px);
    border-color: rgba(200, 112, 240, 0.5);
    box-shadow: 0 10px 40px rgba(77, 0, 255, 0.2);
}

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

.s-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(77, 0, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cosmic-pink);
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.servico-card:hover .s-icon {
    background: var(--gradient-primary);
    color: var(--polar-white);
    transform: scale(1.1) rotate(5deg);
}

.servico-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.servico-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

/* ==========================================================================
   Resultados
   ========================================================================== */
.resultados {
    padding: var(--section-padding);
}

.resultados-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.res-text p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 12px;
}

.res-support {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

.res-counters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.counter-box {
    padding: 30px 20px;
    text-align: center;
}

.counter-box h4 {
    display: inline-block;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.counter-box span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--cosmic-pink);
}

.counter-box p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-top: 10px;
}

/* ==========================================================================
   Video Section
   ========================================================================== */
.video-section {
    padding: 60px 0 100px;
}

.video-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(2, 1, 7, 0.6);
    transition: var(--transition-smooth);
}

.video-wrapper:hover .video-placeholder::before {
    background: rgba(2, 1, 7, 0.4);
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--polar-white);
    font-size: 2rem;
    z-index: 2;
    margin-bottom: 24px;
    transition: transform var(--transition-smooth);
    box-shadow: 0 0 40px rgba(200, 112, 240, 0.5);
}

.video-wrapper:hover .play-btn {
    transform: scale(1.1);
}

.video-text {
    z-index: 2;
    text-align: center;
}

/* ==========================================================================
   Como Funciona
   ========================================================================== */
.como-funciona {
    padding: var(--section-padding);
}

.fluxo-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 60px;
    position: relative;
}

.fluxo-line {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--midnight-purple), var(--cosmic-pink));
    margin-top: 40px;
    opacity: 0.3;
}

.fluxo-step {
    flex-basis: 22%;
    text-align: center;
}

.step-num {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--cosmic-pink);
    position: relative;
    box-shadow: var(--glass-shadow);
}

.step-num::after {
    content: '';
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    border: 2px dashed var(--midnight-purple);
    border-radius: 50%;
    animation: spin 10s linear infinite;
    opacity: 0.5;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.fluxo-step h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.fluxo-step p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* ==========================================================================
   Depoimentos
   ========================================================================== */
.depoimentos {
    padding: var(--section-padding);
    overflow: hidden;
}

.depoimentos-carousel {
    margin-top: 50px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.depo-track {
    display: flex;
    align-items: stretch;
    gap: 30px;
    width: max-content;
    padding: 14px 0 44px;
    animation: scrollDepos 45s linear infinite;
}

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

.depo-card {
    width: 360px;
    flex: 0 0 360px;
    padding: 40px 30px;
}

@keyframes scrollDepos {
    /* -50% leva a uma emenda de meio-gap; o -15px (metade do gap de 30px) corrige */
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

.stars {
    color: #FFD700;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.star-filled {
    fill: #FFD700;
}

.depo-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
}

.cliente-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.c-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.cliente-info h4 {
    margin-bottom: 2px;
    font-size: 1rem;
}

.cliente-info span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* --- Depoimentos em Vídeo (Reels / Instagram 9:16) --- */
.depo-videos-head {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 50px;
}

.depo-videos-title {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-top: 10px;
    margin-bottom: 12px;
}

.depo-videos-sub {
    color: rgba(255,255,255,0.65);
    font-size: 1.05rem;
}

.depo-videos-carousel-wrap {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.depo-videos-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 4px 20px;
    scrollbar-width: none; /* Firefox */
}

.depo-videos-carousel::-webkit-scrollbar {
    display: none; /* Chrome */
}

.depo-video {
    position: relative;
    flex: 0 0 auto;
    width: 280px;
    aspect-ratio: 9 / 16;
    scroll-snap-align: center;
    border-radius: 20px;
    overflow: hidden;
    background: #08060f;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

/* Setas de navegação do carrossel de vídeos */
.dv-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: rgba(20, 12, 35, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glass-shadow);
    transition: background var(--transition-fast), transform var(--transition-fast), opacity var(--transition-fast);
}

.dv-nav:hover {
    background: var(--gradient-primary);
}

.dv-nav-prev { left: -10px; }
.dv-nav-next { right: -10px; }

.dv-nav svg {
    width: 26px;
    height: 26px;
}

.dv-nav:disabled {
    opacity: 0;
    pointer-events: none;
}

.depo-video:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 112, 240, 0.4);
}

.depo-video-el {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.depo-video-overlay {
    position: absolute;
    inset: 0;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to top, rgba(2,1,7,0.55), rgba(2,1,7,0.1) 45%, rgba(2,1,7,0.25));
    transition: opacity var(--transition-smooth);
}

.depo-video.is-playing .depo-video-overlay {
    opacity: 0;
    pointer-events: none;
}

.dv-play {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(77, 0, 255, 0.5);
    transition: transform var(--transition-fast);
}

.depo-video-overlay:hover .dv-play {
    transform: scale(1.08);
}

.dv-play svg {
    width: 28px;
    height: 28px;
    fill: #fff;
    color: #fff;
    margin-left: 3px;
}

/* --- Lightbox de Depoimentos em Vídeo (expandir ao clicar) --- */
.depo-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.depo-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.depo-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 1, 7, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.depo-lightbox-stage {
    position: relative;
    z-index: 1;
    height: min(85vh, 720px);
    aspect-ratio: 9 / 16;
    max-width: 92vw;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(77, 0, 255, 0.35);
    transform: scale(0.85);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease;
}

.depo-lightbox.is-open .depo-lightbox-stage {
    transform: scale(1);
    opacity: 1;
}

.depo-lightbox-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #000;
}

.depo-lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.depo-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: rotate(90deg);
}

.depo-lightbox-close svg {
    width: 24px;
    height: 24px;
}

/* ==========================================================================
   CTA Final
   ========================================================================== */
.cta-final {
    padding: 100px 0;
}

.cta-box {
    padding: 80px 40px;
    text-align: center;
    border-color: rgba(200, 112, 240, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(77, 0, 255, 0.15), transparent 50%);
    z-index: -1;
    animation: pulseBg 4s ease-in-out infinite alternate;
}

@keyframes pulseBg {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.1); opacity: 1; }
}

.cta-box h2 {
    font-size: 3.5rem;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}

.lead-form {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: var(--polar-white);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cosmic-pink);
    background: rgba(255,255,255,0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.5;
}

.form-submit {
    width: 100%;
    padding: 16px 26px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 80px;
    background: linear-gradient(to top, rgba(2,1,7,1), rgba(2,1,7,0));
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    margin-top: 16px;
    max-width: 300px;
}

.footer h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
}

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

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--polar-white);
    font-size: 16px;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.social-icons a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer-contact p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
}

/* ==========================================================================
   Animations (Intersection Observer Classes)
   ========================================================================== */
/* Conteúdo visível por padrão. Só escondemos para animar quando o JS está
   ativo (html.js). Assim, se o JS falhar ou for bloqueado (ex.: Safari com
   bloqueador de conteúdo), nada fica invisível e o site sempre abre. */
.reveal {
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

html.js .reveal {
    opacity: 0;
    transform: translateY(30px);
}

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

/* Failsafe: se o script.js externo não rodar (navegador in-app, bloqueador,
   falha de rede), o script inline da <head> adiciona .reveal-all e forçamos
   TODO o conteúdo a aparecer — o site nunca fica em branco. */
html.reveal-all .reveal {
    opacity: 1 !important;
    transform: none !important;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .sobre-container, .resultados-content { grid-template-columns: 1fr; gap: 40px; }
    .servicos-grid { grid-template-columns: repeat(2, 1fr); }
    .res-counters { justify-content: center; }
}

@media (max-width: 768px) {
    :root { --section-padding: 60px 0; }
    .hero-title { font-size: 2.8rem; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .stat-divider { width: 100px; height: 1px; }

    .nav-links, .nav-btn { display: none; }
    .menu-toggle { display: block; }

    .servicos-grid { grid-template-columns: 1fr; }
    .res-counters { grid-template-columns: 1fr; }

    /* Contadores mobile */
    .counter-box h4 { font-size: 2.8rem; }
    .counter-box span { font-size: 1.6rem; }

    /* Section titles menores no mobile */
    .section-title { font-size: 2rem; letter-spacing: -0.5px; }

    /* Hero buttons: permite quebra de linha em telas menores */
    .hero-buttons { flex-wrap: wrap; }

    /* Propósito: ajusta fonte no mobile */
    .res-lead { font-size: 1.05rem; }
    .res-support { font-size: 0.95rem; }

    .fluxo-grid { flex-direction: column; align-items: center; gap: 30px; }
    .fluxo-line { width: 2px; height: 40px; margin-top: 0; }

    .cta-box h2 { font-size: 2.2rem; }
    .cta-box { padding: 40px 20px; }

    .footer-container { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .footer-brand p { margin-inline: auto; }
    .footer-logo { justify-content: center; }
    .social-icons { justify-content: center; }
    .footer-contact p { justify-content: center; }

    /* Mobile Menu Open State */
    .nav-links.mobile-open {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(2, 1, 7, 0.97);
        padding: 20px 24px 30px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        gap: 0;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .nav-links.mobile-open a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        font-size: 1.1rem;
    }
    .nav-links.mobile-open a.nav-whatsapp-link {
        border-bottom: none;
        padding: 0;
    }

    /* FAQ mobile */
    .faq-question { padding: 18px 20px; font-size: 0.95rem; }
    .faq-answer p { padding: 0 20px 20px; }

    /* WhatsApp float mobile */
    .whatsapp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; font-size: 24px; }
    .whatsapp-tooltip { display: none; }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.mt-4 { margin-top: 1.5rem; }

/* ==========================================================================
   Mobile Menu Icon Toggle
   ========================================================================== */
.menu-toggle .icon-close { display: none; }
.menu-toggle.is-active .icon-close { display: flex; }
.menu-toggle.is-active .icon-menu { display: none; }

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

/* ==========================================================================
   Client Logos Strip
   ========================================================================== */
.clientes {
    padding: 50px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

.clientes-label {
    text-align: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: rgba(255,255,255,0.3);
    margin-bottom: 28px;
}

.logos-strip {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.logos-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: scrollLogos 40s linear infinite;
}

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

.logo-img {
    flex-shrink: 0;
    max-height: 48px;
    max-width: 165px;
    width: auto;
    height: auto;
    object-fit: contain;
    /* PNGs já com fundo transparente (processados de empresas/*.jpg) */
    filter: grayscale(100%);
    opacity: 0.55;
    transition: filter 0.4s ease, opacity 0.4s ease;
    user-select: none;
    -webkit-user-drag: none;
}

.logo-img:hover {
    filter: grayscale(0);
    opacity: 1;
}

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

@media (max-width: 768px) {
    .logos-track { gap: 28px; }
    .logo-img { max-height: 38px; max-width: 120px; }
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq {
    padding: var(--section-padding);
}

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

.faq-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color var(--transition-smooth);
}

.faq-item:hover,
.faq-item.is-open { border-color: rgba(200, 112, 240, 0.35); }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--polar-white);
    font-size: 1.05rem;
    font-weight: 600;
    font-family: var(--font-primary);
    text-align: left;
    gap: 16px;
}

.faq-question span { flex: 1; }

.faq-chevron {
    flex-shrink: 0;
    color: var(--cosmic-pink);
    transition: transform var(--transition-smooth);
    width: 20px;
    height: 20px;
}

.faq-item.is-open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    padding: 0 28px 24px;
    font-size: 0.97rem;
    margin: 0;
}

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

/* ==========================================================================
   WhatsApp Flutuante
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 62px;
    height: 62px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    z-index: 990;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    animation: popIn 0.5s 1.5s both cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 36px rgba(37, 211, 102, 0.6);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    background: #25D366;
    animation: pulseRing 2.5s ease-out infinite;
    z-index: -1;
}

@keyframes pulseRing {
    0%   { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}

@keyframes popIn {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.whatsapp-tooltip {
    position: absolute;
    right: 74px;
    background: rgba(5, 5, 15, 0.92);
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateX(8px);
    border: 1px solid rgba(255,255,255,0.1);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 0; height: 0;
    border: 5px solid transparent;
    border-left-color: rgba(5, 5, 15, 0.92);
    border-right: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================================================
   Toast Notification System
   ========================================================================== */
#toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: rgba(8, 8, 18, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
    border-left: 3px solid var(--cosmic-pink);
    border-radius: 12px;
    padding: 16px 20px;
    min-width: 300px;
    max-width: 380px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    pointer-events: all;
    cursor: pointer;
    animation: toastIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.toast.toast-success { border-left-color: #25D366; }
.toast.toast-error   { border-left-color: #FF4444; }

.toast-icon {
    flex-shrink: 0;
    margin-top: 1px;
    width: 20px;
    height: 20px;
}

.toast.toast-success .toast-icon { color: #25D366; }
.toast.toast-error   .toast-icon { color: #FF4444; }
.toast .toast-icon              { color: var(--cosmic-pink); }

.toast-body { flex: 1; min-width: 0; }
.toast-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 3px; }
.toast-message { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.5; }

.toast.toast-exit { animation: toastOut 0.3s ease forwards; }

@keyframes toastIn {
    from { transform: translateX(120%); opacity: 0; }
    to   { transform: translateX(0);    opacity: 1; }
}

@keyframes toastOut {
    from { transform: translateX(0);    opacity: 1; max-height: 200px; margin-bottom: 0; }
    to   { transform: translateX(120%); opacity: 0; max-height: 0;     padding: 0; margin-bottom: -10px; }
}

/* ==========================================================================
   Video Modal
   ========================================================================== */
.video-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.video-modal-backdrop {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(2, 1, 7, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    z-index: 1;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.video-modal-close:hover { background: rgba(255,255,255,0.2); transform: scale(1.1); }

.video-modal-iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}

.video-modal-iframe-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   REDESIGN — Hero Split Layout
   ========================================================================== */
.hero { position: relative; }

.hero-bg-grid {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.032) 1px, transparent 1px);
    background-size: 38px 38px;
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 56px;
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 100px);
}

/* Override the default centered hero-content */
.hero-content {
    flex: 1;
    min-width: 0;       /* Impede overflow no flex */
    max-width: none;    /* Cresce com o espaço disponível */
    text-align: left;
    margin: 0;
    overflow: hidden;   /* Garante que título não vaza sobre os cards */
}

.hero-subtitle  { margin-inline: 0; text-align: left; max-width: 520px; }
.hero-buttons   { justify-content: flex-start; }

/* New typographic lines */
.hero-title { margin-bottom: 20px; }

.hero-title .ht-top {
    display: block;
    /* 5vw = ~57px em 1140px → "TRANSFORMAMOS" fica ~556px no espaço de ~686px disponível */
    font-size: clamp(2.2rem, 5vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.04em;   /* letter-spacing relativo ao font-size, sempre proporcional */
    line-height: 0.88;
    margin-bottom: 6px;
    white-space: nowrap;        /* Mantém numa linha, não quebra */
}

.hero-title .ht-mid {
    display: block;
    font-size: 1.75rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.4);
    margin: 10px 0 4px;
    line-height: 1;
}

.hero-title .ht-bottom {
    display: block;
    font-size: clamp(2rem, 3.2vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.05;
}

/* Floating metric cards */
.hero-visual {
    flex: 0 0 350px;
    position: relative;
    height: 430px;
    flex-shrink: 0;
}

.metric-card {
    position: absolute;
    padding: 18px 22px;
    border-radius: 18px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.metric-card:hover {
    transform: rotate(0deg) translateY(-8px) !important;
    box-shadow: 0 16px 48px rgba(77,0,255,0.25) !important;
    z-index: 2;
}

.mc-icon-wrap {
    width: 32px; height: 32px;
    border-radius: 9px;
    background: var(--gradient-primary);
    display: flex; align-items: center; justify-content: center;
    color: white;
    margin-bottom: 10px;
}

.mc-icon-wrap svg { width: 15px; height: 15px; }

.mc-value {
    display: block;
    font-size: 1.85rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 4px;
}

.mc-label {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.42);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    line-height: 1.3;
}

.mc-1 { top: 16px;  left: 8px;  width: 205px; transform: rotate(-4deg); border-color: rgba(200,112,240,0.3) !important; }
.mc-2 { top: 55px;  right: 0;   width: 155px; transform: rotate(3deg);  }
.mc-3 { bottom: 95px; left: 0;  width: 158px; transform: rotate(-2deg); }
.mc-4 { bottom: 12px; right: 8px; width: 168px; transform: rotate(2.5deg); }

/* ==========================================================================
   REDESIGN — Sobre: Visual Card + Features inline
   ========================================================================== */
.sobre-container { align-items: stretch; }

/* Override padding-right do lado texto */
.sobre-text { padding-right: 0; padding-left: 20px; }

.section-eyebrow {
    display: block;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--cosmic-pink);
    margin-bottom: 14px;
    font-weight: 600;
}

.section-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 0;
}

/* Visual data card */
.sobre-visual {
    position: relative;
    padding: 32px;
    overflow: hidden;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sv-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    z-index: 0;
}

.sv-glow-1 { width: 220px; height: 220px; background: rgba(77,0,255,0.45);   top: -60px;    left: -60px;   }
.sv-glow-2 { width: 180px; height: 180px; background: rgba(200,112,240,0.35); bottom: -50px; right: -50px;  }

.sv-eyebrow {
    position: relative; z-index: 1;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: rgba(255,255,255,0.28);
}

.sv-chart {
    display: flex;
    align-items: flex-end;
    gap: 7px;
    height: 100px;
    position: relative; z-index: 1;
}

.sv-bar-wrap { flex: 1; height: 100%; display: flex; align-items: flex-end; }

.sv-bar {
    width: 100%;
    height: var(--bh, 50%);
    background: rgba(255,255,255,0.07);
    border-radius: 4px 4px 0 0;
}

.sv-bar.sv-bar-accent {
    background: var(--gradient-primary);
    box-shadow: 0 0 14px rgba(200,112,240,0.45);
}

.sv-kpi {
    position: relative; z-index: 1;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 16px;
}

.sv-kpi-num {
    display: block;
    font-size: 2.4rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 4px;
}

.sv-kpi-sub { font-size: 0.82rem; color: rgba(255,255,255,0.42); }

.sv-chips { display: flex; gap: 8px; flex-wrap: wrap; position: relative; z-index: 1; }

.sv-chip {
    padding: 5px 13px;
    background: rgba(77,0,255,0.12);
    border: 1px solid rgba(77,0,255,0.28);
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 600;
    color: rgba(255,255,255,0.62);
}

/* Inline feature rows */
.sobre-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 20px 0 0;
}

.sf-item { display: flex; align-items: flex-start; gap: 14px; }

.sf-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(77,0,255,0.1);
    border: 1px solid rgba(77,0,255,0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--cosmic-pink);
    flex-shrink: 0;
}

.sf-icon svg { width: 17px; height: 17px; }

.sf-item h4 { font-size: 0.9rem; margin-bottom: 3px; font-weight: 600; }

.sf-item > div > p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.42);
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   REDESIGN — Serviços: Bento Grid
   ========================================================================== */
.servicos-bento {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 18px;
    margin-top: 50px;
    text-align: left;
}

.servico-card.bento-featured {
    grid-row: span 2;
    border-color: rgba(200,112,240,0.3) !important;
    background: rgba(77,0,255,0.05) !important;
    position: relative;
}

.servico-card.bento-featured::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(200,112,240,0.13), transparent 60%);
    border-radius: 20px;
    pointer-events: none;
}

.s-badge {
    display: inline-block;
    padding: 5px 14px;
    background: var(--gradient-primary);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    color: white;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.servico-card.bento-wide {
    grid-column: span 3;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 26px 36px;
}

.servico-card.bento-wide .s-icon { margin-bottom: 0; flex-shrink: 0; }
.servico-card.bento-wide h3      { margin-bottom: 4px; }
.servico-card.bento-wide p       { margin: 0; }

/* ==========================================================================
   REDESIGN — Depoimentos Premium
   ========================================================================== */
.depo-quote {
    display: block;
    font-size: 4.5rem;
    line-height: 0.55;
    font-family: Georgia, 'Times New Roman', serif;
    margin-bottom: 14px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    user-select: none;
}

.depo-card.depo-featured {
    border-color: rgba(200,112,240,0.4) !important;
    box-shadow: 0 24px 64px rgba(77,0,255,0.28) !important;
    transform: translateY(-18px) scale(1.02) !important;
    background: rgba(255,255,255,0.05) !important;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   REDESIGN — CTA Horizontal Form + Trust Badges
   ========================================================================== */
.form-row {
    display: flex;
    gap: 16px;
    align-items: stretch;
}

.form-row .form-group { flex: 1; margin: 0; }

.form-row .btn {
    flex-shrink: 0;
    padding: 16px 26px;
    white-space: nowrap;
    border-radius: 12px;
    align-self: stretch;
    height: auto;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.trust-badge svg { width: 15px; height: 15px; color: #25D366; }

/* ==========================================================================
   REDESIGN — Media Queries adicionais
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title .ht-top    { font-size: clamp(2rem, 5vw, 4rem); }
    .hero-title .ht-bottom { font-size: clamp(1.6rem, 2.8vw, 2.4rem); }
    .hero-visual           { flex: 0 0 300px; height: 380px; }

    .servicos-bento {
        grid-template-columns: 1fr 1fr;
    }
    .servico-card.bento-featured { grid-row: span 1; }
    .servico-card.bento-wide     { grid-column: span 2; }
}

@media (max-width: 768px) {
    /* Hero stack on mobile */
    .hero {
        padding-top: 100px;
        padding-bottom: 88px; /* espaço para o scroll indicator */
        min-height: 100vh;
        min-height: 100svh; /* browser chrome aware em mobile */
    }

    .hero-container {
        flex-direction: column;
        gap: 32px;
        padding-top: 24px;
        min-height: auto;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
        overflow: visible; /* evita clipping do título no layout empilhado */
    }

    .hero-subtitle { text-align: center; margin-inline: auto; }
    .hero-buttons  { justify-content: center; }

    .hero-title .ht-top    { font-size: clamp(1.8rem, 8vw, 3rem); }
    .hero-title .ht-mid    { font-size: 1.3rem; }
    .hero-title .ht-bottom { font-size: clamp(1.6rem, 6vw, 2.2rem); letter-spacing: -1px; }

    .hero-visual { width: 100%; flex: none; height: 280px; }

    /* Reposicionamento dos cards mobile */
    .mc-1 { top: 0;    left: 2%;  width: 46%; transform: rotate(-2deg); }
    .mc-2 { top: 0;    right: 2%; width: 44%; transform: rotate(2deg); }
    .mc-3 { bottom: 0; left: 2%;  width: 44%; transform: rotate(1deg); }
    .mc-4 { bottom: 0; right: 2%; width: 46%; transform: rotate(-2deg); }

    /* Sobre mobile */
    .sobre-text { padding-left: 0; }

    /* Serviços mobile */
    .servicos-bento { grid-template-columns: 1fr; }
    .servico-card.bento-featured { grid-row: span 1; }
    .servico-card.bento-wide {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 24px;
    }

    /* Depoimentos mobile — sem elevação exagerada */
    .depo-card.depo-featured {
        transform: none !important;
    }

    /* Form mobile — stack */
    .form-row { flex-direction: column; }

    /* Fix depoimentos: card não ultrapassa a largura da tela */
    .depo-card {
        width: min(350px, calc(100vw - 48px));
        flex-basis: min(350px, calc(100vw - 48px));
    }

    /* Depoimentos em vídeo: carrossel com cards menores no mobile.
       Largura < 100% para que o próximo vídeo "espie" e sinalize que há mais. */
    .depo-videos-carousel-wrap { padding: 0 8px; }
    .depo-videos-carousel {
        gap: 16px;
        padding-left: 12px;
        padding-right: 12px;
        scroll-padding-left: 12px;
    }
    .depo-video {
        width: 72vw;
        max-width: 300px;
        scroll-snap-align: start;
    }

    /* Setas menores, mas visíveis no mobile (deixa claro que dá pra navegar) */
    .dv-nav {
        width: 42px;
        height: 42px;
        background: rgba(20, 12, 35, 0.7);
    }
    .dv-nav svg { width: 22px; height: 22px; }
    .dv-nav-prev { left: 2px; }
    .dv-nav-next { right: 2px; }

    .depo-videos-title { font-size: 1.9rem; }

    /* Botão WhatsApp visível no menu mobile aberto */
    .nav-links.mobile-open .nav-whatsapp-link {
        display: inline-flex;
        margin-top: 16px;
        width: 100%;
        justify-content: center;
        border-radius: 50px;
        padding: 14px 28px;
        font-size: 1rem;
        font-weight: 600;
        gap: 8px;
    }
}

/* Telas muito pequenas (< 480px): empilha botões do hero */
@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   Scroll Down Indicator
   ========================================================================== */
.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    z-index: 2;
    transition: color var(--transition-fast);
    animation: siAppear 1s 2.8s both ease;
}

.scroll-indicator:hover { color: rgba(255, 255, 255, 0.65); }

.si-text {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    white-space: nowrap;
}

.si-bounce {
    display: flex;
    animation: siBounce 1.8s ease-in-out infinite;
}

.si-bounce svg { width: 20px; height: 20px; }

@keyframes siBounce {
    0%, 100% { transform: translateY(0);   opacity: 0.5; }
    50%       { transform: translateY(8px); opacity: 1;   }
}

@keyframes siAppear {
    from { opacity: 0; transform: translateX(-50%) translateY(12px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Oculta quando o usuário rola para baixo (via JS) */
.scroll-indicator.is-hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
