/* ============================================================
   AHLEC LAIA — PREMIUM VIDEO EDITOR
   CSS Principal — Azul Navy Premium (substitui cobre/laranja)
   ============================================================ */

/* ===== RESET & ROOT ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* Azul navy premium — subtil, escuro, elegante */
    --blue:        #1E3A5F;
    --blue-light:  #2A5298;
    --blue-bright: #3B6FD4;
    --blue-glow:   rgba(30, 58, 95, 0.5);
    --blue-subtle: rgba(30, 58, 95, 0.08);
    --blue-border: rgba(42, 82, 152, 0.25);
    --blue-text:   #5B8FD4;

    --pure-black:  #000000;
    --white:       #FFFFFF;
    --silver:      #C8C8C8;
    --dark-silver: #8A8A8A;
    --coffee-bean: #0A1628;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--pure-black);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.modal-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
}

/* ============================================================
   SCROLL PROGRESS BAR (topo — barra azul subtil)
   ============================================================ */
#scroll-progress-bar {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--blue), var(--blue-bright), var(--blue-light));
    z-index: 99999;
    transition: width 0.08s linear;
    box-shadow: 0 0 6px var(--blue-glow);
}

/* ============================================================
   SECTION INDICATOR DOTS (lateral direita)
   ============================================================ */
#section-indicator {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9000;
}

.section-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.15);
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.section-dot.active,
.section-dot:hover {
    background: var(--blue-bright);
    border-color: var(--blue-bright);
    transform: scale(1.35);
    box-shadow: 0 0 6px var(--blue-glow);
}

/* Section Popup Label */
#section-popup {
    position: fixed;
    right: 38px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.85);
    border: 1px solid var(--blue-border);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--silver);
    letter-spacing: 0.5px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 9001;
    backdrop-filter: blur(8px);
}

#section-popup.visible { opacity: 1; }

/* ============================================================
   HEADER / NAVEGAÇÃO
   ============================================================ */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 8000;
    padding: 20px 60px;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}

#site-header.scrolled {
    background: rgba(0,0,0,0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 rgba(30,58,95,0.2);
    padding: 14px 60px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
}

.header-logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.header-logo-highlight { color: var(--blue-text); }

/* Desktop Nav */
.header-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.header-nav-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-silver);
    text-decoration: none;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

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

.header-nav-cta {
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    background: var(--blue);
    border: 1px solid var(--blue-light);
    padding: 9px 20px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.header-nav-cta:hover {
    background: var(--blue-light);
    box-shadow: 0 4px 16px var(--blue-glow);
}

/* Hamburger — só mobile */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.active .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.97);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.mobile-menu.open { opacity: 1; pointer-events: auto; }

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

.mobile-nav-link {
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover { color: var(--blue-text); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: var(--pure-black);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(30,58,95,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30,58,95,0.015) 1px, transparent 1px);
    background-size: 100px 100px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.018'/%3E%3C/svg%3E");
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.motion-lines {
    position: absolute; inset: 0;
    z-index: 1; pointer-events: none; overflow: hidden;
}

.motion-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(30,58,95,0.25) 50%, transparent 100%);
    animation: lineSlide 12s ease-in-out infinite;
}

.motion-line:nth-child(1) { top: 15%; width: 500px; animation-delay: 0s; }
.motion-line:nth-child(2) { top: 35%; width: 600px; animation-delay: 3s; }
.motion-line:nth-child(3) { top: 55%; width: 550px; animation-delay: 6s; }
.motion-line:nth-child(4) { top: 75%; width: 650px; animation-delay: 9s; }

@keyframes lineSlide {
    0%   { left: -100%; opacity: 0; }
    10%  { opacity: 0.4; }
    50%  { opacity: 0.7; }
    90%  { opacity: 0.3; }
    100% { left: 100%; opacity: 0; }
}

.floating-dots {
    position: absolute; inset: 0;
    z-index: 2; pointer-events: none;
}

.dot {
    position: absolute;
    width: 3px; height: 3px;
    background: var(--blue-light);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(42,82,152,0.5);
    animation: dotRise 18s ease-in-out infinite;
}

.dot:nth-child(1) { left: 12%; animation-delay: 0s; }
.dot:nth-child(2) { left: 28%; animation-delay: 3.6s; }
.dot:nth-child(3) { left: 48%; animation-delay: 7.2s; }
.dot:nth-child(4) { left: 68%; animation-delay: 10.8s; }
.dot:nth-child(5) { left: 85%; animation-delay: 14.4s; }

@keyframes dotRise {
    0%   { bottom: -20px; opacity: 0; transform: scale(0); }
    5%   { opacity: 0.5; transform: scale(1); }
    50%  { opacity: 0.8; }
    95%  { opacity: 0.3; }
    100% { bottom: 110vh; opacity: 0; transform: scale(0); }
}

.glow-pulse {
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1; pointer-events: none;
    animation: pulse 10s ease-in-out infinite;
}

.glow-pulse:nth-child(1) {
    top: 8%; left: 12%;
    background: radial-gradient(circle, rgba(30,58,95,0.07) 0%, transparent 70%);
    animation-delay: 0s;
}
.glow-pulse:nth-child(2) {
    bottom: 12%; right: 15%;
    background: radial-gradient(circle, rgba(30,58,95,0.05) 0%, transparent 70%);
    animation-delay: 5s;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: scale(0.85); }
    50%       { opacity: 0.9; transform: scale(1.15); }
}

.hero-container {
    position: relative; z-index: 10;
    width: 100%; max-width: 1600px;
    margin: 0 auto;
    padding: 100px 80px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

/* Left — VSL */
.hero-video-container {
    animation: fadeInLeft 1.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-65px) translateY(15px); }
    to   { opacity: 1; transform: translateX(0) translateY(0); }
}

.video-wrapper {
    position: relative;
    border-radius: 8px; overflow: hidden;
    box-shadow:
        0 42px 85px rgba(0,0,0,0.88),
        0 0 0 1px rgba(30,58,95,0.15),
        inset 0 1px 0 rgba(255,255,255,0.02);
    transition: all 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
    background: #080808;
}

.video-wrapper:hover {
    transform: translateY(-8px) scale(1.005);
    box-shadow:
        0 52px 105px rgba(0,0,0,0.95),
        0 0 0 1px rgba(42,82,152,0.3),
        0 0 50px rgba(30,58,95,0.12),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

.video-wrapper::before {
    content: '';
    position: absolute; inset: -2px;
    background: conic-gradient(from 0deg, var(--blue), var(--blue-light), var(--blue));
    border-radius: 10px;
    opacity: 0; z-index: -1;
    transition: opacity 0.6s ease;
    animation: borderSpin 8s linear infinite;
    animation-play-state: paused;
}

.video-wrapper:hover::before {
    opacity: 0.25;
    animation-play-state: running;
}

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

.hero-video {
    width: 100%; height: auto;
    aspect-ratio: 16/9;
    display: block; background: #0a0a0a;
    border: none;
}

.video-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.78), rgba(10,10,10,0.88));
    display: flex; align-items: center; justify-content: center;
    opacity: 1;
    transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1);
    cursor: pointer;
}

.video-overlay.hidden { opacity: 0; pointer-events: none; }

