:root {
    --primary-font: 'Inter', sans-serif;
    --title-font: 'Montserrat', sans-serif;
    --text-color: #333333;
    --highlight-color: #24c6e9; /* Tittanium Blue */
    --white: #ffffff;
    --black: #000000;
}

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

html, body {
    max-width: 100%;
    overflow-x: hidden;
    background-color: var(--black);
}

body {
    font-family: var(--primary-font);
    background-color: var(--black);
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================== */
/* Particle Hero Section          */
/* ============================== */
.particle-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

#hero-particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 5vw;
    pointer-events: none;
}

.particle-hero-title {
    font-family: var(--title-font);
    font-weight: 900;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.particle-hero-line {
    display: block;
    font-size: clamp(1.2rem, 3.5vw, 3.8rem);
    white-space: nowrap;
}

.mobile-line {
    display: none;
}

.desktop-line {
    display: block;
}



/* Scroll Indicator */
.particle-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5));
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Fade-in animation for headline */
.particle-hero-content {
    animation: heroFadeIn 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    opacity: 0;
}

@keyframes heroFadeIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) {
    .particle-hero-line {
        font-size: clamp(1.6rem, 5vw, 3.5rem);
    }
}

@media (max-width: 768px) {
    .particle-hero-line {
        font-size: clamp(1.2rem, 6vw, 2.5rem);
    }
    
    .mobile-line {
        display: block;
    }

    .desktop-line {
        display: none;
    }
    
    .particle-hero-scroll {
        bottom: 25px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background-color: var(--black);
}

/* Shared Background Styles for 3D Effect */

/* Organic Shapes Styling */
.shape {
    position: absolute;
    pointer-events: none;
    /* Soft drop shadow to sophisticated the look */
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5));
}

.blob-top {
    top: 0;
    left: 0;
    width: 100%;
    height: 35vw;
    min-height: 250px;
    max-height: 400px;
    z-index: 2; /* Sits between base bg and cutout bg to create 3D effect */
}

.shape-bottom-white {
    bottom: -2px; /* Prevent sub-pixel gap */
    left: 0;
    width: 100%;
    height: 20vw; /* Reduced from 22vw */
    min-height: 165px; 
    z-index: 4;
    filter: drop-shadow(0 -10px 20px rgba(0,0,0,0.1));
}

/* Header Styling */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background-color 0.4s ease, padding 0.4s ease;
}

.header.scrolled {
    background-color: var(--black);
    padding: 15px 4vw;
}

.logo-container {
    flex-shrink: 0;
    margin-right: 4vw;
}

.logo {
    height: 30px;
    width: auto;
    object-fit: contain;
}

/* Hamburger Menu Base */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001; /* Above overlay */
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile Nav Overlay Base */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mobile-nav-links .nav-link {
    font-size: 1.5rem;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-nav-overlay.active .nav-link {
    opacity: 1;
    transform: translateY(0);
}


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

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--highlight-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

/* Text Content Area */
.hero-content {
    position: absolute;
    bottom: calc(5vh + 33px);
    right: 3vw;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hero-title {
    font-family: var(--title-font);
    font-weight: 900;
    text-align: right;
    color: var(--black);
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.line1 {
    font-size: clamp(1rem, 1.9vw, 1.8rem);
    display: block;
    margin-bottom: 5px;
}

.line2 {
    font-size: clamp(1rem, 1.9vw, 1.8rem);
    display: block;
}

.highlight {
    color: var(--highlight-color);
}

/* About Us Section */
.about {
    padding: 80px 10vw 140px 10vw; /* Menos espaço em cima, mantendo embaixo */
    position: relative;
    z-index: auto; /* Remove stacking context */
    background-color: transparent;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000; /* Fundo preto contínuo com o hero */
    z-index: 0;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8vw; /* Maior respiro e grid mais sofisticado */
    position: relative;
    z-index: 2; /* Content goes above canvas */
}

.about-content {
    flex: 1;
    min-width: 0;
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.about-overline {
    font-family: var(--primary-font);
    font-size: 0.75rem;
    font-weight: 600;
    color: #8a959e; /* Azul petróleo ajustado para fundo escuro */
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.about-overline::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: #8a959e;
    margin-right: 15px;
}

.about-headline {
    font-family: var(--title-font);
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    font-weight: 800; /* Mais elegante, menos 'grosso' */
    color: var(--white); /* Branco no fundo preto */
    margin-bottom: 12px; /* Reduzido para aproximar do texto */
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.95); /* Glow shadow for contrast */
}

.about-text-wrapper {
    margin-bottom: 30px;
}

.about-text {
    font-family: var(--primary-font);
    font-size: 1.05rem;
    line-height: 1.8;
    color: #cccccc; /* Cinza claro para leitura no preto */
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

/* Metrics - Relatório Anual Feel */
.about-metrics {
    display: flex;
    gap: 40px;
    margin-bottom: 55px; /* Aumentado para dar respiro ao botão */
    padding-top: 35px; /* Um pouco mais de espaço */
    border-top: 1px solid #333333; /* Linha divisória fina e simples para dark mode */
}

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

.metric-value {
    font-family: var(--title-font);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white); /* Branco no dark mode */
    margin-bottom: 5px;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.95);
}

.metric-label {
    font-family: var(--primary-font);
    font-size: 0.8rem;
    color: #999999; /* Cinza médio no dark mode */
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--black);
    color: var(--white);
    text-decoration: none;
    font-family: var(--title-font);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 8px;
    margin-top: 10px;
    margin-bottom: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--highlight-color);
    transform: translateY(-2px);
}

.companies-title {
    font-family: var(--title-font);
    font-size: 1.1rem;
    font-weight: 800;
    color: #888888; /* Mais cinza e discreto */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Carousel */
.companies-carousel-container {
    width: 100%;
    position: relative;
}

/* Gradient mask for the carousel to indicate scrollability */
.companies-carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,1));
    pointer-events: none;
}

.companies-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}

.companies-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.company-logo-placeholder {
    flex: 0 0 120px;
    height: 60px;
    background-color: #fafafa;
    border-radius: 8px;
    border: 1px dashed rgba(36, 198, 233, 0.4); /* Borda tracejada com o azul sutil */
    scroll-snap-align: start;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo-placeholder:hover {
    transform: scale(1.05);
    background-color: rgba(36, 198, 233, 0.03);
    border-color: var(--highlight-color);
}

/* Override Botão para visual institucional */
.btn-institutional {
    background-color: #000000 !important;
    color: #ffffff !important;
    border: 1px solid #ffffff !important;
    border-radius: 0 !important; /* Sem bordas arredondadas (mais sério) */
    padding: 14px 35px !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    letter-spacing: 1.5px !important;
    margin: 0 !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}

.btn-institutional:hover {
    background-color: #ffffff !important;
    color: #000000 !important;
    transform: none !important; /* Sem animações estilo startup */
}

.btn-white {
    background-color: transparent !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
}

.btn-white:hover {
    background-color: #ffffff !important;
    color: #050505 !important;
}

/* Image Side */
.about-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.about-image-frame {
    position: relative;
    width: 100%;
    max-width: 480px; /* Controla o tamanho para parecer um retrato executivo */
}

/* Moldura sofisticada assimétrica */
.about-image-frame::before, .abstract-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid #d0d0d0;
    z-index: 1;
}

.abstract-frame {
    position: relative;
}

.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 0; /* Aspecto editorial, sem cantos arredondados */
    box-shadow: none; /* Remove brilhos e sombras tech */
    object-fit: cover;
    position: relative;
    z-index: 2;
    /* Tratamento fotográfico mais natural e executivo */
    filter: saturate(0.85) contrast(1.05) brightness(0.95);
}

/* Premium Cinematic Reveal Animations */
.about .about-overline,
.about .about-headline,
.about .about-text-wrapper,
.about .about-metrics,
.about .btn-primary-wrapper {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(5px);
    transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), 
                transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
                filter 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.about.is-visible .about-overline { transition-delay: 0.05s; opacity: 1; transform: translateY(0); filter: blur(0); }
.about.is-visible .about-headline { transition-delay: 0.1s; opacity: 1; transform: translateY(0); filter: blur(0); }
.about.is-visible .about-text-wrapper { transition-delay: 0.2s; opacity: 1; transform: translateY(0); filter: blur(0); }
.about.is-visible .about-metrics { transition-delay: 0.35s; opacity: 1; transform: translateY(0); filter: blur(0); }
.about.is-visible .btn-primary-wrapper { transition-delay: 0.5s; opacity: 1; transform: translateY(0); filter: blur(0); }

