/* 
  ATIVAR WEB - Estilos Globais
*/

:root {
    /* Cores Institucionais */
    --color-bg-primary: #0d0918;
    --color-bg-darker: #0a0814;
    --color-text-light: #ffffff;
    --color-purple: #6c5ce7;
    --color-purple-light: #9B72FF;
    --color-blue: #3c8dff;
    --color-light-gray: #f5f3f8;
    --color-dark-gray: #8c8796;
    
    /* Tipografia */
    --font-heading: 'Space Grotesk', 'Sora', sans-serif;
    --font-body: 'Inter', 'Manrope', sans-serif;
    
    /* Easing */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-primary);
    color: var(--color-text-light);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Utilitários e container global */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding-inline: clamp(32px, 5vw, 72px);
}

/* -------------------------------------
   BOTÕES GERAIS
-------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
    min-height: 56px;
    padding: 0 24px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-purple-light), var(--color-purple));
    color: #fff;
    border: none;
}

.btn-primary:hover {
    box-shadow: 0 8px 24px rgba(108, 92, 231, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid var(--color-purple);
}

.btn-outline:hover {
    background-color: rgba(108, 92, 231, 0.1);
}

/* -------------------------------------
   HEADER
-------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 88px;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease, border-bottom 0.4s ease;
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background-color: rgba(15, 11, 29, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    width: clamp(180px, 15vw, 210px);
    height: auto;
    display: block;
}

.header-center ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.header-center a {
    position: relative;
    padding-bottom: 4px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.76);
    transition: color 200ms ease;
}

.header-center a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-purple);
    transition: width 200ms ease;
}

.header-center a:hover {
    color: #fff;
}

.header-center a:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-right .btn-outline {
    min-height: 44px;
    padding: 0 20px;
    font-size: 14px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* -------------------------------------
   HERO SECTION
-------------------------------------- */
.hero {
    position: relative;
    padding-top: 100px; /* Subido 20px para reduzir o espaço excessivo no topo */
    min-height: 820px;
    background: 
        radial-gradient(circle at 76% 42%, rgba(108, 92, 231, 0.23), transparent 34%),
        radial-gradient(circle at 92% 86%, rgba(60, 141, 255, 0.10), transparent 24%),
        linear-gradient(135deg, #0d0918 0%, #100b20 48%, #0a0814 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(580px, 1.08fr);
    gap: 40px;
    width: 100%;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-purple-light);
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(52px, 5.2vw, 82px);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.045em;
    margin-bottom: 24px;
    color: #fff;
}

.hero-title span {
    background: linear-gradient(90deg, var(--color-purple-light) 0%, var(--color-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: clamp(18px, 1.5vw, 21px);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
    max-width: 520px; /* Limitada a largura do subtítulo */
    margin-bottom: 32px; /* Reduzido levemente para aproximar pilares e botões */
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 44px; /* Reduzido de 64px para aproximar dos pilares */
}

/* Pilares */
.hero-pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 560px;
    gap: 0;
}

.pillar {
    display: flex;
    align-items: flex-start; /* Alinhados pelo topo */
    gap: 16px;
    padding: 0 16px;
    position: relative;
}

.pillar:first-child {
    padding-left: 0;
}

.pillar:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.08); /* Divisórias padronizadas e centralizadas */
}

.pillar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-icon svg {
    width: 28px; /* Aumentado ~15% */
    height: 28px;
}

.pillar-text h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
}

.pillar-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72); /* Aumentado o contraste */
    line-height: 1.3;
}

.hero-bottom-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

/* -------------------------------------
   HERO COMPOSIÇÃO VISUAL (RIGHT)
-------------------------------------- */
.hero-visual-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: clamp(500px, 45vw, 750px);
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    overflow: visible; /* Mantém para evitar cortes nos cards flutuantes */
}