.play-button {
    width: 92px; height: 92px;
    background: transparent;
    border: 2px solid var(--blue-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
    position: relative;
}

.play-button::before,
.play-button::after {
    content: '';
    position: absolute;
    border: 1px solid var(--blue-light);
    border-radius: 50%;
    opacity: 0.2;
}

.play-button::before {
    width: 112px; height: 112px;
    animation: ripple 3.5s cubic-bezier(0.4,0,0.2,1) infinite;
}

.play-button::after {
    width: 132px; height: 132px;
    animation: ripple 3.5s cubic-bezier(0.4,0,0.2,1) infinite;
    animation-delay: 1.2s;
}

@keyframes ripple {
    0%   { transform: scale(0.92); opacity: 0.28; }
    50%  { opacity: 0.12; }
    100% { transform: scale(1.48); opacity: 0; }
}

.play-button:hover {
    background: var(--blue-light);
    transform: scale(1.12);
    box-shadow: 0 0 40px rgba(42,82,152,0.4);
}

.play-button:hover .play-icon { border-left-color: var(--pure-black); }

.play-icon {
    width: 0; height: 0;
    border-left: 23px solid var(--blue-light);
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    margin-left: 7px;
    transition: border-left-color 0.4s ease;
}

.video-description {
    margin-bottom: 16px;
    padding: 18px 22px;
    background: rgba(30,58,95,0.04);
    border: 1px solid rgba(42,82,152,0.15);
    border-radius: 6px;
    text-align: center;
    transition: all 0.4s ease;
}

.video-description:hover {
    background: rgba(30,58,95,0.06);
    border-color: rgba(42,82,152,0.22);
}

.video-description-text {
    font-size: 13px; color: var(--silver);
    line-height: 1.6; letter-spacing: -0.1px;
}

.video-description-text strong { color: var(--white); font-weight: 600; }

.video-cta-section {
    margin-top: 32px;
    display: flex; flex-direction: column; gap: 14px;
}

.video-cta-button {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 16px;
    background: var(--blue);
    color: var(--white);
    font-size: 15px; font-weight: 700;
    padding: 22px 50px;
    border-radius: 6px;
    text-decoration: none; border: none; cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
    letter-spacing: 1.2px; text-transform: uppercase;
    position: relative; overflow: hidden;
    box-shadow: 0 14px 38px rgba(30,58,95,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}

.video-cta-button::before {
    content: '';
    position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.8s ease;
}

.video-cta-button:hover::before { left: 100%; }

.video-cta-button:hover {
    background: var(--blue-light);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 52px rgba(30,58,95,0.4), 0 0 40px rgba(30,58,95,0.15);
}

.cta-arrow {
    width: 22px; height: 1px;
    background: currentColor; position: relative;
    transition: width 0.4s ease;
}

.cta-arrow::after {
    content: '';
    position: absolute; right: 0; top: -4px;
    width: 9px; height: 9px;
    border-right: 1px solid currentColor;
    border-top: 1px solid currentColor;
    transform: rotate(45deg);
}

.video-cta-button:hover .cta-arrow { width: 34px; }

.video-micro-copy {
    color: var(--dark-silver); font-size: 13px;
    text-align: center; font-weight: 400;
    letter-spacing: 0.2px; line-height: 1.5;
}

.video-credibility-wrapper { margin-top: 32px; }

.credibility-intro {
    font-size: 10px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--dark-silver); margin-bottom: 16px; text-align: center;
}

.video-credibility { display: flex; flex-direction: column; gap: 14px; }

.cred-badge {
    background: rgba(30,58,95,0.04);
    border: 1px solid rgba(42,82,152,0.18);
    border-left: 2px solid var(--blue-light);
    border-radius: 6px; padding: 18px 20px;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    position: relative; overflow: hidden;
}

.cred-badge:hover {
    background: rgba(30,58,95,0.07);
    border-color: rgba(42,82,152,0.3);
    transform: translateX(6px);
    box-shadow: 0 8px 24px rgba(30,58,95,0.15);
}

.cred-header {
    display: flex; justify-content: space-between;
    align-items: flex-start; margin-bottom: 10px;
}

.cred-label {
    font-size: 9px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--blue-text); margin-bottom: 6px;
}

.cred-title {
    font-size: 15px; font-weight: 700;
    color: var(--white); line-height: 1.3; letter-spacing: -0.3px;
}

.cred-price {
    font-size: 22px; font-weight: 700;
    color: var(--blue-text); letter-spacing: -0.5px; line-height: 1; white-space: nowrap;
}

.cred-description {
    font-size: 13px; color: var(--silver);
    line-height: 1.5; letter-spacing: -0.1px; margin-bottom: 12px;
}

.cred-footer {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 12px; border-top: 1px solid rgba(42,82,152,0.12);
}

.cred-type {
    font-size: 10px; font-weight: 600;
    color: var(--dark-silver); text-transform: uppercase; letter-spacing: 0.8px;
}

.cred-result { font-size: 11px; font-weight: 700; color: var(--white); }
.cred-result-number { color: var(--blue-text); font-size: 13px; }

/* Right — Copy */
.hero-content {
    animation: fadeInRight 1.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(65px) translateY(15px); }
    to   { opacity: 1; transform: translateX(0) translateY(0); }
}

.profile-section {
    display: flex; align-items: center;
    gap: 18px; margin-bottom: 38px;
}

.profile-avatar {
    width: 72px; height: 72px;
    border-radius: 50%;
    border: 2px solid var(--blue-light);
    overflow: hidden; flex-shrink: 0;
    position: relative;
    box-shadow: 0 8px 24px rgba(30,58,95,0.3), 0 0 0 4px rgba(30,58,95,0.06);
    transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}

.profile-section:hover .profile-avatar {
    transform: scale(1.08);
    box-shadow: 0 12px 36px rgba(30,58,95,0.4), 0 0 0 6px rgba(30,58,95,0.1);
}

.profile-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.profile-info { display: flex; flex-direction: column; gap: 4px; }

.profile-name {
    font-size: 22px; font-weight: 700;
    color: var(--white); letter-spacing: -0.5px; line-height: 1.2;
}

.profile-specialization {
    font-size: 13px; font-weight: 600;
    background: linear-gradient(90deg, var(--blue-text), rgba(91,143,212,0.7));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; letter-spacing: 0.3px; text-transform: uppercase;
}

.hero-headline {
    font-size: 48px; font-weight: 800;
    color: var(--white); line-height: 1.15;
    margin-bottom: 26px; letter-spacing: -1.8px;
}

.hero-headline .highlight,
.highlight {
    background: linear-gradient(135deg, var(--blue-text), rgba(91,143,212,0.75));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; font-style: italic;
}

.hero-subheadline {
    font-size: 19px; color: var(--silver);
    line-height: 1.68; margin-bottom: 42px;
    font-weight: 400; letter-spacing: -0.1px; max-width: 590px;
}

.hero-subheadline strong {
    background: linear-gradient(90deg, var(--white), rgba(255,255,255,0.85));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; font-weight: 600;
}

.hero-benefits { list-style: none; margin-bottom: 42px; }

.hero-benefits li {
    color: var(--white); font-size: 16px; font-weight: 500;
    margin-bottom: 20px; padding-left: 38px;
    position: relative; opacity: 0;
    animation: fadeInUp 0.9s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
    letter-spacing: -0.2px; line-height: 1.5;
    transition: all 0.3s ease;
}

.hero-benefits li:nth-child(1) { animation-delay: 0.5s; }
.hero-benefits li:nth-child(2) { animation-delay: 0.7s; }
.hero-benefits li:nth-child(3) { animation-delay: 0.9s; }

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

