:root {
    --bg-color: #070a12;
    --surface-color: rgba(255, 255, 255, 0.06);
    --surface-2: rgba(255, 255, 255, 0.09);
    --primary-color: #6d5efc;
    --primary-2: #8b5cf6;
    --accent-color: #22d3ee;
    --text-color: rgba(255, 255, 255, 0.92);
    --text-muted: rgba(255, 255, 255, 0.68);
    --text-dim: rgba(255, 255, 255, 0.52);

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    --border-color: rgba(255, 255, 255, 0.12);
    --border-strong: rgba(255, 255, 255, 0.18);
    --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.55);
    --shadow-md: 0 14px 44px rgba(0, 0, 0, 0.45);
    --ring: 0 0 0 4px rgba(34, 211, 238, 0.22);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 22px;

    --transition: 180ms cubic-bezier(.2, .8, .2, 1);
}

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

html {
    scroll-behavior: auto;
    font-size: 16px;
    scroll-padding-top: 96px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    background-image:
        radial-gradient(900px 480px at 20% 10%, rgba(109, 94, 252, 0.28), transparent 55%),
        radial-gradient(760px 420px at 80% 0%, rgba(34, 211, 238, 0.20), transparent 60%),
        radial-gradient(860px 520px at 50% 95%, rgba(139, 92, 246, 0.14), transparent 55%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-color);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.mt-4 {
    margin-top: 2rem;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

::selection {
    background: rgba(34, 211, 238, 0.22);
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: 0.75rem;
    transform: translateY(-200%);
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 0.5rem 0.9rem;
    z-index: 2000;
}

.skip-link:focus {
    transform: translateY(0);
    outline: none;
    box-shadow: var(--ring);
}

.section-title {
    font-size: clamp(2rem, 2.6vw, 3rem);
    margin-bottom: 2.25rem;
    letter-spacing: -0.02em;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.section-header.align-left {
    justify-content: flex-start;
}

.text-center {
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 2rem 0;
}

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

.bg-surface {
    background-color: rgba(0, 0, 0, 0.16);
    border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.grid {
    display: grid;
    gap: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-body);
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    position: relative;
    background: transparent;
    color: rgba(255, 255, 255, 0.96);
    border: none;
    isolation: isolate;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(109, 94, 252, 0.28);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #6d5efc, #8b5cf6, #22d3ee, #6d5efc);
    background-size: 300% 300%;
    animation: gradientShift 4s ease infinite;
    z-index: -1;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 999px;
    background: linear-gradient(135deg, #6d5efc, #22d3ee);
    z-index: -2;
    opacity: 0;
    filter: blur(14px);
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(109, 94, 252, 0.5);
}

.btn-primary:hover::after {
    opacity: 0.7;
}

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

.btn-outline {
    position: relative;
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    border: none;
    isolation: isolate;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 0 0 1px rgba(109, 94, 252, 0.35);
}

.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(109,94,252,0.5), rgba(34,211,238,0.25));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.btn-outline:hover {
    background-color: rgba(109, 94, 252, 0.1);
    color: var(--text-color);
    transform: translateY(-1px);
    box-shadow: inset 0 0 0 1px rgba(109,94,252,0.6), 0 6px 20px rgba(109,94,252,0.15);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-small {
    padding: 0.65rem 1.1rem;
    font-size: 0.98rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(7, 10, 18, 0.72);
    backdrop-filter: blur(14px);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(7, 10, 18, 0.92);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    vertical-align: middle;
}

.nav-links {
    display: none;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        align-items: center;
        gap: 2.5rem;
    }

    .nav-links a {
        font-size: 0.95rem;
        color: var(--text-muted);
        font-weight: 500;
        position: relative;
        padding: 0.25rem 0;
    }

    .nav-links a:hover {
        color: var(--text-color);
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: -0.1rem;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.9), transparent);
        transform: scaleX(0);
        transform-origin: center;
        transition: var(--transition);
        opacity: 0.9;
    }

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

.mobile-toggle {
    display: block;
    background: rgba(255, 255, 255, 0.04);
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
}

.header .btn-primary {
    display: none;
}

@media (min-width: 768px) {
    .mobile-toggle {
        display: none;
    }

    .header .btn-primary {
        display: inline-flex;
    }
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(18px);
    z-index: 1000;
    transition: 0.4s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.10);
    padding: 2rem;
    box-shadow: -24px 0 80px rgba(0, 0, 0, 0.55);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

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

.menu-close {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

.mobile-menu ul {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.mobile-menu a {
    font-size: 1.25rem;
    font-weight: 500;
    display: block;
}

.mobile-menu .btn {
    display: inline-flex !important;
    margin-top: 1rem;
}

.hero {
    position: relative;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
}

/* Canvas do fundo reativo */
#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.8s ease;
}

/* Todo conteúdo do hero precisa ficar acima do canvas */
.hero>*:not(#hero-canvas) {
    position: relative;
    z-index: 2;
}

.hero-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 6.5rem;
    padding-bottom: 2rem;
}

.hero-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    align-content: center;
}

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

.hero-copy {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 1.1rem;
}

.hero-pill-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(34, 211, 238, 0.85));
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}

.hero-title {
    font-size: clamp(2.4rem, 4.4vw, 4.2rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-inline: auto;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-microproof {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.microproof-item {
    padding: 0.75rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
    display: inline-flex;
    gap: 0.5rem;
    align-items: baseline;
}

.microproof-strong {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.microproof-muted {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.hero-visual {
    position: relative;
    min-height: 360px;
}

@media (max-width: 899px) {
    .hero-visual {
        min-height: 300px;
        max-width: 520px;
        margin: 0 auto;
    }
}

.mockup-card {
    position: relative;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.mockup-topbar {
    display: flex;
    gap: 8px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.18);
}

.mockup-topbar .dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
}

.mockup-topbar .dot:nth-child(1) {
    background: rgba(239, 68, 68, 0.7);
}

.mockup-topbar .dot:nth-child(2) {
    background: rgba(245, 158, 11, 0.7);
}

.mockup-topbar .dot:nth-child(3) {
    background: rgba(34, 197, 94, 0.7);
}

.mockup-body {
    padding: 20px;
}

.mockup-kpi {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(0, 0, 0, 0.18);
    margin-bottom: 14px;
}

.kpi-label {
    color: var(--text-muted);
    font-weight: 500;
}

.kpi-value {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mockup-lines {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.mockup-lines span {
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
}

.mockup-lines span:nth-child(2) {
    width: 86%;
}

.mockup-lines span:nth-child(3) {
    width: 72%;
}

.mockup-lines span:nth-child(4) {
    width: 92%;
}

.mockup-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.mockup-tile {
    aspect-ratio: 16/10;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.10);
    background:
        radial-gradient(240px 120px at 30% 30%, rgba(34, 211, 238, 0.18), transparent 60%),
        radial-gradient(260px 120px at 70% 60%, rgba(109, 94, 252, 0.18), transparent 62%),
        rgba(255, 255, 255, 0.04);
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(2px);
    opacity: 0.9;
    pointer-events: none;
}

.hero-orb-1 {
    width: 140px;
    height: 140px;
    top: -24px;
    right: -18px;
    background: radial-gradient(circle at 30% 30%, rgba(34, 211, 238, 0.85), rgba(34, 211, 238, 0.0) 60%);
}

.hero-orb-2 {
    width: 180px;
    height: 180px;
    bottom: -44px;
    left: -30px;
    background: radial-gradient(circle at 30% 30%, rgba(109, 94, 252, 0.85), rgba(109, 94, 252, 0.0) 60%);
}

.trustbar {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    gap: 1rem;
}

.trustbar-title {
    color: var(--text-dim);
    font-size: 0.95rem;
    font-weight: 500;
}

.trustbar-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.logo-badge {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.45;
    transition: opacity 0.25s ease, border-color 0.25s ease;
    cursor: default;
}
.logo-badge:hover {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.35);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

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

.why-card {
    padding: 2rem;
    border-radius: var(--radius-md);
    background: rgba(109, 94, 252, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(109, 94, 252, 0.08);
    transform: translateY(-2px);
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(109, 94, 252, 0.15);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.why-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.why-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.metrics-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

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

@media (min-width: 1024px) {
    .metrics-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.metric-card {
    padding: 1.6rem 1.4rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
    transition: var(--transition);
}

.metric-card:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, 0.24);
}

.metric-value {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    margin-bottom: 0.35rem;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(34, 211, 238, 0.9));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.metric-label {
    color: var(--text-muted);
    font-weight: 500;
}

.portfolio-card,
.service-card,
.testimonial-card,
.cta-box {
    border-radius: var(--radius-md);
}

.portfolio-grid {
    grid-template-columns: 1fr;
}

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

.portfolio-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.filter-btn {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.84);
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
}

.filter-btn.active {
    border-color: rgba(34, 211, 238, 0.28);
    background: rgba(34, 211, 238, 0.12);
    box-shadow: 0 10px 34px rgba(34, 211, 238, 0.10);
}

.portfolio-card {
    position: relative;
}

.portfolio-overlay {
    position: absolute;
    inset: 1.25rem;
    border-radius: calc(var(--radius-md) - 4px);
    background: rgba(7, 10, 18, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(16px);
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition: var(--transition);
    display: flex;
    z-index: 10;
}

.portfolio-card:hover .portfolio-overlay,
.portfolio-card:focus-within .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.overlay-inner {
    padding: 1.25rem;
    display: grid;
    gap: 0.4rem;
    align-content: start;
}

.overlay-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dim);
    margin-top: 0.4rem;
}

.overlay-text {
    color: rgba(255, 255, 255, 0.86);
}

.overlay-result {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.6rem;
}

.portfolio-card[hidden] {
    display: none !important;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.03);
}

.portfolio-card {
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.26);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: rgba(109, 94, 252, 0.35);
    box-shadow: 0 24px 64px rgba(109, 94, 252, 0.18);
}

.portfolio-category {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: block;
}

.portfolio-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.portfolio-desc {
    color: var(--text-muted);
}

.services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

.service-card {
    padding: 2.5rem 1.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-radius: 16px;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #6d5efc, #22d3ee, transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.service-card:hover {
    border-color: rgba(109, 94, 252, 0.35);
    transform: translateY(-7px);
    box-shadow: 0 20px 60px rgba(109, 94, 252, 0.18);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
}

.service-icon {
    color: var(--accent-color);
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    display: grid;
    place-items: center;
}

.service-price {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.86);
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.16);
    white-space: nowrap;
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    text-align: center;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-align: center;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.90);
    margin-top: auto;
}