/* Posição dos assets */
.asset-sculpture {
    position: absolute;
    height: 62%; /* Altura entre 58% e 65% */
    width: auto;
    left: 55%; /* Ligeiramente deslocada para a direita */
    top: 48%;
    transform: translate(-50%, -50%);
    z-index: 4;
    filter: drop-shadow(0 20px 40px rgba(108, 92, 231, 0.15));
    animation: float1 8s ease-in-out infinite;
}

/* Glow sutil atrás da escultura */
.hero-visual::before {
    content: '';
    position: absolute;
    top: 48%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(108,92,231,0.2) 0%, transparent 70%);
    z-index: 1;
    filter: blur(50px);
    pointer-events: none;
}

.asset-platform {
    position: absolute;
    width: 85%; /* Largura máxima próxima de 85% */
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0.55; /* Opacidade moderada */
    animation: float2 9s ease-in-out infinite alternate;
}

.asset-revenue-card {
    position: absolute;
    width: 35%; /* Reduzido levemente */
    top: 10%;
    left: 5%;
    z-index: 5;
    transform: rotate(-2deg);
    animation: float3 7s ease-in-out infinite;
}

.asset-roas-card {
    position: absolute;
    width: 22%; /* Reduzido ligeiramente */
    top: 13%;
    right: 8%; /* Afastado da borda */
    z-index: 5;
    transform: rotate(2deg);
    animation: float1 7.5s ease-in-out infinite alternate-reverse;
}

.asset-performance-card {
    position: absolute;
    width: 26%; /* Reduzido 15% (era 32%) */
    bottom: 22%;
    left: 2%;
    z-index: 5;
    animation: float2 8.5s ease-in-out infinite;
}

.asset-video-player {
    position: absolute;
    width: 48%; /* Reduzido entre 8% e 12% */
    bottom: 18%; /* Subido 20px-30px */
    right: 5%; /* Deslocado ligeiramente para a esquerda */
    z-index: 6;
    animation: float3 8s ease-in-out infinite alternate-reverse;
    filter: drop-shadow(0 24px 48px rgba(0,0,0,0.4));
}

/* Legenda dos dados ilustrativos */
.hero-visual-caption {
    position: absolute;
    bottom: 4px;
    right: 12px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.38);
    letter-spacing: 0.02em;
    pointer-events: none;
    z-index: 7;
}

/* -------------------------------------
   ANIMAÇÕES DE ENTRADA E CONTINUAS
-------------------------------------- */
@keyframes float1 {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-8px); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-4px) rotate(1deg); }
}

.fade-up-1, .fade-up-2, .fade-up-3, .fade-up-4, .fade-up-5 {
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.6s var(--ease-out) forwards;
}

.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }
.fade-up-5 { animation-delay: 0.5s; }

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

/* Animações de Entrada Visual */
.hero-visual img {
    opacity: 0;
}
.asset-sculpture { animation: visualFadeInScale 0.8s var(--ease-out) 0.3s forwards, float1 8s ease-in-out infinite; }
.asset-platform { animation: visualFadeIn 0.8s var(--ease-out) 0.4s forwards, float2 9s ease-in-out infinite alternate; }
.asset-revenue-card { animation: visualFadeInUp 0.6s var(--ease-out) 0.5s forwards, float3 7s ease-in-out infinite; }
.asset-roas-card { animation: visualFadeInUp 0.6s var(--ease-out) 0.6s forwards, float1 7.5s ease-in-out infinite alternate-reverse; }
.asset-performance-card { animation: visualFadeInUp 0.6s var(--ease-out) 0.7s forwards, float2 8.5s ease-in-out infinite; }
.asset-video-player { animation: visualFadeInUp 0.6s var(--ease-out) 0.8s forwards, float3 8s ease-in-out infinite alternate-reverse; }

@keyframes visualFadeInScale {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.97); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes visualFadeIn {
    from { opacity: 0; }
    to { opacity: 0.55; }
}

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

