/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-primary: #050505;
    --bg-secondary: #0d0d0d;
    --bg-tertiary: #141414;
    --bg-card: #0c0c0e;
    
    /* Active Neon Accent */
    --accent-lime: #deff05;
    --accent-lime-rgb: 222, 255, 5;
    --accent-glow: rgba(222, 255, 5, 0.15);
    
    /* Typography Colors */
    --text-primary: #ffffff;
    --text-secondary: #a1a1a6;
    --text-tertiary: #68686e;
    
    /* Glassmorphism */
    --glass-bg: rgba(13, 13, 13, 0.75);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-focus: rgba(222, 255, 5, 0.3);
    
    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Layout */
    --header-height: 85px;
    --container-width: 1200px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-lime);
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
    transition: var(--transition-fast);
}

/* ==========================================================================
   BACKGROUND VIDEO & TINT OVERLAYS
   ========================================================================== */
.video-background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    background-color: #000000;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Vídeo com opacidade extremamente sutil para máxima elegância minimalista */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.25) 100%);
    pointer-events: none;
}

.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.02;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3e%3cfilter id='noise'%3e%3cfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3e%3c/filter%3e%3crect width='100%25' height='100%25' filter='url(%23noise)'/%3e%3c/svg%3e");
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background-color: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: 75px;
    border-bottom: 1px solid var(--glass-border);
}