.service-link::after {
    content: '→';
    transition: var(--transition);
    color: var(--accent-color);
}

.service-card:hover .service-link::after {
    transform: translateX(3px);
}

/* Timeline (Processo) */
.timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.25rem;
}

.timeline-step {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 1rem;
    align-items: start;
    position: relative;
}

.timeline-marker {
    position: relative;
    width: 72px;
    display: grid;
    place-items: start center;
    padding-top: 6px;
}

.timeline-marker::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 56px;
    bottom: -16px;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(34, 211, 238, 0.45), rgba(255, 255, 255, 0.0));
}

.timeline-step:last-child .timeline-marker::before {
    display: none;
}

.timeline-number {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.92);
    background: linear-gradient(135deg, rgba(109, 94, 252, 0.7), rgba(34, 211, 238, 0.35));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 16px 44px rgba(109, 94, 252, 0.14);
}

.timeline-icon {
    margin-top: 0.6rem;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    display: grid;
    place-items: center;
    color: var(--accent-color);
}

.timeline-card {
    padding: 1.4rem 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
    transition: var(--transition);
}

.timeline-step:hover .timeline-card {
    transform: translateY(-3px);
    border-color: rgba(34, 211, 238, 0.24);
}

.timeline-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.35rem;
}

.step-time {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.16);
    white-space: nowrap;
}

@media (min-width: 980px) {
    .timeline {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }

    .timeline-step {
        grid-template-columns: 1fr;
    }

    .timeline-marker {
        width: 100%;
        place-items: center;
        padding-top: 0;
        margin-bottom: 0.85rem;
    }

    .timeline-marker::before {
        width: auto;
        height: 2px;
        left: 56px;
        right: -22px;
        top: 21px;
        bottom: auto;
        transform: none;
        background: linear-gradient(90deg, rgba(34, 211, 238, 0.45), rgba(255, 255, 255, 0.0));
    }

    .timeline-step:last-child .timeline-marker::before {
        display: none;
    }

    .timeline-icon {
        position: absolute;
        right: 0;
        top: 0;
        transform: translateY(2px);
    }
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

@media (min-width: 768px) {
    .row-layout {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
}

.check-list i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.testimonials-grid {
    grid-template-columns: 1fr;
}

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

.carousel {
    display: grid;
    gap: 1rem;
}

.carousel-viewport {
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.02);
}

.carousel-track {
    display: flex;
    transition: transform 520ms cubic-bezier(.2, .8, .2, 1);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
}

.carousel-controls {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    flex-wrap: wrap;
}

.carousel-btn {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.90);
    border-radius: 999px;
    padding: 0.6rem 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    flex: 0 0 auto;
}

.author-rating {
    color: rgba(34, 211, 238, 0.95);
    letter-spacing: 0.06em;
    margin-top: 0.25rem;
    font-size: 0.95rem;
}

.testimonial-card {
    padding: 2.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.testimonial-quote {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--text-color);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--text-color);
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.cta-box {
    background:
        radial-gradient(700px 280px at 20% 20%, rgba(34, 211, 238, 0.12), transparent 60%),
        radial-gradient(820px 320px at 80% 0%, rgba(109, 94, 252, 0.16), transparent 62%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    padding: 5rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-lg);
}

/* Contato */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 980px) {
    .contact-grid {
        grid-template-columns: 1fr 1.1fr;
        gap: 4rem;
        align-items: center;
    }
}

.contact-subtitle {
    color: var(--text-muted);
    max-width: 46ch;
    margin-top: 0.75rem;
}

.contact-bullets {
    margin-top: 1.25rem;
    display: grid;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.86);
}

.contact-bullets li {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.bullet-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}

.contact-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        radial-gradient(820px 320px at 80% 0%, rgba(109, 94, 252, 0.14), transparent 62%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-lg);
    padding: 1.6rem;
}

.contact-form {
    display: grid;
    gap: 1.1rem;
}

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

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

    .field-span {
        grid-column: 1 / -1;
    }
}

.field {
    display: grid;
    gap: 0.45rem;
}

.label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.86);
}

input,
select,
textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.22);
    color: rgba(255, 255, 255, 0.92);
    padding: 0.85rem 0.95rem;
    font: inherit;
    transition: var(--transition);
}

textarea {
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    box-shadow: var(--ring);
    border-color: rgba(34, 211, 238, 0.38);
}

.field.is-valid input,
.field.is-valid select,
.field.is-valid textarea {
    border-color: rgba(34, 197, 94, 0.55);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
    border-color: rgba(239, 68, 68, 0.65);
}

.error {
    min-height: 1.1em;
    font-size: 0.9rem;
    color: rgba(239, 68, 68, 0.92);
}

.form-actions {
    display: grid;
    gap: 0.65rem;
    margin-top: 0.25rem;
}

.form-hint {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.form-success {
    border-radius: var(--radius-md);
    border: 1px solid rgba(34, 197, 94, 0.35);
    background: rgba(34, 197, 94, 0.10);
    padding: 1rem;
    animation: popIn 260ms ease-out;
}

.success-title {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.success-text {
    color: rgba(255, 255, 255, 0.86);
}

@keyframes popIn {
    from {
        transform: translateY(6px);
        opacity: 0;
    }

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

/* WhatsApp FAB */
.whatsapp-fab {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 2000;
}

.whatsapp-btn {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.98);
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 18px 60px rgba(22, 163, 74, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.16);
    position: relative;
    animation: pulse 2.2s ease-in-out infinite;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
}

@keyframes pulse {
    0% {
        box-shadow: 0 18px 60px rgba(22, 163, 74, 0.22), 0 0 0 0 rgba(34, 197, 94, 0.22);
    }

    70% {
        box-shadow: 0 18px 60px rgba(22, 163, 74, 0.22), 0 0 0 16px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 18px 60px rgba(22, 163, 74, 0.22), 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.whatsapp-bubble {
    position: absolute;
    right: 0;
    bottom: 72px;
    width: min(260px, calc(100vw - 2.5rem));
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(7, 10, 18, 0.86);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-md);
    padding: 0.9rem 1rem;
    animation: popIn 260ms ease-out;
}

.bubble-text {
    color: rgba(255, 255, 255, 0.9);
    padding-right: 1.5rem;
}

.bubble-close {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-btn {
        animation: none;
    }
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color), var(--primary-2));
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3.5rem;
    }
}