/* -------------------------------------
   CONFIGURAÇÕES DE MOVIMENTO REDUZIDO
-------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .asset-sculpture, .asset-platform, .asset-revenue-card, .asset-roas-card, .asset-performance-card, .asset-video-player {
        animation: none !important;
        opacity: 1;
        transform: none;
    }
    .asset-sculpture { transform: translate(-50%, -50%); }
}

/* -------------------------------------
   RESPONSIVIDADE - TABLET (768px até 1023px)
-------------------------------------- */
@media screen and (max-width: 1023px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    
    .header-center ul {
        gap: 20px;
    }
    
    .hero-pillars {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .pillar {
        padding: 0;
    }
    
    .pillar:not(:last-child)::after {
        display: none;
    }
    
    .hero-visual {
        height: 500px;
    }
    
    .asset-revenue-card { width: 45%; }
    .asset-performance-card { width: 38%; }
    .asset-video-player { width: 65%; }
    .asset-roas-card { display: none; }
}

/* -------------------------------------
   RESPONSIVIDADE - MOBILE (Até 767px)
-------------------------------------- */
@media screen and (max-width: 767px) {
    .site-header {
        height: 70px;
    }
    
    .logo {
        width: 145px;
    }
    
    .header-center, .header-right .btn-outline {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    /* Menu Mobile Aberto */
    .header-center.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--color-bg-primary);
        padding: 32px 24px;
        z-index: 999;
    }
    
    .header-center.active ul {
        flex-direction: column;
        gap: 24px;
        width: 100%;
        margin-bottom: 32px;
    }
    
    .header-center.active a {
        font-size: 18px;
        display: block;
        padding: 8px 0;
    }
    
    .hero {
        padding-top: 90px;
        padding-bottom: 60px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .hero-buttons {
        flex-direction: column;
        margin-bottom: 40px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-visual-wrapper {
        order: 5;
        margin: 32px 0 24px 0;
    }
    
    .hero-visual {
        height: clamp(360px, 105vw, 520px);
    }
    
    .hero-visual-caption {
        text-align: center;
        padding-right: 0;
        margin-top: 8px;
    }
    
    .hero-pillars {
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
        order: 6;
    }
    
    .pillar {
        width: 100%;
        background: rgba(255,255,255,0.02);
        padding: 16px;
        border-radius: 8px;
        border: 1px solid rgba(255,255,255,0.04);
    }
    
    .pillar:not(:last-child)::after {
        display: none;
    }
    
    /* Reajuste dos assets para mobile */
    .asset-sculpture {
        height: 75%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .asset-platform {
        width: 90%;
        bottom: 5%;
    }
    
    .asset-revenue-card {
        width: 48%;
        top: 5%;
        left: 2%;
    }
    
    .asset-performance-card {
        width: 42%;
        bottom: 20%;
        left: 0%;
    }
    
    .asset-video-player {
        width: 60%;
        bottom: 12%;
        right: 0%;
    }
    
    .asset-roas-card {
        display: none !important; /* Ocultado no mobile para priorizar os outros cards */
    }
}

/* Ocultar ROAS em telas abaixo de 390px */
@media screen and (max-width: 390px) {
    .asset-roas-card {
        display: none !important;
    }
    .asset-performance-card {
        width: 45%;
    }
    .asset-revenue-card {
        width: 50%;
    }
}

/* -------------------------------------
   ANIMAÇÃO DE SCROLL (SCROLL FADE)
-------------------------------------- */
.scroll-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* -------------------------------------
   SEÇÃO 02: DIFERENCIAIS
-------------------------------------- */
.diferenciais-section {
    padding-block: clamp(80px, 8vw, 120px);
    background-color: var(--color-bg-primary);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(48px, 6vw, 72px);
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-purple-light);
    margin-bottom: 16px;
}

.section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-purple-light);
    box-shadow: 0 0 8px var(--color-purple-light);
}

.section-title {
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fff;
}

.section-title .dot {
    color: var(--color-purple-light);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.diferenciais-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: clamp(24px, 3.5vw, 44px);
    transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    display: flex;
    flex-direction: column;
}

