/* ==========================================================================
   CONECTA MÃœLLER â€” OFFICIAL BRAND DESIGN SYSTEM & RESPONSIVE
   ========================================================================== */
:root {
    /* Brand Palette extracted directly from official Logo */
    --brand-indigo: #352969;
    --brand-indigo-dark: #201744;
    --brand-indigo-light: #48388c;
    --brand-purple: #3b2d75;
    --brand-purple-light: #524099;
    --brand-coral: #f25c43;
    --brand-coral-light: #ff765e;
    --brand-coral-dark: #d63d23;

    /* Backgrounds & Surfaces */
    --bg: #090615;
    --bg-secondary: #100b24;
    --surface: #171133;
    --surface-hover: #211947;
    --surface-glass: rgba(23, 17, 51, 0.78);
    --surface-glass-light: rgba(255, 255, 255, 0.04);

    /* Brand Accent */
    --accent: var(--brand-coral);
    --accent-light: var(--brand-coral-light);
    --accent-dark: var(--brand-coral-dark);
    --accent-glow: rgba(242, 92, 67, 0.32);
    --accent-glow-sm: rgba(242, 92, 67, 0.16);
    --accent-gradient: linear-gradient(135deg, #ff765e 0%, #f25c43 50%, #d63d23 100%);

    --primary: #8572e8;
    --primary-light: #a393f5;
    --primary-dark: #473699;
    --primary-glow: rgba(133, 114, 232, 0.3);
    --primary-gradient: linear-gradient(135deg, #a393f5 0%, #8572e8 50%, #524099 100%);

    /* Typography Colors */
    --text: #f3f1fa;
    --text-heading: #ffffff;
    --muted: #a39eb8;
    --subtle: #6d6688;

    /* Borders */
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.14);
    --border-glow: rgba(242, 92, 67, 0.45);
    --border-glow-purple: rgba(133, 114, 232, 0.45);

    /* Typography */
    --font-heading: 'Outfit', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    /* Radius */
    --radius: 18px;
    --radius-sm: 12px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 100px;

    /* Shadows */
    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-card: 0 12px 36px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.65);
    --shadow-glow: 0 0 35px rgba(242, 92, 67, 0.3);
    --shadow-glow-purple: 0 0 35px rgba(133, 114, 232, 0.3);

    /* Transitions */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --fast: 0.18s var(--ease);
    --norm: 0.35s var(--ease);
    --slow: 0.65s var(--ease);
    --spring: 0.45s var(--ease-spring);

    /* Layout */
    --container: 1220px;
    --header-h: 76px;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.65;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    position: relative;
}