.about .about-image-frame {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
                transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0.3s;
}

.about.is-visible .about-image-frame {
    opacity: 1;
    transform: translateX(0);
}

/* Venture Capital Section */
.venture-capital {
    background-color: var(--black);
    color: var(--white);
    padding: 75px 10vw 60px; /* Decreased top padding to 75px */
    text-align: center;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Glow removed for cleaner aesthetic */

.vc-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.vc-overline {
    font-family: var(--primary-font);
    font-size: 0.75rem;
    font-weight: 600;
    color: #8a959e;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.vc-overline .overline-line {
    width: 30px;
    height: 1px;
    background-color: #8a959e;
    margin: 0 15px;
}

.vc-headline {
    font-family: var(--title-font);
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    color: var(--white);
    line-height: 1.15;
}

.vc-headline .highlight {
    color: var(--highlight-color);
}

.vc-text {
    font-family: var(--primary-font);
    font-size: 1.05rem;
    line-height: 1.8;
    color: #999999;
    max-width: 900px;
    margin: 0 auto 25px auto;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    text-decoration: none;
    font-family: var(--title-font);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 0;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--black);
    transform: none;
}

/* Institutional Sequence Flow (Pentagram / McKinsey Style) */
.vc-strategic-sequence {
    margin: 100px auto 40px;
    width: 100%;
    position: relative;
    max-width: 1200px;
}

/* A linha horizontal dominante */
.sequence-main-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.sequence-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: relative;
    z-index: 2;
}

/* O item agora "pendura" da linha, alinhado rigidamente à esquerda */
.sequence-item {
    padding: 32px 30px 40px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: opacity 0.4s ease;
}

/* Ticks marcadores no lugar de bordas verticais */
.sequence-tick {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 1px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.2);
    transition: height 0.4s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.4s ease;
}

.sequence-item:hover .sequence-tick {
    height: 24px;
    background-color: var(--white);
}

/* Numeração Editorial */
.sequence-num {
    font-family: var(--primary-font);
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.25em;
    margin-bottom: 24px;
    transition: color 0.4s ease;
}

/* Título */
.sequence-title {
    font-family: var(--primary-font);
    font-size: clamp(0.95rem, 1vw, 1.1rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.35;
    letter-spacing: -0.01em;
    margin: 0;
    transition: color 0.4s ease;
}

/* Hover States (Quiet Luxury) */
.sequence-item:hover .sequence-num {
    color: rgba(255, 255, 255, 0.8);
}

.sequence-item:hover .sequence-title {
    color: var(--white);
}

/* Destaque Final - O Endgame */
.sequence-item.highlight .sequence-tick {
    width: 2px;
    height: 16px;
    background-color: var(--white);
}

/* Quadrado geométrico perfeitamente centralizado na interseção */
.sequence-item.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1px;
    width: 5px;
    height: 5px;
    background-color: var(--white);
    transform: translate(-50%, -50%);
    margin-top: 0.5px;
    z-index: 2;
}

.sequence-item.highlight .sequence-num {
    color: var(--white);
}

.sequence-item.highlight .sequence-title {
    color: var(--white);
    font-weight: 700;
}

@media (max-width: 992px) {
    .desktop-line {
        display: none !important;
    }
    .mobile-line {
        display: inline !important;
    }
    .sequence-grid {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 40px;
    }
    
    .sequence-main-line {
        display: block;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.2);
    }
    
    .sequence-item {
        width: 100%;
        border-top: none;
        padding: 20px 0;
        position: relative;
        box-sizing: border-box;
    }
    
    .sequence-item::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 75%;
        height: 1px;
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .sequence-item:last-child::after {
        display: none;
    }
    
    .sequence-item:nth-child(odd) {
        padding-right: calc(50% + 20px);
        padding-left: 20px;
        text-align: right;
        align-items: flex-end;
    }
    
    .sequence-item:nth-child(even) {
        padding-left: calc(50% + 20px);
        padding-right: 20px;
        text-align: left;
        align-items: flex-start;
    }
    
    .sequence-tick {
        display: block;
        position: absolute;
        bottom: -2.5px;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
        width: 5px;
        height: 5px;
        background-color: #7a7a7a;
        border-radius: 50%;
        transition: background-color 0.4s ease, transform 0.4s ease;
        z-index: 3;
    }
    
    .sequence-item.highlight::before {
        display: none;
    }
    
    .sequence-item:last-child .sequence-tick {
        display: none;
    }

    .sequence-item:hover .sequence-tick {
        height: 5px;
        background-color: var(--white);
        transform: translateX(-50%) scale(1.5);
    }
    
    .sequence-num {
        font-family: var(--primary-font);
        font-size: 0.65rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.4);
        letter-spacing: 0.25em;
        margin-bottom: 8px;
        transition: color 0.4s ease;
    }
}