.diferenciais-card:hover {
    transform: translateY(-6px);
    border-color: rgba(108, 92, 231, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(108, 92, 231, 0.03);
}

.card-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(108, 92, 231, 0.08);
    border: 1px solid rgba(108, 92, 231, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.card-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.card-line {
    width: 28px;
    height: 2px;
    background-color: var(--color-purple);
    margin-bottom: 20px;
}

.card-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

/* Atrasos das animações em grid */
.diferenciais-grid .diferenciais-card:nth-child(1) { transition-delay: 0.1s; }
.diferenciais-grid .diferenciais-card:nth-child(2) { transition-delay: 0.2s; }
.diferenciais-grid .diferenciais-card:nth-child(3) { transition-delay: 0.3s; }

/* -------------------------------------
   RESPONSIVIDADE SEÇÃO 02
-------------------------------------- */
@media screen and (max-width: 1023px) {
    .diferenciais-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    
    .diferenciais-grid .diferenciais-card:nth-child(3) {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 767px) {
    .diferenciais-section {
        padding-block: 60px;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .diferenciais-grid .diferenciais-card:nth-child(3) {
        grid-column: span 1;
        max-width: none;
    }
    
    .diferenciais-card {
        padding: 24px;
    }
}

/* -------------------------------------
   SEÇÃO 03: SOLUÇÕES (SERVICES)
-------------------------------------- */
.services-section {
    padding-block: clamp(80px, 8vw, 120px);
    background-color: var(--color-bg-primary);
    position: relative;
}

.services-header {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    gap: 48px;
    align-items: center;
    margin-bottom: clamp(48px, 6vw, 72px);
    text-align: left;
}

.gradient-text {
    background: linear-gradient(90deg, var(--color-purple-light) 0%, var(--color-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.header-right-col {
    display: flex;
    align-items: center;
    gap: 32px;
}

.vertical-divider {
    width: 1px;
    height: 72px;
    background-color: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.header-description {
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.68);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: clamp(24px, 2.5vw, 36px);
    transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(108, 92, 231, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(108, 92, 231, 0.03);
}

/* Atrasos das animações em grid */
.services-grid .service-card:nth-child(1) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.3s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.4s; }

/* -------------------------------------
   RESPONSIVIDADE SEÇÃO 03
-------------------------------------- */
@media screen and (max-width: 1023px) {
    .services-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .vertical-divider {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 767px) {
    .services-section {
        padding-block: 60px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-card {
        padding: 24px;
    }
}

/* -------------------------------------
   SEÇÃO 04: VÍDEOS E MERCHANS
-------------------------------------- */
#videos {
    scroll-margin-top: 90px;
}

.videos-section {
    padding-block: clamp(96px, 9vw, 150px);
    background:
      radial-gradient(circle at 50% 75%, rgba(108, 92, 231, 0.17), transparent 38%),
      linear-gradient(180deg, #0d0918 0%, #110b21 52%, #0b0815 100%);
    position: relative;
    overflow: hidden;
}

.videos-header {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    gap: 48px;
    align-items: center;
    margin-bottom: clamp(64px, 8vw, 96px);
    text-align: left;
}

.eyebrow-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--color-purple-light);
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}

.videos-gallery-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.videos-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.videos-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    transition: transform 0.4s var(--ease-out);
}

.video-card {
    background: linear-gradient(145deg, rgba(34, 25, 61, 0.95), rgba(19, 14, 38, 0.96));
    border: 1px solid rgba(155, 114, 255, 0.25);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.video-card:hover {
    transform: translateY(-6px);
    border-color: rgba(155, 114, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(108, 92, 231, 0.05);
}

.video-card__preview {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border: none;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    display: block;
}

.video-card__preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s var(--ease-out);
    opacity: 0.8;
}

.video-card:hover .video-card__preview img {
    transform: scale(1.04);
    opacity: 0.9;
}

.video-card__play {
    position: absolute;
    width: 68px;
    height: 68px;
    background-color: #ffffff;
    color: var(--color-bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s var(--ease-out), background-color 0.3s var(--ease-out);
}

.video-card__play svg {
    margin-left: 3px;
    fill: #190e26;
    transition: transform 0.3s var(--ease-out);
}

.video-card__preview:hover .video-card__play {
    transform: translate(-50%, -50%) scale(1.08);
    background-color: #f5f3f8;
}

.video-card__content {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    flex-grow: 1;
}

.video-card__info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.video-card__info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.video-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(108, 92, 231, 0.1);
    color: var(--color-purple-light);
    flex-shrink: 0;
    border: 1px solid rgba(108, 92, 231, 0.2);
}

/* Gallery Nav Buttons */
.gallery-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(108, 92, 231, 0.3);
    background-color: transparent;
    color: var(--color-purple-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    flex-shrink: 0;
    z-index: 5;
}

.gallery-nav-btn:hover {
    background-color: rgba(108, 92, 231, 0.1);
    border-color: var(--color-purple-light);
    color: #fff;
}

/* Indicators */
.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 48px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s, transform 0.3s;
}

.indicator.active {
    background-color: var(--color-purple-light);
    transform: scale(1.2);
}

/* CTA Section */
.videos-cta {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.btn-cta-wide {
    width: 100%;
    max-width: 620px;
    min-height: 66px;
    font-size: 17px;
}

.videos-bottom-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

/* MODAL DE VÍDEO */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.video-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.88);
}

.video-modal__container {
    position: relative;
    width: 90%;
    max-width: 1100px;
    z-index: 2;
    transform: translateY(20px);
    transition: transform 0.3s var(--ease-out);
}

.video-modal.active .video-modal__container {
    transform: translateY(0);
}

.video-modal__close {
    position: absolute;
    top: -48px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.video-modal__close:hover {
    color: var(--color-purple-light);
}

.video-modal__body {
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7);
}

.video-modal__ratio-wrapper {
    position: relative;
    padding-top: 56.25%;
    height: 0;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Responsive configurations */
@media screen and (min-width: 768px) {
    .gallery-indicators {
        display: none;
    }
}

@media screen and (max-width: 1023px) {
    .videos-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .vertical-divider {
        display: none;
    }
    
    .videos-gallery-container {
        gap: 16px;
    }
    
    .videos-track {
        gap: 16px;
    }
    
    .video-card__content {
        padding: 20px;
    }
}

@media screen and (max-width: 767px) {
    .videos-section {
        padding-block: 60px;
    }
    
    .gallery-nav-btn {
        display: none;
    }
    
    .videos-track-wrapper {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    
    .videos-track-wrapper::-webkit-scrollbar {
        display: none;
    }
    
    .videos-track {
        display: flex;
        grid-template-columns: none;
        gap: 16px;
        width: 100%;
    }
    
    .video-card {
        flex: 0 0 86%;
        scroll-snap-align: center;
    }
    
    .videos-track::after {
        content: '';
        flex: 0 0 1px;
        margin-left: -8px;
    }
    
    .video-card__play {
        width: 58px;
        height: 58px;
    }
    
    .gallery-indicators {
        display: flex;
    }
}

/* -------------------------------------
   SEÇÃO 05: NOSSO MÉTODO (METHOD)
-------------------------------------- */
#metodo {
    scroll-margin-top: 90px;
}

.method-section {
    padding-block: clamp(80px, 8vw, 120px);
    background-color: var(--color-bg-primary);
    position: relative;
}

.method-header {
    text-align: center;
    margin-bottom: clamp(64px, 8vw, 96px);
}

.method-header .section-title {
    margin-bottom: 20px;
}

.method-header .section-subtitle {
    font-size: clamp(16px, 1.3vw, 18px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
    max-width: 600px;
    margin: 0 auto;
}

.method-timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    position: relative;
    width: 100%;
}

.method-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 700;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
    color: transparent;
    margin-bottom: 8px;
    line-height: 1;
    transition: -webkit-text-stroke 0.3s var(--ease-out);
    display: block;
}

.step-icon-wrapper {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: #19122b;
    border: 1px solid rgba(155, 114, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    margin-bottom: 24px;
    transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background-color 0.3s var(--ease-out);
    color: var(--color-purple-light);
}

.step-icon-wrapper svg {
    transition: transform 0.3s var(--ease-out);
}

.step-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0.005) 100%);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 24px 16px;
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s var(--ease-out), background-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* Timeline Connectors (Desktop) */
.method-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 98px; /* Alinhado com o centro do ícone de 72px */
    left: 50%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(108, 92, 231, 0.5) 0%, rgba(108, 92, 231, 0.1) 100%);
    z-index: 1;
}

.method-step:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 98px;
    left: 100%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-purple-light);
    box-shadow: 0 0 8px var(--color-purple-light);
    z-index: 2;
}