/* Ambient Brand Lighting */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: 
        radial-gradient(circle at 12% 15%, rgba(82, 64, 153, 0.14) 0%, transparent 45%),
        radial-gradient(circle at 88% 38%, rgba(242, 92, 67, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 85%, rgba(82, 64, 153, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

body.no-scroll { overflow: hidden; }

::selection { background: var(--accent); color: #fff; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--brand-indigo-light); border-radius: 4px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

a { color: inherit; text-decoration: none; transition: all var(--fast); }
ul, ol { list-style: none; }
img, video { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; background: none; border: none; outline: none; color: inherit; font-size: inherit; }
button { cursor: pointer; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: -100px; left: 1rem; z-index: 3000; background: var(--accent); color: #fff; padding: 0.75rem 1.25rem; border-radius: 10px; transition: top var(--norm); }
.skip-link:focus { top: 1rem; }

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; position: relative; z-index: 1; }
.section-padding { padding: 4.5rem 0; }
.text-center { text-align: center; }

@media (min-width: 768px) {
    .container { padding: 0 1.5rem; }
    .section-padding { padding: 6.5rem 0; }
}

@media (min-width: 1024px) {
    .section-padding { padding: 7.5rem 0; }
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-light);
    background: rgba(242, 92, 67, 0.12);
    border: 1px solid rgba(242, 92, 67, 0.28);
    padding: 0.35rem 1rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1rem;
    box-shadow: 0 0 16px rgba(242, 92, 67, 0.1);
}

.section-head { text-align: center; max-width: 680px; margin: 0 auto 2.75rem; }

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.035em;
    margin-bottom: 1rem;
    color: var(--text-heading);
}

.section-subtitle { color: var(--muted); font-size: 1rem; line-height: 1.7; max-width: 620px; margin: 0 auto; }

.grad {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline;
}
.grad-purple { background-image: linear-gradient(120deg, #b8aaff 0%, #8572e8 100%); }
.grad-coral { background-image: linear-gradient(120deg, #ff826e 0%, #f25c43 60%, #ffa563 100%); }

.icon { width: 1.2rem; height: 1.2rem; flex-shrink: 0; }
.arrow { transition: transform var(--norm); }
.btn:hover .arrow { transform: translateX(5px); }

.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    min-height: 3rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: transform var(--spring), box-shadow var(--norm), background-color var(--fast), border-color var(--fast), color var(--fast);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    touch-action: manipulation;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    transform: skewX(-15deg);
    transition: left 0.6s ease;
}
.btn:hover::before { left: 160%; }

.btn-primary {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 4px 20px rgba(242, 92, 67, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 32px rgba(242, 92, 67, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.25) inset;
}
.btn-primary:active { transform: translateY(-1px) scale(0.99); }

.btn-coral {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: var(--shadow-glow);
}
.btn-coral:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(242, 92, 67, 0.5); }

.btn-outline {
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    backdrop-filter: blur(12px);
}
.btn-outline:hover {
    border-color: var(--accent);
    background: rgba(242, 92, 67, 0.08);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(242, 92, 67, 0.18);
}

.btn-ghost {
    background: transparent;
    color: var(--muted);
    font-weight: 500;
}
.btn-ghost:hover { color: #fff; transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ==========================================================================
   HEADER & MENU (OFF-CANVAS LATERAL DRAWER NO MOBILE)
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color var(--norm), box-shadow var(--norm), border-color var(--norm), padding var(--norm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(53, 41, 105, 0.75);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    backdrop-filter: blur(20px) saturate(1.4);
    padding: 0.85rem 0;
}

.header.scrolled {
    padding: 0.6rem 0;
    background: rgba(53, 41, 105, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(53, 41, 105, 0.4);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 1rem; }

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    z-index: 1001;
    flex-shrink: 0;
    max-height: 52px;
}

.logo-img {
    height: 44px !important;
    width: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;
    object-fit: contain !important;
    border-radius: 10px;
    flex-shrink: 0 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    transition: transform var(--spring);
}

.logo:hover .logo-img { transform: scale(1.08) rotate(3deg); }

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1;
    display: inline-block;
}

.logo-text-strong {
    font-weight: 900;
    color: var(--brand-coral-light);
    margin-left: 2px;
}

/* Nav Desktop */
.nav-drawer-head,
.nav-drawer-header,
.nav-drawer-footer,
.nav-backdrop,
.drawer-close {
    display: none;
}

.nav-list { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 0.9rem;
    border-radius: 10px;
    position: relative;
    transition: color var(--fast), background-color var(--fast);
}
.nav-link:hover { color: #fff; background: rgba(255, 255, 255, 0.1); }
.nav-link.active { color: #fff; font-weight: 700; }

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.15rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 18px;
    height: 2px;
    background: var(--accent);
    border-radius: 3px;
    box-shadow: 0 0 8px var(--accent);
    transition: transform var(--norm);
}
.nav-link:hover::after, .nav-link.active::after { transform: translateX(-50%) scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.btn-header { padding: 0.6rem 1.3rem; font-size: 0.875rem; border-radius: 10px; min-height: 2.5rem; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    gap: 5px;
    z-index: 1001;
    touch-action: manipulation;
}
.mobile-toggle:hover { border-color: var(--border-glow); background: rgba(242, 92, 67, 0.15); }
.hamburger-line { display: block; width: 18px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.35s var(--ease-spring), opacity 0.2s ease; }
.mobile-toggle.active .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active .hamburger-line:nth-child(2) { opacity: 0; }
.mobile-toggle.active .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu Off-Canvas Drawer (< 960px) */
@media (max-width: 960px) {
    .btn-header { display: none; }
    .mobile-toggle { display: flex; }

    .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.75);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 1050;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s var(--ease);
    }
    .nav-backdrop.active {
        opacity: 1;
        pointer-events: auto;
    }

    .nav,
    .nav-drawer {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(180deg, #352969 0%, #201744 60%, #100b24 100%);
        border-left: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: -10px 0 45px rgba(0, 0, 0, 0.7), 0 0 30px rgba(53, 41, 105, 0.4);
        padding: 1.5rem 1.5rem 2rem;
        z-index: 1100;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.34, 1.25, 0.64, 1);
        overflow-y: auto;
    }

    .nav.active,
    .nav-drawer.active {
        transform: translateX(0);
    }

    .nav-drawer-head,
    .nav-drawer-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 1.25rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 1.5rem;
    }

    .drawer-brand,
    .nav-drawer-head .logo {
        display: flex;
        align-items: center;
        gap: 0.6rem;
    }

    .drawer-close {
        width: 2.25rem;
        height: 2.25rem;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all var(--fast);
    }
    .drawer-close:hover {
        background: var(--accent);
        border-color: var(--accent);
        transform: rotate(90deg);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        width: 100%;
    }

    .nav-link {
        font-size: 1.15rem;
        font-weight: 600;
        padding: 0.85rem 1rem;
        border-radius: var(--radius-sm);
        display: block;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid transparent;
    }
    .nav-link:hover, .nav-link.active {
        background: rgba(242, 92, 67, 0.15);
        border-color: rgba(242, 92, 67, 0.3);
        color: #fff;
    }
    .nav-link::after { display: none; }

    .nav-drawer-footer {
        display: block;
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* ==========================================================================
   HERO & RESPONSIVE (STACKED SEQUENTIAL LAYOUT)
   ========================================================================== */
.hero {
    position: relative;
    padding: calc(var(--header-h) + 2rem) 0 3.5rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding: calc(var(--header-h) + 3rem) 0 4.5rem;
    }
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.hero-glow--1 { top: -5%; right: -5%; width: 650px; height: 650px; background: radial-gradient(circle, rgba(82, 64, 153, 0.25), transparent 70%); }
.hero-glow--2 { bottom: -10%; left: -5%; width: 550px; height: 550px; background: radial-gradient(circle, rgba(242, 92, 67, 0.16), transparent 70%); }

.hero-container-stacked {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    max-width: 920px;
    margin: 0 auto;
}

.hero-header-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 6.8vw, 4.4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: #ffffff;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
}

.hero-media-block {
    position: relative;
    width: min(780px, 100%);
    margin: 0.75rem auto 1.5rem;
}

.hero-footer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-desc {
    color: var(--muted);
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2.25rem;
}

.hero-ctas.justify-center {
    justify-content: center;
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    .hero-ctas .btn { width: 100%; }
}

.hero-proof {
    width: 100%;
    max-width: 680px;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

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

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

@media (max-width: 440px) {
    .proof-stats {
        gap: 0.75rem;
    }
}

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

.proof-stat-item strong {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 4vw, 1.75rem);
    font-weight: 900;
    background: linear-gradient(135deg, #fff 30%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 0.15rem;
}

.proof-stat-item span {
    font-size: clamp(0.7rem, 2.2vw, 0.8125rem);
    color: var(--muted);
    font-weight: 500;
    line-height: 1.3;
}

/* Hero Media Video Frame */
.hero-media { position: relative; z-index: 1; }

.hero-media-glow {
    position: absolute;
    inset: -15px;
    background: radial-gradient(circle, rgba(242, 92, 67, 0.22) 0%, rgba(82, 64, 153, 0.25) 50%, transparent 70%);
    filter: blur(35px);
    z-index: -1;
    border-radius: var(--radius-xl);
    animation: glowPulse 8s infinite alternate ease-in-out;
}

@keyframes glowPulse {
    0% { transform: scale(0.96); opacity: 0.7; }
    100% { transform: scale(1.04); opacity: 1; }
}

.media-frame--video {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #000;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: transform var(--norm), box-shadow var(--norm);
    position: relative;
}

.media-frame--video:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(242, 92, 67, 0.35), 0 0 0 1px rgba(242, 92, 67, 0.6);
}

/* Video Cover Thumbnail & Overlay */
.video-cover-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    cursor: pointer;
    overflow: hidden;
}

.video-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease), filter 0.4s ease;
}

.video-cover-wrap:hover .video-cover-img {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.video-cover-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(9, 6, 21, 0.3) 0%, rgba(9, 6, 21, 0.75) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: background 0.3s ease;
}

.hero-play-btn {
    width: 4.75rem;
    height: 4.75rem;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 35px rgba(242, 92, 67, 0.7), 0 8px 25px rgba(0, 0, 0, 0.5);
    transition: all var(--spring);
    cursor: pointer;
    animation: playPulse 2.5s infinite ease-in-out;
}

.hero-play-btn svg {
    margin-left: 4px;
}

.video-cover-wrap:hover .hero-play-btn {
    transform: scale(1.14);
    box-shadow: 0 0 55px rgba(242, 92, 67, 0.95);
    border-color: #fff;
}

.video-cover-tag {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
    background: rgba(53, 41, 105, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.4rem 1.15rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: all var(--fast);
}

.video-cover-wrap:hover .video-cover-tag {
    background: var(--brand-coral);
    border-color: var(--brand-coral);
    box-shadow: 0 0 20px rgba(242, 92, 67, 0.5);
}

@keyframes playPulse {
    0%, 100% { box-shadow: 0 0 35px rgba(242, 92, 67, 0.7); transform: scale(1); }
    50% { box-shadow: 0 0 55px rgba(242, 92, 67, 0.95); transform: scale(1.06); }
}

.video-embed-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    padding-bottom: 0;
    background: #000 url('assets/hero-video-cover-pro.jpg') center center / cover no-repeat;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.video-embed-wrapper video,
.video-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: 0;
    z-index: 1;
}

.video-unmute-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(23, 17, 51, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(242, 92, 67, 0.45);
    border-radius: var(--radius-pill);
    padding: 0.45rem 1rem;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(242, 92, 67, 0.35);
    cursor: pointer;
    transition: all var(--fast);
    animation: playPulse 3s infinite ease-in-out;
}

.video-unmute-badge:hover {
    background: var(--accent-gradient);
    border-color: #fff;
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(242, 92, 67, 0.6);
}

/* ==========================================================================
   MARQUEE STRIPS
   ========================================================================== */
.marquee-section {
    position: relative;
    overflow: hidden;
    z-index: 10;
    transform: none;
    width: 100%;
    margin: 2.5rem 0;
}

.marquee-strip {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.strip-dark {
    background: #110c28;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 0.9rem 0;
}

.strip-accent {
    background: var(--accent-gradient);
    padding: 0.85rem 0;
    margin-top: -1px;
    box-shadow: 0 8px 32px rgba(242, 92, 67, 0.38);
}

.marquee-track {
    display: flex;
    width: max-content;
}

.marquee-left { animation: marqueeScrollLeft 38s linear infinite; }
.marquee-right { animation: marqueeScrollRight 34s linear infinite; }

.marquee-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-right: 2rem;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .marquee-content { gap: 2.5rem; padding-right: 2.5rem; }
    .marquee-content span { font-size: 1.15rem; }
}

.strip-dark .marquee-content span { color: rgba(255, 255, 255, 0.5); }
.strip-dark .marquee-content .sep { color: var(--accent); font-size: 0.85rem; }

.strip-accent .marquee-content span { color: #fff; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25); }
.strip-accent .marquee-content .sep-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    flex-shrink: 0;
}
.strip-accent .marquee-content .sep-icon svg { stroke: rgba(255, 255, 255, 0.9); }

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

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

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

/* ==========================================================================
   QUEM SOU EU â€” PRISCILA MÃœLLER
   ========================================================================== */
.quem-sou {
    position: relative;
    background: var(--bg-secondary);
}

.quem-sou-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 900px) {
    .quem-sou-grid { grid-template-columns: 1fr 1.3fr; gap: 5rem; }
}

.pri-photo-frame {
    position: relative;
    max-width: 440px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.pri-photo-frame::before {
    content: '';
    position: absolute;
    inset: -12px;
    background: radial-gradient(circle, rgba(242, 92, 67, 0.28) 0%, rgba(82, 64, 153, 0.25) 60%, transparent 80%);
    border-radius: var(--radius-xl);
    filter: blur(25px);
    z-index: 0;
}

.pri-photo-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(82, 64, 153, 0.35);
    transition: transform var(--spring), box-shadow var(--norm);
}

.pri-photo-frame:hover .pri-photo-img {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-lg), 0 0 45px rgba(242, 92, 67, 0.28);
}

