/* ==========================================================================
   CSS Variables & Resets
   ========================================================================== */
:root {
    --bg-dark: #122b32;
    --bg-card: rgba(22, 58, 66, 0.88);
    --bg-glass: rgba(22, 58, 66, 0.5);

    --text-primary: #FFFFFF;
    --text-sec: #B0C4CC;
    --text-muted: #829AAA;

    --accent-light: #FFFFFF;
    --accent-primary: #FFFFFF;
    --accent-secondary: #E2E8F0;

    --border-light: rgba(255, 255, 255, 0.1);
    --border-focus: rgba(255, 255, 255, 0.5);

    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    /* clip (não hidden) evita scroll horizontal SEM quebrar o position: sticky */
    overflow-x: clip;
    width: 100%;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: clip;
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

.mt-3 {
    margin-top: 1rem;
}

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

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

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

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

.d-inline-flex {
    display: inline-flex;
}

/* Highlights */
.highlight {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Background Glows */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
}

.glow-top-left {
    top: -200px;
    left: -200px;
    background: var(--accent-primary);
}

.glow-bottom-right {
    bottom: 10%;
    right: -200px;
    background: var(--accent-secondary);
}


/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition-base);
    border-bottom: 1px solid transparent;
}

.hero-navbar {
    background: transparent;
}

.navbar.scrolled {
    padding: 0.85rem 0;
    background-color: rgba(18, 43, 50, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
}

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

.brand-logo {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0 auto;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-sec);
}

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

.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.35rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: #0a1214;
    background: #fff;
    border: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: var(--transition-base);
}

.btn-nav-cta:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 1.35rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-base);
}

.btn-primary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(4px);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    min-height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--veil-base, #122b32);
}

.hero-inner {
    position: relative;
    z-index: 2;
    flex: 1;
    padding-top: 8.5rem;
    padding-bottom: 2.75rem;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    grid-template-rows: 1fr auto auto 1fr;
    grid-template-areas:
        ".    aside"
        "head aside"
        "body aside"
        ".    aside";
    column-gap: clamp(1.5rem, 4vw, 3rem);
    row-gap: clamp(1.25rem, 1.8vw, 1.75rem);
    align-items: start;
}

.hero-head {
    grid-area: head;
    max-width: 42rem;
}

.hero-body {
    grid-area: body;
    max-width: 38rem;
}

.hero-aside {
    grid-area: aside;
    position: relative;
    width: 100%;
    max-width: 340px;
    justify-self: end;
}

.hero-eyebrow {
    display: none;
}

.hero-title-line {
    display: inline;
}

.hero-mobile-actions {
    display: none;
}

.hero-title {
    font-size: clamp(2rem, 4.2vw, 3.25rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 0;
}

/* Título do hero: tudo branco, sem gradiente colorido */
.hero-title .word.highlight {
    color: #fff;
    background: none;
    -webkit-text-fill-color: currentColor;
    background-clip: unset;
}

.hero-lead strong {
    color: var(--text-primary);
    font-weight: 600;
}

.hero-lead {
    font-size: clamp(0.95rem, 1.35vw, 1.05rem);
    line-height: 1.6;
    color: var(--text-sec);
    max-width: 34rem;
    margin-bottom: 1.25rem;
}

.hero-actions {
    margin-bottom: 1.5rem;
}

.btn-hero-cta {
    background: #fff;
    color: #0a1214;
    border: none;
    border-radius: 50px;
    padding: 0.7rem 0.7rem 0.7rem 1.35rem;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.3);
}

.btn-hero-cta:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.cta-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--veil-base, #122b32);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-left: 0.25rem;
}

.social-proof {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem 2rem;
}

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

.stars {
    color: #FBBF24;
    display: flex;
    font-size: 1.1rem;
}

.rating-val {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
}

.rating-text {
    color: var(--text-sec);
    font-size: 0.82rem;
    max-width: 200px;
    line-height: 1.35;
}

.team-proof {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0;
}

.team-text {
    color: var(--text-sec);
    font-size: 0.9rem;
}

.avatar-group {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bg-dark);
    margin-left: -12px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-plus {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 2px solid var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -12px;
    color: var(--text-sec);
    font-size: 0.9rem;
}

.sleek-form-card {
    background: rgba(38, 72, 82, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    padding: 2.5rem;
    position: relative;
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.04),
        0 0 80px rgba(120, 200, 220, 0.18);
}

/* Halo de brilho atrás do card para destacá-lo */
.sleek-form-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        160deg,
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 255, 255, 0.04) 32%,
        transparent 60%
    );
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hero-form-compact {
    padding: 1.15rem 1.2rem 1.2rem;
}

.hero-form-compact .form-header {
    margin-bottom: 0.85rem;
}

.hero-form-compact .form-header h3 {
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}

.hero-form-compact .form-header p {
    font-size: 0.78rem;
}