.hero-benefits li::before {
    content: '';
    position: absolute; left: 0; top: 2px;
    width: 22px; height: 22px;
    border: 1.5px solid rgba(42,82,152,0.4);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

.hero-benefits li::after {
    content: '';
    position: absolute; left: 6px; top: 9px;
    width: 8px; height: 4px;
    border-left: 2px solid var(--blue-light);
    border-bottom: 2px solid var(--blue-light);
    transform: rotate(-45deg); opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

.hero-benefits li:hover { transform: translateX(4px); }

.hero-benefits li:hover::before {
    border-color: var(--blue-light);
    box-shadow: 0 0 12px rgba(42,82,152,0.25);
    transform: scale(1.1);
}

.hero-benefits li:hover::after { opacity: 1; }

.exclusivity-notice {
    background: rgba(30,58,95,0.05);
    border: 1px solid rgba(42,82,152,0.2);
    border-left: 3px solid var(--blue-light);
    border-radius: 6px; padding: 18px 22px;
    margin-bottom: 42px;
    position: relative; overflow: hidden;
    transition: all 0.4s ease;
}

.exclusivity-notice:hover {
    background: rgba(30,58,95,0.08);
    border-color: rgba(42,82,152,0.3);
    box-shadow: 0 8px 24px rgba(30,58,95,0.12);
}

.exclusivity-title {
    font-size: 13px; font-weight: 700;
    background: linear-gradient(90deg, var(--blue-text), rgba(91,143,212,0.7));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px;
}

.exclusivity-text { font-size: 13px; color: var(--silver); line-height: 1.65; }
.exclusivity-text strong { color: var(--white); font-weight: 600; }

.scroll-indicator {
    position: absolute; bottom: 46px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 13px;
    color: var(--dark-silver); font-size: 10px; letter-spacing: 2.2px;
    text-transform: uppercase; z-index: 10;
    animation: bounce 3s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(13px); }
}

.scroll-line {
    width: 1px; height: 42px;
    background: linear-gradient(to bottom, var(--blue-light), transparent);
}

/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */
.portfolio-section {
    position: relative;
    min-height: 100vh; background: var(--pure-black);
    overflow: hidden; padding: 120px 0 180px 0;
}

.portfolio-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(30,58,95,0.04) 0%, transparent 60%);
    z-index: 1; pointer-events: none;
}

.portfolio-container {
    position: relative; z-index: 10;
    width: 100%; max-width: 1600px;
    margin: 0 auto; padding: 0 80px;
}

.portfolio-header {
    text-align: center; margin-bottom: 100px;
}

.portfolio-label {
    font-size: 11px; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--blue-text); margin-bottom: 24px; display: inline-block;
}

.portfolio-title {
    font-size: 56px; font-weight: 900;
    color: var(--white); line-height: 1.2;
    letter-spacing: -2.5px; margin-bottom: 24px;
}

.portfolio-subtitle {
    font-size: 18px; color: var(--dark-silver);
    line-height: 1.7; letter-spacing: -0.2px;
    font-weight: 400; max-width: 700px; margin: 0 auto;
}

.portfolio-subtitle strong { color: var(--silver); font-weight: 600; }

/* Carousel */
.carousel-wrapper {
    position: relative; width: 100%; overflow: visible;
    padding: 60px 0;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    cursor: grab;
}

.carousel-wrapper:active { cursor: grabbing; }

.carousel-track { display: flex; gap: 24px; will-change: transform; }

/* Video Card (portfolio) */
.video-card {
    position: relative; flex-shrink: 0;
    width: 300px; height: 533px;
    border-radius: 16px; overflow: hidden;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(42,82,152,0.15);
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), border-color 0.5s ease, box-shadow 0.5s ease;
    cursor: pointer; backface-visibility: hidden; will-change: transform;
}

.video-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(42,82,152,0.45);
    box-shadow: 0 32px 72px rgba(30,58,95,0.25), 0 0 0 1px rgba(42,82,152,0.25);
    z-index: 100;
}

.video-thumbnail {
    position: relative; width: 100%; height: 100%;
    overflow: hidden; background: #000;
}

.video-thumbnail video {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.5s ease; pointer-events: none;
}

.video-thumbnail .vimeo-thumb {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease, opacity 0.3s ease;
    z-index: 2;
}

.video-thumbnail iframe {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    border: none; opacity: 0;
    transition: opacity 0.5s ease; z-index: 1;
}

.video-thumbnail iframe.loaded { opacity: 1; }

.video-card:hover .video-thumbnail video,
.video-card:hover .video-thumbnail .vimeo-thumb { transform: scale(1.08); }

.video-card:hover .video-thumbnail iframe.loaded ~ .vimeo-thumb { opacity: 0; }

.video-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.9) 100%);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.4s ease;
    pointer-events: none; z-index: 10;
}

.video-card:hover .video-overlay { opacity: 1; }

.play-icon-portfolio {
    width: 72px; height: 72px; border-radius: 50%;
    background: rgba(30,58,95,0.9);
    border: 3px solid var(--white);
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 12px 32px rgba(30,58,95,0.5);
}

.video-card:hover .play-icon-portfolio {
    transform: scale(1.15);
    background: var(--blue-light);
    box-shadow: 0 16px 48px rgba(30,58,95,0.6);
}

.play-icon-portfolio svg { width: 28px; height: 28px; fill: var(--white); margin-left: 4px; }

/* Portfolio Video Modal */
.video-modal {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.98);
    backdrop-filter: blur(20px);
    z-index: 99999;
    align-items: center; justify-content: center;
    padding: 20px;
}

.video-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.video-modal-content {
    position: relative; width: 100%; max-width: 450px;
    aspect-ratio: 9/16; background: #000;
    border-radius: 16px; overflow: hidden;
    border: 2px solid rgba(30,58,95,0.4);
    box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 50px rgba(30,58,95,0.25);
    animation: modalSlideUp 0.4s cubic-bezier(0.4,0,0.2,1);
}

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

.video-modal-player { width: 100%; height: 100%; position: relative; background: #000; }
.video-modal-player video,
.video-modal-player iframe { width: 100%; height: 100%; object-fit: contain; border: none; }

.video-modal-close {
    position: absolute; top: 20px; right: 20px;
    width: 50px; height: 50px;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    border: 2px solid var(--blue-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s cubic-bezier(0.4,0,0.2,1); z-index: 100;
}

.video-modal-close:hover {
    background: var(--blue-light);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 28px rgba(30,58,95,0.5);
}

.video-modal-close::before,
.video-modal-close::after {
    content: '';
    position: absolute; width: 24px; height: 3px;
    background: var(--white); border-radius: 2px;
}

.video-modal-close::before { transform: rotate(45deg); }
.video-modal-close::after  { transform: rotate(-45deg); }

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-section {
    position: relative; min-height: 100vh;
    background: var(--pure-black); overflow: hidden;
    display: flex; align-items: center; padding: 120px 0;
}

.problem-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(30,58,95,0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(30,58,95,0.025) 0%, transparent 50%);
    z-index: 1; pointer-events: none;
}

.problem-shapes {
    position: absolute; width: 100%; height: 100%;
    inset: 0; z-index: 3; pointer-events: none; opacity: 0.05;
}

.problem-shape {
    position: absolute;
    border: 1px solid var(--blue-light);
    border-radius: 50%;
    animation: floatProblem 32s infinite ease-in-out;
}

.problem-shape:nth-child(1) { width: 120px; height: 120px; top: 15%; left: 10%; animation-delay: 0s; }
.problem-shape:nth-child(2) { width: 80px; height: 80px; top: 65%; right: 12%; animation-delay: 4s; }
.problem-shape:nth-child(3) { width: 100px; height: 100px; bottom: 20%; left: 8%; animation-delay: 8s; }

@keyframes floatProblem {
    0%, 100% { transform: translate(0,0) scale(1); }
    25%       { transform: translate(30px,-40px) scale(1.1); }
    50%       { transform: translate(-25px,-70px) scale(0.95); }
    75%       { transform: translate(40px,-50px) scale(1.05); }
}

.problem-container {
    position: relative; z-index: 10;
    width: 100%; max-width: 1400px;
    margin: 0 auto; padding: 0 80px; text-align: center;
}

.problem-label {
    font-size: 11px; font-weight: 700;
    letter-spacing: 2.8px; text-transform: uppercase;
    background: linear-gradient(90deg, var(--blue-text), rgba(91,143,212,0.6));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; margin-bottom: 20px; display: inline-block;
}

.problem-title {
    font-size: 52px; font-weight: 800; color: var(--white);
    line-height: 1.2; letter-spacing: -1.8px; margin-bottom: 24px;
    max-width: 900px; margin-left: auto; margin-right: auto;
}

.problem-subtitle {
    font-size: 19px; color: var(--silver); line-height: 1.7;
    margin-bottom: 68px; max-width: 750px; margin-left: auto; margin-right: auto;
}

.problem-subtitle strong { color: var(--white); font-weight: 600; }

.problems-grid {
    display: grid; grid-template-columns: repeat(2,1fr);
    gap: 28px; max-width: 1100px; margin: 0 auto;
}

.problem-card {
    background: linear-gradient(135deg, rgba(10,22,40,0.4), rgba(10,22,40,0.15));
    border: 1px solid rgba(42,82,152,0.18);
    border-radius: 12px; padding: 38px 36px; text-align: left;
    transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
    position: relative; overflow: hidden;
}

.problem-card:hover {
    background: linear-gradient(135deg, rgba(10,22,40,0.6), rgba(10,22,40,0.25));
    border-color: rgba(42,82,152,0.35);
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.6), 0 0 30px rgba(30,58,95,0.1);
}