.pri-badge {
    position: absolute;
    bottom: -0.75rem;
    right: -0.75rem;
    z-index: 2;
    background: #352969;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.15rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg), 0 0 24px rgba(242, 92, 67, 0.25);
}

.pri-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--accent-light);
    line-height: 1;
}

.pri-badge span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.pri-badge-icon { font-size: 1.4rem; }

.quem-sou-text {
    color: var(--muted);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.quem-sou-text strong {
    color: #fff;
    font-weight: 600;
}

/* ==========================================================================
   ROSTO DA MARCA (DUAL CARDS)
   ========================================================================== */
.rosto-marca { background: var(--bg); }

.rosto-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

@media (min-width: 768px) {
    .rosto-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}

.rosto-card {
    background: var(--surface-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all var(--spring);
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .rosto-card { padding: 2.25rem 2rem; }
}

.rosto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity var(--norm);
}

.rosto-card--voce::before {
    background: var(--primary-gradient);
}

.rosto-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-light);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(242, 92, 67, 0.2);
}

.rosto-card--voce:hover {
    box-shadow: var(--shadow-lg), 0 0 30px rgba(133, 114, 232, 0.2);
}

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

.rosto-card-photo {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border);
    background: #000;
}

.rosto-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform var(--slow);
}

.rosto-card:hover .rosto-card-img {
    transform: scale(1.05);
}