.header-container {
    max-width: var(--container-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-svg {
    height: 38px;
    width: auto;
    transition: var(--transition-smooth);
}

.logo-svg:hover {
    transform: scale(1.03);
}

.nav-menu {
    display: flex;
    gap: 2.2rem;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    background-color: var(--accent-lime);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link.active::after, .nav-link:hover::after {
    width: 80%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.lang-btn {
    color: var(--text-tertiary);
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.lang-btn.active {
    color: var(--accent-lime);
    text-shadow: 0 0 10px rgba(222, 255, 5, 0.3);
}

.lang-divider {
    color: rgba(255, 255, 255, 0.15);
    margin: 0 6px;
    font-weight: 300;
}

/* Mobile Hamburger */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
    z-index: 1100;
}

.hamburger-menu .bar {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* Hamburger active transformation */
.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   GRID & CONTAINER SYSTEM
   ========================================================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.section {
    padding: 8.5rem 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.section-alt {
    background-color: var(--bg-secondary);
}

/* Section Headers */
.section-header {
    max-width: 650px;
    margin-bottom: 4.5rem;
}

.section-tagline {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-lime);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: inline-block;
    margin-bottom: 1rem;
    border-left: 2px solid var(--accent-lime);
    padding-left: 10px;
}

.section-title {
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 1.2rem;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ==========================================================================
   HERO SECTION (HOME)
   ========================================================================== */
.hero-section {
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 5rem;
    position: fixed; /* Fixa a seção Hero para permitir que o corpo do site suba por cima */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1; /* Fica por trás do card de conteúdo */
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

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

.hero-badge-wrapper {
    margin-bottom: 1.8rem;
}

.hero-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 18px;
    border-radius: 100px;
    letter-spacing: 0.02em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.hero-badge:hover {
    border-color: rgba(222, 255, 5, 0.3);
    box-shadow: 0 0 15px rgba(222, 255, 5, 0.05);
}

.hero-title {
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.8rem;
    background: linear-gradient(180deg, #ffffff 40%, #c4c4c4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 580px;
}

/* Hero Stats Row */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}

.stat-number {
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1;
}

.stat-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
}

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

/* Hero Call To Action (Mockup style) */
.hero-cta-wrapper {
    margin-top: 2.8rem;
    display: flex;
    justify-content: flex-start;
}

.hero-cta-btn {
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--text-primary);
    transition: var(--transition-smooth);
    letter-spacing: -0.01em;
}

.hero-cta-btn .arrow {
    font-size: 1.25rem;
    transition: var(--transition-fast);
}

.hero-cta-btn:hover {
    color: var(--accent-lime);
    border-bottom-color: var(--accent-lime);
}

.hero-cta-btn:hover .arrow {
    transform: translate(4px, -4px); /* Deslocamento suave e sutil da seta */
}

/* Interlocking Circles Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    height: 100%;
    margin-top: -120px; /* Eleva os círculos para ficarem na lacuna entre o texto e o menu no desktop */
}

.circles-wrapper {
    position: relative;
    width: 320px;
    height: 220px;
}

.premium-circle {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.circle-hollow {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: #00000054;
    top: 30px;
    left: 20px;
    z-index: 2;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.circle-solid {
    background-color: var(--accent-lime);
    top: 30px;
    left: 99px;
    z-index: 1;
    box-shadow: 
        0 0 60px rgba(222, 255, 5, 0.35),
        inset -15px -15px 30px rgba(0, 0, 0, 0.2);
}

/* Interaction Effects */
.circles-wrapper:hover .circle-hollow {
    transform: translateX(-15px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.35);
}

.circles-wrapper:hover .circle-solid {
    transform: translateX(15px) scale(1.05);
    box-shadow: 
        0 0 85px rgba(222, 255, 5, 0.55),
        inset -15px -15px 30px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   SCROLLING CONTENT CARD SECTION (PARALLAX CARD REVEAL OVER HERO)
   ========================================================================== */
.content-card-section {
    z-index: 10; /* Fica acima do Hero e do background video */
    margin-top: 100vh; /* Empurra o card para começar exatamente abaixo do Hero */
    margin-bottom: 30vh; /* Espaçamento de rolagem ajustado para um atraso mais dinâmico e equilibrado */
    background-color: #ffffff; /* Fundo inteiramente branco */
    color: #0d0d0d; /* Texto escuro refinado para contraste */
    border-top-left-radius: 40px; /* Cantos superiores arredondados de 40px */
    border-top-right-radius: 40px;
    padding: 8.5rem 0;
    min-height: 100vh; /* Garante que o card ocupe o resto da tela para rolagem perfeita */
}

.stack-card {
    position: sticky;
    top: calc(100vh - var(--card-height-adjusted, 100vh));
    will-change: transform;
}

/* Indicador de Rolagem Premium (Scroll Stack Indicator) */
.scroll-stack-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 5rem;
    width: 100%;
    text-align: center;
}

.scroll-indicator-text {
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    animation: pulseText 2s infinite ease-in-out;
}

.scroll-indicator-line-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-indicator-line {
    width: 1px;
    height: 45px;
    background-color: rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.scroll-indicator-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 10px;
    background-color: #000000;
    border-radius: 2px;
    animation: scrollDotAnimation 2s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animações */
@keyframes scrollDotAnimation {
    0% {
        top: -10px;
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        top: 45px;
        opacity: 0;
    }
}

@keyframes pulseText {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* Ajuste de responsividade */
@media (max-width: 768px) {
    .scroll-stack-indicator {
        margin-top: 3.5rem;
    }
}

/* ==========================================================================
   STORYTELLING SECTION (ASYMMETRIC KINETIC LAYOUT)
   ========================================================================== */
.editorial-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 2rem;
    margin-bottom: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.editorial-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.editorial-main-title {
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #000000;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.editorial-quote-box {
    border-left: 3px solid var(--accent-lime);
    padding-left: 2rem;
    margin-bottom: 5.5rem;
    max-width: 1000px;
}

.editorial-quote-text {
    font-size: 1.6rem;
    line-height: 1.5;
    color: #222222;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Staggered Grid Flow */
.staggered-story-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr 0.95fr;
    gap: 3.5rem;
    align-items: flex-start;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 6rem;
}

.staggered-col {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

/* Offset column for asymmetry */
.col-center {
    margin-top: 6rem; /* Vertical offset block */
}

/* Offset column for portrait framing */
.col-right {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
}

.story-card {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 1rem 0;
}

/* Dark contrast block inside light card */
.story-card.card-dark {
    position: relative;
    overflow: hidden;
    background-color: #0d0d0d;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.story-card.card-dark .card-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.12; /* baixa opacidade de alta costura */
    filter: grayscale(100%) contrast(1.1); /* preto e branco */
    pointer-events: none;
}

/* Garante que o texto e demais elementos fiquem acima do vídeo */
.story-card.card-dark > *:not(.card-video-bg) {
    position: relative;
    z-index: 2;
}

.card-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #888888;
    letter-spacing: 0.05em;
}

.card-num.text-neon {
    color: var(--accent-lime);
}

.story-card-title {
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.3;
    color: #000000;
    letter-spacing: -0.01em;
}

.story-card-title.text-white {
    color: #ffffff;
}

.story-card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #444444;
}

.story-card-text.text-gray {
    color: #a1a1a6;
}

/* Offset Visual Portrait Frame with dynamic backing backing plate */
.editorial-portrait-frame {
    position: relative;
    width: 100%;
}

.frame-backing-plate {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 100%;
    height: 100%;
    background-color: #000000; /* Solid backing frame */
    border-radius: 28px;
    z-index: 1;
}

.editorial-portrait-img {
    position: relative;
    z-index: 2; /* Sits on top of backing plate */
    width: 100%;
    height: auto;
    border-radius: 28px;
    display: block;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.editorial-portrait-frame:hover .editorial-portrait-img {
    transform: translate(-10px, -10px); /* Visual shifts dynamically on hover! */
}

/* Editorial Signature Styles */
.editorial-signature-wrapper {
    margin-top: 2.2rem;
    padding-left: 15px; /* Alinha com o deslocamento do frame da foto */
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.signature-tag {
    display: inline-block;
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    color: #ffffff;
    background-color: #000000;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    width: fit-content;
}

.signature-name {
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
}

.signature-text {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #666666;
    font-weight: 400;
}

/* Responsive adjustment for signature on mobile */
@media (max-width: 768px) {
    .editorial-signature-wrapper {
        margin-top: 1.5rem;
        padding-left: 0;
        text-align: left;
    }
}

/* Outcomes Row Section with inverting hover states */
.branding-outcomes-section {
    padding: 6.5rem 0 4.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.outcomes-header {
    margin-bottom: 3.5rem;
}

.outcomes-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    display: block;
    margin-bottom: 0.8rem;
}

.outcomes-section-title {
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #000000;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.outcomes-row-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.outcome-card {
    border: 1px solid rgba(0, 0, 0, 0.06);
    background-color: #fbfbfb;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: var(--transition-smooth);
}

.outcome-card-num {
    font-size: 0.75rem;
    font-weight: 700;
    color: #888888;
    letter-spacing: 0.1em;
}

.outcome-card-title {
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.01em;
}

.outcome-card-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555555;
    transition: var(--transition-fast);
}

/* Inverted hover interaction that lights up card in dark theme with neon lime details! */
.outcome-card:hover {
    background-color: #0d0d0d;
    border-color: var(--accent-lime);
    transform: translateY(-5px);
}

.outcome-card:hover .outcome-card-num {
    color: var(--accent-lime);
}

.outcome-card:hover .outcome-card-title {
    color: #ffffff;
}

.outcome-card:hover .outcome-card-desc {
    color: #a1a1a6;
}

/* Simplified Editorial CTA (Hero-style flat underline button) */
.editorial-cta-wrapper {
    padding-top: 5rem;
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.editorial-cta-btn {
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #000000;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding-bottom: 8px;
    border-bottom: 2px solid #000000;
    transition: var(--transition-smooth);
    letter-spacing: -0.01em;
}

.editorial-cta-btn .arrow {
    font-size: 1.3rem;
    transition: var(--transition-fast);
}

.editorial-cta-btn:hover {
    color: #555555;
    border-bottom-color: #555555;
}

.editorial-cta-btn:hover .arrow {
    transform: translate(4px, -4px); /* Deslocamento suave e sutil da seta */
}

/* Responsividade Geral do Card de Conteúdo */
@media (max-width: 768px) {
    .content-card-section {
        padding: 5rem 0;
        border-top-left-radius: 30px; /* Cantos um pouco menores no mobile */
        border-top-right-radius: 30px;
    }
}

/* Responsive Editorial Layout */
@media (max-width: 1200px) {
    .editorial-main-title {
        font-size: 2.6rem;
    }
    
    .editorial-quote-text {
        font-size: 1.35rem;
    }
    
    .staggered-story-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 3rem;
    }
    
    .col-center {
        margin-top: 0; /* Align columns */
    }
    
    .staggered-col.col-right {
        grid-column: span 2;
        max-width: 500px;
        margin: 2rem auto 0 auto;
        position: relative;
        top: 0;
    }
    
    .outcomes-row-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .editorial-main-title {
        font-size: 2rem;
    }
    
    .editorial-quote-box {
        margin-bottom: 3.5rem;
        padding-left: 1.2rem;
    }
    
    .editorial-quote-text {
        font-size: 1.15rem;
    }
    
    .staggered-story-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-bottom: 4rem;
    }
    
    .staggered-col.col-right {
        grid-column: span 1;
        margin-top: 1rem;
        order: -1; /* Põe a imagem no topo no mobile para um visual editorial forte */
    }
    
    .story-card.card-dark {
        padding: 2.2rem 1.8rem;
    }
    
    .outcomes-section-title {
        font-size: 1.25rem; /* Ajustado para caber em uma única linha no mobile */
        letter-spacing: -0.02em;
        line-height: 1.15;
    }
    
    .outcomes-row-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .outcome-card {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================================================
   EXPERTISE SECTION
   ========================================================================== */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.expertise-card {
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% -20%, rgba(222, 255, 5, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.card-icon {
    font-size: 1.8rem;
    color: var(--accent-lime);
    background: rgba(222, 255, 5, 0.05);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 2rem;
    border: 1px solid rgba(222, 255, 5, 0.1);
    transition: var(--transition-smooth);
}

.card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}

.card-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2.2rem;
    flex-grow: 1;
}

.card-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.02em;
}

.card-link i {
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

/* Card Hover States */
.expertise-card:hover {
    transform: translateY(-8px);
    border-color: rgba(222, 255, 5, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.expertise-card:hover .card-glow {
    opacity: 1;
}

.expertise-card:hover .card-icon {
    background: var(--accent-lime);
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(222, 255, 5, 0.25);
}

.expertise-card:hover .card-link {
    color: var(--accent-lime);
}

.expertise-card:hover .card-link i {
    transform: translateX(5px);
}

/* ==========================================================================
   WEB DESIGN SECTION (DETAILS)
   ========================================================================== */
.design-detail-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

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

.detail-features {
    list-style: none;
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.detail-features li {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.detail-features li i {
    color: var(--accent-lime);
    font-size: 1.3rem;
    margin-top: 0.2rem;
}

.detail-features h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.detail-features p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Interactive Mockup Visual */
.detail-visual {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.mockup-container {
    width: 100%;
    max-width: 420px;
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    transform: rotateY(-8deg) rotateX(5deg);
    transition: var(--transition-smooth);
}

.mockup-container:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
    border-color: rgba(222, 255, 5, 0.2);
}

.mockup-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mockup-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.mockup-header .dot.red { background-color: #ff5f56; }
.mockup-header .dot.yellow { background-color: #ffbd2e; }
.mockup-header .dot.green { background-color: #27c93f; }

.mockup-url {
    font-size: 0.7rem;
    color: var(--text-tertiary);
    margin-left: auto;
    font-family: monospace;
}

.mockup-body {
    padding: 2.2rem;
    position: relative;
}

.mockup-glow {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(222, 255, 5, 0.12) 0%, transparent 70%);
    filter: blur(10px);
}

.mockup-body h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.mockup-bar {
    width: 60px;
    height: 3px;
    background-color: var(--accent-lime);
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.mockup-text-block {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin-bottom: 0.8rem;
    width: 100%;
}

.mockup-text-block.short {
    width: 70%;
    margin-bottom: 2rem;
}

.mockup-boxes {
    display: flex;
    gap: 1rem;
}

.mockup-box {
    flex: 1;
    height: 60px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
}

.mockup-box.active {
    border-color: rgba(222, 255, 5, 0.3);
    background: rgba(222, 255, 5, 0.03);
}

/* ==========================================================================
   BRANDING SECTION (DETAILS)
   ========================================================================== */
.branding-detail-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.identity-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    width: 100%;
    max-width: 400px;
}

.brand-swatch {
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 130px;
    transition: var(--transition-smooth);
}

.brand-swatch span {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
}

.brand-swatch small {
    font-size: 0.75rem;
    opacity: 0.5;
    font-family: monospace;
}

.brand-swatch.lime {
    background-color: var(--accent-lime);
    color: #000;
    box-shadow: 0 10px 30px rgba(222, 255, 5, 0.15);
}

.brand-swatch.dark {
    background-color: #0a0a0a;
    color: #fff;
}

.brand-swatch.white {
    background-color: #fafafa;
    color: #000;
}

.typeface-display {
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.01);
    transition: var(--transition-smooth);
}

.typeface-display span {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.typeface-display small {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.identity-showcase:hover .brand-swatch {
    transform: translateY(-5px);
}

.identity-showcase:hover .typeface-display {
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.03);
}

/* ==========================================================================
   MARKETING SECTION (DETAILS)
   ========================================================================== */
.marketing-detail-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.marketing-metrics {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 16px;
    flex: 1;
    transition: var(--transition-smooth);
}

.metric-card h4 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-lime);
    line-height: 1;
    margin-bottom: 0.6rem;
}

.metric-card span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.metric-card:hover {
    border-color: rgba(222, 255, 5, 0.2);
    background: rgba(222, 255, 5, 0.02);
    transform: translateY(-3px);
}

/* Chart Mockup Visual */
.chart-mockup {
    width: 100%;
    max-width: 400px;
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.8rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.2rem;
}

.chart-header span {
    font-size: 0.85rem;
    font-weight: 700;
}

.chart-dots {
    display: flex;
    gap: 6px;
}

.chart-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.chart-dot.lime { background-color: var(--accent-lime); }
.chart-dot.silver { background-color: var(--text-tertiary); }

.chart-body {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 140px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chart-bar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 14%;
}

.chart-bar-fill {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    transition: height 1s ease-out;
}

.chart-bar-fill.active {
    background-color: var(--accent-lime);
    box-shadow: 0 0 15px rgba(222, 255, 5, 0.3);
}

.chart-bar-container span {
    font-size: 0.65rem;
    color: var(--text-tertiary);
}

/* ==========================================================================
   PORTFOLIO SECTION (DARK RISING CARD)
   ========================================================================== */
.portfolio-section-card {
    z-index: 11;
    background-color: #0c0c0c;
    color: #ffffff;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    padding: 9.5rem 0;
    min-height: 100vh;
    margin-top: -40px;
    margin-bottom: 30vh; /* Scroll Buffer */
    box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.5);
}

.portfolio-header {
    max-width: 680px;
    margin-bottom: 5.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.portfolio-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-lime);
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.portfolio-main-title {
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.portfolio-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Full Width Gallery Layout */
.portfolio-gallery-wrapper {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0 4rem; /* side padding for desktop layout */
}

.portfolio-gallery-wrapper::-webkit-scrollbar {
    display: none;
}

.portfolio-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
}

.portfolio-item-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.portfolio-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 6 / 4; /* Proporção cinematográfica horizontal 6:4 */
    border-radius: 20px;
    overflow: hidden; /* Mantém o zoom restrito aos limites do card */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-brand-symbol {
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: -0.05em;
    user-select: none;
    position: relative;
    z-index: 2; /* Senta no topo do background div */
}

.portfolio-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.portfolio-item-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0 0.5rem;
}

.portfolio-item-category {
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: rgba(255, 255, 255, 0.02);
    padding: 5px 14px;
    border-radius: 100px;
    display: inline-block;
    width: fit-content;
    letter-spacing: 0.02em;
    text-transform: none; /* Mantém a capitalização natural e refinada */
    transition: var(--transition-fast);
}

.portfolio-item-title {
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

/* Card Hover Interactions - Apenas Zoom Sutil na Imagem Interna */
.portfolio-item-card:hover .portfolio-image {
    transform: scale(1.06); /* Zoom de 6% */
}

/* Degradês Premium das Novas Marcas */
.bg-gradient-estilo {
    background: linear-gradient(135deg, #1c1c1c 0%, #3a3a3a 50%, #4e4e4e 100%);
}

.bg-gradient-asas {
    background: linear-gradient(135deg, #0a192f 0%, #172a45 50%, #306080 100%);
}

.bg-gradient-aristocrata {
    background: linear-gradient(135deg, #0b2415 0%, #153b25 50%, #2a5a3c 100%);
}

.bg-gradient-mhr {
    background: linear-gradient(135deg, #24140b 0%, #3e2415 50%, #5e3c29 100%);
}

.bg-gradient-chami {
    background: linear-gradient(135deg, #2b0a0f 0%, #46141b 50%, #752530 100%);
}

.bg-gradient-bioclin {
    background: linear-gradient(135deg, #0e2421 0%, #1c4640 50%, #30756c 100%);
}

.bg-gradient-ard {
    background: linear-gradient(135deg, #180f2a 0%, #2c1d4a 50%, #4d357a 100%);
}

.bg-gradient-unique {
    background: linear-gradient(135deg, #2e1b0e 0%, #4f321c 50%, #805737 100%);
}

/* Portfolio Section CTA - Estética de Luxo Escura */
.portfolio-cta-wrapper {
    padding-top: 5rem;
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.portfolio-cta-btn {
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff; /* Texto branco para contraste premium na seção escura */
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding-bottom: 8px;
    border-bottom: 2px solid #ffffff; /* Borda branca correspondente */
    transition: var(--transition-smooth);
    letter-spacing: -0.01em;
}

.portfolio-cta-btn .arrow {
    font-size: 1.3rem;
    transition: var(--transition-fast);
}

.portfolio-cta-btn:hover {
    color: var(--accent-lime); /* Transiciona para o verde neon/lima */
    border-bottom-color: var(--accent-lime);
}

.portfolio-cta-btn:hover .arrow {
    transform: translate(4px, -4px); /* Deslocamento suave e sutil da seta */
}

/* Mobile adjustments for Portfolio CTA */
@media (max-width: 768px) {
    .portfolio-cta-wrapper {
        padding-top: 3.5rem;
    }
    
    .portfolio-cta-btn {
        font-size: 1rem;
    }
}

/* Dark theme overrides for animated scroll indicator */
.scroll-indicator-line.dark {
    background-color: rgba(255, 255, 255, 0.12);
}

.scroll-indicator-dot.dark {
    background-color: #ffffff;
}

/* Section 4: Web Design Storytelling (White Stack Card) Styles */
.white-stack-card {
    z-index: 12; /* Rises on top of portfolio section */
    background-color: #ffffff; /* Fundo inteiramente branco */
    color: #0d0d0d; /* Texto escuro refinado para contraste */
    border-top-left-radius: 40px; /* Cantos superiores arredondados de 40px */
    border-top-right-radius: 40px;
    padding: 8.5rem 0;
    min-height: 100vh;
    margin-top: -40px; /* Overlaps portfolio card nicely */
    margin-bottom: 30vh; /* Scroll Buffer for the next dark card to rise */
    box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.4);
}

/* Section 5: Web Design Portfolio (Dark Rising Card) Styles */
.webdesign-portfolio-section-card {
    z-index: 13; /* Rises on top of Web Design Storytelling section */
    background-color: #0c0c0c;
    color: #ffffff;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    padding: 9.5rem 0;
    min-height: 100vh;
    margin-top: -40px;
    margin-bottom: 30vh; /* Scroll Buffer */
    box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.5);
}

#webdesign-portfolio .portfolio-image-container {
    aspect-ratio: 4 / 5 !important;
}

@media (max-width: 768px) {
    .webdesign-portfolio-section-card {
        padding: 6.5rem 0;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        margin-top: -30px;
    }
}

/* Web Design Portfolio Gradients */
.bg-gradient-vortex {
    background: linear-gradient(135deg, #09090b 0%, #1c1917 50%, #292524 100%);
}
.bg-gradient-aura {
    background: linear-gradient(135deg, #022c22 0%, #064e3b 50%, #0f766e 100%);
}
.bg-gradient-horizon {
    background: linear-gradient(135deg, #1c1917 0%, #3e2723 50%, #4e342e 100%);
}
.bg-gradient-nexatech {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
}
.bg-gradient-apex {
    background: linear-gradient(135deg, #270808 0%, #450a0a 50%, #7f1d1d 100%);
}
.bg-gradient-zephyr {
    background: linear-gradient(135deg, #062f2f 0%, #0f766e 50%, #115e59 100%);
}
.bg-gradient-krypton {
    background: linear-gradient(135deg, #1c1917 0%, #27272a 50%, #3f3f46 100%);
}
.bg-gradient-lpm {
    background: linear-gradient(135deg, #020202 0%, #0e0e11 50%, #1a1a1f 100%);
}


@media (max-width: 768px) {
    .white-stack-card {
        padding: 5rem 0;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        margin-top: -30px;
    }
}

/* ==========================================================================
   SECTION 4: WEB DESIGN CUSTOM TECHNOLOGY LAYOUT
   ========================================================================== */
.webdesign-split-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4.5rem;
    align-items: flex-start;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 6rem;
}

.webdesign-text-column {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.wd-narrative-block {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 0.5rem 0;
}

.wd-block-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #888888;
    letter-spacing: 0.05em;
}

.wd-block-title {
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.3;
    color: #000000;
    letter-spacing: -0.01em;
}

.wd-block-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #444444;
}

.webdesign-tech-column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: sticky;
    top: calc(var(--header-height) + 2rem);
}

/* Luxury Code Editor Mockup */
.luxury-code-editor {
    background-color: #0a0a0c;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    width: 100%;
}

.code-editor-header {
    background-color: #0d0d10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
}

.editor-dots {
    display: flex;
    gap: 6px;
}

.editor-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.editor-dot.red { background-color: #ff5f56; }
.editor-dot.yellow { background-color: #ffbd2e; }
.editor-dot.green { background-color: #27c93f; }

.editor-filename {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.68rem;
    color: #68686e;
    letter-spacing: 0.05em;
}

.code-editor-body {
    padding: 24px;
    margin: 0;
    font-family: 'Space Grotesk', 'Courier New', Courier, monospace;
    font-size: 0.82rem;
    line-height: 1.6;
    overflow-x: auto;
}

.code-editor-body pre {
    margin: 0;
}

/* Syntax Highlighting */
.code-keyword { color: #deff05; font-weight: 600; } /* Accent Lime */
.code-variable { color: #ffffff; }
.code-property { color: #a1a1a6; }
.code-string { color: #dedede; }
.code-number { color: #888888; }
.code-function { color: #ffffff; font-weight: 500; }
.code-parameter { color: #68686e; }
.code-comment { color: #55555c; font-style: italic; }

/* Editorial Table for Outcomes */
.editorial-table-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.editorial-table-row {
    display: grid;
    grid-template-columns: 0.8fr 1.8fr 4.4fr;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    align-items: center;
    transition: var(--transition-smooth);
}

.editorial-table-row .row-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #888888;
}

.editorial-table-row .row-title {
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.01em;
}

.editorial-table-row .row-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555555;
    transition: var(--transition-fast);
}

/* Interactive Hover state for editorial table */
.editorial-table-row:hover {
    background-color: rgba(222, 255, 5, 0.02); /* Muito sutil toque do lime verde de fundo */
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-left: 3px solid var(--accent-lime);
}

.editorial-table-row:hover .row-num {
    color: #000000;
}

.editorial-table-row:hover .row-desc {
    color: #000000;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .webdesign-split-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .webdesign-tech-column {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .editorial-table-row {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 1.5rem 0;
    }
    
    .editorial-table-row:hover {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* ==========================================================================
   SECTION 6: MARKETING CUSTOM GROWTH LAYOUT
   ========================================================================== */
.marketing-stack-card {
    position: relative;
    z-index: 14; /* Rises on top of Web Design Portfolio section */
    background-color: #ffffff; /* Fundo inteiramente branco */
    color: #0d0d0d; /* Texto escuro refinado para contraste */
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    padding: 8.5rem 0;
    min-height: 100vh;
    margin-top: -40px; /* Overlaps portfolio card nicely */
    margin-bottom: 0; /* Final section: No scroll buffer needed */
    box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .marketing-stack-card {
        padding: 5rem 0;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        margin-top: -30px;
    }
}

.marketing-split-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4.5rem;
    align-items: flex-start;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 6rem;
}

.marketing-text-column {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.mkt-narrative-block {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 0.5rem 0;
}

.mkt-block-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #888888;
    letter-spacing: 0.05em;
}

.mkt-block-title {
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.3;
    color: #000000;
    letter-spacing: -0.01em;
}

.mkt-block-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #444444;
}

.marketing-dashboard-column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: sticky;
    top: calc(var(--header-height) + 2rem);
}

/* Luxury Growth Dashboard Mockup */
.luxury-dashboard {
    background-color: #0a0a0c;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    font-family: 'Space Grotesk', sans-serif;
}

.dashboard-header {
    background-color: #121215;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-dots {
    display: flex;
    gap: 0.45rem;
}

.dashboard-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
}

.dashboard-dot.red { background-color: #ff5f56; }
.dashboard-dot.yellow { background-color: #ffbd2e; }
.dashboard-dot.green { background-color: #27c93f; }

.dashboard-title {
    margin-left: 2rem;
    font-size: 0.8rem;
    color: #8e8e93;
    font-family: monospace;
    letter-spacing: 0.02em;
}

.dashboard-badge-live {
    margin-left: auto;
    background-color: rgba(222, 255, 5, 0.1);
    color: var(--accent-lime);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    letter-spacing: 0.08em;
}

.badge-live-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-lime);
    border-radius: 50%;
    display: inline-block;
    animation: pulseLive 1.8s infinite;
}

@keyframes pulseLive {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

.dashboard-body {
    padding: 2rem 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.dashboard-metric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.dashboard-metric-box {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.metric-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: #8e8e93;
    letter-spacing: 0.08em;
}

.metric-value-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.metric-trendup {
    color: var(--accent-lime);
    font-size: 1.2rem;
    font-weight: 700;
}

.dashboard-funnel-visualizer {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.funnel-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #8e8e93;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.funnel-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.funnel-bar {
    display: grid;
    grid-template-columns: 140px 1fr 45px;
    align-items: center;
    gap: 1rem;
}

.bar-name {
    font-size: 0.75rem;
    color: #a1a1a6;
}

.bar-outer {
    height: 8px;
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    overflow: hidden;
}

.bar-inner {
    height: 100%;
    background-color: var(--accent-lime);
    border-radius: 4px;
    width: 0;
    transition: width 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

/* Revealed funnel bar widths */
.luxury-dashboard.revealed .tier-1-inner {
    width: 100%;
}
.luxury-dashboard.revealed .tier-2-inner {
    width: 64%;
}
.luxury-dashboard.revealed .tier-3-inner {
    width: 18.5%;
}

.bar-val {
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
    text-align: right;
}

.dashboard-roi-box {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background-color: rgba(222, 255, 5, 0.03);
    border: 1px solid rgba(222, 255, 5, 0.08);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
}

.roi-icon {
    font-size: 1.5rem;
    color: var(--accent-lime);
}

.roi-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.roi-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: #8e8e93;
    letter-spacing: 0.08em;
}

.roi-value {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

@media (max-width: 992px) {
    .marketing-split-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .marketing-dashboard-column {
        position: relative;
        top: 0;
    }
}

/* Mobile adjustments for Portfolio Card */
@media (max-width: 992px) {
    .portfolio-gallery-wrapper {
        padding: 0 2rem;
    }
    .portfolio-track {
        gap: 1.5rem;
    }
    .portfolio-main-title {
        font-size: 2.6rem;
    }
}

@media (max-width: 768px) {
    .portfolio-section-card {
        padding: 6.5rem 0;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        margin-top: -30px;
    }
    
    .portfolio-header {
        margin-bottom: 3.5rem;
    }
    
    .portfolio-main-title {
        font-size: 2rem;
    }
    
    .portfolio-description {
        font-size: 1rem;
    }
    
    .portfolio-gallery-wrapper {
        padding: 0 1.5rem;
    }
    
    .portfolio-track {
        display: flex;
        flex-direction: row;
        gap: 1.5rem;
        width: max-content;
        padding-bottom: 2rem;
    }
    
    .portfolio-item-card {
        width: 290px;
        flex-shrink: 0;
        scroll-snap-align: center;
    }
    
    .portfolio-image-container {
        aspect-ratio: 3 / 4;
    }
}

/* ==========================================================================
   SECTION 7: GOOGLE TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    position: relative;
    z-index: 14;
    background-color: #ffffff;
    color: #0d0d0d;
    padding: 9.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonials-header {
    margin-bottom: 4.5rem;
}

.testimonials-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    display: block;
    margin-bottom: 0.8rem;
}

.title-with-stars {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.testimonials-title {
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #000000;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.testimonials-rating-stars {
    display: flex;
    gap: 4px;
    font-size: 1.25rem;
    color: hsl(45, 95%, 48%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 3.5rem;
    align-items: stretch;
}

/* Left Google Reviews Card */
.testimonials-badge-card {
    position: relative;
    overflow: hidden;
    background-color: #0c0c0e;
    color: #ffffff;
    border-radius: 24px;
    padding: 3rem 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.badge-bg-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.04;
    pointer-events: none;
    z-index: 1;
    background-image: radial-gradient(circle at 100% 0%, var(--accent-lime) 0%, transparent 60%);
}

.badge-logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
    z-index: 2;
}

.google-badge-logo {
    display: block;
}

.badge-logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #ffffff;
}

.badge-rating-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.8rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 0.8rem;
    color: #ffffff;
    z-index: 2;
}

.badge-stars {
    display: flex;
    gap: 4px;
    font-size: 1.1rem;
    color: hsl(45, 95%, 48%);
    margin-bottom: 1.8rem;
    z-index: 2;
}

.badge-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #a1a1a6;
    margin-bottom: 2.5rem;
    z-index: 2;
}

.badge-count {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-lime);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: auto;
    z-index: 2;
}

/* Testimonial slider / carousel */
.testimonials-slider-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.testimonials-viewport {
    width: 100%;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.testimonial-item-card {
    flex: 0 0 calc(50% - 1rem);
    min-width: calc(50% - 1rem);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background-color: #fcfcfc;
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}


.card-stars {
    display: flex;
    gap: 4px;
    font-size: 0.95rem;
    color: hsl(45, 95%, 48%);
    margin-bottom: 1.8rem;
}

.card-quote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #222222;
    font-weight: 400;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.card-author-info {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.card-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.card-author-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
}

.author-role {
    font-size: 0.8rem;
    color: #666666;
}

/* Slider Controls */
.testimonials-controls {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.nav-control-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
    color: #0d0d0d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.nav-control-btn:hover {
    background-color: #000000;
    border-color: #000000;
    color: #ffffff;
}

.nav-control-btn:disabled {
    opacity: 0.35;
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .testimonials-badge-card {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 2.2rem;
    }
    
    .badge-logo-container {
        margin-bottom: 0;
    }
    
    .badge-rating-val {
        font-size: 3.5rem;
        margin-bottom: 0;
    }
    
    .badge-stars {
        margin-bottom: 0;
    }
    
    .badge-desc {
        display: none;
    }
    
    .badge-count {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 6.5rem 0;
    }
    
    .testimonials-title {
        font-size: 2.2rem;
    }
    
    .title-with-stars {
        gap: 1.2rem;
    }
    
    .testimonials-rating-stars {
        font-size: 1rem;
    }
    
    .testimonials-badge-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
    }
    
    .testimonial-item-card {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 2.2rem;
    }
    
    .card-quote {
        font-size: 0.95rem;
        margin-bottom: 1.8rem;
    }
}

/* ==========================================================================
   SECTION 8: BLOG SECTION
   ========================================================================== */
.blog-section {
    position: relative;
    z-index: 14;
    background-color: #ffffff;
    color: #0d0d0d;
    padding: 9.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-header {
    margin-bottom: 4.5rem;
}

.blog-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    display: block;
    margin-bottom: 0.8rem;
}

.blog-title {
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #000000;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.blog-image-container {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 20px;
    overflow: hidden;
    background-color: #f0f0f0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-image {
    transform: scale(1.06); /* 6% zoom on hover to match general style */
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #888888;
    letter-spacing: 0.05em;
}

.blog-category {
    color: var(--accent-lime);
    background-color: #0c0c0e;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 700;
}

.blog-date {
    opacity: 0.8;
}

.blog-card-title {
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin: 0;
    flex-grow: 1;
    transition: var(--transition-fast);
}

.blog-card:hover .blog-card-title {
    color: #555555;
}

.blog-card-cta {
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #000000;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 4px;
    border-bottom: 1.5px solid #000000;
    width: fit-content;
    transition: var(--transition-smooth);
}

.blog-card-cta .arrow {
    transition: var(--transition-fast);
}

.blog-card:hover .blog-card-cta {
    color: #888888;
    border-bottom-color: #888888;
}

.blog-card:hover .blog-card-cta .arrow {
    transform: translate(3px, -3px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 6.5rem 0;
    }
    
    .blog-title {
        font-size: 2.2rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .blog-card {
        gap: 1rem;
    }
}

/* ==========================================================================
   CALL TO ACTION SECTION
   ========================================================================== */
.section-cta {
    padding: 10rem 0;
    overflow: hidden;
}

.cta-container {
    position: relative;
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 6rem 4rem;
    border-radius: 30px;
    text-align: center;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(222, 255, 5, 0.06) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.8rem;
    background: linear-gradient(to bottom, #ffffff 60%, #dedede 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 3.2rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

/* Premium Buttons */
.premium-btn {
    background-color: var(--accent-lime);
    color: #000;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 8px 25px rgba(222, 255, 5, 0.25);
    transition: var(--transition-smooth);
}

.premium-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(222, 255, 5, 0.45);
}

.outline-btn {
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition-fast);
}

.outline-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: #020202;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 5rem 0 3rem 0;
    position: relative;
    z-index: 15;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.2rem;
    color: #fff;
}

.footer-brand-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 250px;
    line-height: 1.6;
}

.footer-links h4, .footer-socials h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--accent-lime);
    transform: translateX(3px);
}

.social-icons {
    display: flex;
    gap: 1.2rem;
}

.social-icons a {
    font-size: 1.2rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.02);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
}

.social-icons a:hover {
    color: #000;
    background-color: var(--accent-lime);
    border-color: var(--accent-lime);
    box-shadow: 0 0 15px rgba(222, 255, 5, 0.3);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

/* ==========================================================================
   CHATBOT FLUID WIDGET
   ========================================================================== */
.chatbot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

/* Trigger Button */
.chatbot-trigger {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 2px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    transition: var(--transition-smooth);
}

.chatbot-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.chatbot-pulse-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 13px;
    height: 13px;
    background-color: #27c93f;
    border: 2px solid var(--bg-primary);
    border-radius: 50%;
    z-index: 2;
}

/* Onda de luz (ripple wave) de alta fidelidade que se propaga continuamente */
.chatbot-pulse-dot::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #27c93f;
    animation: waveOut 2s infinite cubic-bezier(0.25, 0, 0, 1);
    pointer-events: none;
    box-sizing: content-box;
    z-index: -1;
}

@keyframes waveOut {
    0% {
        transform: scale(1);
        opacity: 0.85;
    }
    100% {
        transform: scale(3.2); /* A onda de luz expande-se até 3.2 vezes o tamanho original */
        opacity: 0; /* Desvanece completamente ao atingir o limite externo */
    }
}

.chatbot-trigger.idle-animate {
    /* Sem animação de pulso ou movimento no botão em si */
}

.chatbot-trigger:hover {
    /* Sem alteração de cor na borda, escala ou rotação. Apenas leve atenuação visual */
    opacity: 0.95;
}

/* Chat Window Box */
.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 375px;
    max-height: 520px;
    height: 520px;
    background-color: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(25px) scale(0.95);
    transition: var(--transition-smooth);
    z-index: 100;
}

.chatbot-window.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0) scale(1);
    border-color: rgba(222, 255, 5, 0.25);
}

/* Chat Header */
.chat-header {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%);
    border-bottom: 1px solid var(--glass-border);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-header-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    object-fit: cover;
}

.chat-header h4 {
    font-size: 0.9rem;
    font-weight: 700;
}

.chat-status {
    font-size: 0.7rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 1px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: #27c93f;
    border-radius: 50%;
    display: inline-block;
}

.chat-close-btn {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.chat-close-btn:hover {
    color: #fff;
    transform: scale(1.1);
}

/* Messages Area */
.chat-messages-container {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    scroll-behavior: smooth;
}

/* Custom internal scrollbar for chat */
.chat-messages-container::-webkit-scrollbar {
    width: 4px;
}
.chat-messages-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.chat-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.85rem;
    line-height: 1.5;
    animation: bubbleAppear 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    word-wrap: break-word;
}

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

.chat-bubble.assistant {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-bubble.user {
    background-color: var(--accent-lime);
    color: #000;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    font-weight: 500;
}

.chat-bubble.system-note {
    background: rgba(222, 255, 5, 0.05);
    border: 1px dashed rgba(222, 255, 5, 0.2);
    color: var(--accent-lime);
    align-self: center;
    text-align: center;
    max-width: 90%;
    border-radius: 12px;
    font-size: 0.75rem;
}

/* Option Quick Buttons */
.chat-options-container {
    padding: 10px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: transparent;
}

.chat-option-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-option-btn i {
    font-size: 0.75rem;
    color: var(--accent-lime);
    opacity: 0;
    transform: translateX(-5px);
    transition: var(--transition-fast);
}

.chat-option-btn:hover {
    background: rgba(222, 255, 5, 0.03);
    border-color: rgba(222, 255, 5, 0.25);
    color: var(--accent-lime);
    padding-left: 20px;
}

.chat-option-btn:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Custom Input Wrapper */
.chat-input-container {
    border-top: 1px solid var(--glass-border);
    padding: 12px 16px;
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.01);
}

.chat-input-container input {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    outline: none;
    font-family: inherit;
    transition: var(--transition-fast);
}

.chat-input-container input:focus {
    border-color: var(--accent-lime);
    background: rgba(0,0,0,0.5);
}

.chat-input-container button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--accent-lime);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.chat-input-container button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(222, 255, 5, 0.3);
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 4px 6px;
    align-items: center;
    justify-content: center;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background-color: var(--text-secondary);
    border-radius: 50%;
    opacity: 0.4;
    animation: typingPulse 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) { animation-delay: 0s; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingPulse {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(-4px); opacity: 1; }
}

/* ==========================================================================
   SCROLL REVEAL & ANIMATIONS
   ========================================================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpAnimation 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

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

/* Luminous Scroll Reveal System */
.scroll-reveal {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(35px);
    transition: 
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
        filter 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0s 0.8s; /* Instantly snaps back only after the element has fully faded out */
    will-change: opacity, transform, filter;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    transition: 
        opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), 
        transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scroll Reveal Transition Delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }


/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    :root {
        --header-height: 80px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 2rem;
    }
    
    .circles-wrapper {
        width: 260px;
        height: 180px;
    }
    
    .premium-circle {
        width: 130px;
        height: 130px;
    }
    
    .circle-solid {
        left: 100px;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Mobile Hamburger Triggered Nav */
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: #050505;
        flex-direction: column;
        gap: 2rem;
        padding: 4rem 2rem;
        align-items: flex-start;
        transform: translateX(-100%);
        transition: var(--transition-smooth);
        border-top: 1px solid var(--glass-border);
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .hero-section {
        height: 100vh;
        min-height: 100vh;
        padding-top: var(--header-height);
        padding-bottom: 2rem;
        display: flex;
        align-items: center;
        justify-content: flex-start; /* Alinhamento horizontal à esquerda no mobile */
        overflow: hidden;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start !important; /* Alinhamento estrito à esquerda no mobile */
        gap: 1.5rem;
        height: 100%;
        text-align: left !important; /* Justificado rigorosamente na esquerda! */
        position: relative;
        width: 100% !important;
    }
    
    .hero-content {
        align-items: flex-start !important; /* Filhos alinhados estritamente à esquerda! */
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left !important;
        width: 100% !important;
    }

    .hero-badge-wrapper {
        margin-top: 4.2rem !important; /* Abre espaço vertical no topo esquerdo para as bolas */
        margin-bottom: 1.8rem;
    }
    
    .hero-title {
        font-size: 1.65rem !important;
        line-height: 1.25;
        margin-bottom: 1rem;
        text-align: left !important;
        width: 100% !important;
    }

    .hero-description {
        font-size: 0.92rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }
    
    .hero-stats {
        width: 100% !important;
        justify-content: flex-start !important; /* Estatísticas rigorosamente alinhadas à esquerda! */
        gap: 1.2rem;
        padding-top: 1.5rem;
    }
    
    .stat-item {
        align-items: flex-start !important;
        text-align: left !important;
    }
    
    .hero-visual {
        display: flex !important; /* Exibe as bolas no mobile */
        justify-content: flex-start; /* Alinhamento na esquerda */
        position: absolute !important;
        top: calc(var(--header-height) - 1.8rem) !important;
        left: 2rem !important; /* Posição à esquerda */
        right: auto !important;
        z-index: 5;
        margin-top: 0;
    }

    .hero-visual .circles-wrapper {
        transform: scale(0.38) !important; /* Bolas um pouco maiores no mobile */
        transform-origin: top left; /* Transformação a partir da esquerda */
        width: 130px;
        height: 90px;
    }

    .circle-hollow {
        border: 1px solid rgb(255 255 255 / 35%) !important;
        background-color: #0000004a !important;
    }
    
    .hero-cta-wrapper {
        margin-top: 1.8rem;
        justify-content: flex-start !important; /* Alinhamento do botão CTA na esquerda */
        width: 100% !important;
    }
    
    .hero-cta-btn {
        font-size: 0.95rem;
        padding-bottom: 6px;
        border-bottom-width: 1.5px;
    }
    
    .design-detail-grid, .branding-detail-grid, .marketing-detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .order-mobile-1 { order: 1; }
    .order-mobile-2 { order: 2; }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    
    .cta-container {
        padding: 4rem 2rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-actions button, .cta-actions a {
        width: 100%;
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-logo {
        margin-bottom: 0.5rem;
    }
    
    .chatbot-window {
        width: calc(100vw - 60px);
        right: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.4rem !important; /* Extremamente compacto para caber na tela sem rolagem */
        text-align: left !important;
    }

    .hero-badge-wrapper {
        margin-top: 3.5rem !important; /* Ajuste para telas ainda menores */
    }

    .hero-description {
        font-size: 0.82rem;
        margin-bottom: 1rem;
        text-align: left !important;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: flex-start !important; /* Justificado na esquerda */
        gap: 0.8rem;
        padding-top: 1rem;
    }
    
    .hero-cta-wrapper {
        margin-top: 1.2rem;
        justify-content: flex-start !important;
    }
    
    .hero-visual .circles-wrapper {
        transform: scale(0.3) !important; /* Bolas um pouco maiores em telas menores também */
    }
    
    .stat-number {
        font-size: 1.3rem !important;
        text-align: left !important;
    }
    
    .stat-label {
        font-size: 0.48rem !important;
        text-align: left !important;
    }
    
    .stat-divider {
        height: 25px;
    }
    
    .chatbot-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .chatbot-window {
        width: calc(100vw - 40px);
        bottom: 75px;
    }
}


/* ==========================================================================
   PÁGINA DO POST EDITORIAL (LPM STUDIO STYLE)
   ========================================================================== */
.post-hero-section {
    padding: 12rem 0 5rem 0;
    position: relative;
    z-index: 10;
}

.post-hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.post-category-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-lime);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    display: block;
    margin-bottom: 1.2rem;
}

.post-hero-title {
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

.post-meta-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 500;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.post-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-meta-item i {
    color: var(--accent-lime);
    font-size: 0.85rem;
}

/* Wide image container in the header zone */
.post-featured-image-wrapper {
    max-width: 1000px;
    margin: 4rem auto -6rem auto;
    position: relative;
    z-index: 15;
    padding: 0 1rem;
}

.post-featured-image-container {
    width: 100%;
    aspect-ratio: 21 / 9;
    border-radius: 24px;
    overflow: hidden;
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.post-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Editorial Body Area */
.post-content-section {
    background-color: #ffffff;
    color: #0d0d0d;
    padding: 12rem 0 8rem 0; /* Extra top padding to account for the overlapping image */
    position: relative;
    z-index: 12;
}

.post-article-body {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.85;
    color: #1a1a1a;
}

.post-article-body p {
    margin-bottom: 2rem;
    text-align: justify;
}

/* High-End Drop Cap */
.post-article-body p:first-of-type::first-letter {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.8rem;
    font-weight: 800;
    float: left;
    line-height: 0.8;
    margin-right: 12px;
    margin-top: 4px;
    color: #000000;
}

/* Editorial Quote (Pull Quote) */
.editorial-quote {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    color: #000000;
    margin: 3.5rem 0;
    padding: 2.5rem 0;
    border-top: 1.5px solid #eaeaea;
    border-bottom: 1.5px solid #eaeaea;
    position: relative;
}

.editorial-quote::before {
    content: "“";
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem;
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.08;
    color: #000;
}

.post-article-body h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #000000;
    letter-spacing: -0.02em;
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.post-article-body h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.01em;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

/* Callouts or highlights */
.post-editorial-note {
    background-color: #f9f9fb;
    border-left: 3px solid #000000;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333333;
}

/* Bullet list spacing inside post */
.post-article-body ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.post-article-body li {
    margin-bottom: 0.8rem;
}

/* Post footer action and navigation */
.post-footer-nav {
    max-width: 720px;
    margin: 5rem auto 0 auto;
    border-top: 1px solid #eaeaea;
    padding-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-back-btn {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #000000;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 4px;
    border-bottom: 1.5px solid #000000;
}

.post-back-btn:hover {
    color: #888888;
    border-bottom-color: #888888;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .post-hero-title {
        font-size: 2.8rem;
    }
    
    .post-featured-image-wrapper {
        margin-bottom: -4rem;
    }
    
    .post-content-section {
        padding-top: 9rem;
    }
}

@media (max-width: 768px) {
    .post-hero-section {
        padding-top: 10rem;
    }
    
    .post-hero-title {
        font-size: 2.1rem;
    }
    
    .post-meta-container {
        gap: 1rem;
    }
    
    .post-featured-image-wrapper {
        margin-bottom: -2rem;
        margin-top: 2rem;
    }
    
    .post-featured-image-container {
        aspect-ratio: 16 / 9;
    }
    
    .post-content-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    
    .post-article-body {
        font-size: 1.05rem;
        line-height: 1.75;
    }
    
    .editorial-quote {
        font-size: 1.4rem;
        padding: 1.5rem 0;
    }
    
    .post-article-body h2 {
        font-size: 1.65rem;
    }
    
    .post-article-body h3 {
        font-size: 1.3rem;
    }
}

/* ==========================================================================
   FLAT MINIMALISM OVERRIDE (NO SHADOWS OR GLOWS)
   ========================================================================== */
* {
    box-shadow: none !important;
    text-shadow: none !important;
}