.problem-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(30,58,95,0.15), rgba(30,58,95,0.08));
    border: 1.5px solid rgba(42,82,152,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}

.problem-card:hover .problem-icon {
    transform: scale(1.12) rotate(5deg);
    background: linear-gradient(135deg, rgba(30,58,95,0.3), rgba(30,58,95,0.15));
    border-color: var(--blue-light);
    box-shadow: 0 8px 28px rgba(30,58,95,0.3);
}

.problem-icon svg { width: 26px; height: 26px; stroke: var(--blue-text); }
.problem-card:hover .problem-icon svg path,
.problem-card:hover .problem-icon svg circle { stroke: var(--blue-bright); }

.problem-card-title {
    font-size: 22px; font-weight: 700; color: var(--white);
    line-height: 1.3; letter-spacing: -0.5px; margin-bottom: 14px;
}

.problem-card-description {
    font-size: 15px; color: var(--silver); line-height: 1.7;
}

.problem-card-description strong { color: var(--white); font-weight: 600; }

/* ============================================================
   SOLUTION SECTION
   ============================================================ */
.solution-section {
    position: relative; min-height: 100vh;
    background: var(--pure-black); overflow: hidden;
    padding: 120px 0; z-index: 1;
}

.solution-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(30,58,95,0.04) 0%, transparent 60%);
    z-index: 1; pointer-events: none;
}

.solution-container {
    position: relative; z-index: 10;
    width: 100%; max-width: 1600px;
    margin: 0 auto; padding: 0 80px;
}

.solution-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 100px; align-items: start;
}

.solution-left { animation: fadeInLeft 1.2s cubic-bezier(0.25,0.46,0.45,0.94); }

.solution-header { margin-bottom: 50px; }

.solution-label {
    font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase; color: var(--blue-text);
    margin-bottom: 24px; display: inline-block;
}

.solution-title {
    font-size: 56px; font-weight: 900; color: var(--white);
    line-height: 1.05; letter-spacing: -2.5px; margin-bottom: 28px;
}

.solution-title .fade { color: rgba(255,255,255,0.3); font-weight: 300; }

.solution-subtitle {
    font-size: 17px; color: var(--dark-silver);
    line-height: 1.75; letter-spacing: -0.2px;
}

.solution-subtitle strong { color: var(--silver); font-weight: 600; }

.accordion-list { display: flex; flex-direction: column; gap: 16px; }

.accordion-item {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(42,82,152,0.15);
    border-radius: 12px; overflow: hidden;
    transition: all 0.4s ease;
}

.accordion-item.active {
    background: rgba(30,58,95,0.06);
    border-color: rgba(42,82,152,0.3);
    box-shadow: 0 8px 24px rgba(30,58,95,0.12);
}

.accordion-header {
    display: flex; align-items: center; gap: 20px;
    padding: 24px 28px; cursor: pointer;
    transition: all 0.3s ease; user-select: none;
}

.accordion-item:hover .accordion-header { background: rgba(30,58,95,0.04); }

.accordion-icon-wrapper { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.accordion-icon {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
}

.accordion-icon svg { width: 20px; height: 20px; stroke: var(--dark-silver); }

.accordion-item.active .accordion-icon svg path,
.accordion-item.active .accordion-icon svg circle,
.accordion-item.active .accordion-icon svg rect { stroke: var(--blue-text); }

.accordion-number {
    font-size: 16px; font-weight: 300;
    color: rgba(91,143,212,0.4); letter-spacing: -0.3px;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-number { color: var(--blue-text); font-weight: 500; }

.accordion-title {
    flex: 1; font-size: 19px; font-weight: 600;
    color: var(--white); line-height: 1.3; letter-spacing: -0.5px;
}

.accordion-item.active .accordion-title { color: var(--blue-text); }

.accordion-toggle {
    width: 24px; height: 24px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(30,58,95,0.12);
    transition: all 0.3s ease;
}

.accordion-toggle svg { width: 14px; height: 14px; stroke: var(--dark-silver); transition: transform 0.3s ease; }
.accordion-item.active .accordion-toggle { background: rgba(30,58,95,0.25); }
.accordion-item.active .accordion-toggle svg { transform: rotate(180deg); stroke: var(--blue-text); }

.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.accordion-item.active .accordion-content { max-height: 500px; }

.accordion-content-inner { padding: 0 28px 28px 92px; }

.accordion-description {
    font-size: 15px; color: var(--dark-silver);
    line-height: 1.7; letter-spacing: -0.2px;
}

.accordion-description strong { color: var(--silver); font-weight: 600; }

/* Solution Right */
.solution-right {
    animation: fadeInRight 1.2s cubic-bezier(0.25,0.46,0.45,0.94);
    display: flex; flex-direction: column; gap: 32px;
    position: sticky; top: 120px; z-index: 1;
}

.solution-image-wrapper {
    position: relative; width: 100%; height: 500px;
    border-radius: 16px; overflow: hidden;
    background: linear-gradient(135deg, rgba(30,58,95,0.08), rgba(30,58,95,0.03));
    border: 1px solid rgba(42,82,152,0.15);
    transition: all 0.6s cubic-bezier(0.4,0,0.2,1);
}

.solution-image-wrapper:hover {
    transform: translateY(-8px);
    border-color: rgba(42,82,152,0.3);
    box-shadow: 0 32px 64px rgba(0,0,0,0.5), 0 0 50px rgba(30,58,95,0.12);
}

.solution-image { width: 100%; height: 100%; object-fit: cover; display: block; }

.solution-reels-wrapper {
    display: flex; flex-direction: column; gap: 14px;
    width: 100%;
}

.solution-reels-label {
    font-size: 11px; font-weight: 300;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.28);
    text-align: center; margin: 0;
}

.solution-reels-grid {
    display: flex; gap: 12px; width: 100%;
}

.solution-reel-item {
    flex: 1; border-radius: 12px; overflow: hidden;
    background: #0a0a0a;
    border: 1px solid rgba(42,82,152,0.12);
}

.solution-reel-item iframe {
    width: 100%; aspect-ratio: 9/16;
    display: block; border: none;
}

.solution-warning {
    background: linear-gradient(135deg, rgba(30,58,95,0.1), rgba(30,58,95,0.04));
    border: 1px solid rgba(42,82,152,0.25);
    border-left: 4px solid var(--blue-light);
    border-radius: 12px; padding: 28px 32px;
    position: relative; overflow: hidden;
    transition: all 0.5s ease;
}

.solution-warning:hover {
    background: linear-gradient(135deg, rgba(30,58,95,0.15), rgba(30,58,95,0.06));
    border-color: rgba(42,82,152,0.4);
    box-shadow: 0 12px 32px rgba(30,58,95,0.15);
}

.warning-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.warning-icon { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; }
.warning-icon svg { width: 24px; height: 24px; stroke: var(--blue-text); }
.warning-title { font-size: 15px; font-weight: 700; color: var(--blue-text); letter-spacing: 0.5px; text-transform: uppercase; }
.warning-text { font-size: 15px; color: var(--silver); line-height: 1.7; }
.warning-text strong { color: var(--white); font-weight: 600; }

/* ============================================================
   METODOLOGIA SECTION
   ============================================================ */
.metodologia-section {
    position: relative; padding: 120px 40px;
    background: var(--pure-black); overflow: hidden;
}

.metodologia-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(30,58,95,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30,58,95,0.025) 1px, transparent 1px);
    background-size: 60px 60px; pointer-events: none; opacity: 0.4;
}

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