/* Hover States */
.method-step:hover .step-number {
    -webkit-text-stroke: 1px var(--color-purple-light);
}

.method-step:hover .step-icon-wrapper {
    border-color: var(--color-purple-light);
    box-shadow: 0 0 15px rgba(108, 92, 231, 0.2);
    background-color: #201736;
}

.method-step:hover .step-icon-wrapper svg {
    transform: scale(1.1);
}

.method-step:hover .step-card {
    border-color: rgba(155, 114, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Atrasos das animações em grid */
.method-timeline .method-step:nth-child(1) { transition-delay: 0.1s; }
.method-timeline .method-step:nth-child(2) { transition-delay: 0.2s; }
.method-timeline .method-step:nth-child(3) { transition-delay: 0.3s; }
.method-timeline .method-step:nth-child(4) { transition-delay: 0.4s; }
.method-timeline .method-step:nth-child(5) { transition-delay: 0.5s; }
.method-timeline .method-step:nth-child(6) { transition-delay: 0.6s; }

/* -------------------------------------
   RESPONSIVIDADE SEÇÃO 05
-------------------------------------- */
@media screen and (max-width: 1200px) {
    .method-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px 16px;
    }
    
    .method-step:not(:last-child)::after,
    .method-step:not(:last-child)::before {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .method-section {
        padding-block: 60px;
    }
    
    .method-timeline {
        grid-template-columns: 1fr;
        gap: 24px;
        position: relative;
        padding-left: 20px;
    }
    
    /* Linha vertical no mobile */
    .method-timeline::before {
        content: '';
        position: absolute;
        top: 60px;
        bottom: 60px;
        left: 52px; /* 20px padding + 32px centro do ícone de 64px */
        width: 1px;
        background: linear-gradient(180deg, rgba(108, 92, 231, 0.5) 0%, rgba(108, 92, 231, 0.1) 100%);
        z-index: 1;
    }
    
    .method-step {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 16px;
        width: 100%;
    }
    
    .step-number {
        position: absolute;
        right: 0;
        top: 0;
        font-size: 40px;
        opacity: 0.5;
    }
    
    .step-icon-wrapper {
        width: 64px;
        height: 64px;
        border-radius: 12px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .step-card {
        padding: 16px 20px;
        text-align: left;
        border: none;
        background: rgba(255, 255, 255, 0.015);
        border-radius: 12px;
        box-shadow: none;
    }
    
    .step-title {
        font-size: 18px;
        margin-bottom: 6px;
    }
}

/* -------------------------------------
   SEÇÃO 06: SOBRE O FUNDADOR
-------------------------------------- */
#sobre {
    scroll-margin-top: 90px;
}

.about-section {
    padding-block: clamp(80px, 8vw, 120px);
    background-color: var(--color-bg-primary);
    position: relative;
}

.about-container {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 64px;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-text {
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 20px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-block: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-block: 24px;
}

.about-highlight {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-purple-light);
}

.about-highlight p {
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.76);
}

.about-highlight p strong {
    color: #fff;
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 32px;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s ease, transform 0.2s ease;
}

.about-link svg {
    transition: transform 0.2s ease;
}

.about-link:hover {
    color: var(--color-purple-light);
}

.about-link:hover svg {
    transform: translateX(4px);
}

/* Photo and Frame Styling */
.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.about-photo-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    border: 1px solid rgba(155, 114, 255, 0.25);
    background: 
        radial-gradient(circle at center, rgba(108, 92, 231, 0.15) 0%, transparent 70%),
        #100b21;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-photo-frame:hover {
    border-color: rgba(155, 114, 255, 0.5);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 30px rgba(108, 92, 231, 0.1);
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    /* Smooth fade-out of founder shoulders and suit to blend into background */
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%);
}