.rosto-card-title {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3.5vw, 1.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.6rem;
    color: #fff;
}

.rosto-card-desc {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================================================
   SERVIÃ‡OS
   ========================================================================== */
.servicos { background: var(--bg-secondary); }

/* Service Hero Card (Carro-Chefe) */
.service-hero-card {
    background: linear-gradient(135deg, rgba(242, 92, 67, 0.14) 0%, rgba(23, 17, 51, 0.95) 50%, rgba(82, 64, 153, 0.16) 100%);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(242, 92, 67, 0.35);
    border-radius: var(--radius-xl);
    padding: 2.25rem 1.75rem;
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(242, 92, 67, 0.18);
}

@media (min-width: 800px) {
    .service-hero-card {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
        padding: 3.5rem 3.5rem;
    }
}

.service-hero-icon {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: var(--radius);
    background: var(--accent-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 30px rgba(242, 92, 67, 0.45);
}

.service-hero-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-light);
    background: rgba(242, 92, 67, 0.15);
    border: 1px solid rgba(242, 92, 67, 0.3);
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-pill);
    margin-bottom: 0.75rem;
}

.service-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.35rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.service-hero-desc {
    color: #dedaf0;
    font-size: 1.0625rem;
    line-height: 1.75;
}

/* Secondary Services Grid (6 cards = 3 columns x 2 rows) */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

.service-card {
    background: var(--surface-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    transition: all var(--spring);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    background: var(--surface-hover);
    box-shadow: var(--shadow-card), 0 0 25px rgba(242, 92, 67, 0.15);
}

.service-icon-wrap {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: var(--radius-sm);
    background: rgba(242, 92, 67, 0.1);
    border: 1px solid rgba(242, 92, 67, 0.2);
    color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all var(--spring);
}

.service-card:hover .service-icon-wrap {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: scale(1.1) rotate(-6deg);
    box-shadow: 0 0 20px rgba(242, 92, 67, 0.45);
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

.service-card-desc {
    color: var(--muted);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-top: auto;
}

/* ==========================================================================
   CLIENTES MARQUEE
   ========================================================================== */
.clientes {
    background: var(--bg-secondary);
    overflow: hidden;
    position: relative;
}

.clientes-marquee {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow: hidden;
    padding: 1.5rem 0;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.clientes-track {
    display: flex;
    width: max-content;
    animation: scrollTrack 34s linear infinite;
}

.clientes-track--reverse {
    animation: scrollTrackReverse 30s linear infinite;
}

.clientes-marquee:hover .clientes-track,
.clientes-marquee:hover .clientes-track--reverse {
    animation-play-state: paused;
}

.clientes-slide {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-right: 1.5rem;
}

.cliente-logo-card {
    width: 175px;
    height: 95px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    transition: all var(--spring);
    flex-shrink: 0;
}

.cliente-logo-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(242, 92, 67, 0.45);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(242, 92, 67, 0.25);
}

.cliente-logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: none !important;
    opacity: 0.95;
    border-radius: 4px;
    transition: all var(--fast);
}

.cliente-logo-card:hover img {
    opacity: 1;
    transform: scale(1.06);
}

@keyframes scrollTrack {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes scrollTrackReverse {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

/* ==========================================================================
   ESTRUTURA / EQUIPAMENTOS (CENTERED PHOTO & 2-COLUMN CHECKLIST)
   ========================================================================== */
.estrutura { background: var(--bg); position: relative; }

.estrutura-box {
    background: linear-gradient(145deg, rgba(22, 16, 54, 0.95) 0%, rgba(12, 8, 32, 0.98) 100%);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2.5rem 1.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .estrutura-box { padding: 4rem 3.5rem; }
}

.estrutura-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.8;
}

/* Centered Photo Frame */
.estrutura-photo-center {
    max-width: 780px;
    margin: 2rem auto 2.5rem;
}

.estrutura-photo-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.estrutura-photo-frame::before {
    content: '';
    position: absolute;
    inset: -14px;
    background: radial-gradient(circle, rgba(242, 92, 67, 0.28) 0%, rgba(82, 64, 153, 0.25) 60%, transparent 80%);
    border-radius: var(--radius-xl);
    filter: blur(28px);
    z-index: 0;
    animation: glowPulse 8s infinite alternate ease-in-out;
}

.estrutura-photo-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow-lg), 0 0 35px rgba(242, 92, 67, 0.22);
    transition: transform var(--spring), box-shadow var(--norm);
}