.metodologia-header { text-align: center; margin-bottom: 70px; }

.metodologia-label {
    display: inline-block; font-size: 13px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase; color: var(--blue-text);
    margin-bottom: 16px; padding: 8px 20px;
    border: 1px solid rgba(42,82,152,0.3);
    border-radius: 50px; background: rgba(30,58,95,0.06);
}

.metodologia-title { font-size: 56px; font-weight: 900; line-height: 1.1; margin-bottom: 20px; color: var(--white); }
.metodologia-subtitle { font-size: 20px; font-weight: 400; color: var(--dark-silver); max-width: 700px; margin: 0 auto; }

/* Framework 3C */
.framework-3c-compact {
    max-width: 900px; margin: 0 auto 60px;
    padding: 40px 50px;
    background: rgba(30,58,95,0.04);
    border: 1px solid rgba(42,82,152,0.2);
    border-left: 4px solid var(--blue-light);
    border-radius: 12px;
    position: relative; overflow: hidden;
}

.framework-3c-compact:hover { background: rgba(30,58,95,0.06); }

.framework-title { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 24px; text-align: center; }

.framework-pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; position: relative; z-index: 1; }

.framework-pillar { text-align: center; transition: transform 0.3s ease; }
.framework-pillar:hover { transform: translateY(-4px); }

.pillar-number {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    background: rgba(30,58,95,0.15);
    border: 2px solid var(--blue-light);
    border-radius: 50%; font-size: 16px; font-weight: 800; color: var(--blue-text);
    margin-bottom: 12px; transition: all 0.3s ease;
}

.framework-pillar:hover .pillar-number { transform: scale(1.1); box-shadow: 0 0 16px rgba(30,58,95,0.4); }

.pillar-name { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.pillar-description { font-size: 14px; color: var(--silver); line-height: 1.5; }

.framework-arrow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 100%; height: 2px; pointer-events: none; }
.framework-arrow::before { content: '→'; position: absolute; left: 33%; top: -12px; font-size: 20px; color: var(--blue-light); opacity: 0.3; }
.framework-arrow::after  { content: '→'; position: absolute; right: 33%; top: -12px; font-size: 20px; color: var(--blue-light); opacity: 0.3; }