.hero-form-compact .input-group {
    margin-bottom: 0.55rem;
}

.hero-form-compact .input-group label {
    font-size: 0.72rem;
    margin-bottom: 0.25rem;
}

.hero-form-compact .lead-form input,
.hero-form-compact .lead-form select,
.hero-form-compact .lead-form textarea {
    padding: 0.55rem 0.75rem;
    font-size: 0.85rem;
    border-radius: 9px;
}

.hero-form-compact .lead-form .input-row {
    gap: 0.5rem;
}

.hero-form-compact .btn-submit {
    height: 42px;
    margin-top: 0.35rem;
    font-size: 0.85rem;
    border-radius: 8px;
}

.hero-form-compact .form-feedback {
    margin-top: 0.5rem;
    padding: 0.5rem;
    font-size: 0.78rem;
}

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

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-sec);
    font-size: 0.9rem;
}

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

.input-group {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
    letter-spacing: 0.02em;
    font-family: var(--font-heading);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    padding: 0.7rem 0.85rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.lead-form input:hover,
.lead-form select:hover,
.lead-form textarea:hover {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.07);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.65;
}

/* Contador de caracteres da mensagem */
.char-counter {
    align-self: flex-end;
    margin-top: 0.3rem;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
    transition: color 0.2s ease;
}

.char-counter.is-full {
    color: #ef4444;
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.select-wrapper i {
    position: absolute;
    right: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.btn-submit {
    display: flex;
    width: 100%;
    margin-top: 1rem;
    height: 50px;
    background: #fff;
    color: #000;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    font-weight: 700;
}

.btn-submit:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.form-feedback {
    margin-top: 1rem;
    font-size: 0.85rem;
    text-align: center;
    display: none;
    padding: 0.75rem;
    border-radius: 8px;
}

.form-feedback.success {
    display: block;
    background: rgba(46, 204, 113, 0.1);
    color: #4ade80;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.form-feedback.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ==========================================================================
   Video Showcase Section
   ========================================================================== */
/* ==========================================================================
   Case Showcase — vídeo + carrossel pinado por scroll
   ========================================================================== */
.case-showcase {
    position: relative;
    /* altura definida via JS para o efeito de pin (fallback abaixo) */
}

.case-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
}

.case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.25rem, 2.6vw, 2.25rem);
    align-items: center;
}

.case-video {
    position: relative;
    height: min(70vh, 580px);
    border-radius: 24px;
    overflow: hidden;
    background: var(--bg-dark);
    border: 1px solid var(--border-light);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
    isolation: isolate;
}

.case-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130%;
    height: 130%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: none;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 28, 33, 0.95) 0%, rgba(13, 28, 33, 0.1) 40%, rgba(13, 28, 33, 0.3) 100%);
    z-index: 10;
    pointer-events: auto;
}

.video-content {
    position: absolute;
    bottom: 2.25rem;
    left: 2.25rem;
    z-index: 20;
    pointer-events: none;
}

.video-content h2 {
    font-size: clamp(2rem, 3.2vw, 3rem);
    margin-bottom: 0;
    color: #fff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* --- Carrossel coverflow (palco transparente) --- */
.case-gallery {
    position: relative;
    height: min(70vh, 580px);
    /* recorta os slides na própria coluna — vizinhas não invadem o vídeo */
    overflow: hidden;
    /* degradê nas laterais: as vizinhas somem suavemente em vez de cortar reto */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 15%, #000 85%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 15%, #000 85%, transparent 100%);
}

.case-slides {
    position: absolute;
    inset: 0;
}

.case-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    height: 88%;
    object-fit: cover;
    border-radius: 20px;
    /* posição base (sobrescrita pelo JS por slide) */
    transform: translate(-50%, -50%) scale(0.78);
    opacity: 0;
    z-index: 1;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.55s ease;
    will-change: transform, opacity;
}

.case-counter {
    position: absolute;
    top: 1.1rem;
    right: 1.25rem;
    z-index: 5;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #fff;
    padding: 0.35rem 0.7rem;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.case-counter .case-current {
    color: #fff;
}

.case-progress {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 0.45rem;
}

.case-nav {
    display: none;
}

.case-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: width 0.4s ease, background 0.4s ease;
}

.case-dot.is-active {
    width: 24px;
    border-radius: 4px;
    background: #fff;
}

.case-dot:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