.footer {
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.2fr;
        gap: 5rem;
    }
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-desc {
    color: var(--text-muted);
    max-width: 300px;
}

.footer-heading {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-links ul,
.footer-projects ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a,
.footer-projects a {
    color: var(--text-muted);
}

.footer-links a:hover,
.footer-projects a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-2));
    border-color: rgba(109, 94, 252, 0.35);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.newsletter-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
}

.newsletter-form input {
    border-radius: 999px;
}

.newsletter-form .btn {
    justify-content: center;
    width: 100%;
}

@media (min-width: 480px) {
    .newsletter-form {
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .newsletter-form .btn {
        width: auto;
    }
}

:focus-visible {
    outline: none;
    box-shadow: var(--ring);
}

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
}

/* =============================================================
   PREMIUM UPGRADES
   ============================================================= */

/* 1. Cursor personalizado (Desativado para melhor desempenho) */
#custom-cursor { display: none !important; }

#custom-cursor {
    position: fixed;
    z-index: 99999;
    pointer-events: none;
    top: 0; left: 0;
    transform: translate(-50%, -50%);
    transition: none !important;
}

.cursor-ring {
    width: 36px; height: 36px;
    border: 1.5px solid rgba(109, 94, 252, 0.7);
    border-radius: 50%;
    transition: width 0.25s ease, height 0.25s ease,
                border-color 0.25s ease, background 0.25s ease;
}

.cursor-dot {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 5px; height: 5px;
    background: #22d3ee;
    border-radius: 50%;
    box-shadow: 0 0 10px #22d3ee, 0 0 20px #22d3ee;
}

body.cursor-hover .cursor-ring {
    width: 54px; height: 54px;
    border-color: rgba(34, 211, 238, 0.8);
    background: rgba(109, 94, 252, 0.09);
}

/* 2. Botão do formulário */
.contact-form button[type="submit"] {
    background: linear-gradient(135deg, #6d5efc, #22d3ee);
    background-size: 200% 200%;
    animation: gradientShift 3.5s ease infinite;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 14px !important;
    border: none;
    box-shadow: 0 6px 28px rgba(109, 94, 252, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form button[type="submit"]:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 40px rgba(109, 94, 252, 0.6) !important;
}

/* 3. Navbar scrolled melhorada */
.header.scrolled {
    background-color: rgba(7, 10, 18, 0.82);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-bottom: 1px solid rgba(109, 94, 252, 0.18);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

/* 4. Tipografia — métrica com gradiente */
.section-title {
    font-size: clamp(2rem, 3.2vw, 3.4rem) !important;
    letter-spacing: -0.032em !important;
    font-weight: 800 !important;
    line-height: 1.08 !important;
}

/* 5. Metric valores com gradiente roxo/ciano */
.metric-value {
    background: linear-gradient(135deg, #6d5efc, #22d3ee) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    font-size: clamp(2.2rem, 3.5vw, 3rem);
}

/* 6. Timeline números com pulso */
.timeline-number {
    animation: stepPulse 3s ease-in-out infinite;
}

.timeline-step:nth-child(2) .timeline-number { animation-delay: 0.75s; }
.timeline-step:nth-child(3) .timeline-number { animation-delay: 1.5s; }
.timeline-step:nth-child(4) .timeline-number { animation-delay: 2.25s; }

@keyframes stepPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(109, 94, 252, 0.45), 0 16px 44px rgba(109,94,252,0.14); }
    50%       { box-shadow: 0 0 0 10px rgba(109, 94, 252, 0), 0 16px 44px rgba(109,94,252,0.14); }
}

/* 7. Depoimentos — aspas decorativas */
.testimonial-card {
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: -16px; left: 16px;
    font-size: 140px;
    line-height: 1;
    font-family: Georgia, serif;
    color: rgba(109, 94, 252, 0.07);
    pointer-events: none;
    font-weight: 900;
    user-select: none;
}

/* 8. Estrelas dos depoimentos com gradiente */
.author-rating {
    background: linear-gradient(90deg, #6d5efc, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1rem;
    letter-spacing: 2px;
}

/* 9. Inputs com glow roxo ao focar */
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    border-color: rgba(109, 94, 252, 0.6) !important;
    background: rgba(109, 94, 252, 0.05) !important;
    box-shadow: 0 0 0 3px rgba(109, 94, 252, 0.14),
                0 0 24px rgba(109, 94, 252, 0.1) !important;
}

/* 10. Placeholder mais sutil */
input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.22) !important;
}

/* 11. Footer — linha gradiente no topo */
.footer {
    padding: 5rem 0 2rem;
    border-top: none !important;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(109, 94, 252, 0.55) 30%,
        rgba(34, 211, 238, 0.55) 70%,
        transparent 100%
    );
}

/* 12. Footer copyright mais sutil */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05) !important;
    color: rgba(255,255,255,0.25) !important;
}

/* 13. WhatsApp FAB anel pulsante */
.whatsapp-btn::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.45);
    animation: whatsappRing 2.2s ease-in-out infinite;
}

@keyframes whatsappRing {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50%       { transform: scale(1.18); opacity: 0; }
}

/* 14. Grain sutil — textura premium */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 99998;
    pointer-events: none;
    opacity: 0.022;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 180px 180px;
}

/* 15. Service price tag com gradiente */
.service-price {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #6d5efc, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(109,94,252,0.28);
    background-color: rgba(109,94,252,0.06);
    white-space: nowrap;
}

/* 16. Footer grid atualizado (só 2 colunas agora) */
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr;
        gap: 5rem;
    }
}

/* 17. Metric card hover com glow */
.metric-card:hover {
    transform: translateY(-5px);
    border-color: rgba(109, 94, 252, 0.3);
    box-shadow: 0 20px 60px rgba(109, 94, 252, 0.15);
}

/* 18. Portfolio image hover mais pronunciado */
.portfolio-card:hover .portfolio-image img {
    transform: scale(1.06);
    filter: brightness(0.9) saturate(1.1);
}

/* 19. Portfolio image transition suave */
.portfolio-image img {
    filter: brightness(0.92) saturate(0.9);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.4s ease;
}

/* ============================================================
   REINVENÇÃO VISUAL — NOVOS COMPONENTES
   ============================================================ */

/* ── BARRA DE PROGRESSO DE LEITURA ── */
#read-progress {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    width: 0%;
    z-index: 99998;
    background: linear-gradient(90deg, #6d5efc, #8b5cf6, #22d3ee, #6d5efc);
    background-size: 300% 100%;
    animation: progressShift 3s linear infinite;
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.6);
    transition: width 0.1s linear;
    pointer-events: none;
}
@keyframes progressShift {
    0%   { background-position: 0% 0%; }
    100% { background-position: 300% 0%; }
}

/* ── AMBIENT GLOW ── */
#ambient-glow {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, rgba(109,94,252,0.04) 0%, transparent 60%);
    transition: background 0.9s ease;
}