.timeline-intro { text-align: center; margin-bottom: 70px; }
.timeline-intro-title { font-size: 32px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.timeline-intro-subtitle { font-size: 17px; color: var(--silver); max-width: 650px; margin: 0 auto; line-height: 1.7; }

/* Timeline */
.timeline { position: relative; padding: 40px 0; }

.timeline::before {
    content: '';
    position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
    background: linear-gradient(to bottom, transparent 0%, var(--blue-light) 10%, var(--blue-light) 90%, transparent 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative; margin-bottom: 120px;
    opacity: 0; transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4,0,0.2,1);
}

.timeline-item.visible { opacity: 1; transform: translateY(0); }
.timeline-item:last-child { margin-bottom: 0; }

.timeline-circle {
    position: absolute; left: 50%; top: 0;
    width: 80px; height: 80px; border-radius: 50%;
    background: var(--pure-black);
    border: 3px solid var(--blue-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; font-weight: 800; color: var(--blue-text);
    transform: translateX(-50%); z-index: 3;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-circle { transform: translateX(-50%) scale(1.1); box-shadow: 0 0 24px rgba(30,58,95,0.5); }

.timeline-content {
    width: 45%; padding: 40px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(42,82,152,0.15);
    border-radius: 12px; position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(42,82,152,0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(30,58,95,0.1);
}

.timeline-item:nth-child(odd)  .timeline-content { margin-left: auto; margin-right: 0; }
.timeline-item:nth-child(even) .timeline-content { margin-left: 0; margin-right: auto; }

.timeline-icon { width: 48px; height: 48px; margin-bottom: 20px; opacity: 0.9; }
.timeline-icon svg { width: 100%; height: 100%; stroke: var(--blue-text); fill: none; stroke-width: 1.5; }

.timeline-step-title { font-size: 28px; font-weight: 700; color: var(--white); margin-bottom: 12px; line-height: 1.2; }

.timeline-duration {
    display: inline-block; font-size: 13px; font-weight: 600; color: var(--blue-text);
    background: rgba(30,58,95,0.1);
    padding: 6px 14px; border-radius: 50px; margin-bottom: 16px;
    border: 1px solid rgba(42,82,152,0.2);
}

.timeline-description { font-size: 16px; font-weight: 400; color: var(--silver); line-height: 1.7; }
.timeline-description strong { color: var(--white); font-weight: 600; }

.metodologia-footer {
    text-align: center; margin-top: 100px;
    padding: 50px 40px;
    background: rgba(30,58,95,0.03);
    border: 1px solid rgba(42,82,152,0.15);
    border-radius: 16px;
}

.metodologia-footer-title { font-size: 28px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.metodologia-footer-text { font-size: 18px; color: var(--silver); max-width: 750px; margin: 0 auto 40px; line-height: 1.7; }
.metodologia-footer-text strong { color: var(--white); font-weight: 600; }

.metodologia-guarantee { display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; }

.guarantee-item { display: flex; align-items: center; gap: 12px; }
.guarantee-icon { width: 24px; height: 24px; flex-shrink: 0; }
.guarantee-icon svg { width: 100%; height: 100%; stroke: var(--blue-text); fill: none; stroke-width: 2; }
.guarantee-text { font-size: 15px; font-weight: 500; color: var(--white); }

/* ============================================================
   COMPARAÇÃO SECTION
   ============================================================ */
.comparacao-section {
    position: relative; padding: 100px 40px;
    background: var(--pure-black); overflow: hidden;
}

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

.comparacao-header { text-align: center; margin-bottom: 60px; }

.comparacao-label {
    display: inline-block; font-size: 13px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--blue-text); margin-bottom: 16px;
}

.comparacao-title { font-size: 48px; font-weight: 900; line-height: 1.15; margin-bottom: 16px; color: var(--white); }
.comparacao-subtitle { font-size: 18px; font-weight: 400; color: var(--dark-silver); max-width: 650px; margin: 0 auto; }

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

.comparison-column { padding: 40px; border-radius: 16px; border: 1px solid; transition: all 0.3s ease; }

.comparison-column.traditional { background: rgba(20,20,20,0.5); border-color: rgba(100,100,100,0.2); }
.comparison-column.ahlec { background: rgba(30,58,95,0.07); border-color: rgba(42,82,152,0.25); }

.comparison-column.ahlec:hover {
    background: rgba(30,58,95,0.1); border-color: rgba(42,82,152,0.4);
    transform: translateY(-5px); box-shadow: 0 15px 50px rgba(30,58,95,0.15);
}

.comparison-column-header { text-align: center; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid; }
.comparison-column.traditional .comparison-column-header { border-bottom-color: rgba(100,100,100,0.2); }
.comparison-column.ahlec .comparison-column-header { border-bottom-color: rgba(42,82,152,0.2); }

.comparison-column-title { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.comparison-column.traditional .comparison-column-title { color: #888; }
.comparison-column.ahlec .comparison-column-title { color: var(--blue-text); }
.comparison-column-subtitle { font-size: 14px; color: var(--dark-silver); }

.comparison-list { list-style: none; }

.comparison-item {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 20px; padding: 16px; border-radius: 8px;
    transition: all 0.3s ease;
}

.comparison-column.traditional .comparison-item { background: rgba(255,255,255,0.02); }
.comparison-column.ahlec .comparison-item { background: rgba(30,58,95,0.06); }
.comparison-column.ahlec .comparison-item:hover { background: rgba(30,58,95,0.12); transform: translateX(5px); }

.comparison-icon { width: 24px; height: 24px; flex-shrink: 0; margin-top: 2px; }
.comparison-icon svg { width: 100%; height: 100%; fill: none; stroke-width: 2.5; }
.comparison-column.traditional .comparison-icon svg { stroke: #888; }
.comparison-column.ahlec .comparison-icon svg { stroke: var(--blue-text); }

.comparison-text { flex: 1; }
.comparison-text-title { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.comparison-text-desc { font-size: 14px; color: var(--silver); line-height: 1.5; }

.comparison-callout {
    text-align: center; padding: 40px;
    background: rgba(30,58,95,0.07);
    border: 1px solid rgba(42,82,152,0.2);
    border-radius: 16px;
}

.comparison-callout-title { font-size: 28px; font-weight: 700; color: var(--white); margin-bottom: 16px; }

.comparison-callout-text {
    font-size: 17px; color: var(--silver);
    max-width: 680px; margin: 0 auto 30px; line-height: 1.7;
}

.comparison-callout-text strong { font-weight: 700; color: var(--white); }

.comparison-callout-button {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 12px; padding: 18px 48px;
    background: var(--blue); color: var(--white);
    font-size: 16px; font-weight: 700;
    text-decoration: none; border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    border: 2px solid var(--blue-light);
    position: relative; overflow: hidden;
}

.comparison-callout-button:hover {
    background: var(--blue-light); transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(30,58,95,0.4);
}

.cta-icon { width: 20px; height: 20px; transition: transform 0.4s ease; }
.cta-icon svg { width: 100%; height: 100%; fill: currentColor; }
.comparison-callout-button:hover .cta-icon { transform: scale(1.2); }

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section {
    position: relative; padding: 120px 40px;
    background: var(--pure-black); overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(30,58,95,0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(30,58,95,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-container { max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; }

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

.pricing-label {
    display: inline-block; font-size: 13px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--blue-text); margin-bottom: 16px; position: relative;
}

.pricing-label::before,
.pricing-label::after {
    content: ''; position: absolute; top: 50%;
    width: 30px; height: 1px; background: var(--blue-text);
}

.pricing-label::before { right: calc(100% + 12px); }
.pricing-label::after  { left: calc(100% + 12px); }

.pricing-title { font-size: 48px; font-weight: 900; line-height: 1.15; margin-bottom: 16px; color: var(--white); letter-spacing: -0.5px; }
.pricing-subtitle { font-size: 18px; font-weight: 400; color: var(--dark-silver); max-width: 650px; margin: 0 auto; }

.pricing-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 30px; margin-bottom: 60px;
    align-items: start;
}

.pricing-card {
    padding: 48px 40px;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(42,82,152,0.2);
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
    position: relative; display: flex; flex-direction: column;
    overflow: visible;
}

.pricing-card:hover {
    transform: translateY(-12px);
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border-color: rgba(42,82,152,0.4);
    box-shadow: 0 25px 70px rgba(30,58,95,0.2);
}

/* Featured */
.pricing-card.featured {
    border: 2px solid var(--blue-light);
    background: linear-gradient(135deg, rgba(30,58,95,0.12) 0%, rgba(30,58,95,0.06) 100%);
    transform: scale(1.05);
}

.pricing-card.featured:hover { transform: scale(1.08) translateY(-12px); box-shadow: 0 30px 80px rgba(30,58,95,0.3); }

.pricing-badge {
    position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
    color: var(--white); font-size: 12px; font-weight: 700;
    letter-spacing: 1.2px; text-transform: uppercase;
    padding: 8px 20px 8px 16px; border-radius: 50px;
    box-shadow: 0 6px 20px rgba(30,58,95,0.5);
    border: 1px solid rgba(255,255,255,0.1); z-index: 10;
    display: flex; align-items: center; gap: 6px;
}

.badge-icon { width: 14px; height: 14px; }
.badge-icon svg { width: 100%; height: 100%; fill: var(--white); }

.pricing-card-header {
    text-align: center; margin-bottom: 40px; padding-bottom: 40px; position: relative;
}

.pricing-card-header::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 60px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue-light), transparent);
}

.pricing-icon {
    width: 64px; height: 64px; margin: 0 auto 24px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(30,58,95,0.12) 0%, rgba(30,58,95,0.04) 100%);
    border: 1px solid rgba(42,82,152,0.2);
}

.pricing-icon svg { width: 36px; height: 36px; stroke: var(--blue-text); fill: none; stroke-width: 1.5; }

.pricing-name { font-size: 32px; font-weight: 800; color: var(--white); margin-bottom: 20px; letter-spacing: -0.5px; }

.pricing-price { display: flex; align-items: baseline; justify-content: center; gap: 6px; }
.pricing-amount { font-size: 56px; font-weight: 900; color: var(--blue-text); line-height: 1; letter-spacing: -2px; }
.pricing-currency { font-size: 32px; font-weight: 800; color: var(--blue-text); }
.pricing-period { font-size: 17px; font-weight: 500; color: var(--dark-silver); }

.pricing-features { list-style: none; margin-bottom: 40px; flex: 1; }

.pricing-features li {
    display: flex; align-items: flex-start; gap: 14px;
    margin-bottom: 18px; font-size: 15px; font-weight: 400;
    color: var(--silver); line-height: 1.6;
    transition: all 0.3s ease;
}

.pricing-features li:hover { color: var(--white); transform: translateX(5px); }
.pricing-features li:last-child { margin-bottom: 0; }

.feature-icon { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.feature-icon svg { width: 100%; height: 100%; stroke: var(--blue-text); fill: none; stroke-width: 3; }

.pricing-cta {
    display: block; width: 100%; padding: 18px 32px;
    background: transparent; color: var(--blue-text);
    font-size: 16px; font-weight: 700; text-align: center;
    text-decoration: none;
    border: 2px solid var(--blue-light);
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    position: relative; overflow: hidden; letter-spacing: 0.5px;
}

.pricing-cta:hover { background: var(--blue-light); color: var(--white); transform: translateY(-3px); box-shadow: 0 15px 40px rgba(30,58,95,0.35); }

.pricing-card.featured .pricing-cta { background: var(--blue-light); color: var(--white); box-shadow: 0 8px 20px rgba(30,58,95,0.3); }
.pricing-card.featured .pricing-cta:hover { background: transparent; color: var(--blue-text); }

.pricing-footer {
    text-align: center; padding: 48px 40px;
    background: linear-gradient(135deg, rgba(30,58,95,0.07) 0%, rgba(30,58,95,0.03) 100%);
    border: 1px solid rgba(42,82,152,0.2);
    border-radius: 20px; position: relative;
    grid-column: 1 / -1;
}

.pricing-footer::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 100px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue-light), transparent);
}

.pricing-footer-text { font-size: 16px; color: var(--silver); line-height: 1.8; }
.pricing-footer-text strong { font-weight: 700; color: var(--white); }

/* ============================================================
   FREE CALL / CALENDLY SECTION
   ============================================================ */
.freecall-section {
    position: relative; padding: 120px 40px;
    background: var(--pure-black); overflow: hidden;
}

.freecall-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(30,58,95,0.07) 0%, transparent 60%);
    pointer-events: none;
}

.freecall-container { max-width: 1300px; margin: 0 auto; position: relative; z-index: 2; }

.freecall-card {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 60px;
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(42,82,152,0.25);
    border-radius: 24px; position: relative;
}

.freecall-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(30,58,95,0.1), transparent 60%);
    border-radius: 24px; pointer-events: none;
}

.freecall-content { display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2; }