/* Animations for VC section */
.venture-capital .vc-overline,
.venture-capital .vc-headline,
.venture-capital .vc-text,
.venture-capital .btn-secondary-wrapper {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.venture-capital.is-visible .vc-overline { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.venture-capital.is-visible .vc-headline { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.venture-capital.is-visible .vc-text { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.venture-capital.is-visible .btn-secondary-wrapper { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

/* Sequence Animations */
.venture-capital .sequence-main-line {
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.venture-capital.is-visible .sequence-main-line {
    transform: scaleX(1);
    transition-delay: 0.5s;
}

.venture-capital .sequence-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.venture-capital.is-visible .sequence-item:nth-child(1) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }
.venture-capital.is-visible .sequence-item:nth-child(2) { transition-delay: 0.75s; opacity: 1; transform: translateY(0); }
.venture-capital.is-visible .sequence-item:nth-child(3) { transition-delay: 0.9s; opacity: 1; transform: translateY(0); }
.venture-capital.is-visible .sequence-item:nth-child(4) { transition-delay: 1.05s; opacity: 1; transform: translateY(0); }
.venture-capital.is-visible .sequence-item:nth-child(5) { transition-delay: 1.2s; opacity: 1; transform: translateY(0); }

/* Ecosystem Section */
.ecosystem {
    background-color: var(--black);
    color: var(--white);
    padding: 120px 10vw 75px;
    text-align: center;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.ecosystem-content {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    position: relative;
    z-index: 2;
}

.ecosystem-overline {
    font-family: var(--primary-font);
    font-size: 0.75rem;
    font-weight: 600;
    color: #8a959e;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ecosystem-overline .overline-line {
    width: 30px;
    height: 1px;
    background-color: #8a959e;
    margin: 0 15px;
}

.ecosystem-headline {
    font-family: var(--title-font);
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    color: var(--white);
    line-height: 1.15;
}

.ecosystem-text {
    font-family: var(--primary-font);
    font-size: 1.05rem;
    line-height: 1.8;
    color: #999999;
    max-width: 900px;
    margin: 0 auto;
}

.orbit-section {
    width: 100%;
    margin-top: 60px;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

#ecosystem-neural-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.8;
}

.orbit-wrapper {
    position: relative;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    z-index: 1;
    border: 1px dashed rgba(255, 255, 255, 0.05);
}

.ecosystem-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background-color: #050505;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: inset 0 0 30px rgba(0,0,0,1), 0 0 30px rgba(0,0,0,0.8);
}

.ecosystem-center-logo {
    width: 80px;
    height: auto;
}

.orbit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 225px; /* radius */
    height: 0;
    transform-origin: 0 50%;
    transform: translateY(-50%) rotate(var(--angle));
    z-index: 1;
}

.orbit-card {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(calc(-1 * var(--angle)));

    background-color: #080808;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    
    box-shadow:
        0 18px 44px rgba(0, 0, 0, 0.8),
        0 4px 14px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);

    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 10;
    cursor: default;

    animation: card-float 4s ease-in-out infinite;
}

.orbit-card:hover {
    transform: translate(-50%, -50%) rotate(calc(-1 * var(--angle))) scale(1.15);
    animation-play-state: paused;
    background-color: #111111;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0,0,0,0.9);
    z-index: 20;
}

.orbit-company-logo {
    max-width: 75%;
    max-height: 75%;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.6);
    transition: all 0.4s ease;
}

.scale-down {
    max-width: 55%;
    max-height: 55%;
}

.logo-white-bg {
    filter: grayscale(1) invert(1) contrast(5);
    mix-blend-mode: screen;
}

.orbit-item:nth-child(1) .orbit-card { animation-delay: 0s; animation-duration: 3.8s; }
.orbit-item:nth-child(2) .orbit-card { animation-delay: -1.2s; animation-duration: 4.3s; }
.orbit-item:nth-child(3) .orbit-card { animation-delay: -2.5s; animation-duration: 3.6s; }
.orbit-item:nth-child(4) .orbit-card { animation-delay: -0.7s; animation-duration: 4.8s; }
.orbit-item:nth-child(5) .orbit-card { animation-delay: -3.1s; animation-duration: 4.1s; }
.orbit-item:nth-child(6) .orbit-card { animation-delay: -1.8s; animation-duration: 3.9s; }
.orbit-item:nth-child(7) .orbit-card { animation-delay: -0.4s; animation-duration: 4.5s; }
.orbit-item:nth-child(8) .orbit-card { animation-delay: -2.0s; animation-duration: 4.0s; }
.orbit-item:nth-child(9) .orbit-card { animation-delay: -2.8s; animation-duration: 4.4s; }

@keyframes card-float {
    0% { transform: translate(-50%, -50%) rotate(calc(-1 * var(--angle))) translateY(0px); }
    50% { transform: translate(-50%, -50%) rotate(calc(-1 * var(--angle))) translateY(-7px); }
    100% { transform: translate(-50%, -50%) rotate(calc(-1 * var(--angle))) translateY(0px); }
}

.ecosystem .ecosystem-overline,
.ecosystem .ecosystem-headline,
.ecosystem .ecosystem-text,
.ecosystem .ecosystem-btn-wrapper {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.ecosystem.is-visible .ecosystem-overline { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.ecosystem.is-visible .ecosystem-headline { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.ecosystem.is-visible .ecosystem-text { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.ecosystem.is-visible .ecosystem-btn-wrapper { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

.orbit-section {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1), transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.ecosystem.is-visible .orbit-section {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.5s;
}

@media (max-width: 992px) {
    .orbit-section {
        height: auto;
        padding: 50px 0 40px;
        margin-top: 50px;
        /* full-bleed: escapa do padding lateral de 10vw da .ecosystem */
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }
    
    #ecosystem-neural-canvas {
        display: block; /* Manteve o canvas no mobile */
    }
    
    .orbit-wrapper {
        width: clamp(260px, 72vw, 420px);
        height: clamp(260px, 72vw, 420px);
        border: 1px dashed rgba(255, 255, 255, 0.05);
        display: block;
        background: transparent;
        margin: 0 auto;
    }
    
    .orbit-item {
        position: absolute;
        top: 50%;
        left: 50%;
        width: clamp(130px, 36vw, 210px); /* Metade do orbit-wrapper */
        height: 0;
        transform-origin: 0 50%;
        transform: translateY(-50%) rotate(var(--angle));
        z-index: 1;
    }

    .orbit-card {
        position: absolute;
        left: 100%;
        top: 50%;
        transform: translate(-50%, -50%) rotate(calc(-1 * var(--angle)));
        width: clamp(58px, 15.5vw, 90px);
        height: clamp(58px, 15.5vw, 90px);
        border-radius: 14px;
        animation: card-float 4s ease-in-out infinite;
        margin-bottom: 0;
    }

    .orbit-card:hover {
        transform: translate(-50%, -50%) rotate(calc(-1 * var(--angle))) scale(1.15);
    }

    .ecosystem-center {
        position: absolute;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
        width: clamp(90px, 23vw, 130px);
        height: clamp(90px, 23vw, 130px);
        margin-bottom: 0;
    }

    .ecosystem-center-logo {
        width: clamp(50px, 13vw, 78px);
    }
}
/* Agency Section */
.agency {
    background-color: var(--black);
    padding: 60px 10vw 120px;
    position: relative;
    z-index: 10;
}

.agency-header {
    margin-bottom: 60px;
    max-width: 900px;
}

.agency-overline {
    font-family: var(--primary-font);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--highlight-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.agency-overline .overline-line {
    width: 30px;
    height: 2px;
    background-color: var(--highlight-color);
    margin-right: 15px;
}

.agency-main-title {
    font-family: var(--title-font);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 0.95;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.agency-main-subtitle {
    font-family: var(--primary-font);
    font-size: 1.15rem;
    line-height: 1.6;
    color: #a0a0a0;
}

/* Agency Layout */
.agency-container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
}

/* Agency Card */
.agency-card {
    flex: 1;
    background-color: #111111;
    border: 1px solid #222222;
    border-radius: 20px;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
}

.agency-card-badge {
    align-self: flex-start;
    padding: 8px 16px;
    background-color: transparent;
    border: 1px solid rgba(36, 198, 233, 0.2);
    border-radius: 30px;
    color: var(--highlight-color);
    font-family: var(--primary-font);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.agency-card-title {
    font-family: var(--title-font);
    font-size: clamp(1.8rem, 2.8vw, 2.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 0.9;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.agency-card-text {
    font-family: var(--primary-font);
    font-size: 1rem;
    line-height: 1.6;
    color: #888888;
    margin-bottom: 25px;
}

.agency-services {
    list-style: none;
    margin-bottom: 25px;
}

.agency-services li {
    font-family: var(--primary-font);
    font-size: 0.95rem;
    color: #cccccc;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.agency-services li svg {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.agency-pricing-new {
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
}

.price-highlight {
    font-family: var(--title-font);
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.02em;
}

.price-suffix {
    font-family: var(--primary-font);
    font-size: 1rem;
    font-weight: 500;
    color: #888888;
    margin-left: 5px;
}

.btn-agency-solid {
    display: inline-block;
    padding: 16px 30px;
    background-color: var(--highlight-color);
    color: var(--black);
    text-align: center;
    text-decoration: none;
    font-family: var(--title-font);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-agency-solid:hover {
    background-color: var(--white);
    transform: translateY(-2px);
}

/* Card Image Wrapper */
.agency-image-wrapper {
    flex: 1;
    position: relative;
    display: block;
    border-radius: 20px;
}

.agency-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    z-index: 2;
    filter: contrast(1.05) brightness(0.9);
}

/* Animations for Agency section */
.agency .agency-header,
.agency .agency-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.agency .agency-image-wrapper {
    opacity: 0;
    transform: translateX(40px); /* now coming from right since it's on right side */
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.agency.is-visible .agency-image-wrapper {
    opacity: 1;
    transform: translateX(0);
}

.agency.is-visible .agency-header { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.agency.is-visible .agency-card { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

/* ========================================
   Talent / Image Section (Palestras + A Cúpula)
   ======================================== */
.talent {
    background-color: var(--black);
    padding: 100px 10vw 120px;
    position: relative;
    z-index: 10;
}

/* Subtle top divider removed to keep pure black background */
.talent::before {
    display: none;
}

.talent-header {
    margin-bottom: 60px;
    max-width: 900px;
}

.talent-overline {
    font-family: var(--primary-font);
    font-size: 0.75rem;
    font-weight: 600;
    color: #8a959e;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.talent-overline .overline-line {
    width: 30px;
    height: 1px;
    background-color: #8a959e;
    margin-right: 15px;
}

.talent-main-title {
    font-family: var(--title-font);
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.talent-main-subtitle {
    font-family: var(--primary-font);
    font-size: 1.05rem;
    line-height: 1.8;
    color: #999999;
    max-width: 850px;
}

/* Cards Container */
.talent-container {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

/* Individual Card */
.talent-card {
    flex: 1;
    background-color: #0c0c0c;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.talent-card:hover {
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* 4:3 Image Wrapper */
.talent-card-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 ratio */
    overflow: hidden;
    flex-shrink: 0;
}

.talent-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05) brightness(0.85);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
}

.talent-card:hover .talent-card-image {
    transform: scale(1.03);
    filter: contrast(1.05) brightness(0.9);
}

/* Specific zoom for A Cúpula image to crop out baked-in letterboxing */
.talent-card-image.img-cupula {
    transform: scale(1.35);
}

.talent-card:hover .talent-card-image.img-cupula {
    transform: scale(1.39);
}

.talent-card-image.img-bottom-align {
    object-position: 50% 80%;
}

/* Card Content */
.talent-card-content {
    padding: 30px 30px 35px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.talent-card-badge {
    align-self: flex-start;
    padding: 6px 14px;
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 0;
    color: rgba(255,255,255,0.6);
    font-family: var(--primary-font);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.talent-card-title {
    font-family: var(--title-font);
    font-size: clamp(1.6rem, 2.2vw, 2.4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.talent-card-text {
    font-family: var(--primary-font);
    font-size: 1.05rem;
    line-height: 1.8;
    color: #999999;
    margin-bottom: 25px;
    flex-grow: 1;
}

.btn-talent {
    display: block;
    width: 100%;
    padding: 14px 30px;
    background-color: transparent;
    color: var(--white);
    text-align: center;
    text-decoration: none;
    font-family: var(--title-font);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-talent:hover {
    background-color: var(--white);
    color: var(--black);
    transform: none;
}

/* Animations for Talent section */
.talent .talent-header {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.talent .talent-card {
    flex: 1;
    background-color: #0c0c0c;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), 
                transform 1s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.4s ease, 
                box-shadow 0.4s ease;
}

.talent.is-visible .talent-header { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.talent.is-visible .talent-card:nth-child(1) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.talent.is-visible .talent-card:nth-child(2) { transition-delay: 0.55s; opacity: 1; transform: translateY(0); }




/* ========================================
   Footer Section
   ======================================== */
.footer {
    background-color: var(--black);
    padding: 60px 4vw 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    position: relative;
}

.footer-logo-container {
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--white);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.footer-nav-link:hover {
    color: var(--white);
}

.footer-nav-link:hover::after {
    transform: scaleX(1);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .header {
        padding: 20px 30px;
    }
    .nav {
        gap: 20px;
        margin-right: 2vw;
    }
    .hero-content {
        bottom: 4vh;
        right: 4vw;
    }
}

@media (max-width: 992px) {
    .desktop-line {
        display: none !important;
    }
    .mobile-line {
        display: inline !important;
    }
    .nav {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    .blob-top {
        height: 45vw;
    }
    .about-container {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }
    .about-content {
        display: contents;
    }
    .about-overline { order: 1; }
    .about-headline { order: 2; }
    .about-text-wrapper { order: 3; margin-bottom: 40px; }
    .about-image-wrapper {
        order: 4;
        justify-content: center;
        margin-bottom: 40px;
        width: 100%;
    }
    .about-image {
        aspect-ratio: 1 / 1;
        width: 100%;
    }
    .about-metrics {
        order: 6;
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
        margin-bottom: 40px;
        width: 100%;
        border-top: none;
        padding-top: 0;
    }
    .about-metrics .metric-item {
        align-items: flex-start;
        text-align: left;
    }
    .about-metrics .metric-item:nth-child(2),
    .about-metrics .metric-item:nth-child(3) {
        transform: translateX(-11px);
    }
    .btn-primary-wrapper {
        order: 5;
        text-align: center;
        width: 100%;
        margin-bottom: 40px;
    }
    .ecosystem {
        text-align: left;
    }
    .ecosystem-overline {
        justify-content: flex-start;
    }
    .ecosystem-overline .overline-line:first-child {
        margin-left: 0;
    }
    .ecosystem-overline .overline-line:last-child {
        display: none;
    }
    .ecosystem-text {
        margin: 0;
    }
    .ecosystem-btn-wrapper .btn-primary {
        width: 100%;
        display: block;
        text-align: center;
    }
    .venture-capital {
        text-align: left;
        padding-bottom: 0;
    }
    .vc-overline {
        justify-content: flex-start;
    }
    .vc-overline .overline-line:first-child {
        margin-left: 0;
    }
    .vc-overline .overline-line:last-child {
        display: none;
    }
    .vc-text {
        margin: 0 0 25px 0;
    }
    .btn-secondary-wrapper .btn-secondary {
        width: 100%;
        display: block;
        text-align: center;
        box-sizing: border-box;
    }
    .agency-container {
        flex-direction: column;
        text-align: left;
    }
    .agency .agency-image-wrapper {
        transform: translateY(30px);
        min-height: 400px;
    }
    .agency.is-visible .agency-image-wrapper {
        transform: translateY(0);
    }
    .agency-card {
        padding: 40px 30px;
    }
    .talent-container {
        flex-direction: column;
    }
    .about-content {
        flex-direction: column;
        gap: 12px;
    }
    .vc-target-title {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .blob-top {
        height: 60vw;
    }
    .shape-bottom-white {
        height: 40vw;
    }
    .hero-content {
        bottom: 20px;
        right: 20px;
        left: 20px;
        align-items: center;
    }
    .hero-title {
        text-align: center;
        align-items: center;
    }
    .line1 {
        margin-bottom: 0;
    }
    .about {
        padding: 60px 5vw;
    }
    .about-headline {
        text-align: left;
    }
    .companies-title {
        text-align: center;
    }
    .btn-primary {
        text-align: center;
        width: 100%;
        display: block;
    }
    .metric-value {
        font-size: 1.65rem;
    }
    .metric-label {
        font-size: 0.75rem;
    }
    .agency {
        padding: 60px 5vw;
    }
    .agency-card {
        padding: 30px 20px;
    }
    .agency-image-wrapper {
        min-height: 300px;
    }
    .btn-agency-solid {
        display: block;
        text-align: center;
    }
    .talent {
        padding: 60px 5vw;
    }
    .talent-card-content {
        padding: 25px 20px 30px;
    }
    .btn-talent {
    display: block;
    width: 100%;
    padding: 14px 30px;
    background-color: transparent;
    color: var(--white);
    text-align: center;
    text-decoration: none;
    font-family: var(--title-font);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 0;
    transition: all 0.3s ease;
}
    .footer-nav {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
}

/* ========================================
   Subpage Base & Nav (Quem Somos Nós)
   ======================================== */
.subpage-body {
    background-color: var(--black);
    color: var(--white);
    padding-top: 80px; /* Compensate for fixed header */
}

.nav-link.active {
    color: var(--white);
}

.nav-link.active::after {
    transform: scaleX(1);
}

/* .subpage-header herda o estilo glass do .header (ver "Floating Liquid Glass Header") */

/* ========================================
   Quem Somos Nós - Intro Section
   ======================================== */
.page-quem-somos {
    background-color: var(--black);
    min-height: 100vh;
}

.qs-intro {
    background-color: #fdfdfd;
    padding: 140px 10vw 80px;
    position: relative;
    z-index: 10;
}

.qs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.qs-intro-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.qs-intro-content {
    flex: 1.2;
    max-width: 650px; /* narrowed so text becomes taller */
}

.qs-intro-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.qs-intro-image {
    max-width: 480px;
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
    filter: saturate(0.85) contrast(1.05) brightness(0.95);
}

.qs-highlight-section {
    margin-top: 50px;
    width: 100%;
}

.qs-overline {
    font-family: var(--primary-font);
    font-size: 0.75rem;
    font-weight: 600;
    color: #5c6a79;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.qs-overline .overline-line {
    width: 30px;
    height: 1px;
    background-color: #5c6a79;
    margin-right: 15px;
}

.qs-headline {
    font-family: var(--title-font);
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    font-weight: 800;
    color: #222222;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.qs-headline .highlight {
    color: #222222;
}

.qs-text-content {
    margin-bottom: 30px;
}

.qs-text {
    font-family: var(--primary-font);
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
}

.qs-text strong {
    color: #222222;
    font-weight: 600;
}

.highlight-box {
    margin-top: 40px;
    padding-left: 25px;
    border-left: 2px solid #222222;
}

.highlight-box strong {
    font-size: 1.15rem;
    color: #222222;
}

.mobile-only-img {
    display: none;
}

@media (max-width: 992px) {
    .qs-intro {
        padding-top: 100px;
    }
    .qs-intro-flex {
        flex-direction: column;
        gap: 40px;
    }
    .qs-intro-image-wrapper.desktop-only-img {
        display: none;
    }
    .mobile-only-img {
        display: block;
        width: 100%;
        margin-top: 80px;
        margin-bottom: 40px;
    }
    .mobile-only-img img {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        object-position: top center;
    }
}

@media (max-width: 768px) {
    .qs-headline {
        font-size: 1.7rem;
    }
}

/* Stats Section */
.qs-stats-section {
    padding: 40px 10vw 0;
    position: relative;
    z-index: 1;
}

.qs-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px 0;
    border-bottom: 1px solid #222222;
    margin-bottom: 60px;
}

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

.qs-stat-number {
    font-family: var(--title-font);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}

.qs-stat-label {
    font-family: var(--primary-font);
    font-size: 0.9rem;
    line-height: 1.5;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .qs-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .qs-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
    .qs-stat-item {
        text-align: center;
        align-items: center;
    }
}

/* ========================================
   Quem Somos Nós - Timeline Section
   ======================================== */
.qs-timeline-section {
    padding: 40px 10vw 100px;
    background-color: var(--black);
}

.timeline-main-title {
    font-family: var(--primary-font);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 100px;
}

 /* Minimalist Reference Timeline */
.ref-timeline {
    position: relative;
    margin: 80px 0 120px;
}

.ref-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 1;
    transform: translateY(-50%);
}

.ref-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 2;
}

.ref-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.ref-top {
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 25px;
    text-align: center;
    width: 100%;
}

.ref-bottom {
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 25px;
    text-align: center;
    width: 100%;
}

.ref-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background-color: var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.ref-year {
    font-family: var(--title-font);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
    color: var(--white);
}

.ref-desc {
    font-family: var(--primary-font);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.5;
    text-align: center;
}

/* Hoje Circle */
.ref-item-hoje {
    justify-content: center;
}

.ref-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    z-index: 4;
    background-color: transparent;
}

.ref-circle-top {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
}

.ref-circle-bottom {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 20px;
}

.ref-circle-title {
    font-family: var(--primary-font);
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--white);
    text-transform: uppercase;
}

.ref-circle-hoje {
    font-family: var(--title-font);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.ref-circle-desc {
    font-family: var(--primary-font);
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .ref-grid {
        grid-template-columns: 1fr;
    }
    .ref-line {
        width: 1px;
        height: 100%;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }
    .ref-item {
        flex-direction: column;
        height: 180px;
        justify-content: center;
        padding: 0;
        position: relative;
    }
    .ref-top, .ref-bottom {
        height: auto;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
    }
    .ref-top {
        margin-bottom: 5px;
    }
    .ref-dot {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    /* Odd Items (2005, 2022) - Text on the left */
    .ref-item:nth-child(odd) .ref-top,
    .ref-item:nth-child(odd) .ref-bottom {
        align-items: flex-end;
        padding-right: calc(50% + 25px);
    }
    .ref-item:nth-child(odd) .ref-desc {
        text-align: right;
    }

    /* Even Items (2017) - Text on the right */
    .ref-item:nth-child(2) .ref-top,
    .ref-item:nth-child(2) .ref-bottom {
        align-items: flex-start;
        padding-left: calc(50% + 25px);
    }
    .ref-item:nth-child(2) .ref-desc {
        text-align: left;
    }

    /* HOJE Circle */
    .ref-item.ref-item-hoje {
        height: 250px;
        align-items: center;
        justify-content: flex-start;
        margin-top: 90px;
    }
    .ref-item-hoje .ref-top,
    .ref-item-hoje .ref-bottom {
        padding: 0;
        align-items: center;
    }
    .ref-item-hoje .ref-desc {
        text-align: center;
    }
    .ref-circle {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 220px;
        height: 220px;
        margin: 0 auto;
        background-color: var(--black);
        border-color: rgba(255,255,255,0.6);
    }
    .ref-circle-top {
        padding-bottom: 0px;
    }
    .ref-circle-bottom {
        padding-top: 10px;
    }
    .ref-item-hoje .ref-dot {
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
    }
}

.qs-history-text {
    max-width: 900px;
    margin: 0 auto;
    font-family: var(--primary-font);
    font-size: 1.1rem;
    line-height: 1.7;
    color: #a0a0a0;
}

.qs-history-text p {
    margin-bottom: 20px;
}

/* Animations */
.qs-intro .qs-overline,
.qs-intro .qs-headline,
.qs-intro .qs-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.qs-intro.is-visible .qs-overline { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.qs-intro.is-visible .qs-headline { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.qs-intro.is-visible .qs-text:nth-of-type(1) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.qs-intro.is-visible .qs-text:nth-of-type(2) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.qs-intro.is-visible .qs-text.highlight-box { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

.qs-stats-section .qs-stat-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.qs-stats-section.is-visible .qs-stat-item:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.qs-stats-section.is-visible .qs-stat-item:nth-child(2) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.qs-stats-section.is-visible .qs-stat-item:nth-child(3) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.qs-stats-section.is-visible .qs-stat-item:nth-child(4) { transition-delay: 0.55s; opacity: 1; transform: translateY(0); }

.qs-timeline-section .ref-item,
.qs-timeline-section .qs-history-text p {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.qs-timeline-section.is-visible .ref-item:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.qs-timeline-section.is-visible .ref-item:nth-child(2) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.qs-timeline-section.is-visible .ref-item:nth-child(3) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.qs-timeline-section.is-visible .ref-item:nth-child(4) { transition-delay: 0.7s; opacity: 1; transform: translateY(0); }

.qs-timeline-section.is-visible .qs-history-text p:nth-child(1) { transition-delay: 0.8s; opacity: 1; transform: translateY(0); }
.qs-timeline-section.is-visible .qs-history-text p:nth-child(2) { transition-delay: 0.9s; opacity: 1; transform: translateY(0); }

/* ==========================================================================
   VENTURE CAPITAL SUBPAGE — Institutional Art Direction
   ========================================================================== */

.page-venture-capital {
    background-color: var(--black);
    min-height: 100vh;
}

/* --- VC Hero --- */
.vc-hero {
    background-color: #fdfdfd;
    padding: 80px 10vw 0;
    position: relative;
    z-index: 10;
}

.vc-hero-inner {
    display: flex;
    align-items: stretch;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.vc-hero-content {
    flex: 0 0 58%;
    padding-right: 4vw;
    padding-top: 60px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.vc-hero-label {
    font-family: var(--primary-font);
    font-size: 0.75rem;
    font-weight: 600;
    color: #5c6a79;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.vc-hero-label .overline-line {
    width: 30px;
    height: 1px;
    background-color: #5c6a79;
    margin-right: 15px;
}

.vc-hero-headline {
    font-family: var(--title-font);
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    font-weight: 800;
    color: #222222;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.vc-hero-headline .highlight {
    color: #222222;
}

.vc-hero-text {
    font-family: var(--primary-font);
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 16px;
    max-width: 520px;
    font-weight: 400;
}

.vc-hero-text--secondary {
    font-weight: 500;
    color: #222222;
    font-size: 1rem;
}

.vc-hero-image-wrapper {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    min-height: 560px;
}

.vc-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: saturate(0.85) contrast(1.05) brightness(0.95);
}

@media (max-width: 992px) {
    .vc-hero-inner {
        flex-direction: column;
    }
    .vc-hero-content {
        flex: 1;
        padding-right: 0;
        padding-bottom: 50px;
    }
    .vc-hero-image-wrapper {
        flex: 1;
        min-height: 400px;
        width: calc(100% + 20vw);
        margin-left: -10vw;
    }
}

@media (max-width: 768px) {
    .vc-hero {
        padding: 40px 5vw 0;
    }
    .vc-hero-headline {
        font-size: 1.7rem;
    }
    .vc-hero-image-wrapper {
        min-height: 320px;
        width: calc(100% + 10vw);
        margin-left: -5vw;
    }
}

/* --- Differentiators — Editorial Strip --- */
.vc-diff-section {
    background-color: var(--black);
    padding: 70px 10vw 60px;
    position: relative;
}

.vc-diff-grid {
    display: flex;
    gap: 0;
}

.vc-diff-item {
    flex: 1;
    padding: 0 35px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.vc-diff-item:first-child {
    border-left: none;
    padding-left: 0;
}

.vc-diff-item:last-child {
    padding-right: 0;
}

.vc-diff-title {
    font-family: var(--primary-font);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 0;
}

.vc-diff-text {
    font-family: var(--primary-font);
    font-size: 0.88rem;
    line-height: 1.65;
    color: #777777;
    font-weight: 400;
}

@media (max-width: 992px) {
    .vc-diff-grid {
        flex-direction: column;
        gap: 0;
    }
    .vc-diff-item {
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 28px 0;
    }
    .vc-diff-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .vc-diff-section {
        padding: 50px 5vw 40px;
    }
}

/* --- Valuation Section --- */
.vc-valuation-section {
    background-color: var(--black);
    color: var(--white);
    padding: 120px 10vw;
    position: relative;
}

.vc-val-header {
    margin: 0 auto;
    max-width: 800px;
    text-align: center;
}

.vc-section-title {
    font-family: var(--title-font);
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.vc-section-desc {
    font-family: var(--primary-font);
    font-size: 1.05rem;
    line-height: 1.75;
    color: #888888;
    font-weight: 400;
}

.vc-factors-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.vc-factor-item {
    padding: 40px 30px 40px 0;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.vc-factor-item:first-child {
    border-left: none;
    padding-left: 0;
}

.vc-factor-num {
    font-family: var(--primary-font);
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 24px;
    letter-spacing: 0.2em;
}

.vc-factor-text {
    font-family: var(--primary-font);
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .vc-factors-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .vc-factor-item {
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding: 28px 0;
    }
}

@media (max-width: 768px) {
    .vc-valuation-section {
        padding: 80px 5vw;
    }
}

/* --- Target Section — Editorial Rows, no cards --- */
.vc-target-section {
    background-color: var(--white);
    padding: 140px 10vw 120px;
}

.vc-target-header {
    margin-bottom: 80px;
    text-align: center;
}

.vc-target-section .vc-section-title {
    color: var(--black);
}

.vc-target-list {
    max-width: 100%;
}

.vc-target-row {
    display: flex;
    align-items: baseline;
    padding: 45px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    gap: 60px;
}

.vc-target-row:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.vc-target-num {
    font-family: var(--primary-font);
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.25);
    letter-spacing: 0.2em;
    flex-shrink: 0;
    width: 40px;
    padding-top: 4px;
}

.vc-target-content {
    flex: 1;
    display: flex;
    align-items: baseline;
    gap: 60px;
}

.vc-target-title {
    font-family: var(--title-font);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1.25;
    flex: 0 0 340px;
    letter-spacing: -0.02em;
}

.vc-target-text {
    font-family: var(--primary-font);
    font-size: 0.95rem;
    line-height: 1.7;
    color: #777777;
    font-weight: 400;
    flex: 1;
}

@media (max-width: 992px) {
    .vc-target-header {
        margin-bottom: 20px;
    }
    .vc-target-content {
        flex-direction: column;
        gap: 12px;
    }
    .vc-target-title {
        flex: 1;
    }
    .vc-target-row {
        gap: 30px;
        padding: 25px 0;
    }
}

@media (max-width: 768px) {
    .vc-target-section {
        padding: 80px 5vw;
    }
    .vc-target-row {
        flex-direction: column;
        gap: 8px;
    }
    .vc-target-num {
        width: auto;
    }
}

/* --- Scope Section --- */
.vc-scope-section {
    background-color: var(--black);
    padding: 120px 10vw;
    position: relative;
}

.vc-scope-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 100px;
}

.vc-scope-left {
    flex: 1.2;
    max-width: 550px;
}

.vc-scope-headline {
    font-family: var(--title-font);
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.vc-scope-headline .highlight {
    color: var(--white);
}

.vc-scope-text {
    font-family: var(--primary-font);
    font-size: 1.05rem;
    line-height: 1.75;
    color: #888888;
    font-weight: 400;
}

.vc-scope-right {
    flex: 1;
    display: flex;
    align-items: flex-start;
    padding-top: 15px;
}

.vc-scope-list {
    width: 100%;
}

.vc-scope-item {
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-family: var(--primary-font);
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s ease;
}

.vc-scope-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.vc-scope-item:hover {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 992px) {
    .vc-scope-content {
        flex-direction: column;
        gap: 60px !important;
        align-items: flex-start !important;
    }
    .vc-scope-left, .vc-scope-right {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .vc-scope-section {
        padding: 80px 5vw;
    }
    .vc-scope-headline {
        font-size: 1.4rem;
    }
}

/* --- CTA Section — Clean, no glow --- */
.vc-cta-section {
    padding: 80px 10vw 140px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.vc-cta-headline {
    font-family: var(--title-font);
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.vc-cta-text {
    font-family: var(--primary-font);
    font-size: 1.05rem;
    line-height: 1.75;
    color: #888888;
    margin-bottom: 45px;
    font-weight: 400;
}

.btn-vc-cta {
    display: inline-block;
    padding: 16px 44px;
    background-color: var(--white);
    color: var(--black);
    text-decoration: none;
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 0;
    transition: background-color 0.3s ease;
}

.btn-vc-cta:hover {
    background-color: #e0e0e0;
}

/* --- Responsive VC Subpage --- */
@media (max-width: 768px) {
    .vc-cta-section {
        padding: 60px 5vw 80px;
    }
}

/* --- Animations — Minimal, opacity only --- */

/* Hero */
.vc-hero .vc-hero-label,
.vc-hero .vc-hero-headline,
.vc-hero .vc-hero-text,
.vc-hero .vc-hero-image-wrapper {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.vc-hero.is-visible .vc-hero-label { transition-delay: 0.1s; opacity: 1; }
.vc-hero.is-visible .vc-hero-headline { transition-delay: 0.15s; opacity: 1; }
.vc-hero.is-visible .vc-hero-text:nth-of-type(1) { transition-delay: 0.25s; opacity: 1; }
.vc-hero.is-visible .vc-hero-text:nth-of-type(2) { transition-delay: 0.3s; opacity: 1; }
.vc-hero.is-visible .vc-hero-image-wrapper { transition-delay: 0.1s; opacity: 1; }

/* Differentiators */
.vc-diff-section .vc-diff-item {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.vc-diff-section.is-visible .vc-diff-item:nth-child(1) { transition-delay: 0.1s; opacity: 1; }
.vc-diff-section.is-visible .vc-diff-item:nth-child(2) { transition-delay: 0.15s; opacity: 1; }
.vc-diff-section.is-visible .vc-diff-item:nth-child(3) { transition-delay: 0.2s; opacity: 1; }
.vc-diff-section.is-visible .vc-diff-item:nth-child(4) { transition-delay: 0.25s; opacity: 1; }

/* Valuation */
.vc-valuation-section .vc-val-header,
.vc-valuation-section .vc-factor-item {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.vc-valuation-section.is-visible .vc-val-header { transition-delay: 0.1s; opacity: 1; }
.vc-valuation-section.is-visible .vc-factor-item:nth-child(1) { transition-delay: 0.2s; opacity: 1; }
.vc-valuation-section.is-visible .vc-factor-item:nth-child(2) { transition-delay: 0.28s; opacity: 1; }
.vc-valuation-section.is-visible .vc-factor-item:nth-child(3) { transition-delay: 0.36s; opacity: 1; }
.vc-valuation-section.is-visible .vc-factor-item:nth-child(4) { transition-delay: 0.44s; opacity: 1; }
.vc-valuation-section.is-visible .vc-factor-item:nth-child(5) { transition-delay: 0.52s; opacity: 1; }

/* Target */
.vc-target-section .vc-target-header,
.vc-target-section .vc-target-row {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.vc-target-section.is-visible .vc-target-header { transition-delay: 0.1s; opacity: 1; }
.vc-target-section.is-visible .vc-target-row:nth-child(1) { transition-delay: 0.2s; opacity: 1; }
.vc-target-section.is-visible .vc-target-row:nth-child(2) { transition-delay: 0.35s; opacity: 1; }
.vc-target-section.is-visible .vc-target-row:nth-child(3) { transition-delay: 0.5s; opacity: 1; }

/* Scope */
.vc-scope-section .vc-hero-label,
.vc-scope-section .vc-scope-headline,
.vc-scope-section .vc-scope-text,
.vc-scope-section .vc-scope-item {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.vc-scope-section.is-visible .vc-hero-label { transition-delay: 0.1s; opacity: 1; }
.vc-scope-section.is-visible .vc-scope-headline { transition-delay: 0.2s; opacity: 1; }
.vc-scope-section.is-visible .vc-scope-text { transition-delay: 0.3s; opacity: 1; }
.vc-scope-section.is-visible .vc-scope-item:nth-child(1) { transition-delay: 0.3s; opacity: 1; }
.vc-scope-section.is-visible .vc-scope-item:nth-child(2) { transition-delay: 0.38s; opacity: 1; }
.vc-scope-section.is-visible .vc-scope-item:nth-child(3) { transition-delay: 0.46s; opacity: 1; }
.vc-scope-section.is-visible .vc-scope-item:nth-child(4) { transition-delay: 0.54s; opacity: 1; }

/* CTA */
.vc-cta-section .vc-cta-headline,
.vc-cta-section .vc-cta-text,
.vc-cta-section .btn-vc-cta {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.vc-cta-section.is-visible .vc-cta-headline { transition-delay: 0.1s; opacity: 1; }
.vc-cta-section.is-visible .vc-cta-text { transition-delay: 0.2s; opacity: 1; }
.vc-cta-section.is-visible .btn-vc-cta { transition-delay: 0.3s; opacity: 1; }



.company-node:hover .company-logo-img {
    filter: brightness(0) invert(1) opacity(1);
}

/* ==========================================================================
   PALESTRAS SUBPAGE & FORM
   ========================================================================== */

.page-palestras {
    background-color: var(--black);
    min-height: 100vh;
}

/* Palestras Hero Section */
.palestras-hero {
    background-color: var(--white);
    padding-top: 50px; /* Reduced from 80px to move text up */
    padding-bottom: 80px;
}

.palestras-hero .vc-hero-inner {
    align-items: center;
}

.palestras-hero .palestras-headline {
    color: var(--black);
}

.palestras-hero .palestras-text {
    color: #444444;
}

.palestras-hero .palestras-label {
    color: #444444;
}

.palestras-hero .vc-hero-content {
    padding-top: 60px; /* Increased to move the top text down */
    flex: 0 0 48%;
    padding-right: 5vw;
}

.palestras-hero-image-wrapper {
    flex: 0 0 52%;
    max-width: 600px;
    min-height: unset;
    aspect-ratio: 4 / 3;
    margin: 0; /* Align perfectly with text */
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .palestras-hero-image-wrapper {
        flex: 1;
        max-width: 100%;
        margin-left: 0;
        width: 100%;
    }
}

.palestras-temas-title {
    font-family: var(--title-font);
    font-size: 1.15rem;
    font-weight: 800;
    color: #888888;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.palestras-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.palestras-list li {
    font-family: var(--primary-font);
    font-size: 1.05rem;
    color: #222222;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.palestras-list li::before {
    content: "•";
    color: var(--highlight-color);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    line-height: 1.2;
}

/* Palestras List Animations */
.vc-hero .palestras-temas-title,
.vc-hero .palestras-list li {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.vc-hero.is-visible .palestras-temas-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.vc-hero.is-visible .palestras-list li:nth-child(1) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }
.vc-hero.is-visible .palestras-list li:nth-child(2) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.vc-hero.is-visible .palestras-list li:nth-child(3) { transition-delay: 0.55s; opacity: 1; transform: translateY(0); }
.vc-hero.is-visible .palestras-list li:nth-child(4) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }
.vc-hero.is-visible .palestras-list li:nth-child(5) { transition-delay: 0.65s; opacity: 1; transform: translateY(0); }

/* Palestras Topics Section */
.palestras-topics-section {
    background-color: var(--black);
    padding: 100px 10vw 40px; 
    text-align: center;
}

.topics-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.palestras-temas-title-new {
    font-family: var(--title-font);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    text-align: center;
}

.palestras-list-centered {
    display: inline-block;
    text-align: left;
}

.text-white {
    color: #ffffff !important;
}

.list-light li {
    color: #f0f0f0;
}

/* Palestras Form Section */
.palestras-form-section {
    padding: 60px 10vw 120px;
    background-color: var(--black);
}

.form-container {
    background-color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.form-title {
    font-family: var(--title-font);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--highlight-color);
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.palestra-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 24px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    font-family: var(--title-font);
    font-size: 0.85rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
    background-color: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 16px;
    color: #ffffff;
    font-family: var(--primary-font);
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--highlight-color);
}

.btn-submit-palestra {
    background-color: var(--highlight-color);
    color: var(--black);
    font-family: var(--title-font);
    font-weight: 800;
    font-size: 1rem;
    padding: 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
    width: 100%;
}

.btn-submit-palestra:hover {
    background-color: #1ea8c6;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 24px;
    }
    .form-container {
        padding: 30px 20px;
    }
}

/* A Cúpula Episodes Section */
.cupula-episodes-section {
    padding: 80px 10vw;
    background-color: var(--white);
    position: relative;
    z-index: 10;
}

.cupula-episodes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.cupula-episode-card {
    display: block;
    text-decoration: none;
    color: var(--black);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cupula-episode-card:hover {
    transform: translateY(-10px);
}

.episode-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.episode-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 40%);
    opacity: 0.6;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.cupula-episode-card:hover .episode-image-wrapper::after {
    opacity: 0.3;
}

.episode-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.cupula-episode-card:hover .episode-image {
    transform: scale(1.05);
}

.episode-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.4s ease;
}

.cupula-episode-card:hover .episode-play-btn {
    background-color: var(--highlight-color);
    border-color: var(--highlight-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.episode-content {
    padding: 0 10px;
}

.episode-number {
    font-family: var(--primary-font);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--highlight-color);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.episode-title {
    font-family: var(--title-font);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.episode-desc {
    font-family: var(--primary-font);
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 768px) {
    .cupula-episodes-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .cupula-episode-card:not(:last-child) {
        border-bottom: 1px solid rgba(0,0,0,0.1);
        padding-bottom: 60px;
    }
}
@media (max-width: 992px) {
    .topics-form-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}

/* Essence Section (Institutional Architecture) */
.essence {
    background-color: var(--black);
    color: var(--white);
    padding: 80px 8vw 160px;
    position: relative;
    z-index: 10;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.essence-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 5vw;
}

.essence-text-col {
    flex: 0 0 35%;
    position: relative;
    z-index: 3;
    margin-top: 115px;
}

.essence-visual-col {
    flex: 0 0 65%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 2;
}

.geo-network-svg {
    width: 100%;
    max-width: 900px;
    height: auto;
    object-fit: contain;
    /* Soft floating animation */
    animation: float-geo 20s ease-in-out infinite;
}

.blueprint-render {
    mix-blend-mode: screen; /* Removes black background of the image and keeps only luminous white lines */
    opacity: 0.9;
    filter: contrast(1.1);
}

@keyframes float-geo {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(0.5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.essence-overline {
    font-family: var(--primary-font);
    font-size: 0.75rem;
    font-weight: 600;
    color: #8a959e;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.essence-overline .overline-line {
    width: 30px;
    height: 1px;
    background-color: #8a959e;
    margin-right: 15px;
}

.essence-headline {
    font-family: var(--title-font);
    font-size: clamp(2rem, 3.2vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
}

.essence-description {
    font-family: var(--primary-font);
    font-size: 1.15rem;
    line-height: 1.8;
    color: #999999;
}

.essence-description p {
    margin-bottom: 25px;
}

.essence-description .highlight-text {
    font-weight: 600;
    color: #cccccc;
    letter-spacing: 0.5px;
}

/* Animations for Essence section */
.essence .essence-text-col {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1), transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.essence .building-animation-wrapper {
    opacity: 0;
    transform: scale(0.9) translateY(60px);
    transition: opacity 2s cubic-bezier(0.22, 1, 0.36, 1), transform 2s cubic-bezier(0.22, 1, 0.36, 1);
}

.essence.is-visible .essence-text-col { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.essence.is-visible .building-animation-wrapper { transition-delay: 0.5s; opacity: 1; transform: scale(1) translateY(0); }

@media (max-width: 992px) {
    .essence-container {
        flex-direction: column;
        padding-top: 0;
        margin-top: -80px;
    }
    .essence-text-col, .essence-visual-col {
        flex: 0 0 100%;
        width: 100%;
    }
    .essence-text-col {
        margin-bottom: 0;
        position: relative;
        top: 120px;
        z-index: 2;
    }
    
    .essence-text-col::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        box-shadow: 0 0 50px 30px rgba(0,0,0,0.6);
        background: rgba(0,0,0,0.4);
        z-index: -1;
        pointer-events: none;
        border-radius: 20px;
    }
}

/* ==========================================================================
   Footer — Expanded Layout
   ========================================================================== */
.footer {
    padding: 90px 8vw 35px;
}

.footer-main {
    width: 100%;
    max-width: 1240px;
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
    gap: 70px;
    padding-bottom: 70px;
}

.footer-brand-logo {
    display: inline-block;
}

.footer-about {
    font-family: var(--primary-font);
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 28px;
    max-width: 400px;
}

.footer-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 26px;
    margin: 30px 0 0;
    padding: 0;
}

.footer-tags li {
    font-family: var(--primary-font);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    gap: 9px;
}

.footer-tags li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--highlight-color);
    flex-shrink: 0;
}

.footer-col-title {
    font-family: var(--title-font);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    margin: 8px 0 26px;
}

.footer-col-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-col-links a {
    text-decoration: none;
    font-family: var(--primary-font);
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s ease;
}

.footer-col-links a:hover {
    color: var(--white);
}

.footer-bottom {
    width: 100%;
    max-width: 1240px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copyright {
    font-family: var(--primary-font);
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.footer-social-link:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.45);
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
    display: block;
}

@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 55px;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 70px 7vw 30px;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 45px;
        padding-bottom: 55px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================================================
   Floating Liquid Glass Header
   ========================================================================== */
.header {
    position: fixed;
    top: 18px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 80vw; /* alinhado ao conteúdo das seções: 10vw de margem de cada lado */
    height: 64px;
    padding: 0 12px 0 26px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 1000;
    background-color: rgba(14, 14, 14, 0.58);
    -webkit-backdrop-filter: blur(22px) saturate(1.6);
    backdrop-filter: blur(22px) saturate(1.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

/* Sheen diagonal do vidro */
.header::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(115deg,
        rgba(255, 255, 255, 0.10) 0%,
        rgba(255, 255, 255, 0.02) 28%,
        rgba(255, 255, 255, 0) 55%,
        rgba(255, 255, 255, 0.04) 100%);
    pointer-events: none;
}

.header.scrolled {
    background-color: rgba(8, 8, 8, 0.78);
    padding: 0 12px 0 26px;
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.header .logo-container {
    margin-right: clamp(20px, 3vw, 48px);
}

.header .nav {
    margin-right: 8px;
}

.header .hamburger {
    width: 22px;
    height: 15px;
    margin-left: 18px;
}

/* Botão de contato no header */
.header-cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 44px;
    padding: 0 24px;
    margin-left: 24px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.07);
    color: var(--white);
    text-decoration: none;
    font-family: var(--primary-font);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    white-space: nowrap;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.header-cta-arrow {
    transition: transform 0.3s ease;
}

.header-cta:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--black);
}

.header-cta:hover .header-cta-arrow {
    transform: translateX(3px);
}

/* CTA clonado para o menu mobile */
.mobile-nav-overlay .header-cta {
    display: inline-flex;
    margin: 16px 0 0;
    height: 48px;
    padding: 0 32px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s,
        background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.mobile-nav-overlay.active .header-cta {
    opacity: 1;
    transform: translateY(0);
}

/* Faixa de transição: menu completo com tipografia compacta */
@media (max-width: 1340px) and (min-width: 1201px) {
    .header {
        padding: 0 10px 0 22px;
    }
    .header .logo-container {
        margin-right: 20px;
    }
    .header .nav-link {
        font-size: 0.84rem;
    }
    .header-cta {
        font-size: 0.84rem;
        padding: 0 18px;
        margin-left: 16px;
        height: 40px;
    }
}

/* O menu colapsa para hamburger mais cedo para o CTA caber na pílula */
@media (max-width: 1200px) {
    .header {
        height: 60px;
        padding: 0 22px;
        width: calc(100% - 36px);
    }
    .header .nav {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .hamburger.active span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }
    .header-cta {
        margin-left: auto;
        margin-right: 20px;
        height: 40px;
    }
}

@media (max-width: 520px) {
    .header {
        top: 12px;
        width: calc(100% - 24px);
        height: 56px;
    }
    .header-cta {
        display: none;
    }
    .header .hamburger {
        margin-left: auto;
    }
}

/* ==========================================================================
   Nossas Empresas — Lista editorial de empresas (padrão VC)
   ========================================================================== */
.empresas-list-section {
    background-color: var(--white);
    padding: 140px 10vw 120px;
}

.empresas-list-section .vc-section-title {
    color: var(--black);
}

.empresas-header {
    margin-bottom: 80px;
    text-align: center;
}

.empresas-header .vc-section-desc {
    max-width: 760px;
    margin: 0 auto;
}

.empresa-row {
    display: grid;
    grid-template-columns: 48px 190px 1fr;
    gap: 50px;
    align-items: center;
    padding: 48px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.empresa-row:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.empresa-num {
    font-family: var(--primary-font);
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.25);
    letter-spacing: 0.2em;
}

.empresa-logo {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.empresa-logo img {
    width: auto;
    object-fit: contain;
}

/* Alturas calibradas por proporção da logo, para peso visual uniforme */
.empresa-logo .logo-size-tall { height: 72px; }  /* emblemas verticais/quadrados */
.empresa-logo .logo-size-med  { height: 50px; }  /* wordmarks médios */
.empresa-logo .logo-size-wide { height: 36px; }  /* wordmarks largos */

/* logos com fundo transparente viram pretas sobre o branco */
.empresa-logo .logo-dark {
    filter: brightness(0) opacity(0.85);
}

/* logos com fundo branco (ex.: Cabana Home) fundem com a seção */
.empresa-logo .logo-multiply {
    mix-blend-mode: multiply;
}

.empresa-nome {
    font-family: var(--title-font);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
}

.empresa-segmento {
    font-family: var(--primary-font);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #999999;
    margin-bottom: 14px;
}

.empresa-desc {
    font-family: var(--primary-font);
    font-size: 0.98rem;
    line-height: 1.75;
    color: #777777;
    max-width: 680px;
}

/* Animações de entrada */
.empresas-list-section .empresas-header,
.empresas-list-section .empresa-row {
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.empresas-list-section.is-visible .empresas-header { transition-delay: 0.1s; opacity: 1; }
.empresas-list-section.is-visible .empresa-row { opacity: 1; }
.empresas-list-section.is-visible .empresa-row:nth-child(1) { transition-delay: 0.2s; }
.empresas-list-section.is-visible .empresa-row:nth-child(2) { transition-delay: 0.28s; }
.empresas-list-section.is-visible .empresa-row:nth-child(3) { transition-delay: 0.36s; }
.empresas-list-section.is-visible .empresa-row:nth-child(4) { transition-delay: 0.44s; }
.empresas-list-section.is-visible .empresa-row:nth-child(5) { transition-delay: 0.52s; }
.empresas-list-section.is-visible .empresa-row:nth-child(6) { transition-delay: 0.6s; }
.empresas-list-section.is-visible .empresa-row:nth-child(7) { transition-delay: 0.68s; }
.empresas-list-section.is-visible .empresa-row:nth-child(8) { transition-delay: 0.76s; }
.empresas-list-section.is-visible .empresa-row:nth-child(9) { transition-delay: 0.84s; }

/* Delays extras para listas de escopo com mais de 4 itens */
.vc-scope-section.is-visible .vc-scope-item:nth-child(5) { transition-delay: 0.62s; opacity: 1; }
.vc-scope-section.is-visible .vc-scope-item:nth-child(6) { transition-delay: 0.7s; opacity: 1; }
.vc-scope-section.is-visible .vc-scope-item:nth-child(7) { transition-delay: 0.78s; opacity: 1; }

@media (max-width: 900px) {
    .empresas-list-section {
        padding: 100px 7vw 90px;
    }
    .empresas-header {
        margin-bottom: 50px;
    }
    .empresa-row {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 44px 0;
    }
    .empresa-num {
        display: none;
    }
    .empresa-logo {
        height: 54px;
    }
    .empresa-logo .logo-size-tall { height: 54px; }
    .empresa-logo .logo-size-med  { height: 38px; }
    .empresa-logo .logo-size-wide { height: 27px; }
}


/* ==========================================================================
   Lapidação final — acessibilidade e mobile
   ========================================================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

button.hamburger {
    background: none;
    border: 0;
    padding: 0;
}

/* menu mobile rola quando não cabe (ex.: celular na horizontal) */
.mobile-nav-overlay {
    overflow-y: auto;
}

.mobile-nav-content {
    margin: auto;
    padding: 40px 0;
}

/* títulos com palavras longas indivisíveis em telas estreitas */
@media (max-width: 768px) {
    .vc-cta-headline {
        font-size: clamp(1.5rem, 6.5vw, 2rem);
    }
}

@media (max-width: 992px) {
    .ref-year {
        font-size: clamp(2rem, 9vw, 3.5rem);
    }
}

/* A Cúpula — citação desktop/mobile (movido do HTML) */
@media (min-width: 993px) {
    .cupula-mobile-quote {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .cupula-desktop-quote {
        display: none !important;
    }
    .cupula-mobile-quote {
        display: block !important;
        order: 3;
        margin-top: 40px;
        padding-bottom: 20px;
    }
}