/* Mobile / tablet: sem pin — carrossel deslizável (swipe) */
@media (max-width: 1024px) {
    .case-showcase {
        height: auto !important;
        padding: 1rem 0 2.5rem;
    }

    .case-sticky {
        position: static;
        height: auto;
    }

    .case-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .case-video {
        height: auto;
        aspect-ratio: 16 / 10;
        border-radius: 16px;
    }

    .case-gallery {
        height: auto;
        aspect-ratio: 4 / 3;
        border-radius: 16px;
        overflow: hidden;
        -webkit-mask-image: none;
        mask-image: none;
        background: var(--bg-dark);
        border: 1px solid var(--border-light);
    }

    .case-slides {
        position: relative;
        display: flex;
        height: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .case-slides::-webkit-scrollbar {
        display: none;
    }

    .case-slide {
        position: relative;
        top: auto;
        left: auto;
        flex: 0 0 100%;
        width: 100%;
        height: 100%;
        min-width: 100%;
        opacity: 1;
        transform: none;
        z-index: 1;
        border-radius: 16px;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        transition: none;
        will-change: auto;
    }

    .case-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 6;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.25);
        background: rgba(0, 0, 0, 0.45);
        color: #fff;
        font-size: 1.15rem;
        cursor: pointer;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        transition: background 0.2s ease, opacity 0.2s ease;
    }

    .case-nav:hover:not(:disabled) {
        background: rgba(0, 0, 0, 0.65);
    }

    .case-nav:disabled {
        opacity: 0.35;
        cursor: not-allowed;
    }

    .case-nav--prev {
        left: 0.65rem;
    }

    .case-nav--next {
        right: 0.65rem;
    }

    .case-counter,
    .case-progress {
        display: flex;
    }

    .case-progress {
        pointer-events: auto;
    }
}

/* ==========================================================================
   Brands Marquee
   ========================================================================== */
.brands-section {
    padding: 3rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-brands.brands-section {
    z-index: 2;
    padding: 1.75rem 0 2rem;
    margin-top: 0.25rem;
    border-top: none;
    border-bottom: none;
    background: transparent;
}

.hero-brands .brands-label {
    margin-bottom: 1.5rem;
    font-size: clamp(0.95rem, 1.4vw, 1.15rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--text-primary, #fff);
}

.hero-brands .brand-logo-img {
    height: 34px;
    margin: 0 2.25rem;
}

.hero-brands .brands-carousel {
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.brands-label {
    display: block;
    width: 100%;
    text-align: center;
    color: var(--text-sec);
    font-size: 0.85rem;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brands-carousel {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    /* Máscara para suavizar as extremidades, dando um sumiço gradual elegante */
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.brands-track {
    display: flex;
    align-items: center;
    width: max-content;
    /* Duração 50s. Quanto maior, mais devagar. O infinite mantem sem quebras */
    animation: scroll-marquee 50s linear infinite;
}

.brands-carousel:hover .brands-track {
    /* Pausa a rolagem das marcas quando o usuário coloca o mouse em cima */
    animation-play-state: paused;
}

.brand-logo-img {
    height: 40px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    margin: 0 3rem;
    opacity: 0.6;
    flex-shrink: 0;
    /* Impede que a logo encolha no celular ou quebre a grade */
    /* Truque mágico: Transforma qualquer logo (preta, branca ou colorida) em uma silhueta branca pura */
    filter: brightness(0) invert(1);
    transition: var(--transition-base);
}

.brand-logo-img:hover {
    opacity: 1;
    /* No hover, volta a cor original da marca */
    filter: brightness(1) invert(0);
    transform: scale(1.1);
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* O -50% só funciona porque duplicamos o conteúdo! */
}

.brand-logo-mock {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

/* ==========================================================================
   Section Tags & Titles
   ========================================================================== */
.section-tag {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-sec);
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.about-grid,
.caps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.tags-group {
    display: flex;
    gap: 0.75rem;
}

.hash-tag {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    font-size: 0.8rem;
    color: var(--text-sec);
}

.about-desc {
    color: var(--text-sec);
    font-size: 1.05rem;
    max-width: 90%;
}

.about-visuals {
    position: relative;
}

.main-img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 24px;
    filter: contrast(1.1) brightness(0.8);
}

.floating-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: 260px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mission-card {
    top: 10%;
    right: -10%;
}

.vision-card {
    bottom: 10%;
    left: -10%;
}

.card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.card-head h4 {
    font-size: 1rem;
}

.icon-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 0.8rem;
}

.floating-card p {
    font-size: 0.8rem;
    color: var(--text-sec);
    line-height: 1.5;
}


/* ==========================================================================
   Stats Row Section
   ========================================================================== */
.border-y {
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.stats-container {
    display: flex;
    justify-content: space-between;
    padding: 4rem 0;
}

.stat-box {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    max-width: 280px;
}

.stat-metric {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-icon {
    flex-shrink: 0;
    margin-bottom: 0;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--text-sec);
}

.stat-val {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin: 0;
}

.stat-box p {
    color: var(--text-sec);
    font-size: 0.9rem;
    margin: 0;
}


/* ==========================================================================
   Capabilities Section
   ========================================================================== */
.img-wrapper {
    position: relative;
}

.cap-img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 24px;
    filter: contrast(1.1) brightness(0.8);
}

.glass-float {
    position: absolute;
    top: 30%;
    left: -10%;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 180px;
}

.float-title {
    font-size: 0.8rem;
    color: var(--text-sec);
}

.float-val {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.float-val i {
    color: #4ade80;
    font-size: 1.2rem;
}

.mock-bars {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 40px;
    margin-top: 0.5rem;
}

.bar {
    flex: 1;
    background: var(--bg-glass);
    border-radius: 4px;
    transition: height 1s;
}

.h-40 {
    height: 40%;
}

.h-60 {
    height: 60%;
}

.h-100 {
    height: 100%;
    background: var(--accent-primary);
}

.caps-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.accordion-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.acc-item {
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.01);
    transition: var(--transition-base);
}

.acc-item.active {
    background: var(--bg-card);
    border-color: rgba(255, 255, 255, 0.15);
}

.acc-head {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.acc-num {
    color: var(--text-sec);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
}

.acc-head h4 {
    font-size: 1.1rem;
    flex: 1;
}

.acc-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-sec);
}

.acc-item.active .acc-icon {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.acc-head {
    cursor: pointer;
    user-select: none;
}

.acc-body {
    overflow: hidden;
    max-height: 0;
    padding-left: 2.5rem;
    color: var(--text-sec);
    font-size: 0.95rem;
    transition: max-height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                margin-top 0.35s ease;
    margin-top: 0;
}

.acc-item.active .acc-body {
    max-height: 160px;
    margin-top: 1rem;
}


/* ==========================================================================
   Steps Section
   ========================================================================== */
.steps-section h2 {
    font-size: 2.75rem;
}

.section-sub {
    color: var(--text-sec);
    font-size: 1.1rem;
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: repeat(2, auto);
    gap: 2rem 4rem;
    align-items: center;
    position: relative;
    padding: 4rem 0;
}

.center-graphic {
    grid-column: 2;
    grid-row: 1 / span 2;
    display: flex;
    justify-content: center;
}

.graphic-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle, rgba(var(--accent-cool), 0.14) 0%, transparent 62%);
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.55), 0 0 40px rgba(var(--accent-cool), 0.08);
}

.glow-logo {
    width: 92px;
    height: auto;
    z-index: 3;
    filter: drop-shadow(0 0 14px rgba(var(--accent-cool), 0.5));
}

/* Anel pontilhado externo girando */
.graphic-circle::before {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    border: 1px dashed rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    animation: rotate 60s linear infinite;
}

/* Ponto em órbita ao redor do núcleo */
.hub-orbit {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: rotate 11s linear infinite;
}

.hub-orbit::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dff3fc;
    box-shadow: 0 0 14px 2px rgba(var(--accent-cool), 0.8);
}

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