.estrutura-photo-frame:hover .estrutura-photo-img {
    transform: translateY(-4px) scale(1.01);
    box-shadow: var(--shadow-lg), 0 0 45px rgba(242, 92, 67, 0.35);
}

.estrutura-badge {
    position: absolute;
    bottom: -0.75rem;
    left: 1rem;
    z-index: 2;
    background: #352969;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg), 0 0 24px rgba(242, 92, 67, 0.28);
}

.estrutura-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1.1;
}

.estrutura-badge span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.estrutura-badge-icon { font-size: 1.35rem; }

/* 2-Column Items Wrap */
.estrutura-items-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.equip-checklist--grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem;
    list-style: none;
    margin: 2rem 0;
}

@media (min-width: 680px) {
    .equip-checklist--grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    .equip-check-item--full {
        grid-column: 1 / -1;
    }
}

.equip-check-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    transition: all var(--fast);
}

.equip-check-item:hover {
    background: rgba(242, 92, 67, 0.08);
    border-color: rgba(242, 92, 67, 0.35);
    transform: translateY(-2px);
}

.equip-check-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(242, 92, 67, 0.45);
    margin-top: 0.15rem;
}

.equip-check-icon svg {
    width: 1.1rem;
    height: 1.1rem;
    stroke-width: 3;
}

.equip-check-text h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
}

.equip-check-text p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.5;
}

.estrutura-closing {
    font-size: 1rem;
    color: #dedaf0;
    font-weight: 500;
    line-height: 1.7;
    margin-top: 2rem;
}

/* ==========================================================================
   PORTFÓLIO (VERTICAL REELS / STORIES VIDEOS)
   ========================================================================== */
.portfolio { background: var(--bg-secondary); }

.portfolio-grid--vertical {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.75rem;
}

@media (min-width: 560px) {
    .portfolio-grid--vertical { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (min-width: 960px) {
    .portfolio-grid--vertical { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.portfolio-item--vertical {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    position: relative;
    cursor: pointer;
    transition: transform var(--spring), border-color var(--norm), box-shadow var(--norm);
    box-shadow: var(--shadow-card);
}

.portfolio-item--vertical:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-lg), 0 0 35px rgba(242, 92, 67, 0.35);
}

.portfolio-item--vertical .portfolio-media {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: #080514;
}

.portfolio-item--vertical .portfolio-media {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.portfolio-item--vertical .portfolio-video,
.portfolio-item--vertical .portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: transform 0.65s var(--ease), filter 0.4s ease;
}

.portfolio-item--vertical:hover .portfolio-video,
.portfolio-item--vertical:hover .portfolio-img {
    transform: scale(1.06);
    filter: brightness(0.75);
}

/* Brand watermark tag */
.portfolio-brand-tag {
    position: absolute;
    top: 1.15rem;
    right: 1.15rem;
    z-index: 4;
    width: 44px;
    height: 44px;
    background: rgba(14, 10, 32, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
}

.portfolio-brand-tag img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.portfolio-tag-badge {
    position: absolute;
    top: 1.15rem;
    left: 1.15rem;
    z-index: 4;
    background: rgba(14, 10, 32, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 0.4rem 0.95rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.02em;
}

.portfolio-item--vertical .portfolio-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(14, 10, 32, 0.45) 0%, rgba(14, 10, 32, 0.08) 35%, rgba(14, 10, 32, 0.82) 80%, rgba(14, 10, 32, 0.96) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.25rem 1.5rem;
    transition: opacity var(--norm);
    pointer-events: none;
}

.portfolio-item--vertical .play-btn {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background: var(--accent-gradient);
    border: 2.5px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--spring), box-shadow var(--norm), border-color var(--norm);
    box-shadow: 0 0 35px rgba(242, 92, 67, 0.8), 0 8px 25px rgba(0, 0, 0, 0.6);
    margin-top: auto;
    margin-bottom: auto;
    cursor: pointer;
    pointer-events: auto;
}

.portfolio-item--vertical .play-btn svg { width: 1.55rem; height: 1.55rem; margin-left: 4px; }
.portfolio-item--vertical:hover .play-btn { transform: scale(1.15); box-shadow: 0 0 50px rgba(242, 92, 67, 1); border-color: #fff; }

.portfolio-info {
    width: 100%;
    text-align: left;
    z-index: 3;
    margin-top: auto;
}

.portfolio-cat {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--brand-coral);
    letter-spacing: 0.1em;
    margin-bottom: 0.35rem;
}

.portfolio-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.35;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.portfolio-action { margin-top: 3rem; }

/* ==========================================================================
   CLIENTES / TRUST LOGOS (FULL COLOR)
   ========================================================================== */
.clientes { overflow: hidden; background: var(--bg); }
.clientes .section-head { margin-bottom: 2.75rem; }

.clientes-marquee {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    overflow: hidden;
    padding: 0.5rem 0;
}

/* Edge fade masks */
.clientes-marquee::before,
.clientes-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

@media (min-width: 768px) {
    .clientes-marquee::before, .clientes-marquee::after { width: 140px; }
}

.clientes-marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.clientes-marquee::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }

.clientes-track {
    display: flex;
    width: max-content;
    animation: clientScroll 45s linear infinite;
}

.clientes-track--reverse { animation: clientScrollReverse 50s linear infinite; }
.clientes-marquee:hover .clientes-track { animation-play-state: paused; }

.clientes-slide {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-right: 1.25rem;
}

.cliente-logo-card {
    flex-shrink: 0;
    width: 160px;
    height: 90px;
    background: #140f2e;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem;
    transition: all var(--norm);
    cursor: default;
    overflow: hidden;
}

@media (min-width: 768px) {
    .cliente-logo-card { width: 190px; height: 105px; padding: 1.15rem; }
}

.cliente-logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: transform var(--norm);
}