.about-photo-caption {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-purple-light);
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(13, 9, 24, 0.9);
    z-index: 5;
    background-color: rgba(13, 9, 24, 0.4);
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(155, 114, 255, 0.15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* -------------------------------------
   RESPONSIVIDADE SEÇÃO 06
-------------------------------------- */
@media screen and (max-width: 1023px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-visual {
        order: -1; /* Place photo on top in tablet/mobile */
    }
}

@media screen and (max-width: 767px) {
    .about-section {
        padding-block: 60px;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-block: 20px;
    }
    
    .about-highlight {
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
    }
    
    .about-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .about-actions .btn {
        width: 100%;
    }
    
    .about-link {
        justify-content: center;
        text-align: center;
    }
    
    .about-photo-frame {
        max-width: 340px;
    }
}

/* -------------------------------------
   SEÇÃO 07: CTA FINAL (VAMOS JUNTOS)
-------------------------------------- */
#contato {
    scroll-margin-top: 90px;
}

.cta-section {
    padding-block: clamp(80px, 8vw, 140px);
    background-color: var(--color-bg-primary);
    position: relative;
}

.cta-card {
    background: linear-gradient(135deg, rgba(26, 19, 48, 0.95) 0%, rgba(13, 9, 24, 0.98) 100%);
    border: 1px solid rgba(155, 114, 255, 0.22);
    border-radius: 32px;
    padding: clamp(36px, 5vw, 68px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 40px;
    align-items: center;
}

.cta-content {
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.cta-content .section-eyebrow {
    margin-bottom: 20px;
}

.cta-content .section-title {
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.08;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    max-width: 500px;
    margin-bottom: 36px;
}

.cta-action-area {
    margin-bottom: 36px;
}

.btn-cta-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: linear-gradient(135deg, var(--color-purple-light) 0%, var(--color-purple) 100%);
    color: #fff;
    padding: 0 28px;
    min-height: 60px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s var(--ease-out);
    border: none;
    box-shadow: 0 8px 24px rgba(108, 92, 231, 0.3);
}

.btn-cta-arrow .arrow-icon {
    transition: transform 0.3s var(--ease-out);
}

.btn-cta-arrow:hover {
    box-shadow: 0 12px 32px rgba(108, 92, 231, 0.45);
    transform: translateY(-2px);
}

.btn-cta-arrow:hover .arrow-icon {
    transform: translateX(5px);
}

.cta-trust-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.trust-divider {
    width: 1px;
    height: 16px;
    background-color: rgba(255, 255, 255, 0.15);
}

/* CTA Visual 3D Orbit */
.cta-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    height: 100%;
}