.step-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 1.6rem 1.75rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

/* Linha de acento no topo (surge no hover) */
.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1.75rem;
    right: 1.75rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(var(--accent-cool), 0.6), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.1rem;
}

.step-ico {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--accent-cool), 0.1);
    border: 1px solid rgba(var(--accent-cool), 0.2);
    color: #d6f0fb;
    font-size: 1.35rem;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, background 0.4s ease;
}

.step-card:hover .step-ico {
    background: rgba(var(--accent-cool), 0.2);
    box-shadow: 0 0 22px rgba(var(--accent-cool), 0.25);
    transform: translateY(-2px);
}

.right-card {
    text-align: right;
}

.step-num {
    font-size: 2.4rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: transparent;
    line-height: 1;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.14);
    transition: color 0.4s ease, -webkit-text-stroke 0.4s ease;
}

.step-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-sec);
    line-height: 1.55;
}


/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-light);
    background: #020305;
}

.footer-logo {
    height: 40px;
    opacity: 0.8;
}

/* ==========================================================================
   Animations
   ========================================================================== */
.reveal {
    opacity: 1;
    visibility: visible;
    will-change: transform, opacity;
}

/* Só esconde se o JS estiver rodando */
.js-loaded .reveal {
    opacity: 0;
    visibility: hidden;
}

.js-loaded .reveal.active {
    opacity: 1;
    visibility: visible;
}

.reveal.active {
    opacity: 1;
    visibility: visible;
}

.fade-up {
    transform: translateY(40px);
}

.fade-up.active {
    transform: translateY(0);
    transition: all var(--transition-slow);
}

.slide-in-right {
    transform: translateX(50px);
}

.slide-in-right.active {
    transform: translateX(0);
    transition: all var(--transition-slow);
}

.slide-in-left {
    transform: translateX(-50px);
}

.slide-in-left.active {
    transform: translateX(0);
    transition: all var(--transition-slow);
}

.scale-up {
    transform: scale(0.95);
}

.scale-up.active {
    transform: scale(1);
    transition: all var(--transition-slow);
}

.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}

/* ==========================================================================
   Hero — animação de entrada (carregamento)
   ========================================================================== */