.freecall-label {
    display: inline-block; font-size: 13px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--blue-text); margin-bottom: 16px;
}

.freecall-title { font-size: 44px; font-weight: 900; line-height: 1.15; margin-bottom: 20px; color: var(--white); letter-spacing: -0.5px; }
.freecall-description { font-size: 18px; font-weight: 400; color: var(--silver); margin-bottom: 36px; line-height: 1.7; }

.freecall-benefits { list-style: none; margin-bottom: 40px; }

.freecall-benefits li {
    display: flex; align-items: flex-start; gap: 14px;
    margin-bottom: 16px; font-size: 16px; font-weight: 400;
    color: var(--silver); line-height: 1.6;
    transition: all 0.3s ease;
}

.freecall-benefits li:hover { color: var(--white); transform: translateX(5px); }
.freecall-benefits li:last-child { margin-bottom: 0; }

.benefit-icon { width: 24px; height: 24px; flex-shrink: 0; margin-top: 2px; }
.benefit-icon svg { width: 100%; height: 100%; stroke: var(--blue-text); fill: none; stroke-width: 2.5; }

.freecall-note { font-size: 14px; font-weight: 500; color: var(--dark-silver); margin-top: 16px; }

/* Calendly embed right side */
.freecall-calendly {
    position: relative; z-index: 2;
    display: flex; align-items: stretch;
    min-height: 600px;
}

.freecall-calendly .calendly-inline-widget {
    width: 100%; min-height: 600px;
    border-radius: 12px; overflow: hidden;
    border: 1px solid rgba(42,82,152,0.15);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
    position: relative; min-height: 100vh;
    background: var(--pure-black); overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    padding: 100px 20px;
}

.about-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(30,58,95,0.04) 0%, transparent 60%);
    z-index: 1; pointer-events: none;
}

.about-container {
    position: relative; z-index: 10;
    width: 100%; max-width: 900px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(42,82,152,0.2);
    border-radius: 20px; padding: 70px 80px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 0 1px rgba(30,58,95,0.1);
    animation: fadeInUp 1s cubic-bezier(0.25,0.46,0.45,0.94);
}

.about-profile {
    display: flex; align-items: center; gap: 24px;
    margin-bottom: 48px; padding-bottom: 40px;
    border-bottom: 1px solid rgba(42,82,152,0.15);
}

.about-avatar {
    width: 100px; height: 100px;
    border-radius: 50%; border: 3px solid var(--blue-light);
    overflow: hidden; flex-shrink: 0;
    box-shadow: 0 12px 40px rgba(30,58,95,0.3), 0 0 0 6px rgba(30,58,95,0.08);
    transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}

.about-avatar:hover { transform: scale(1.08); box-shadow: 0 16px 50px rgba(30,58,95,0.45), 0 0 0 8px rgba(30,58,95,0.12); }
.about-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.about-profile-info { display: flex; flex-direction: column; gap: 8px; }
.about-name { font-size: 32px; font-weight: 900; color: var(--white); letter-spacing: -1px; }
.about-specialization { font-size: 15px; font-weight: 600; color: var(--blue-text); letter-spacing: 0.5px; text-transform: uppercase; }

.about-text { font-size: 16px; color: var(--silver); line-height: 1.8; margin-bottom: 40px; }
.about-text p { margin-bottom: 20px; }
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--white); font-weight: 600; }

.about-helped {
    background: rgba(30,58,95,0.06);
    border: 1px solid rgba(42,82,152,0.2);
    border-left: 4px solid var(--blue-light);
    border-radius: 10px; padding: 28px 32px; margin-bottom: 48px;
    transition: all 0.4s ease;
}

.about-helped:hover { background: rgba(30,58,95,0.09); border-color: rgba(42,82,152,0.3); box-shadow: 0 10px 30px rgba(30,58,95,0.12); }

.about-helped-label {
    font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
    color: var(--blue-text); margin-bottom: 14px; display: block;
}

.about-helped-list { font-size: 15px; color: var(--silver); line-height: 1.7; }
.about-helped-list strong { color: var(--white); font-weight: 600; }

.about-social { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.social-link {
    width: 54px; height: 54px;
    border: 2px solid rgba(42,82,152,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; color: var(--blue-text);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    position: relative; overflow: hidden; cursor: pointer;
}

.social-link::before {
    content: ''; position: absolute; inset: 0;
    background: var(--blue-light); border-radius: 50%;
    opacity: 0; transition: opacity 0.4s ease; z-index: 0;
}

.social-link:hover { border-color: var(--blue-light); transform: translateY(-5px) scale(1.12); box-shadow: 0 10px 30px rgba(30,58,95,0.35); }
.social-link:hover::before { opacity: 1; }
.social-link svg { width: 22px; height: 22px; position: relative; z-index: 1; fill: currentColor; }
.social-link:hover svg path { fill: var(--white); }

/* ============================================================
   RECENT WORK SECTION
   ============================================================ */
.recent-work-section { padding: 140px 40px 180px; }

.recent-carousel-wrapper {
    position: relative; width: 100%; overflow: visible;
    cursor: grab; padding: 100px 0 120px;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.recent-carousel-wrapper:active { cursor: grabbing; }

.recent-carousel-track { display: flex; gap: 48px; will-change: transform; }

.video-column {
    display: flex; flex-direction: column; gap: 48px; flex-shrink: 0;
}

.video-column:nth-child(odd)  { padding-top: 0; }
.video-column:nth-child(even) { padding-top: 80px; }

.video-column .video-card {
    position: relative; border-radius: 20px; overflow: hidden;
    cursor: pointer; width: auto; height: auto;
    background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
    border: 1.5px solid rgba(42,82,152,0.15);
    transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    flex-shrink: 0;
}

.video-column .video-card:hover {
    transform: translateY(-16px) scale(1.03);
    border-color: rgba(42,82,152,0.45);
    box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 50px rgba(30,58,95,0.25);
    z-index: 100;
}

.video-column .video-card.portrait  { width: 340px; height: 604px; }
.video-column .video-card.landscape { width: 480px; height: 270px; }

.video-column .video-card .video-thumbnail {
    width: 100%; height: 100%; object-fit: cover; display: block;
}

.video-column .video-card video.video-thumbnail {
    width: 100%; height: 100%; object-fit: cover;
}

.video-column .video-card .video-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.95) 100%);
    opacity: 0; transition: opacity 0.4s ease;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 32px; z-index: 2;
}

.video-column .video-card:hover .video-overlay { opacity: 1; }

.video-category {
    display: inline-block; padding: 8px 16px;
    background: rgba(30,58,95,0.15);
    border: 1.5px solid rgba(42,82,152,0.5);
    border-radius: 24px; font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--blue-text); margin-bottom: 14px; width: fit-content;
    backdrop-filter: blur(8px);
}

.video-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: #fff; line-height: 1.3; }
.video-description-text { font-size: 0.95rem; color: rgba(255,255,255,0.75); font-weight: 300; line-height: 1.5; }

.play-icon-recent {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 90px; height: 90px;
    background: linear-gradient(135deg, rgba(30,58,95,0.9) 0%, rgba(42,82,152,0.9) 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    backdrop-filter: blur(12px); z-index: 3;
    box-shadow: 0 8px 32px rgba(30,58,95,0.4);
}

.play-icon-recent::after {
    content: ''; width: 0; height: 0;
    border-left: 24px solid #fff;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    margin-left: 6px;
}

.video-column .video-card:hover .play-icon-recent { opacity: 1; transform: translate(-50%,-50%) scale(1.15); }

/* Recent Work Modal */
.recent-modal {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.97);
    backdrop-filter: blur(20px);
    z-index: 99999;
    align-items: center; justify-content: center;
    padding: 60px; overflow: hidden !important;
}

.recent-modal.active {
    display: flex; animation: fadeIn 0.4s ease;
}