.cliente-logo-card:hover {
    border-color: var(--border-glow);
    background: #1d1642;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(242, 92, 67, 0.25);
    transform: translateY(-4px) scale(1.04);
}

.cliente-logo-card:hover img {
    transform: scale(1.06);
}

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

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

/* ==========================================================================
   NOSSA HISTÓRIA & FOUNDERS PHOTO
   ========================================================================== */
.historia { background: var(--bg-secondary); }

.historia-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3.5rem;
}

@media (min-width: 900px) {
    .historia-grid { grid-template-columns: 1.15fr 1fr; gap: 4.5rem; }
}

.historia-text {
    color: var(--muted);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.historia-text strong { color: #fff; }

.historia-quote {
    border-left: 3px solid var(--accent);
    padding-left: 1.25rem;
    margin: 2rem 0;
    font-size: 1.1rem;
    font-style: italic;
    color: #fff;
    font-weight: 500;
    line-height: 1.7;
    background: rgba(242, 92, 67, 0.06);
    padding: 1.25rem 1.25rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Founders Photo Frame */
.historia-photo-frame {
    position: relative;
    max-width: 460px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.historia-photo-frame::before {
    content: '';
    position: absolute;
    inset: -14px;
    background: radial-gradient(circle, rgba(242, 92, 67, 0.25) 0%, rgba(82, 64, 153, 0.28) 60%, transparent 80%);
    border-radius: var(--radius-xl);
    filter: blur(28px);
    z-index: 0;
    animation: glowPulse 7s infinite alternate ease-in-out;
}

.historia-photo-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg), 0 0 35px rgba(82, 64, 153, 0.35);
    transition: transform var(--spring), box-shadow var(--norm);
}

.historia-photo-frame:hover .historia-photo-img {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-lg), 0 0 45px rgba(242, 92, 67, 0.32);
}

.historia-badge {
    position: absolute;
    bottom: -0.75rem;
    left: 1rem;
    z-index: 2;
    background: #352969;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg), 0 0 24px rgba(242, 92, 67, 0.28);
}

.historia-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--accent-light);
    line-height: 1.1;
}

.historia-badge span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.historia-badge-icon { font-size: 1.35rem; }

/* Stats Row */
.historia-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
    .historia-stats-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

.historia-stat-card {
    background: var(--surface-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--spring);
}

.historia-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-card), 0 0 20px rgba(242, 92, 67, 0.18);
}

.historia-stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2.25rem);
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.historia-stat-label {
    font-size: 0.8125rem;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.3;
}

.historia-segmentos {
    background: rgba(82, 64, 153, 0.15);
    border: 1px solid rgba(82, 64, 153, 0.35);
    border-radius: var(--radius);
    padding: 1.35rem 1.75rem;
    font-size: 0.9375rem;
    color: #dcd7f5;
    line-height: 1.7;
}

.historia-segmentos strong {
    color: #fff;
    font-family: var(--font-heading);
}

/* ==========================================================================
   DEPOIMENTOS (TESTIMONIALS - 3 CARDS PER SLIDE)
   ========================================================================== */
.depoimentos { background: var(--bg); position: relative; }

.testimonials-slider-container {
    margin-top: 3rem;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-wrapper {
    position: relative;
    min-height: 280px;
}

.testimonials-slide {
    display: none;
}

.testimonials-slide.active {
    display: block;
    animation: slideFadeIn 0.5s var(--ease) forwards;
}

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

.testimonials-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 680px) {
    .testimonials-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid-3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
    }
}

.testimonial-card {
    background: var(--surface-glass);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.65rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform var(--norm), border-color var(--norm), box-shadow var(--norm);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-lg), 0 0 25px rgba(242, 92, 67, 0.2);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
}

.testimonial-quote-icon {
    font-size: 2.75rem;
    font-family: Georgia, serif;
    color: var(--accent);
    line-height: 0.8;
    opacity: 0.4;
    margin-bottom: 0.75rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #dedaf0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
    margin-top: auto;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.author-role {
    font-size: 0.8125rem;
    color: var(--muted);
    margin-top: 0.15rem;
}

.rating { color: #f59e0b; font-size: 0.9375rem; letter-spacing: 2px; }

.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-nav-btn {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--spring);
    touch-action: manipulation;
}

.slider-nav-btn:hover {
    border-color: var(--accent);
    color: #fff;
    background: var(--accent);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.slider-dots { display: flex; gap: 0.5rem; align-items: center; }

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.35s var(--ease-spring);
}

.dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 10px var(--accent);
}

/* ==========================================================================
   CTA FINAL â€” CENTERED
   ========================================================================== */
.cta-final {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, #0d0822 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    text-align: center;
}

@media (min-width: 768px) {
    .cta-final { padding: 6.5rem 0; }
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 350px;
    background: radial-gradient(ellipse, rgba(242, 92, 67, 0.16) 0%, transparent 70%);
    pointer-events: none;
}

.cta-final .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.035em;
    color: #fff;
    margin-bottom: 1.25rem;
    text-align: center;
    width: 100%;
}

.cta-desc {
    color: var(--muted);
    font-size: 1.0625rem;
    max-width: 580px;
    margin: 0 auto 2.25rem;
    line-height: 1.7;
    text-align: center;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    width: 100%;
}