/* Curva suave reaproveitada nas entradas */
:root {
    --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Navbar: desce do topo --- */
.js-loaded .hero-navbar {
    opacity: 0;
    transform: translateY(-22px);
}

.hero-intro-ready .hero-navbar {
    animation: navDrop 1s var(--ease-out-soft) 0.05s forwards;
}

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

/* --- Título: palavras "rolando" de baixo para cima --- */
.hero-title .word-mask {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    /* deixa descer rabos de letras (g, p, ç) sem cortar */
    padding-bottom: 0.14em;
    margin-bottom: -0.14em;
}

.js-loaded .hero-title .word {
    display: inline-block;
    transform: translateY(118%);
    will-change: transform;
}

.hero-intro-ready .hero-title .word {
    animation: wordRoll 0.95s var(--ease-out-soft) forwards;
    /* animation-delay definido inline por palavra (JS) */
}

@keyframes wordRoll {
    to {
        transform: translateY(0);
    }
}

/* --- Eyebrow e CTAs mobile --- */
.js-loaded .hero-eyebrow,
.js-loaded .hero-mobile-actions {
    opacity: 0;
    transform: translateY(18px);
    will-change: transform, opacity;
}

.hero-intro-ready .hero-eyebrow {
    animation: riseBlur 0.85s var(--ease-out-soft) 0.18s forwards;
}

.hero-intro-ready .hero-mobile-actions {
    animation: riseBlur 0.9s var(--ease-out-soft) 0.52s forwards;
}

/* --- Parágrafo e prova social: sobem com leve desfoque --- */
.js-loaded .hero-body .hero-lead,
.js-loaded .hero-body .social-proof {
    opacity: 0;
    transform: translateY(26px);
    filter: blur(7px);
    will-change: transform, opacity, filter;
}

.hero-intro-ready .hero-body .hero-lead {
    animation: riseBlur 1s var(--ease-out-soft) 0.62s forwards;
}

.hero-intro-ready .hero-body .social-proof {
    animation: riseBlur 1s var(--ease-out-soft) 0.78s forwards;
}

@keyframes riseBlur {
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* --- Formulário: entra com escala + brilho --- */
.js-loaded .hero-aside {
    opacity: 0;
    transform: translateY(34px) scale(0.97);
    will-change: transform, opacity;
}

.hero-intro-ready .hero-aside {
    animation: formIn 1.15s var(--ease-out-soft) 0.45s forwards;
}

@media (max-width: 768px) {
    .hero-intro-ready .hero-body .hero-lead {
        animation-delay: 0.68s;
    }

    .hero-intro-ready .hero-body .social-proof {
        animation-delay: 0.82s;
    }

    .hero-intro-ready .hero-aside {
        animation-delay: 0.92s;
    }
}

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

/* Acessibilidade: respeita quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
    .js-loaded .hero-navbar,
    .js-loaded .hero-title .word,
    .js-loaded .hero-eyebrow,
    .js-loaded .hero-mobile-actions,
    .js-loaded .hero-body .hero-lead,
    .js-loaded .hero-body .social-proof,
    .js-loaded .hero-aside {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        animation: none !important;
    }
}

/* Spinner */
.loader-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    border-top-color: #000;
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {

    .hero-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas:
            "head"
            "body"
            "actions"
            "aside";
        row-gap: 1.5rem;
    }

    /* Botões do hero (mobile) viram item próprio do grid, logo acima do form */
    .hero-mobile-actions {
        grid-area: actions;
    }

    .hero-inner {
        padding-top: 7.5rem;
        padding-bottom: 2rem;
    }

    .hero-aside {
        max-width: 100%;
        justify-self: stretch;
    }

    .hero-head,
    .hero-body {
        max-width: none;
    }

    .social-proof,
    .hero-actions {
        justify-content: center;
        align-items: center;
    }

    .team-proof {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-brands.brands-section {
        padding: 1.25rem 0 1.5rem;
    }

    .about-grid,
    .caps-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 5%;
        right: 5%;
        flex-direction: column;
        gap: 0;
        padding: 0.75rem;
        background: rgba(18, 43, 50, 0.96);
        border: 1px solid var(--border-light);
        border-radius: 16px;
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.85rem 1rem;
        border-radius: 10px;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.06);
    }

    .nav-toggle {
        display: flex;
    }

    .btn-nav-cta {
        display: none;
    }

    .nav-container {
        position: relative;
        flex-wrap: wrap;
    }

    .floating-card {
        position: relative;
        width: 100%;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        margin-top: 1rem;
        box-shadow: none;
    }

    .glass-float {
        display: none;
    }

    /* Hide floating chart on smaller screens */

    .stats-container {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .stat-box {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        align-items: center;
    }

    .stat-metric {
        gap: 0.125rem;
    }

    .stat-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .stat-box p {
        text-align: center;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .center-graphic {
        grid-column: 1;
        grid-row: auto;
        margin: 2rem 0;
    }

    .graphic-circle {
        width: 220px;
        height: 220px;
    }

    .graphic-circle::before {
        width: 280px;
        height: 280px;
    }

    .glow-logo {
        width: 60px;
    }

    .right-card {
        text-align: left;
    }

    .right-card .step-num {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    .pt-100 {
        padding-top: 60px;
    }

    .pb-100 {
        padding-bottom: 60px;
    }

    .navbar {
        padding: 0.85rem 0;
    }

    .brand-logo {
        height: 28px;
    }

    .hero-inner {
        padding-top: 5.25rem;
        padding-bottom: 1.5rem;
    }

    .hero-layout {
        row-gap: 1.35rem;
    }

    .hero-head {
        position: relative;
        text-align: left;
    }

    .hero-eyebrow {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-family: var(--font-heading);
        font-size: 0.62rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--text-muted);
        margin-bottom: 0.9rem;
    }

    .hero-eyebrow::before {
        content: '';
        width: 7px;
        height: 7px;
        background: rgba(255, 255, 255, 0.55);
        flex-shrink: 0;
    }

    .hero-title {
        font-size: clamp(2.05rem, 9.5vw, 2.85rem);
        font-weight: 800;
        line-height: 1.12;
        letter-spacing: -0.045em;
        text-align: left;
        overflow: visible;
    }

    .hero-title-line {
        display: block;
    }

    .hero-title-line--accent {
        margin-top: 0.05em;
    }

    .hero-mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
        margin-top: 0;
    }

    .btn-hero-mobile-primary,
    .btn-hero-mobile-secondary {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 52px;
        padding: 0.9rem 1.25rem;
        border-radius: 14px;
        font-family: var(--font-heading);
        font-size: 0.95rem;
        font-weight: 700;
        letter-spacing: -0.01em;
        transition: var(--transition-base);
    }

    .btn-hero-mobile-primary {
        background: #fff;
        color: #0a1214;
        border: none;
        box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
    }

    .btn-hero-mobile-primary:active {
        transform: scale(0.98);
    }

    .btn-hero-mobile-secondary {
        background: transparent;
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.35);
    }

    .btn-hero-mobile-secondary:active {
        background: rgba(255, 255, 255, 0.06);
    }

    .hero-body {
        text-align: left;
    }

    .hero-lead {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 0.5rem;
        max-width: none;
        text-align: left;
    }

    .social-proof {
        flex-direction: row;
        gap: 0.75rem;
        justify-content: flex-start;
    }

    .team-proof {
        justify-content: flex-start;
    }

    .team-text {
        font-size: 0.85rem;
    }

    .rating-text {
        max-width: 100%;
    }

    .hero-aside {
        margin-top: 0.25rem;
    }

    .hero-form-compact {
        padding: 1.1rem 1rem 1.15rem;
        border-radius: 16px;
        box-shadow:
            0 16px 40px rgba(0, 0, 0, 0.4),
            0 0 0 1px rgba(255, 255, 255, 0.06);
    }

    .hero-form-compact::before {
        opacity: 0.65;
    }

    .hero-form-compact .form-header {
        margin-bottom: 0.75rem;
        text-align: left;
    }

    .hero-form-compact .form-header h3 {
        font-size: 1rem;
    }

    .hero-form-compact .form-header p {
        font-size: 0.8rem;
    }

    .hero-form-compact .input-group {
        margin-bottom: 0.65rem;
    }

    .hero-form-compact .input-group label {
        font-size: 0.75rem;
    }

    .hero-form-compact .lead-form input,
    .hero-form-compact .lead-form select,
    .hero-form-compact .lead-form textarea {
        font-size: 16px;
        min-height: 44px;
        padding: 0.7rem 0.85rem;
    }

    .hero-form-compact .lead-form textarea {
        min-height: 72px;
    }

    .hero-form-compact .lead-form .input-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-form-compact .btn-submit {
        min-height: 48px;
        height: auto;
        margin-top: 0.5rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .hero-brands .brands-label {
        font-size: 0.8rem;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
        line-height: 1.4;
    }

    .hero-brands .brand-logo-img {
        height: 26px;
        margin: 0 1.25rem;
    }

    .nav-links {
        left: 1.25rem;
        right: 1.25rem;
    }

    .brands-carousel {
        -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
        mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    }

    .brand-logo-img {
        height: 30px;
        /* Logos um pouco menores no celular */
        margin: 0 1.5rem;
        /* Menos margem entre elas no celular para aparecerem mais */
    }

    .about-content h2,
    .caps-content h2,
    .steps-section h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .about-desc {
        max-width: 100%;
        font-size: 1rem;
    }

    .floating-card {
        padding: 1.25rem;
    }

    .video-showcase {
        padding: 0 0 3rem;
    }

    .video-content {
        bottom: 1.25rem;
        left: 1.25rem;
    }

    .video-content h2 {
        font-size: 1.5rem;
    }

    .stats-container {
        padding: 3rem 0;
    }

    .stat-val {
        font-size: 2.5rem;
    }

    .steps-container {
        padding: 3rem 0;
    }

    .graphic-circle {
        width: 180px;
        height: 180px;
    }

    .graphic-circle::before {
        width: 220px;
        height: 220px;
    }

    .glow-logo {
        width: 50px;
    }

    .step-num {
        font-size: 1.5rem;
    }

}

@media (max-width: 480px) {
    .hero-inner {
        padding-top: 4.75rem;
    }

    .hero-title {
        font-size: clamp(1.85rem, 10vw, 2.15rem);
    }

    .hero-lead {
        font-size: 0.925rem;
    }

    .btn-hero-mobile-primary,
    .btn-hero-mobile-secondary {
        min-height: 48px;
        font-size: 0.9rem;
    }

    .hero-form-compact {
        padding: 1rem 0.9rem;
    }

    .avatar,
    .avatar-plus {
        width: 36px;
        height: 36px;
    }

    .nav-toggle {
        width: 40px;
        height: 40px;
    }
}

/* ==========================================================================
   Premium Minimalist Footer
   ========================================================================== */
.footer-minimalist {
    position: relative;
    background-color: #0e2228;
    padding: 3rem 0;
    font-family: var(--font-body);
    border-top: 1px solid var(--border-light);
    overflow: hidden;
}

.footer-glow-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-secondary), var(--accent-primary), var(--accent-secondary), transparent);
    opacity: 0.5;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.footer-logo {
    width: 130px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: var(--transition-base);
}