.recent-modal .modal-content {
    position: relative; background: #000;
    border-radius: 20px; overflow: hidden;
    border: 2px solid rgba(30,58,95,0.4);
    box-shadow: 0 40px 120px rgba(0,0,0,0.9), 0 0 60px rgba(30,58,95,0.3);
    animation: modalSlideUp 0.5s cubic-bezier(0.4,0,0.2,1);
}

.recent-modal .modal-content.landscape { width: 75vw; max-width: 900px; aspect-ratio: 16/9; }
.recent-modal .modal-content.portrait  { width: auto; height: 75vh; max-height: 700px; aspect-ratio: 9/16; }

.modal-video, .modal-iframe { width: 100%; height: 100%; display: block; border: none; }

.modal-close {
    position: absolute; top: -70px; right: 0;
    width: 54px; height: 54px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
    border: none; border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1); z-index: 100;
    box-shadow: 0 8px 32px rgba(30,58,95,0.4);
}

.modal-close:hover { background: var(--blue-bright); transform: rotate(90deg) scale(1.15); box-shadow: 0 12px 48px rgba(30,58,95,0.6); }

.modal-close::after,
.modal-close span {
    content: ''; position: absolute;
    width: 28px; height: 3px; background: #fff; border-radius: 2px;
}

.modal-close::after { transform: rotate(45deg); }
.modal-close span    { transform: rotate(-45deg); }

.modal-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 36px;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0.98) 100%);
    pointer-events: none; z-index: 10;
}

.modal-category {
    display: inline-block; padding: 10px 18px;
    background: rgba(30,58,95,0.2);
    border: 1.5px solid rgba(42,82,152,0.6);
    border-radius: 24px; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--blue-text); margin-bottom: 14px; backdrop-filter: blur(10px);
}

.modal-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.modal-description { font-size: 1rem; color: rgba(255,255,255,0.8); font-weight: 300; line-height: 1.6; }

/* Recent Work Header */
.recent-work-title {
    font-size: clamp(2.5rem,5vw,4.5rem); font-weight: 900; margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, var(--blue-text) 40%, var(--blue-light) 70%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; letter-spacing: -0.03em; line-height: 1.1;
    animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.carousel-controls { display: flex; gap: 14px; justify-content: center; align-items: center; margin-top: 28px; }

.carousel-control-btn {
    padding: 14px 32px;
    background: linear-gradient(135deg, rgba(30,58,95,0.08) 0%, rgba(30,58,95,0.15) 100%);
    border: 1.5px solid rgba(42,82,152,0.3);
    border-radius: 50px; color: var(--blue-text);
    font-weight: 600; font-size: 14px; cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    display: flex; align-items: center; gap: 10px;
}

.carousel-control-btn:hover { border-color: rgba(42,82,152,0.55); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(30,58,95,0.2); }
.carousel-control-btn svg { width: 16px; height: 16px; fill: currentColor; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    position: relative; padding: 80px 40px 40px;
    background: var(--pure-black);
    border-top: 1px solid rgba(42,82,152,0.2);
}

.footer-container { max-width: 1400px; margin: 0 auto; }

.footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px; margin-bottom: 60px; padding-bottom: 60px;
    border-bottom: 1px solid rgba(42,82,152,0.15);
}

.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-logo { font-size: 28px; font-weight: 900; color: var(--white); letter-spacing: -0.5px; }
.footer-tagline { font-size: 16px; color: var(--silver); line-height: 1.7; max-width: 350px; }

.footer-socials { display: flex; gap: 16px; margin-top: 8px; }

.footer-social-link {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(30,58,95,0.1);
    border: 1px solid rgba(42,82,152,0.2);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    text-decoration: none;
}

.footer-social-link:hover {
    background: var(--blue-light); border-color: var(--blue-light);
    transform: translateY(-3px); box-shadow: 0 8px 20px rgba(30,58,95,0.3);
}

.footer-social-link svg { width: 20px; height: 20px; fill: var(--blue-text); transition: fill 0.3s ease; }
.footer-social-link:hover svg { fill: var(--white); }

.footer-column { display: flex; flex-direction: column; gap: 16px; }
.footer-column-title { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }

.footer-link { font-size: 15px; font-weight: 400; color: var(--silver); text-decoration: none; transition: all 0.3s ease; display: inline-block; }
.footer-link:hover { color: var(--blue-text); transform: translateX(5px); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; }
.footer-copyright { font-size: 14px; color: var(--dark-silver); }
.footer-copyright .highlight { color: var(--blue-text); font-weight: 600; }

.footer-legal { display: flex; gap: 24px; }
.footer-legal-link { font-size: 14px; color: var(--dark-silver); text-decoration: none; transition: color 0.3s ease; }
.footer-legal-link:hover { color: var(--blue-text); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    .hero-container { gap: 75px; padding: 100px 60px 80px; }
    .hero-headline { font-size: 44px; }
    .solution-layout { gap: 70px; }
    .solution-image-wrapper { height: 450px; }
    #section-indicator { display: none; }
    #section-popup { display: none; }
}

@media (max-width: 968px) {
    #site-header { padding: 16px 30px; }
    #site-header.scrolled { padding: 12px 30px; }
    .header-nav { display: none; }
    .hamburger { display: flex; }

    .hero-container { grid-template-columns: 1fr; gap: 65px; padding: 90px 50px 70px; }
    .hero-headline { font-size: 42px; }
    .motion-lines, .floating-dots { display: none; }

    .solution-layout { grid-template-columns: 1fr; gap: 80px; }
    .solution-right { position: relative; top: 0; }

    .comparison-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: scale(1); }
    .pricing-card.featured:hover { transform: translateY(-12px); }

    .freecall-card { grid-template-columns: 1fr; gap: 40px; padding: 40px 28px; }
    .freecall-title { font-size: 32px; }
    .freecall-calendly { min-height: 500px; }

    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }

    .video-column .video-card.portrait  { width: 300px; height: 533px; }
    .video-column .video-card.landscape { width: 420px; height: 236px; }

    .timeline::before { left: 30px; }
    .timeline-circle { left: 30px; width: 60px; height: 60px; font-size: 18px; }
    .timeline-content { width: calc(100% - 90px); margin-left: 90px !important; margin-right: 0 !important; padding: 28px; }
    .timeline-step-title { font-size: 22px; }
}

@media (max-width: 640px) {
    #site-header { padding: 14px 20px; }
    .hero-container { padding: 80px 24px 60px; }
    .hero-headline { font-size: 34px; }
    .portfolio-container { padding: 0 24px; }
    .problem-container { padding: 0 24px; }
    .problems-grid { grid-template-columns: 1fr; }
    .solution-container { padding: 0 24px; }
    .comparacao-section { padding: 80px 24px; }
    .pricing-section { padding: 80px 24px; }
    .freecall-section { padding: 80px 24px; }
    .metodologia-section { padding: 80px 24px; }
    .footer { padding: 60px 24px 32px; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .about-container { padding: 40px 28px; }
    .about-profile { flex-direction: column; text-align: center; }
    .recent-work-section { padding: 100px 20px 140px; }
    .video-column .video-card.portrait  { width: 240px; height: 426px; }
    .video-column .video-card.landscape { width: 300px; height: 169px; }
    .recent-carousel-wrapper { padding: 60px 0 80px; }
    .video-column { gap: 36px; }
    .video-column:nth-child(even) { padding-top: 40px; }
    .framework-pillars { grid-template-columns: 1fr; }
    .metodologia-guarantee { flex-direction: column; gap: 20px; align-items: flex-start; }

    @media (max-width: 480px) {
        .mobile-nav-link { font-size: 22px; }
        .recent-modal { padding: 20px; }
        .recent-modal .modal-content.landscape { width: 95vw; }
        .recent-modal .modal-content.portrait  { height: 70vh; }
    }
}

/* Sticky CTA Mobile */
@media (max-width: 768px) {
}