@media (max-width: 480px) {
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .cta-actions .btn { width: 100%; }
}

/* ==========================================================================
   CONTATO & FORMULÃRIO MULTI-STEP RESPONSIVO
   ========================================================================== */
.contato {
    position: relative;
    background: var(--bg);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 960px) {
    .contato-grid { grid-template-columns: 1fr 1.15fr; gap: 5rem; }
}

.contato-desc {
    color: var(--muted);
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    background: var(--surface-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.15rem 1.5rem;
    gap: 1.15rem;
    width: 100%;
    max-width: 340px;
    transition: all var(--spring);
    touch-action: manipulation;
}

.btn-whatsapp-large:hover {
    border-color: #22c55e;
    box-shadow: 0 12px 35px rgba(34, 197, 94, 0.2);
    transform: translateY(-4px);
}

.wa-icon-box {
    width: 3.25rem;
    height: 3.25rem;
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--spring);
}

.btn-whatsapp-large:hover .wa-icon-box {
    background: #22c55e;
    color: #fff;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
}

.wa-subtitle {
    display: block;
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.wa-phone {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 800;
    color: #fff;
}

/* Contact Address Box */
.contato-address-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    margin-top: 1.5rem;
    max-width: 360px;
}

.contato-address-box .address-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contato-address-box strong {
    display: block;
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.contato-address-box p {
    color: var(--muted);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/* Contact Form Box */
.contato-form-box {
    background: var(--surface-glass);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .contato-form-box { padding: 3rem 2.5rem; }
}

.contato-form-box::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(242, 92, 67, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.form-header { margin-bottom: 1.75rem; }

.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: var(--radius-pill);
    padding: 0.35rem 0.9rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: #4ade80;
    margin-bottom: 0.85rem;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.35rem;
}

.form-subtitle { color: var(--muted); font-size: 0.9375rem; }

.form-progress {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    margin: 1.25rem 0 0.75rem;
    overflow: hidden;
}

.form-progress-bar {
    width: 33.33%;
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 10px;
    transition: width 0.4s var(--ease);
}

.form-step-label {
    display: block;
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.75rem;
}

.form-step { border: none; display: none; }
.form-step.active { display: block; animation: stepFade 0.4s var(--ease) forwards; }

@keyframes stepFade {
    from { opacity: 0; transform: translateX(14px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-legend {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 500px) {
    .form-row-2 { grid-template-columns: repeat(2, 1fr); }
}

.form-group { margin-bottom: 1.25rem; }

.form-group input,
.form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    padding: 0.95rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 1rem; /* 16px to prevent iOS auto-zoom */
    color: #fff;
    transition: all var(--fast);
}

.form-group input::placeholder { color: var(--subtle); }

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent);
    background: rgba(242, 92, 67, 0.05);
    box-shadow: 0 0 0 3px rgba(242, 92, 67, 0.15), 0 0 20px rgba(242, 92, 67, 0.1);
}

.form-group select option {
    background: #171133;
    color: #fff;
}

.field-label {
    display: block;
    font-size: 0.875rem;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.chip {
    cursor: pointer;
    display: inline-block;
}

.chip input { display: none; }

.chip span {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1rem;
    min-height: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    color: var(--muted);
    transition: all var(--fast);
    touch-action: manipulation;
}

.chip input:checked + span,
.chip:hover span {
    background: rgba(242, 92, 67, 0.14);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 0 16px rgba(242, 92, 67, 0.22);
}

/* Form Nav & Submit Button Fix */
[hidden],
.btn[hidden],
.form-nav-btn[hidden] {
    display: none !important;
}

.form-nav {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.75rem;
    width: 100%;
}

.form-nav-btn {
    flex: 1 1 auto;
    min-height: 3.25rem;
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.25;
    white-space: normal;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    overflow: visible;
}

.form-nav-btn span {
    white-space: nowrap;
}

@media (max-width: 480px) {
    .form-nav-btn span {
        white-space: normal;
        font-size: 0.875rem;
    }
}

.form-feedback {
    font-size: 0.875rem;
    text-align: center;
    min-height: 1.5rem;
    margin-top: 1rem;
}
.form-feedback.success { color: #4ade80; }
.form-feedback.error { color: #f87171; }

.form-credit {
    margin-top: 2rem;
    font-size: 0.75rem;
    color: var(--subtle);
    text-align: center;
}
.form-credit a { color: var(--muted); }
.form-credit a:hover { color: var(--accent); }

/* ==========================================================================
   FOOTER & FOOTER LOGO
   ========================================================================== */
.footer {
    background: linear-gradient(180deg, #352969 0%, #251b4c 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(53, 41, 105, 0.35);
    padding: 4.5rem 0 2.25rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(242, 92, 67, 0.6), transparent);
}

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

@media (min-width: 640px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
}

@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1.25fr 1.5fr; gap: 3.5rem; }
}

.footer-logo { margin-bottom: 1.25rem; display: inline-block; }
.footer-logo-img {
    height: 100px !important;
    width: 100px !important;
    max-width: 100px !important;
    max-height: 100px !important;
    object-fit: contain !important;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35), 0 0 25px rgba(242, 92, 67, 0.15);
    transition: transform var(--spring), box-shadow var(--norm);
}
.footer-logo:hover .footer-logo-img {
    transform: scale(1.06) translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45), 0 0 35px rgba(242, 92, 67, 0.28);
}

.footer-desc { color: rgba(255, 255, 255, 0.75); font-size: 0.9375rem; line-height: 1.7; max-width: 280px; }

.col-title {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 1.25rem;
}

.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: rgba(255, 255, 255, 0.75); font-size: 0.9375rem; }
.footer-links a:hover { color: var(--accent-light); padding-left: 4px; }