.footer-logo:hover {
    opacity: 1;
}

.footer-contact {
    display: flex;
    gap: 2rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-sec);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    cursor: pointer;
}

.contact-link i {
    color: var(--accent-secondary);
    font-size: 1.25rem;
}

.contact-link:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    font-size: 1.1rem;
    transition: var(--transition-base);
}

.social-links a:hover {
    background: var(--text-primary);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.legal-links a {
    transition: var(--transition-fast);
}

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

.dot-separator {
    opacity: 0.5;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-contact {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 1.5rem;
    }
}

/* ==========================================================================
   Performance Optimizations
   ========================================================================== */
/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    position: relative;
}

.faq-container {
    max-width: 880px;
}

.faq-header h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.faq-header .section-sub {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.faq-list {
    gap: 0.85rem;
}

.faq-item .acc-head h4 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.faq-item .acc-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    transition: background 0.3s ease, color 0.3s ease, transform 0.35s ease;
}

.faq-item.active .acc-icon {
    transform: rotate(180deg);
}

.faq-item .acc-body {
    padding-left: 2.25rem;
    padding-right: 3rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.active .acc-body {
    max-height: 420px;
    margin-top: 0.85rem;
}

.faq-note {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.faq-note a {
    color: var(--text-primary);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 2px;
    margin-left: 0.35rem;
    transition: border-color 0.25s ease, color 0.25s ease;
}

.faq-note a:hover {
    border-bottom-color: var(--accent-primary);
    color: var(--accent-primary);
}

@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 2rem;
    }

    .faq-item .acc-head h4 {
        font-size: 0.95rem;
    }

    .faq-item .acc-body {
        padding-left: 0;
        padding-right: 0;
    }

    .faq-item.active .acc-body {
        max-height: 600px;
    }
}