/* ── SCROLL REVEAL (classes) ── */
.reveal-hidden {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-hidden.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ── WORD REVEAL ── */
.word-reveal .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    margin-right: 0.22em;
}
.word-reveal .word-inner {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    animation: wordDrop 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes wordDrop {
    to { transform: translateY(0); opacity: 1; }
}

/* ── LOGO GLITCH ── */
@keyframes logoGlitch {
    0%   { text-shadow: none; }
    20%  { text-shadow: -2px 0 #22d3ee, 2px 0 #6d5efc; }
    40%  { text-shadow:  2px 0 #8b5cf6, -2px 0 #22d3ee; }
    60%  { text-shadow: -1px 0 #6d5efc, 1px 0 #22d3ee; }
    80%  { text-shadow: none; }
    100% { text-shadow: none; }
}

/* ── STICKY CTA ── */
#sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9000;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 28px;
    background: rgba(6, 6, 8, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(109, 94, 252, 0.3);
    border-radius: 999px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    transition: bottom 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    white-space: nowrap;
}
#sticky-cta.visible { bottom: 28px; }
#sticky-cta > span  { font-size: 13px; color: rgba(255,255,255,0.5); }
#sticky-cta > a {
    padding: 9px 22px;
    background: linear-gradient(135deg, #6d5efc, #22d3ee);
    color: white !important;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s;
}
#sticky-cta > a:hover { opacity: 0.85; }
#sticky-close {
    background: none; border: none;
    color: rgba(255,255,255,0.25);
    font-size: 20px; line-height: 1;
    padding: 0 4px; transition: color 0.2s;
}
#sticky-close:hover { color: rgba(255,255,255,0.6); }

/* ── TOAST SOCIAL PROOF ── */
#social-toast {
    position: fixed;
    bottom: 100px; left: 24px;
    z-index: 8000;
    background: rgba(6, 6, 8, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 300px;
    transform: translateX(calc(-100% - 40px));
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    pointer-events: none;
}
#social-toast.show { transform: translateX(0); }
.toast-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6d5efc, #22d3ee);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 12px; color: white;
    flex-shrink: 0;
}
.toast-body strong { display: block; color: white; font-size: 13px; font-weight: 600; }
.toast-body span   { color: rgba(255,255,255,0.38); font-size: 12px; }
.toast-dot {
    width: 6px; height: 6px;
    background: #22d3ee;
    border-radius: 50%;
    position: absolute; top: 14px; right: 14px;
    box-shadow: 0 0 8px #22d3ee;
    animation: toastBlink 1.5s ease-in-out infinite;
}
@keyframes toastBlink { 0%,100%{ opacity:1; } 50%{ opacity:0.2; } }

/* ── CARD SHINE (injetado via JS no hover) ── */
.card-shine { mix-blend-mode: overlay; }

/* ── TRUSTBAR COM FADE NAS BORDAS ── */
.trustbar-logos {
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

/* ── MOBILE ── */
@media (max-width: 768px) {
    #sticky-cta > span { display: none; }
    #sticky-cta { gap: 12px; padding: 12px 20px; }
    #social-toast { bottom: 80px; left: 12px; max-width: calc(100vw - 64px); }
    .word-reveal .word { margin-right: 0.18em; }
}

/* ============================================================
   BLOCO 1 — INTRO SCREEN
   ============================================================ */
#intro-screen {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: #04111c;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
#intro-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}
#intro-logo {
    display: flex;
    align-items: baseline;
    gap: 0;
    font-family: 'Syne', sans-serif;
    font-size: clamp(42px, 8vw, 96px);
    font-weight: 800;
    letter-spacing: -0.03em;
    overflow: hidden;
}
.intro-letter {
    display: inline-block;
    color: white;
    opacity: 0;
    transform: translateY(60px);
    animation: introLetterIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--i) * 0.06s);
}
.intro-accent {
    background: linear-gradient(135deg, #6d5efc, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
@keyframes introLetterIn {
    to { opacity: 1; transform: translateY(0); }
}
#intro-counter {
    font-family: 'Inter', sans-serif;
    font-size: clamp(11px, 1.5vw, 14px);
    font-weight: 600;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.3em;
    opacity: 0;
    animation: introFadeIn 0.4s ease 0.5s forwards;
}
#intro-tagline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(13px, 1.8vw, 16px);
    color: rgba(255,255,255,0.18);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    animation: introFadeIn 0.6s ease 0.7s forwards;
}
@keyframes introFadeIn {
    to { opacity: 1; }
}
#intro-inner::before {
    content: '';
    position: absolute;
    bottom: -28px; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(109,94,252,0.6), rgba(34,211,238,0.6), transparent);
    animation: introLine 0.8s ease 0.8s forwards;
}
@keyframes introLine { to { width: 240px; } }

#intro-panel-left,
#intro-panel-right {
    position: absolute;
    top: 0; width: 50%; height: 100%;
    background: #04111c;
    z-index: 3;
    transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}
#intro-panel-left  { left: 0;  transform-origin: left;  }
#intro-panel-right { right: 0; transform-origin: right; }
#intro-screen.opening #intro-panel-left  { transform: translateX(-100%); }
#intro-screen.opening #intro-panel-right { transform: translateX(100%);  }
#intro-screen.opening #intro-inner {
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
#intro-screen.done { pointer-events: none; display: none; }

/* ============================================================
   BLOCO 2 — FORMULÁRIO CONVERSACIONAL
   ============================================================ */