.contact-details li { color: rgba(255, 255, 255, 0.75); font-size: 0.9375rem; margin-bottom: 0.75rem; }
.contact-details a:hover { color: var(--accent-light); }

.social-icons { display: flex; gap: 0.625rem; margin-top: 1.25rem; }

.social-icon-link {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    transition: all var(--spring);
}

.social-icon-link:hover {
    border-color: var(--accent);
    color: #fff;
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(242, 92, 67, 0.35);
}

.social-icon { width: 1.1rem; height: 1.1rem; }

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.75rem;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 640px) {
    .footer-bottom { flex-direction: row; }
}

.copyright { color: rgba(255, 255, 255, 0.6); font-size: 0.8125rem; }
.dev-credit { color: rgba(255, 255, 255, 0.6); font-size: 0.8125rem; }
.dev-credit a { color: rgba(255, 255, 255, 0.85); }
.dev-credit a:hover { color: var(--accent); }

/* ==========================================================================
   WHATSAPP FLUTUANTE
   ========================================================================== */
.wa-float {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.45);
    z-index: 999;
    transition: all var(--spring);
}

.wa-float:hover {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 12px 40px rgba(34, 197, 94, 0.65);
}

.wa-float svg { width: 1.85rem; height: 1.85rem; }

/* ==========================================================================
   REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
    will-change: opacity, transform;
}

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

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-stagger.active > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.06s; }
.reveal-stagger.active > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.13s; }
.reveal-stagger.active > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.reveal-stagger.active > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.27s; }
.reveal-stagger.active > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.34s; }
.reveal-stagger.active > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.41s; }

/* ==========================================================================
   VIDEO MODAL & SHOWREEL (VERTICAL PHONE SIMULATOR)
   ========================================================================== */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}

.video-modal.active {
    display: flex !important;
    opacity: 1;
    visibility: visible;
}

.video-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(9, 6, 21, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    z-index: 10000;
    width: min(420px, 92vw);
    max-height: 90vh;
    background: #100b24;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8), 0 0 45px rgba(242, 92, 67, 0.3);
    overflow: hidden;
    animation: modalPop 0.4s var(--ease-spring) forwards;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10001;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(9, 6, 21, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--fast);
}

.modal-close:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 0 15px var(--accent);
}

.video-container {
    position: relative;
    width: 100%;
    background: #000;
}

.player-simulator {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.simulator-loading {
    position: absolute;
    inset: 0;
    background: rgba(9, 6, 21, 0.92);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 3;
    transition: opacity 0.35s ease;
}

.simulator-loading.fade-out {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 2.5rem;
    height: 2.5rem;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.showreel-player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    background: #000;
}

.showreel-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================================================
   KEYFRAMES
   ========================================================================== */
@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================================================
   LGPD BANNER & PRIVACY POLICY MODAL
   ========================================================================== */
.lgpd-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
    z-index: 1050;
    background: rgba(20, 14, 46, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(242, 92, 67, 0.35);
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.75), 0 0 30px rgba(242, 92, 67, 0.25);
    padding: 1.25rem 1.75rem;
    transform: translateY(150%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.5s cubic-bezier(0.34, 1.25, 0.64, 1), opacity 0.4s ease, visibility 0.4s ease;
}

.lgpd-banner.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.lgpd-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.lgpd-content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1 1 500px;
}

.lgpd-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(242, 92, 67, 0.15);
    border: 1px solid rgba(242, 92, 67, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-coral);
    flex-shrink: 0;
}

.lgpd-text-block {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #dedaf0;
}

.lgpd-text-block strong {
    color: #fff;
    font-family: var(--font-heading);
}

.lgpd-link, .footer-privacy-link {
    color: var(--brand-coral);
    text-decoration: underline;
    font-weight: 600;
    transition: color var(--fast);
    cursor: pointer;
}

.lgpd-link:hover, .footer-privacy-link:hover {
    color: var(--brand-coral-light);
}

.lgpd-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-sm {
    padding: 0.6rem 1.15rem;
    min-height: auto;
    font-size: 0.875rem;
}

/* Privacy Modal */
.privacy-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.privacy-modal.active {
    opacity: 1;
    visibility: visible;
}

.privacy-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 4, 15, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.privacy-modal-card {
    position: relative;
    z-index: 2;
    background: #171033;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    width: 100%;
    max-width: 780px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: modalCardPop 0.4s var(--ease-spring);
}

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

.privacy-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(32, 23, 68, 0.6);
}

.privacy-header-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.privacy-icon-badge {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(242, 92, 67, 0.18);
    border: 1px solid rgba(242, 92, 67, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-coral);
}

.privacy-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.privacy-subtitle {
    font-size: 0.8125rem;
    color: var(--muted);
}

.privacy-close-btn {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--fast);
}

.privacy-close-btn:hover {
    background: var(--brand-coral);
    border-color: var(--brand-coral);
    transform: rotate(90deg);
}

.privacy-modal-body {
    padding: 1.75rem;
    overflow-y: auto;
    color: #dedaf0;
    font-size: 0.9375rem;
    line-height: 1.75;
}

.privacy-intro {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.privacy-section-title {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    color: #fff;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.privacy-list {
    margin: 0.75rem 0 1.25rem 1.25rem;
    list-style-type: disc;
}

.privacy-list li {
    margin-bottom: 0.4rem;
}

.privacy-date {
    margin-top: 2rem;
    font-size: 0.8125rem;
    color: var(--muted);
}

.privacy-modal-footer {
    padding: 1rem 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(32, 23, 68, 0.6);
    display: flex;
    justify-content: flex-end;
}