.video-showcase,
.brands-section,
.about-section,
.stats-section,
.capabilities-section,
.steps-section,
.faq-section,
.footer-minimalist {
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

/* ==========================================================================
   Refinos criativos — Sobre / Soluções / Processo / Stats / Footer
   Linguagem mantida: teal escuro, vidro, brilho frio (teal-claro), branco.
   ========================================================================== */
:root {
    --accent-cool: 120, 200, 220;
    /* brilho frio derivado do teal da marca */
}

/* --- Rótulos de seção viram "etiquetas de sistema" com traço de acento --- */
.about-content .section-tag,
.caps-content .section-tag,
.steps-section .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-transform: uppercase;
    color: rgba(var(--accent-cool), 0.95);
}

.about-content .section-tag::before,
.caps-content .section-tag::before,
.steps-section .section-tag::before {
    content: '';
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, rgba(var(--accent-cool), 0.9), transparent);
}

/* --- Stats: cada número num "card" que levanta, com ícone em chip e glow --- */
.stat-box {
    position: relative;
    padding: 1.75rem 1.5rem;
    border-radius: 18px;
    border: 1px solid transparent;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s ease, background 0.45s ease;
}

.stat-box:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.025);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--accent-cool), 0.1);
    border: 1px solid rgba(var(--accent-cool), 0.2);
    flex-shrink: 0;
}