#conv-form {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 24px;
    padding: 48px;
    overflow: hidden;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.cf-progress-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: rgba(255,255,255,0.06);
}
.cf-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #6d5efc, #22d3ee);
    border-radius: 0 999px 999px 0;
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 0 12px rgba(34,211,238,0.4);
    width: 0%;
}
.cf-step {
    display: none;
    flex-direction: column;
    gap: 28px;
    animation: cfSlideIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.cf-step.active { display: flex; }
@keyframes cfSlideIn {
    from { opacity: 0; transform: translateX(32px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes cfSlideOut {
    to { opacity: 0; transform: translateX(-32px); }
}
.cf-step-num {
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.2em; color: rgba(255,255,255,0.2);
    text-transform: uppercase;
}
.cf-step-num span { color: rgba(109,94,252,0.5); }
.cf-question h3 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700; color: white;
    margin: 8px 0 6px; letter-spacing: -0.02em;
}
.cf-question p { color: rgba(255,255,255,0.35); font-size: 15px; margin: 0; }
.cf-answer { display: flex; flex-direction: column; gap: 12px; }
.cf-answer input,
.cf-answer textarea {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    color: white !important;
    font-size: 16px !important;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
    resize: none;
}
.cf-answer input:focus,
.cf-answer textarea:focus {
    border-color: rgba(109,94,252,0.6) !important;
    background: rgba(109,94,252,0.07) !important;
    box-shadow: 0 0 0 3px rgba(109,94,252,0.12) !important;
}
.cf-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.cf-option {
    display: flex; align-items: center; gap: 12px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    color: rgba(255,255,255,0.65);
    font-size: 15px; font-weight: 500;
    font-family: inherit; cursor: pointer;
    transition: all 0.2s ease; text-align: left;
}
.cf-option:hover {
    background: rgba(109,94,252,0.1);
    border-color: rgba(109,94,252,0.3);
    color: white; transform: translateY(-2px);
}
.cf-option.selected {
    background: rgba(109,94,252,0.15);
    border-color: rgba(109,94,252,0.5);
    color: white; box-shadow: 0 0 20px rgba(109,94,252,0.2);
}
.cf-opt-icon { font-size: 20px; }
.cf-opt-label { font-weight: 600; }
.cf-next, .cf-submit {
    align-self: flex-start;
    padding: 14px 32px;
    background: linear-gradient(135deg, #6d5efc, #22d3ee);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    color: white; font-weight: 700; font-size: 15px;
    font-family: inherit; border: none; border-radius: 999px;
    cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(109,94,252,0.4);
}
.cf-submit { align-self: stretch; text-align: center; font-size: 16px; }
.cf-next:hover, .cf-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(109,94,252,0.55);
}
.cf-back {
    position: absolute; bottom: 20px; left: 48px;
    background: none; border: none;
    color: rgba(255,255,255,0.2); font-size: 13px;
    font-family: inherit; cursor: pointer; transition: color 0.2s; padding: 0;
}
.cf-back:hover { color: rgba(255,255,255,0.5); }
.cf-done { text-align: center; align-items: center; }
.cf-success-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, #6d5efc, #22d3ee);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: white;
    box-shadow: 0 0 32px rgba(109,94,252,0.5);
    animation: successPop 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes successPop {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}
.cf-success h3 { font-size: 28px; font-weight: 700; color: white; margin: 16px 0 8px; }
.cf-success p  { color: rgba(255,255,255,0.4); font-size: 16px; }

/* ============================================================
   BLOCO 3 — BEFORE / AFTER SLIDER
   ============================================================ */
.ba-slider {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: col-resize;
    user-select: none;
    -webkit-user-select: none;
    aspect-ratio: 16 / 10;
    background: #04111c;
}
.ba-after, .ba-before {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.ba-before {
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.02s linear;
}
.ba-after img, .ba-before img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    pointer-events: none; transition: filter 0.3s ease;
}
.ba-after  img { filter: brightness(1) saturate(1.05); }
.ba-before img { filter: brightness(0.8) saturate(0.5) sepia(0.2); }
.ba-label {
    position: absolute; bottom: 12px;
    padding: 4px 12px; border-radius: 999px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    backdrop-filter: blur(8px);
}
.ba-label-after {
    right: 12px;
    background: rgba(34,211,238,0.15);
    border: 1px solid rgba(34,211,238,0.4);
    color: #22d3ee;
}
.ba-label-before {
    left: 12px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.6);
}
.ba-handle {
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    z-index: 1; pointer-events: none;
}
.ba-line {
    position: absolute; top: 0; bottom: 0;
    width: 2px; background: white;
    opacity: 0.9; box-shadow: 0 0 12px rgba(255,255,255,0.4);
}
.ba-circle {
    width: 44px; height: 44px; border-radius: 50%;
    background: white; display: flex;
    align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    position: relative; z-index: 2;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ba-slider:hover .ba-circle {
    transform: scale(1.12);
    box-shadow: 0 6px 28px rgba(109,94,252,0.5);
}
.ba-slider::after {
    content: '← Arraste →';
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, calc(-50% + 46px));
    font-size: 12px; font-weight: 600; color: white;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(8px);
    padding: 6px 16px; border-radius: 999px;
    pointer-events: none; opacity: 1;
    transition: opacity 0.4s ease;
    letter-spacing: 0.08em;
    z-index: 2;
}
.ba-slider.interacted::after { opacity: 0; }

@media (max-width: 600px) {
    #conv-form  { padding: 32px 24px; }
    .cf-options { grid-template-columns: 1fr; }
    .cf-back    { left: 24px; }
}

/* ============================================================
   BLOCO 1 — REEL SECTION
   ============================================================ */
#reel-section { padding: 36px 0; overflow: hidden; }
.reel-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 48px;
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: 36px; align-items: center;
}
.reel-eyebrow {
    display: inline-block; font-size: 12px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: #6d5efc; margin-bottom: 20px;
}
.reel-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 800; line-height: 1.06;
    letter-spacing: -0.03em; color: white; margin-bottom: 20px;
}
.reel-title em {
    font-style: normal;
    background: linear-gradient(135deg, #6d5efc, #22d3ee);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.reel-desc {
    color: rgba(255,255,255,0.38); font-size: 16px;
    line-height: 1.7; margin-bottom: 36px; max-width: 380px;
}
.reel-stats { display: flex; gap: 32px; margin-bottom: 40px; }
.reel-stat  { display: flex; flex-direction: column; gap: 4px; }
.reel-stat-num {
    font-family: 'Syne', sans-serif; font-size: 36px;
    font-weight: 800; line-height: 1;
    background: linear-gradient(135deg, #6d5efc, #22d3ee);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.reel-stat-label { font-size: 13px; color: rgba(255,255,255,0.3); font-weight: 500; }
.reel-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 30px;
    background: rgba(109,94,252,0.12);
    border: 1px solid rgba(109,94,252,0.3);
    border-radius: 999px; color: white;
    font-size: 15px; font-weight: 600; text-decoration: none;
    transition: all 0.3s ease;
}
.reel-cta:hover {
    background: rgba(109,94,252,0.22);
    border-color: rgba(109,94,252,0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(109,94,252,0.25);
}
.reel-video-wrap { position: relative; }
.reel-screen     { position: relative; }
.reel-browser {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
}
.reel-browser-bar {
    display: flex; align-items: center; gap: 16px;
    padding: 12px 18px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.reel-dots { display: flex; gap: 6px; }
.reel-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.12); }
.reel-dots span:nth-child(1) { background: rgba(255,95,87,0.5); }
.reel-dots span:nth-child(2) { background: rgba(255,189,68,0.5); }
.reel-dots span:nth-child(3) { background: rgba(40,201,64,0.5); }
.reel-url-bar {
    flex: 1; background: rgba(255,255,255,0.04);
    border-radius: 6px; padding: 5px 12px;
    font-size: 12px; color: rgba(255,255,255,0.25); text-align: center;
}
.reel-browser-content { position: relative; aspect-ratio: 16/10; overflow: hidden; }
#reel-video, .reel-slideshow { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.reel-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; }
.reel-slide.active { opacity: 1; }
.reel-slide img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85); }
.reel-float {
    position: absolute; display: flex; align-items: center; gap: 10px;
    padding: 10px 16px;
    background: rgba(6,6,8,0.85); backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.08); border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    animation: floatBob 3s ease-in-out infinite; z-index: 10;
}
.reel-float strong { display: block; font-size: 13px; font-weight: 700; color: white; }
.reel-float span   { font-size: 11px; color: rgba(255,255,255,0.35); }
.reel-float-icon   { font-size: 20px; }
.reel-float-1 { top: -16px; right: -20px; animation-delay: 0s; }
.reel-float-2 { bottom: 20px; left: -24px; animation-delay: 1.2s; }
@keyframes floatBob { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-8px); } }
@media (max-width: 900px) {
    .reel-inner { grid-template-columns: 1fr; gap: 24px; padding: 0 24px; }
    .reel-float-1, .reel-float-2 { display: none; }
}

/* ============================================================
   BLOCO 2 — SCROLL STORYTELLING
   ============================================================ */