.cta-orbit-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.35) 0%, rgba(155, 114, 255, 0.1) 50%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
}

.cta-orbit-lines {
    position: absolute;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(155, 114, 255, 0.25);
    border-radius: 50%;
    transform: rotateX(68deg) rotateY(-22deg);
    box-shadow: 0 0 30px rgba(108, 92, 231, 0.25), inset 0 0 20px rgba(155, 114, 255, 0.15);
    z-index: 2;
    pointer-events: none;
}

.cta-sculpture {
    position: relative;
    max-width: 90%;
    max-height: 420px;
    width: auto;
    height: auto;
    object-fit: contain;
    z-index: 3;
    filter: drop-shadow(0 15px 35px rgba(108, 92, 231, 0.3));
    animation: float2 9s ease-in-out infinite alternate;
}

/* -------------------------------------
   FOOTER INSTITUCIONAL
-------------------------------------- */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: clamp(60px, 6vw, 90px);
    padding-bottom: 40px;
    background-color: #080611;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: clamp(32px, 5vw, 64px);
    margin-bottom: clamp(48px, 5vw, 64px);
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

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

.footer-subheadline {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
}

.footer-whatsapp-btn {
    border-radius: 50px;
    padding: 0 24px;
    min-height: 48px;
    font-size: 15px;
    margin-top: 4px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
}