.stat-icon i {
    color: #d6f0fb;
}

.stat-val {
    text-shadow: 0 0 32px rgba(var(--accent-cool), 0.22);
}

/* --- Sobre: imagem com zoom sutil e cards flutuantes com brilho no hover --- */
.about-visuals .main-img {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
}

.about-visuals:hover .main-img {
    transform: scale(1.02);
}

.floating-card {
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}

.floating-card:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--accent-cool), 0.35);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.55), 0 0 38px rgba(var(--accent-cool), 0.12);
}

/* --- Soluções: barra de acento no item ativo + ícone com glow (não afeta FAQ) --- */
.caps-content .acc-item {
    position: relative;
    overflow: hidden;
}

.caps-content .acc-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, rgba(var(--accent-cool), 0.95), rgba(var(--accent-cool), 0.15));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.caps-content .acc-item.active::before {
    transform: scaleY(1);
}

.caps-content .acc-item:hover {
    border-color: rgba(255, 255, 255, 0.18);
}

.caps-content .acc-item.active {
    box-shadow: 0 0 42px rgba(var(--accent-cool), 0.07);
}

.caps-content .acc-item.active .acc-icon {
    background: rgba(var(--accent-cool), 0.18);
    color: #d6f0fb;
    box-shadow: 0 0 22px rgba(var(--accent-cool), 0.2);
}

/* --- Processo: cards reagem ao hover; anel central pulsa e ganha 2º anel --- */
.step-card {
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s ease, box-shadow 0.45s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--accent-cool), 0.3);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.5), 0 0 38px rgba(var(--accent-cool), 0.1);
}

.step-card:hover .step-num {
    color: rgba(var(--accent-cool), 0.85);
    -webkit-text-stroke: 1px rgba(var(--accent-cool), 0.45);
}

.graphic-circle {
    animation: pulseGlow 4.5s ease-in-out infinite;
}

.graphic-circle::after {
    content: '';
    position: absolute;
    width: 226px;
    height: 226px;
    border-radius: 50%;
    border: 1px solid rgba(var(--accent-cool), 0.16);
    animation: rotate 38s linear infinite reverse;
}

.glow-logo {
    animation: logoBreath 5s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(var(--accent-cool), 0.06);
    }
    50% {
        box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5), 0 0 54px rgba(var(--accent-cool), 0.18);
    }
}

@keyframes logoBreath {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

/* --- Footer: brilho ambiente + linha superior com shimmer --- */
.footer-minimalist::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 120% at 50% -15%, rgba(var(--accent-cool), 0.08), transparent 70%);
    pointer-events: none;
}

.footer-glow-line {
    animation: lineShimmer 6s ease-in-out infinite;
}

@keyframes lineShimmer {
    0%, 100% { opacity: 0.35; width: 50%; }
    50% { opacity: 0.7; width: 66%; }
}

/* Respeita quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
    .graphic-circle,
    .graphic-circle::after,
    .glow-logo,
    .footer-glow-line {
        animation: none;
    }
}

/* ==========================================================================
   WhatsApp flutuante + modal com formulário
   ========================================================================== */
.wa-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    border: none;
    font-size: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    z-index: 9998;
    transition: transform 0.25s ease;
    animation: wa-pulse 2.4s infinite;
}

.wa-fab:hover {
    transform: scale(1.08);
}

@keyframes wa-pulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 16px rgba(37, 211, 102, 0);
    }
}

.wa-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 10, 12, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

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

.wa-modal {
    position: relative;
    width: 100%;
    max-width: 480px;
    max-height: 92vh;
    overflow-y: auto;
    background: rgba(38, 72, 82, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    padding: 2.25rem 2rem 1.75rem;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
    transform: scale(0.94) translateY(16px);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wa-modal-overlay.active .wa-modal {
    transform: none;
}

.wa-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background 0.2s ease;
}

.wa-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.wa-modal-head {
    margin-bottom: 1.25rem;
}

.wa-modal-head h3 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
    color: #fff;
}

.wa-modal-head p {
    font-size: 0.9rem;
    color: var(--text-sec);
}

.wa-submit {
    width: 100%;
    margin-top: 0.6rem;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.wa-submit i {
    font-size: 1.25rem;
}

.wa-submit:hover {
    background: #1faa53;
}

.wa-submit:active {
    transform: scale(0.99);
}

.wa-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.wa-feedback {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    text-align: center;
}

.wa-feedback.error {
    color: #fca5a5;
}

.wa-feedback.success {
    color: #86efac;
}

@media (max-width: 768px) {
    .wa-fab {
        width: 56px;
        height: 56px;
        bottom: 18px;
        right: 18px;
        font-size: 30px;
    }

    .wa-modal {
        padding: 2rem 1.25rem 1.5rem;
    }
}