.story-container {
    display: flex; gap: 36px;
    max-width: 1200px; margin: 0 auto; padding: 0 48px;
    align-items: flex-start;
}
.story-sticky { position: sticky; top: 120px; flex: 1; min-width: 0; }
.story-step-display {
    padding: 48px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 24px; min-height: 340px;
    display: flex; flex-direction: column; justify-content: center;
    position: relative; overflow: hidden;
    transition: border-color 0.4s ease;
}
.story-step-display.highlighted {
    border-color: rgba(109,94,252,0.3);
    box-shadow: 0 0 60px rgba(109,94,252,0.08);
}
.story-bg-num {
    position: absolute; top: -20px; right: 20px;
    font-family: 'Syne', sans-serif; font-size: 160px;
    font-weight: 800; line-height: 1;
    background: linear-gradient(135deg, rgba(109,94,252,0.07), rgba(34,211,238,0.04));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; pointer-events: none;
    transition: all 0.5s ease; user-select: none;
}
.story-step-icon     { font-size: 36px; margin-bottom: 20px; }
.story-step-title    { font-family:'Syne',sans-serif; font-size:clamp(26px,3vw,38px); font-weight:800; color:white; letter-spacing:-0.02em; margin-bottom:14px; }
.story-step-desc     { color:rgba(255,255,255,0.42); font-size:16px; line-height:1.7; margin-bottom:24px; }
.story-step-duration {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px;
    background: rgba(109,94,252,0.1); border: 1px solid rgba(109,94,252,0.2);
    border-radius: 999px; font-size: 13px; font-weight: 600;
    color: rgba(109,94,252,0.9);
}
.story-progress-line { position:absolute; left:0; top:0; bottom:0; width:3px; background:rgba(255,255,255,0.05); border-radius:999px; overflow:hidden; }
.story-progress-fill { width:100%; height:0%; background:linear-gradient(to bottom,#6d5efc,#22d3ee); border-radius:999px; transition:height 0.1s linear; box-shadow:0 0 12px rgba(34,211,238,0.4); }
.story-steps { flex:0 0 340px; display:flex; flex-direction:column; gap:0; padding:60px 0; }
.story-item {
    padding: 40px 32px;
    border-left: 2px solid rgba(255,255,255,0.05);
    margin-left: 20px; position: relative;
    cursor: default; transition: border-color 0.3s ease;
}
.story-item.active { border-color: rgba(109,94,252,0.5); }
.story-item::before {
    content: attr(data-num);
    position: absolute; left: -14px; top: 40px;
    width: 28px; height: 28px; border-radius: 50%;
    background: rgb(6,6,8); border: 2px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.3);
    text-align: center; line-height: 24px; transition: all 0.3s ease;
}
.story-item.active::before {
    background: linear-gradient(135deg, #6d5efc, #8b5cf6);
    border-color: transparent; color: white;
    box-shadow: 0 0 20px rgba(109,94,252,0.5);
}
.story-item-title { font-family:'Syne',sans-serif; font-size:20px; font-weight:700; color:rgba(255,255,255,0.3); margin-bottom:8px; transition:color 0.3s ease; }
.story-item.active .story-item-title { color: white; }
.story-item-sub { font-size:14px; color:rgba(255,255,255,0.18); transition:color 0.3s ease; }
.story-item.active .story-item-sub { color: rgba(255,255,255,0.4); }
@media (max-width: 900px) {
    .story-container { flex-direction:column; gap:0; padding:0 24px; }
    .story-sticky { position:relative; top:0; }
    .story-steps { flex:none; width:100%; }
}

/* ============================================================
   BLOCO 3 — METRICS INFOGRÁFICO
   ============================================================ */
#metrics-section { padding: 36px 0; }
.metrics-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.metrics-header { text-align:center; max-width:560px; margin:0 auto 36px; }
.metrics-eyebrow { display:inline-block; font-size:12px; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; color:#6d5efc; margin-bottom:16px; }
.metrics-header h2 { margin-bottom: 16px; }
.metrics-header h2 em { font-style:normal; background:linear-gradient(135deg,#6d5efc,#22d3ee); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.metrics-header p { color:rgba(255,255,255,0.35); font-size:16px; line-height:1.6; }
#metrics-section .metrics-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
#metrics-section .metric-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px; padding: 32px;
    display: flex; flex-direction: column; gap: 12px;
    position: relative; overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
#metrics-section .metric-card::before {
    content: ''; position: absolute; top:0; left:0; right:0; height:2px;
    background: linear-gradient(90deg,transparent,rgba(109,94,252,0.4),transparent);
    transform: scaleX(0); transition: transform 0.5s ease;
}
#metrics-section .metric-card:hover { transform:translateY(-4px); border-color:rgba(109,94,252,0.2); box-shadow:0 16px 48px rgba(109,94,252,0.1); }
#metrics-section .metric-card:hover::before { transform: scaleX(1); }
#metrics-section .metric-card.featured { background:rgba(109,94,252,0.07); border-color:rgba(109,94,252,0.2); }
#metrics-section .metric-card.featured::before { background:linear-gradient(90deg,transparent,#6d5efc,#22d3ee,transparent); transform:scaleX(1); }
.metric-icon { font-size: 28px; margin-bottom: 4px; }
.metric-number { font-family:'Syne',sans-serif; font-size:clamp(40px,4vw,56px); font-weight:800; line-height:1; background:linear-gradient(135deg,#6d5efc,#22d3ee); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; letter-spacing:-0.03em; }
#metrics-section .metric-label { font-size:16px; font-weight:700; color:white; }
.metric-context { font-size:13px; color:rgba(255,255,255,0.3); line-height:1.5; flex:1; }
.metric-bar-wrap { margin-top: 8px; }
.metric-bar { height:3px; background:rgba(255,255,255,0.06); border-radius:999px; overflow:hidden; margin-bottom:6px; }
.metric-bar-fill { height:100%; width:0%; background:linear-gradient(90deg,#6d5efc,#22d3ee); border-radius:999px; transition:width 1.4s cubic-bezier(0.22,1,0.36,1); box-shadow:0 0 8px rgba(34,211,238,0.4); }
.metric-bar-label { font-size:11px; color:rgba(255,255,255,0.2); font-weight:500; }
@media (max-width: 900px) {
    #metrics-section .metrics-grid { grid-template-columns: 1fr 1fr; }
    .metrics-inner { padding: 0 24px; }
}
@media (max-width: 560px) {
    #metrics-section .metrics-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BLOCO 1 — CASE MODAL
   ============================================================ */
#case-modal { position:fixed; inset:0; z-index:99990; visibility:hidden; pointer-events:none; }
#case-modal.open { visibility:visible; pointer-events:all; }
#case-modal-overlay { position:absolute; inset:0; background:rgba(4,17,28,0.7); backdrop-filter:blur(8px); opacity:0; transition:opacity 0.4s ease; }
#case-modal.open #case-modal-overlay { opacity:1; }
#case-modal-content {
    position:absolute; inset:0; background:#071a2a;
    overflow-y:auto; overflow-x:hidden;
    transform:translateY(100%);
    transition:transform 0.6s cubic-bezier(0.22,1,0.36,1);
    scrollbar-width:thin; scrollbar-color:rgba(109,94,252,0.3) transparent;
}
#case-modal.open #case-modal-content { transform:translateY(0); }
#case-close {
    position:sticky; top:24px; left:calc(100% - 80px);
    float:right; margin:24px 24px 0 0;
    width:44px; height:44px; border-radius:50%;
    background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.1);
    color:rgba(255,255,255,0.6);
    display:flex; align-items:center; justify-content:center;
    cursor:pointer; transition:all 0.2s ease; z-index:10; flex-shrink:0;
}
#case-close:hover { background:rgba(255,255,255,0.14); color:white; transform:rotate(90deg); }
.case-hero { display:grid; grid-template-columns:1fr 1fr; gap:0; min-height:70vh; align-items:center; }
.case-hero-inner { padding:80px 64px; display:flex; flex-direction:column; gap:20px; }
.case-meta { display:flex; align-items:center; gap:12px; }
.case-tag { padding:4px 14px; background:rgba(109,94,252,0.12); border:1px solid rgba(109,94,252,0.25); border-radius:999px; font-size:12px; font-weight:700; color:rgba(109,94,252,0.9); letter-spacing:0.08em; text-transform:uppercase; }
.case-year { font-size:13px; color:rgba(255,255,255,0.2); }
.case-title { font-family:'Syne',sans-serif; font-size:clamp(36px,5vw,72px); font-weight:800; color:white; line-height:1.04; letter-spacing:-0.03em; margin:0; }
.case-subtitle { font-size:18px; color:rgba(255,255,255,0.4); line-height:1.6; margin:0; }
.case-result-hero { display:inline-flex; align-items:baseline; gap:10px; padding:16px 28px; background:rgba(109,94,252,0.1); border:1px solid rgba(109,94,252,0.2); border-radius:16px; align-self:flex-start; margin-top:8px; }
.case-result-num { font-family:'Syne',sans-serif; font-size:48px; font-weight:800; line-height:1; background:linear-gradient(135deg,#6d5efc,#22d3ee); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.case-result-label { font-size:16px; color:rgba(255,255,255,0.5); font-weight:500; }
.case-hero-img { height:70vh; overflow:hidden; }
.case-hero-img img { width:100%; height:100%; object-fit:cover; filter:brightness(0.75) saturate(0.9); transition:transform 8s ease; }
#case-modal.open .case-hero-img img { transform:scale(1.05); }
.case-body { max-width:1100px; margin:0 auto; padding:0 64px 120px; }
.case-stats-row { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; padding:48px 0; border-bottom:1px solid rgba(255,255,255,0.06); margin-bottom:80px; }
.case-stat-item { text-align:center; padding:28px; background:rgba(255,255,255,0.02); border:1px solid rgba(255,255,255,0.06); border-radius:16px; }
.case-stat-num { font-family:'Syne',sans-serif; font-size:40px; font-weight:800; background:linear-gradient(135deg,#6d5efc,#22d3ee); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; display:block; margin-bottom:6px; }
.case-stat-label { font-size:13px; color:rgba(255,255,255,0.3); font-weight:500; }
.case-section { padding:80px 0; border-bottom:1px solid rgba(255,255,255,0.05); }
.case-section-label { display:inline-block; font-size:11px; font-weight:700; letter-spacing:0.25em; text-transform:uppercase; color:rgba(109,94,252,0.7); margin-bottom:28px; }
.case-two-col { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }
.case-two-col h2 { font-family:'Syne',sans-serif; font-size:clamp(28px,3vw,42px); font-weight:800; color:white; line-height:1.1; letter-spacing:-0.025em; margin:0 !important; }
.case-two-col h2 em { font-style:normal; background:linear-gradient(135deg,#6d5efc,#22d3ee); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.case-two-col p { color:rgba(255,255,255,0.45); font-size:16px; line-height:1.8; margin:0; }
.case-ba-wrap { padding:80px 0; border-bottom:1px solid rgba(255,255,255,0.05); }
.case-ba-slider { width:100%; aspect-ratio:16/8; border-radius:16px; }
.case-result-section { padding:100px 0; text-align:center; border-bottom:1px solid rgba(255,255,255,0.05); position:relative; overflow:hidden; }
.case-result-section::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at center,rgba(109,94,252,0.06) 0%,transparent 70%); pointer-events:none; }
.case-result-inner { position:relative; z-index:1; }
.case-result-big { font-family:'Syne',sans-serif; font-size:clamp(80px,14vw,160px); font-weight:800; line-height:1; letter-spacing:-0.04em; background:linear-gradient(135deg,#6d5efc 0%,#8b5cf6 40%,#22d3ee 100%); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; margin:16px 0 20px; }
.case-result-desc { font-size:20px; color:rgba(255,255,255,0.4); max-width:480px; margin:0 auto 28px; line-height:1.6; }
.case-result-tags { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; }
.case-result-tag { padding:6px 16px; background:rgba(34,211,238,0.08); border:1px solid rgba(34,211,238,0.2); border-radius:999px; font-size:13px; font-weight:600; color:rgba(34,211,238,0.8); }
.case-testimonial { padding:80px 0; border-bottom:1px solid rgba(255,255,255,0.05); }
.case-testimonial-quote { font-size:120px; line-height:0.6; color:rgba(109,94,252,0.12); font-family:Georgia,serif; font-weight:900; margin-bottom:8px; user-select:none; }
.case-testimonial blockquote { font-family:'Syne',sans-serif; font-size:clamp(22px,2.5vw,32px); font-weight:600; color:white; line-height:1.4; letter-spacing:-0.02em; margin:0 0 36px; max-width:780px; }
.case-testimonial-author { display:flex; align-items:center; gap:16px; }
.case-author-avatar { width:48px; height:48px; border-radius:50%; background:linear-gradient(135deg,#6d5efc,#22d3ee); display:flex; align-items:center; justify-content:center; font-weight:700; font-size:14px; color:white; flex-shrink:0; }
.case-testimonial-author strong { display:block; color:white; font-size:15px; font-weight:600; }
.case-testimonial-author span { color:rgba(255,255,255,0.3); font-size:13px; }
.case-cta-section { padding:100px 0 0; text-align:center; }
.case-cta-section h2 { font-family:'Syne',sans-serif; font-size:clamp(32px,4vw,56px) !important; font-weight:800; margin-bottom:16px; }
.case-cta-section h2 em { font-style:normal; background:linear-gradient(135deg,#6d5efc,#22d3ee); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.case-cta-section p { color:rgba(255,255,255,0.35); font-size:18px; margin-bottom:36px; }
.case-cta-btn { display:inline-flex; align-items:center; gap:10px; padding:18px 48px; background:linear-gradient(135deg,#6d5efc,#22d3ee); background-size:200% 200%; animation:gradientShift 3s ease infinite; color:white; font-size:17px; font-weight:700; border-radius:999px; text-decoration:none; box-shadow:0 8px 36px rgba(109,94,252,0.45); transition:transform 0.2s, box-shadow 0.2s; }
.case-cta-btn:hover { transform:translateY(-3px); box-shadow:0 14px 48px rgba(109,94,252,0.6); }
@media (max-width: 900px) {
    .case-hero { grid-template-columns:1fr; }
    .case-hero-img { height:40vh; }
    .case-two-col { grid-template-columns:1fr; gap:24px; }
    .case-stats-row { grid-template-columns:1fr; }
    .case-body, .case-hero-inner { padding:48px 24px; }
}

/* ============================================================
   BLOCO 2 — DEPOIMENTOS EM VÍDEO
   ============================================================ */
#testimonials-video { padding: 36px 0; }
.tv-inner { max-width:1200px; margin:0 auto; padding:0 48px; }
.tv-header { text-align:center; max-width:560px; margin:0 auto 36px; }
.tv-eyebrow { display:inline-block; font-size:12px; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; color:#6d5efc; margin-bottom:16px; }
.tv-header h2 em { font-style:normal; background:linear-gradient(135deg,#6d5efc,#22d3ee); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.tv-header p { color:rgba(255,255,255,0.3); font-size:16px; margin-top:12px; }
.tv-grid { display:grid; grid-template-columns:1.6fr 1fr 1fr; gap:20px; align-items:start; }
.tv-card { background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.07); border-radius:20px; overflow:hidden; transition:transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; cursor:pointer; }
.tv-card:hover { transform:translateY(-4px); border-color:rgba(109,94,252,0.25); box-shadow:0 16px 48px rgba(109,94,252,0.1); }
.tv-thumb { position:relative; aspect-ratio:16/9; overflow:hidden; }
.tv-thumb img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease, filter 0.3s ease; filter:brightness(0.75) saturate(0.9); }
.tv-card:hover .tv-thumb img { transform:scale(1.04); filter:brightness(0.55) saturate(1); }
.tv-play-btn { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:56px; height:56px; border-radius:50%; background:rgba(109,94,252,0.9); display:flex; align-items:center; justify-content:center; backdrop-filter:blur(8px); box-shadow:0 8px 32px rgba(109,94,252,0.5); transition:transform 0.2s ease, background 0.2s ease; }
.tv-card:hover .tv-play-btn { transform:translate(-50%,-50%) scale(1.12); background:rgba(109,94,252,1); }
.tv-play-ring { position:absolute; inset:-6px; border-radius:50%; border:2px solid rgba(109,94,252,0.4); animation:tvRingPulse 2s ease-in-out infinite; }
@keyframes tvRingPulse { 0%,100%{ transform:scale(1); opacity:0.6; } 50%{ transform:scale(1.2); opacity:0; } }
.tv-duration { position:absolute; bottom:10px; right:10px; padding:3px 8px; background:rgba(0,0,0,0.65); border-radius:4px; font-size:11px; font-weight:600; color:white; backdrop-filter:blur(4px); }
.tv-info { padding:20px 22px 22px; }
.tv-avatar-row { display:flex; align-items:center; gap:12px; margin-bottom:14px; }
.tv-avatar { width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:13px; color:white; flex-shrink:0; }
.tv-avatar-row strong { display:block; font-size:14px; font-weight:600; color:white; }
.tv-avatar-row span { font-size:12px; color:rgba(255,255,255,0.3); }
.tv-stars { margin-left:auto; font-size:13px; background:linear-gradient(90deg,#6d5efc,#22d3ee); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; letter-spacing:2px; }
.tv-quote { font-size:14px; color:rgba(255,255,255,0.45); line-height:1.6; margin:0; font-style:italic; }
#tv-player { position:fixed; inset:0; z-index:999990; visibility:hidden; pointer-events:none; }
#tv-player.open { visibility:visible; pointer-events:all; }
#tv-player-overlay { position:absolute; inset:0; background:rgba(4,17,28,0.95); backdrop-filter:blur(20px); opacity:0; transition:opacity 0.3s ease; }
#tv-player.open #tv-player-overlay { opacity:1; }
#tv-player-content { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; padding:48px; }
#tv-player-close { position:fixed; top:24px; right:24px; width:44px; height:44px; border-radius:50%; background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.1); color:rgba(255,255,255,0.6); display:flex; align-items:center; justify-content:center; cursor:pointer; transition:all 0.2s; z-index:10; }
#tv-player-close:hover { background:rgba(255,255,255,0.14); color:white; transform:rotate(90deg); }
#tv-player-inner { width:100%; max-width:900px; border-radius:20px; overflow:hidden; transform:scale(0.9); opacity:0; transition:transform 0.4s cubic-bezier(0.22,1,0.36,1), opacity 0.3s ease; }
#tv-player.open #tv-player-inner { transform:scale(1); opacity:1; }
#tv-video { width:100%; display:block; border-radius:20px; }
#tv-no-video { background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.08); border-radius:20px; padding:64px; text-align:center; display:none; }
#tv-no-video.visible { display:block; }
.tv-nv-avatar { width:80px; height:80px; border-radius:50%; background:linear-gradient(135deg,#6d5efc,#22d3ee); display:flex; align-items:center; justify-content:center; font-size:24px; font-weight:700; color:white; margin:0 auto 28px; box-shadow:0 0 40px rgba(109,94,252,0.4); }
#tv-no-video blockquote { font-family:'Syne',sans-serif; font-size:clamp(22px,3vw,36px); font-weight:700; color:white; line-height:1.4; letter-spacing:-0.02em; margin:0 0 28px; max-width:600px; margin-left:auto; margin-right:auto; }
.tv-nv-author strong { display:block; color:white; font-size:16px; font-weight:600; }
.tv-nv-author span { color:rgba(255,255,255,0.3); font-size:14px; }
.tv-nv-hint { margin-top:28px; padding:10px 20px; background:rgba(109,94,252,0.08); border:1px solid rgba(109,94,252,0.2); border-radius:999px; display:inline-block; font-size:13px; color:rgba(255,255,255,0.3); }
@media (max-width: 900px) {
    .tv-grid { grid-template-columns:1fr; }
    .tv-inner { padding:0 24px; }
}

/* ============================================================
   MONOCHROME / BLACK & WHITE OVERRIDES
   ============================================================ */
:root {
    --bg-color: #030303;
    --primary-color: #ffffff;
    --primary-2: #e5e5e5;
    --accent-color: #a3a3a3;
    --surface-color: rgba(255, 255, 255, 0.04);
    --surface-2: rgba(255, 255, 255, 0.08);
    --border-color: rgba(255, 255, 255, 0.1);
    --border-strong: rgba(255, 255, 255, 0.2);
}

body {
    background-color: var(--bg-color);
    background-image:
        radial-gradient(900px 480px at 20% 10%, rgba(255, 255, 255, 0.04), transparent 55%),
        radial-gradient(760px 420px at 80% 0%, rgba(255, 255, 255, 0.02), transparent 60%),
        radial-gradient(860px 520px at 50% 95%, rgba(255, 255, 255, 0.03), transparent 55%) !important;
}

/* Logos & Icons */
.logo::after {
    background: #ffffff !important;
}
.service-icon {
    color: #ffffff !important;
}

/* Buttons override */
.btn-primary {
    background: #ffffff !important;
    color: #000000 !important;
    box-shadow: 0 8px 28px rgba(255, 255, 255, 0.15) !important;
}
.btn-primary::before, .btn-primary::after {
    background: linear-gradient(135deg, #ffffff, #888888, #e5e5e5, #ffffff) !important;
}
.btn-primary:hover {
    box-shadow: 0 10px 36px rgba(255, 255, 255, 0.25) !important;
    color: #000000 !important;
}
.btn-outline {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
}
.btn-outline::before {
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.15)) !important;
}
.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5), 0 6px 20px rgba(255,255,255,0.05) !important;
    color: #ffffff !important;
}

/* Hero Orbs & Visuals */
.hero-orb-1, .hero-orb-2 {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%) !important;
    filter: saturate(0) !important;
}
.mockup-kpi .kpi-value {
    background: linear-gradient(135deg, #ffffff, #a3a3a3) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* Gradients on Titles & Stats */
.reel-title em, .reel-stat-num, .metric-number, .case-result-num, .case-result-big, .case-stat-num, .tv-stars {
    background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 50%, #a3a3a3 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: #ffffff !important;
}

.intro-accent {
    background: linear-gradient(135deg, #ffffff, #a3a3a3) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: #ffffff !important;
}

/* Reading Progress & Scroll Storytelling */
#read-progress {
    background: linear-gradient(90deg, #ffffff, #a3a3a3, #ffffff) !important;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4) !important;
}
.story-bg-num {
    background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}
.story-progress-fill {
    background: linear-gradient(to bottom, #ffffff, #888888) !important;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.3) !important;
}
.story-item.active::before {
    background: linear-gradient(135deg, #ffffff, #888888) !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3) !important;
}
.story-step-duration {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}

/* Metrics Section */
.metric-bar-fill {
    background: linear-gradient(90deg, #ffffff, #a3a3a3) !important;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3) !important;
}
.metric-card.featured {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
}
.metric-card.featured::before {
    background: linear-gradient(90deg, transparent, #ffffff, transparent) !important;
}

/* Service Pricing */
.service-price {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    background-color: rgba(255, 255, 255, 0.04) !important;
    -webkit-text-fill-color: #ffffff !important;
    color: #ffffff !important;
}

/* Portfolio Cards & Slides */
.portfolio-image img {
    filter: grayscale(100%) brightness(0.85) !important;
    transition: filter 0.5s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}
.reel-slide img {
    filter: grayscale(0%) brightness(0.95) !important;
    transition: filter 0.5s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}
.portfolio-card:hover .portfolio-image img, .reel-slide:hover img {
    filter: grayscale(0%) brightness(1) !important;
}
.ba-circle svg {
    stroke: #000000 !important;
}
.ba-circle {
    background: #ffffff !important;
}
.ba-label-after {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
}

/* Video Testimonials & Cards */
.tv-play-btn {
    background: #ffffff !important;
    color: #000000 !important;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.25) !important;
}
.tv-play-btn i, .tv-play-btn svg {
    color: #000000 !important;
}
.tv-play-ring {
    border-color: rgba(255, 255, 255, 0.3) !important;
}
.tv-avatar, .tv-nv-avatar, .toast-avatar, .case-author-avatar {
    background: #ffffff !important;
    color: #000000 !important;
}
.tv-card-featured {
    border-color: rgba(255, 255, 255, 0.15) !important;
}
.tv-card-featured::before {
    background: linear-gradient(to right, transparent, #ffffff, transparent) !important;
}
.tv-stars {
    -webkit-text-fill-color: #ffffff !important;
    color: #ffffff !important;
}
.tv-nv-hint {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}

/* Case Modals */
.case-tag {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}
.case-result-hero {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}
.case-result-tag {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}
.case-cta-btn {
    background: #ffffff !important;
    color: #000000 !important;
    box-shadow: 0 8px 36px rgba(255, 255, 255, 0.2) !important;
}
.case-cta-btn:hover {
    box-shadow: 0 14px 48px rgba(255, 255, 255, 0.3) !important;
}

/* Conversational Form & Toast */
.cf-progress-fill {
    background: #ffffff !important;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.3) !important;
}
.cf-option.selected {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.08) !important;
}
.cf-next, .cf-submit {
    background: #ffffff !important;
    color: #000000 !important;
    box-shadow: 0 4px 24px rgba(255, 255, 255, 0.2) !important;
}
.cf-next:hover, .cf-submit:hover {
    box-shadow: 0 8px 36px rgba(255, 255, 255, 0.3) !important;
}
.cf-success-icon {
    background: #ffffff !important;
    color: #000000 !important;
    box-shadow: 0 0 32px rgba(255, 255, 255, 0.3) !important;
}
#sticky-cta {
    border-color: rgba(255, 255, 255, 0.2) !important;
}
#sticky-cta > a {
    background: #ffffff !important;
    color: #000000 !important;
}
.toast-dot {
    background: #ffffff !important;
    box-shadow: 0 0 8px #ffffff !important;
}
.footer::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent) !important;
}
.reel-cta {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}
.reel-cta:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
}

/* Sizing for the new Univax logo images */
.header-logo {
    height: 32px;
    width: auto;
    display: block;
}
.footer-logo {
    height: 28px;
    width: auto;
    display: block;
}
.logo-link {
    display: flex;
    align-items: center;
}

/* Social links styling */
.social-links a {
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    font-size: 1.15rem;
    transition: all 0.3s ease !important;
}
.social-links a:hover {
    background: #ffffff !important;
    color: #000000 !important;
    border-color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2) !important;
}

/* Landing Page Best Price Card Glow */
.best-price-card {
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%) !important;
    animation: cardGlowPulse 2.8s ease-in-out infinite alternate;
}

.service-highlight-tag {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #000000;
    background: #ffffff;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
    margin-bottom: 0.2rem;
}

@keyframes cardGlowPulse {
    0% {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.2), inset 0 0 10px rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.4) !important;
    }
    100% {
        box-shadow: 0 0 35px rgba(255, 255, 255, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.95) !important;
    }
}

/* ============================================================
   RESPONSIVIDADE E AJUSTES DE BOTÕES PARA DISPOSITIVOS MÓVEIS
   ============================================================ */
@media (max-width: 480px) {
    /* Hero Section CTA Button */
    .hero-cta {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
        gap: 0.75rem !important;
    }
    
    .hero-cta .btn-large {
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        padding: 0.9rem 1.5rem !important;
        font-size: 1.05rem !important;
        box-sizing: border-box !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    /* Reel Section CTA Button */
    .reel-cta {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 290px !important;
        margin: 0 auto !important;
        padding: 12px 20px !important;
        font-size: 14px !important;
        box-sizing: border-box !important;
    }

    /* Case Study CTA Button */
    .case-cta-btn {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
        padding: 14px 28px !important;
        font-size: 15px !important;
        box-sizing: border-box !important;
    }
}

/* ============================================================
   AJUSTE DO CABEÇALHO PARA CELULAR (SAFE AREA & OPACIDADE)
   ============================================================ */
@media (max-width: 768px) {
    .header {
        background-color: #030303 !important; /* Fundo totalmente sólido para tampar o conteúdo ao rolar */
        padding-top: env(safe-area-inset-top, 0px) !important; /* Cobre a barra de status de aparelhos com notch */
    }
    .header.scrolled {
        background-color: #030303 !important;
        padding-top: env(safe-area-inset-top, 0px) !important;
}

/* ============================================================
   FORÇAR CORES ORIGINAIS NAS IMAGENS DO CARROSSEL
   ============================================================ */
.reel-slide img,
.reel-slideshow img,
.reel-browser-content img {
    filter: none !important;
    -webkit-filter: none !important;
}