.social-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--color-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s var(--ease-out);
}

.social-icon-btn:hover {
    background-color: var(--color-purple);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(108, 92, 231, 0.4);
}

.footer-columns {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-purple-light);
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #fff;
}

.footer-col-divider {
    width: 1px;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.08);
    align-self: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

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

/* -------------------------------------
   RESPONSIVIDADE SEÇÃO 07 & FOOTER
-------------------------------------- */
@media screen and (max-width: 1023px) {
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .cta-visual {
        order: -1;
        min-height: 280px;
    }
    
    .cta-sculpture {
        max-height: 300px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-col-divider {
        display: none;
    }
    
    .footer-columns {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media screen and (max-width: 767px) {
    .cta-section {
        padding-block: 60px;
    }
    
    .cta-card {
        padding: 32px 20px;
        border-radius: 20px;
    }
    
    .btn-cta-arrow {
        width: 100%;
        justify-content: center;
    }
    
    .cta-trust-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .trust-divider {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

/* -------------------------------------
   CARROSSEL INFINITO DE CLIENTES
-------------------------------------- */
#clientes {
    scroll-margin-top: 90px;
}

.clients-strip {
    padding-block: 28px 36px;
    background: linear-gradient(
        180deg,
        rgba(13, 9, 24, 0) 0%,
        rgba(20, 13, 38, 0.65) 40%,
        rgba(13, 9, 24, 0.95) 100%
    );
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.clients-subtitle {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.clients-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
}

/* Infinite Scroll Animation */
@keyframes clients-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.clients-track {
    display: flex;
    width: max-content;
    animation: clients-scroll 35s linear infinite;
    will-change: transform;
}

.clients-group {
    display: flex;
    align-items: center;
    gap: clamp(42px, 5vw, 80px);
    padding-right: clamp(42px, 5vw, 80px);
}

/* Logos styling & duotone purple treatment */
.clients-group img {
    height: clamp(30px, 3vw, 50px);
    width: auto;
    object-fit: contain;
    opacity: 0.75;
    transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
    filter: brightness(0) invert(60%) sepia(85%) saturate(2200%) hue-rotate(225deg) brightness(95%) contrast(95%);
}

.clients-group img.logo-square {
    height: clamp(44px, 4.5vw, 68px);
}

.clients-group img.logo-xl {
    height: clamp(54px, 5.5vw, 86px);
}

/* Hover interactions */
.clients-marquee:hover .clients-track {
    animation-play-state: paused;
}

.clients-group img:hover {
    opacity: 1;
    transform: scale(1.04);
    filter: brightness(0) invert(75%) sepia(90%) saturate(3000%) hue-rotate(225deg) brightness(110%) contrast(100%);
}

/* Side gradient fades */
.clients-marquee::before,
.clients-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.clients-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #0d0918 0%, rgba(13, 9, 24, 0) 100%);
}

.clients-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #0d0918 0%, rgba(13, 9, 24, 0) 100%);
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
    .clients-track {
        animation: none;
    }
    .clients-marquee {
        overflow-x: auto;
    }
}

/* Mobile responsive rules */
@media screen and (max-width: 767px) {
    .clients-strip {
        padding-block: 20px 26px;
    }
    
    .clients-group img {
        height: 28px;
    }

    .clients-group img.logo-square {
        height: 42px;
    }

    .clients-group img.logo-xl {
        height: 52px;
    }
    
    .clients-group {
        gap: 36px;
        padding-right: 36px;
    }
    
    .clients-marquee::before,
    .clients-marquee::after {
        width: 48px;
    }
}








