/*
 * institutional.css — AutoCerto Landing Page · Redesign Dark 2026
 * Mobile-first · CSS puro · Dark theme com acentos cyan
 * ─────────────────────────────────────────────────────────────────────
 * Fundos escuros: #07111D / #0A1828 / #0A1C34
 * Destaque: #00B4D8 (cyan)
 * Break claro: #fff (apenas equipe — contraste intencional)
 */

@import url('utils/base.css');

/* ══════════════════════════════════════════════════════
   TOKENS GLOBAIS
══════════════════════════════════════════════════════ */
:root {
    --sp-1:   8px;
    --sp-2:  16px;
    --sp-3:  24px;
    --sp-4:  32px;
    --sp-5:  48px;
    --sp-6:  64px;
    --sp-7:  96px;
    --sp-8: 128px;

    --section-y: clamp(80px, 10vw, 140px);
    --section-x: clamp(20px, 5vw, 40px);

    --r-sm:  4px;
    --r-md:  8px;
    --r-lg: 12px;
    --r-xl: 16px;
    --r-2xl: 20px;

    --sh-xs:   0 1px  4px rgba(0,0,0,.14);
    --sh-sm:   0 2px 10px rgba(0,0,0,.18);
    --sh-md:   0 8px 28px rgba(0,0,0,.28);
    --sh-lg:  0 20px 56px rgba(0,0,0,.36);
    --sh-xl:  0 32px 80px rgba(0,0,0,.44);
    --sh-cyan: 0  0  40px rgba(0,180,216,.28);

    --ease:     cubic-bezier(.4, 0, .2, 1);
    --t-fast:  .18s var(--ease);
    --t-base:  .28s var(--ease);
    --t-slow:  .48s var(--ease);
    --t-xslow: .65s var(--ease);
}

/* ══════════════════════════════════════════════════════
   BASE
══════════════════════════════════════════════════════ */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ══════════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s cubic-bezier(.4,0,.2,1), transform .5s cubic-bezier(.4,0,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-left {
    opacity: 0;
    transform: translateX(-22px);
    transition: opacity .5s cubic-bezier(.4,0,.2,1), transform .5s cubic-bezier(.4,0,.2,1);
}
.reveal-left.is-visible { opacity: 1; transform: translateX(0); }

.reveal-right {
    opacity: 0;
    transform: translateX(22px);
    transition: opacity .5s cubic-bezier(.4,0,.2,1), transform .5s cubic-bezier(.4,0,.2,1);
}
.reveal-right.is-visible { opacity: 1; transform: translateX(0); }

/* ══════════════════════════════════════════════════════
   UTILITÁRIOS DE TIPOGRAFIA / SEÇÃO
══════════════════════════════════════════════════════ */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--color-cyan);
    margin-bottom: var(--sp-2);
}
.eyebrow--light { color: rgba(255,255,255,.55); }

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--sp-7);
}
.section-title {
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-dark-blue);
    margin-bottom: var(--sp-2);
    letter-spacing: -.025em;
}
.section-sub {
    font-size: clamp(.9rem, 1.4vw, 1rem);
    line-height: 1.8;
    color: #64748B;
    max-width: 540px;
    margin: 0 auto;
}
.text-cyan  { color: var(--color-cyan); }
.text-white { color: #fff; }

/* Overrides para sections escuras */
.section--dark .section-title,
.hiw .section-title,
.features .section-title,
.testimonials .section-title { color: #fff; }

.section--dark .section-sub,
.hiw .section-sub,
.features .section-sub,
.testimonials .section-sub { color: rgba(255,255,255,.5); }

/* ══════════════════════════════════════════════════════
   BOTÕES — modificadores de tamanho
══════════════════════════════════════════════════════ */
.btn--lg {
    padding: .78rem 1.9rem !important;
    font-size: .92rem !important;
    border-radius: 5px !important;
    letter-spacing: .01em;
    font-weight: 600 !important;
}
.btn--xl {
    padding: .9rem 2.3rem !important;
    font-size: .98rem !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
}

/* ══════════════════════════════════════════════════════
   BOTÕES — fundo sobe de baixo no hover
══════════════════════════════════════════════════════ */

/* Primário: fundo cyan + texto branco → hover: fundo branco sobe, texto cyan */
.btn-ac-primary {
    background: #00B4D8;
    border-color: #00B4D8;
    color: #fff;
    transition: color var(--t-base), border-color var(--t-base) !important;
}
.btn-ac-primary::before {
    background: #fff;
}
.btn-ac-primary:hover {
    color: #00B4D8;
    border-color: #00B4D8;
}
.btn-ac-primary:active { filter: brightness(.96); }

/* Secundário: azul translúcido + texto branco → hover: fundo branco sobe, texto cyan */
.btn-ac-gray {
    background: rgba(0,180,216,.18);
    border-color: rgba(0,180,216,.55);
    color: #fff;
    transition: color var(--t-base), border-color var(--t-base) !important;
}
.btn-ac-gray::before {
    background: #fff;
    display: block !important;
}
.btn-ac-gray::after { display: none !important; }
.btn-ac-gray:hover {
    color: #00B4D8;
    border-color: #00B4D8;
}
.btn-ac-gray:active { filter: brightness(.96); }


/* ══════════════════════════════════════════════════════
   §1 · HERO
══════════════════════════════════════════════════════ */
.hero {
    position: relative;
    background-color: #0A1C34;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: var(--section-y) var(--section-x);
    padding-top: clamp(100px, 14vw, 130px);
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.032) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}

.hero__photo {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to right,
            #0A1C34     0%,
            #0A1C34     26%,
            rgba(10,28,52,.78) 48%,
            rgba(10,28,52,.18) 72%,
            transparent 90%
        ),
        url('/images/institutional/portrait-mechanic-2.jpg') right center / cover no-repeat;
    pointer-events: none;
    z-index: 0;
}

.hero__glow {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,180,216,.1) 0%, transparent 65%);
    filter: blur(80px);
    top: -60px;
    right: 5%;
    pointer-events: none;
    z-index: 0;
}

.hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1360px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-6);
    align-items: center;
}

.hero__content { max-width: 620px; }

/* Título: mais contido, menos exagerado */
.hero__title {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.08;
    color: #fff;
    margin-bottom: var(--sp-3);
    letter-spacing: -.03em;
}
.hero__title-accent {
    color: var(--color-cyan);
    display: block;
}

.hero__sub {
    font-size: clamp(.9rem, 1.6vw, 1.05rem);
    line-height: 1.8;
    color: rgba(255,255,255,.62);
    max-width: 480px;
    margin-bottom: var(--sp-5);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
    margin-bottom: var(--sp-5);
}

.hero__stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--sp-4);
    padding-top: var(--sp-3);
    border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat strong {
    display: block;
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -.02em;
}
.hero-stat span {
    font-size: .68rem;
    color: rgba(255,255,255,.45);
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
}
.hero-stat__div {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,.14);
}

/* ══════════════════════════════════════════════════════
   HERO VISUAL — card do mecânico (minimalista)
══════════════════════════════════════════════════════ */
.hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Halo ambiente atrás do card */
.hero__visual::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0,180,216,.16) 0%, transparent 68%);
    filter: blur(48px);
    pointer-events: none;
    z-index: 0;
}

/* ── Card base — glassmorphism sobre o hero escuro ── */
.mock-card {
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.22);
    box-shadow:
        0  4px  8px rgba(0,0,0,.18),
        0 24px 56px rgba(0,0,0,.45);
    width: 320px;
    flex-shrink: 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

/* ── Header: avatar + nome + meta inline ── */
.mock-card__header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mock-card__photo {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    background: linear-gradient(135deg, #0B3A5C 0%, #0284A8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,.25);
}
.mock-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.mock-card__identity {
    flex: 1;
    min-width: 0;
}
.mock-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.mock-card__meta {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    font-size: .75rem;
    color: rgba(255,255,255,.6);
}
.mock-card__star  { color: #FBBF24; }
.mock-card__score { font-weight: 700; color: #fff; }
.mock-card__sep   { color: rgba(255,255,255,.3); }
.mock-card__status        { color: rgba(255,255,255,.55); font-weight: 500; }
.mock-card__status.online { color: #4ADE80; font-weight: 600; }

/* ── Tags de especialidade ── */
.mock-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
}
.mock-card__tags span {
    font-size: .68rem;
    font-weight: 600;
    padding: .22rem .65rem;
    border-radius: 3px;
    background: rgba(0,180,216,.18);
    color: #7DD3FC;
    border: 1px solid rgba(0,180,216,.35);
    white-space: nowrap;
}

/* ── Rodapé: CTA + badge verificado ── */
.mock-card__footer {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,.12);
}
.mock-card__cta {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .6rem 1rem;
    border-radius: 5px;
    font-size: .83rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    background: #00B4D8;
    transition: background var(--t-fast);
    font-family: inherit;
}
.mock-card__cta:hover { background: #0098B8; }

.mock-card__verified {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .65rem;
    font-weight: 600;
    color: #4ADE80;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Scroll hint ── */
.hero__scroll-hint {
    position: absolute;
    bottom: var(--sp-3);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: .68rem;
    color: rgba(255,255,255,.28);
    text-decoration: none;
    transition: color var(--t-base);
    z-index: 1;
    white-space: nowrap;
    letter-spacing: .07em;
    text-transform: uppercase;
}
.hero__scroll-hint:hover { color: rgba(255,255,255,.6); }
.hero__scroll-hint svg { animation: bounce-down 2.2s ease-in-out infinite; }
@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    55%       { transform: translateY(4px); }
}


/* ══════════════════════════════════════════════════════
   §2 · COMO FUNCIONA — dark
══════════════════════════════════════════════════════ */
.hiw {
    padding: var(--section-y) var(--section-x);
    background: #07111D;
    position: relative;
}
.hiw::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.022) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}
.hiw .section-header { position: relative; z-index: 1; }

.hiw__steps {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--sp-3);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hiw__step {
    position: relative;
    background: rgba(255,255,255,.04);
    border-radius: var(--r-xl);
    border: 1px solid rgba(255,255,255,.08);
    padding: var(--sp-6) var(--sp-4);
    text-align: center;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.3);
    transition: border-color var(--t-base), box-shadow var(--t-base), background var(--t-slow);
    flex: 1;
}
.hiw__step:hover {
    border-color: rgba(0,180,216,.3);
    box-shadow: 0 0 0 1px rgba(0,180,216,.1), 0 16px 48px rgba(0,0,0,.4);
    background: rgba(255,255,255,.07);
}

.hiw__step-num {
    position: absolute;
    bottom: -14px;
    right: 10px;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(0,180,216,.06);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -.04em;
}

.hiw__step-icon {
    width: 68px; height: 68px;
    border-radius: 10px;
    background: rgba(0,180,216,.12);
    border: 1px solid rgba(0,180,216,.25);
    color: var(--color-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--sp-3);
    box-shadow: 0 0 28px rgba(0,180,216,.18), 0 0 0 6px rgba(0,180,216,.06);
    transition: background var(--t-base), box-shadow var(--t-base), transform var(--t-base);
}
.hiw__step:hover .hiw__step-icon {
    background: rgba(0,180,216,.2);
    box-shadow: 0 0 36px rgba(0,180,216,.28), 0 0 0 8px rgba(0,180,216,.1);
    transform: scale(1.05);
}

.hiw__step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--sp-1);
}
.hiw__step p {
    font-size: .88rem;
    line-height: 1.75;
    color: rgba(255,255,255,.5);
    margin: 0;
}

.hiw__connector {
    color: var(--color-cyan);
    transform: rotate(90deg);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .5;
}


/* ══════════════════════════════════════════════════════
   §3 · DIFERENCIAIS / FEATURES — dark, redesign
══════════════════════════════════════════════════════ */
.features {
    padding: var(--section-y) var(--section-x);
    background: #0A1828;
    position: relative;
}
.features::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}
/* Separador de seção — linha luminosa top */
.features::after {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,180,216,.25), transparent);
    pointer-events: none;
}
.features .section-header { position: relative; z-index: 1; }

.features__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.feature-card {
    position: relative;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r-xl);
    padding: var(--sp-5) var(--sp-4);
    overflow: hidden;
    transition:
        border-color var(--t-base),
        box-shadow   var(--t-base),
        background   var(--t-slow);
}
.feature-card:hover {
    border-color: rgba(0,180,216,.32);
    box-shadow: 0 0 0 1px rgba(0,180,216,.1), 0 24px 60px rgba(0,0,0,.4);
    background: rgba(255,255,255,.065);
}

.feature-card__top {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    margin-bottom: var(--sp-3);
}

.feature-card__icon {
    width: 50px; height: 50px;
    border-radius: 8px;
    background: rgba(0,180,216,.1);
    border: 1px solid rgba(0,180,216,.22);
    color: var(--color-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(0,180,216,.14);
    transition: background var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}
.feature-card:hover .feature-card__icon {
    background: rgba(0,180,216,.2);
    color: #fff;
    transform: scale(1.06);
    box-shadow: 0 0 32px rgba(0,180,216,.3);
}

.feature-card__tag {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: rgba(0,180,216,.08);
    color: var(--color-cyan);
    border: 1px solid rgba(0,180,216,.18);
    padding: 3px 10px;
    border-radius: 4px;
    transition: background var(--t-base);
}
.feature-card:hover .feature-card__tag {
    background: rgba(0,180,216,.16);
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--sp-1);
}
.feature-card p {
    font-size: .88rem;
    line-height: 1.75;
    color: rgba(255,255,255,.5);
    margin: 0;
}

.feature-card__accent {
    position: absolute;
    bottom: 0; left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(to right, var(--color-cyan), rgba(0,180,216,.4));
    transition: width .44s cubic-bezier(.4,0,.2,1);
}
.feature-card:hover .feature-card__accent { width: 100%; }


/* ══════════════════════════════════════════════════════
   §4 · PARA PRESTADORES — imagem mais visível, dark card
══════════════════════════════════════════════════════ */
.for-providers {
    position: relative;
    background:
        linear-gradient(120deg, rgba(7,17,29,.86) 0%, rgba(10,28,52,.72) 52%, rgba(7,17,29,.86) 100%),
        url('/images/institutional/mechanical-business.jpg') center / cover no-repeat;
    overflow: hidden;
    padding: var(--section-y) var(--section-x);
}

/* Separador luminoso no topo */
.for-providers::before {
    content: '';
    position: absolute;
    top: 0; left: 8%; right: 8%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,180,216,.3), transparent);
    z-index: 1;
}
/* Glow lateral */
.for-providers::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,180,216,.15) 0%, transparent 65%);
    filter: blur(72px);
    top: -80px; right: -40px;
    pointer-events: none;
    z-index: 0;
}

.for-providers__inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-7);
    align-items: center;
}

.for-providers__text h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: var(--sp-3);
    line-height: 1.15;
    letter-spacing: -.025em;
}
.for-providers__text p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,.58);
    max-width: 480px;
    margin-bottom: var(--sp-4);
}

.for-providers__benefits {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}
.for-providers__benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .92rem;
    color: rgba(255,255,255,.78);
    font-weight: 500;
}
.for-providers__benefits svg { flex-shrink: 0; }

/* Card glassmorphism — dark premium */
.for-providers__card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--r-2xl);
    padding: var(--sp-6) var(--sp-5);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--sp-3);
    box-shadow:
        0 32px 80px rgba(0,0,0,.5),
        inset 0 1px 0 rgba(255,255,255,.12),
        inset 0 0 0 1px rgba(255,255,255,.04);
    transition: border-color var(--t-base), box-shadow var(--t-base);
}
.for-providers__card:hover {
    border-color: rgba(0,180,216,.3);
    box-shadow:
        0 40px 96px rgba(0,0,0,.55),
        inset 0 1px 0 rgba(255,255,255,.15),
        0 0 0 1px rgba(0,180,216,.1);
}

.for-providers__card-icon {
    width: 68px; height: 68px;
    border-radius: 10px;
    background: rgba(0,180,216,.12);
    border: 1px solid rgba(0,180,216,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 32px rgba(0,180,216,.2);
}
.for-providers__card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: -.015em;
}
.for-providers__card p {
    font-size: .9rem;
    line-height: 1.7;
    color: rgba(255,255,255,.52);
    margin: 0;
    max-width: 300px;
}

.provider-cta { width: 100%; max-width: 300px; text-align: center; }

.for-providers__note {
    font-size: .68rem;
    color: rgba(255,255,255,.32);
    letter-spacing: .06em;
}


/* ══════════════════════════════════════════════════════
   §5 · DEPOIMENTOS — dark, cards redesenhados
══════════════════════════════════════════════════════ */
.testimonials {
    padding: var(--section-y) var(--section-x);
    background: #07111D;
    overflow: hidden;
    position: relative;
}
.testimonials::before {
    content: '';
    position: absolute;
    top: 0; left: 8%; right: 8%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,180,216,.2), transparent);
}
.testimonials .section-header { position: relative; z-index: 1; }

.reviews-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.reviews-carousel {
    display: flex;
    gap: 20px;
    overflow: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 20px 4px;
    width: 100%;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.reviews-carousel::-webkit-scrollbar { display: none; }

/* Card de depoimento — dark redesign */
.review-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: rgba(255,255,255,.05);
    border-radius: var(--r-xl);
    padding: var(--sp-5) var(--sp-4);
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    border: 1px solid rgba(255,255,255,.09);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
    transition: border-color var(--t-base), box-shadow var(--t-base), background var(--t-slow);
}
.review-card:hover {
    border-color: rgba(0,180,216,.28);
    box-shadow: 0 0 0 1px rgba(0,180,216,.1), 0 16px 48px rgba(0,0,0,.4);
    background: rgba(255,255,255,.075);
}
/* Detalhe luminoso de fundo */
.review-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,180,216,.07) 0%, transparent 70%);
    pointer-events: none;
}

/* Aspas decorativas */
.review-card__quote {
    position: absolute;
    top: 12px; right: 18px;
    font-size: 4.5rem;
    line-height: 1;
    color: rgba(0,180,216,.08);
    font-family: Georgia, serif;
    font-weight: 900;
    pointer-events: none;
    user-select: none;
}

.review-user {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
}
.review-avatar {
    width: 44px; height: 44px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: #1E3A5F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .9rem;
    color: rgba(255,255,255,.85);
    border: 1px solid rgba(255,255,255,.1);
}
.review-avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}
.review-user h4 {
    font-size: .88rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 2px;
}
.review-user span {
    font-size: .68rem;
    color: rgba(255,255,255,.38);
}

.review-stars { font-size: .88rem; display: flex; gap: 2px; }
.star.filled { color: #F59E0B; }
.star.empty  { color: rgba(255,255,255,.15); }

.review-text {
    font-size: .87rem;
    line-height: 1.75;
    color: rgba(255,255,255,.6);
    margin: 0;
    flex: 1;
    font-style: italic;
}

/* Botões do carousel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--sh-md);
    transition: background var(--t-base), border-color var(--t-base);
    flex-shrink: 0;
}
.carousel-btn:hover {
    background: var(--color-cyan);
    border-color: var(--color-cyan);
    transform: translateY(-50%);
}
.carousel-btn.prev { left: -20px; }
.carousel-btn.next { right: -20px; }
.carousel-btn::after { font-size: 22px; }
.carousel-btn.prev::after { content: '‹'; }
.carousel-btn.next::after { content: '›'; }


/* ══════════════════════════════════════════════════════
   §6 · EQUIPE — dark theme
══════════════════════════════════════════════════════ */
.team {
    padding: var(--section-y) var(--section-x);
    background: #0A1828;
    position: relative;
}
.team::before {
    content: '';
    position: absolute;
    top: 0; left: 8%; right: 8%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,180,216,.2), transparent);
}
.team .section-title { color: #fff; }
.team .section-sub   { color: rgba(255,255,255,.5); }

.team__inner { max-width: 980px; margin: 0 auto; position: relative; z-index: 1; }

.team-carousel {
    display: grid;
    overflow: hidden;
    border-radius: var(--r-2xl);
    position: relative;
}

.team-slide {
    grid-row: 1;
    grid-column: 1;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: var(--sp-6);
    align-items: center;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: var(--r-2xl);
    padding: var(--sp-7) var(--sp-6);
    opacity: 0;
    pointer-events: none;
    will-change: opacity, transform;
    box-shadow: 0 8px 40px rgba(0,0,0,.3);
}
.team-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.team-slide-photo {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(145deg, #0B2040, #0B3A68);
    box-shadow: 0 16px 48px rgba(0,0,0,.45), 0 0 0 3px rgba(0,180,216,.18);
    flex-shrink: 0;
    margin: 0 auto;
    position: relative;
}
.team-slide-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.1);
    pointer-events: none;
}
.team-slide-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.team-slide-eyebrow {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--color-cyan);
    display: block;
    margin-bottom: var(--sp-1);
}
.team-slide-info h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: -.02em;
}
.team-slide-role {
    font-size: .83rem;
    font-weight: 600;
    color: var(--color-cyan);
    display: block;
    margin-bottom: var(--sp-3);
    letter-spacing: .02em;
}
.team-slide-bio {
    font-size: .9rem;
    line-height: 1.8;
    color: rgba(255,255,255,.52);
    margin-bottom: var(--sp-3);
}
.team-slide-divider {
    height: 1px;
    background: rgba(255,255,255,.1);
    margin-bottom: var(--sp-2);
}
.team-slide-school {
    font-size: .73rem;
    color: rgba(255,255,255,.35);
    font-weight: 500;
}

.team-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--sp-2);
    margin-top: var(--sp-4);
    flex-wrap: wrap;
}
.team-nav-btn {
    width: 46px; height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--t-base), border-color var(--t-base), color var(--t-base);
    flex-shrink: 0;
}
.team-nav-btn svg { width: 18px; height: 18px; }
.team-nav-btn:hover {
    background: var(--color-cyan);
    border-color: var(--color-cyan);
    color: #fff;
}

.team-dots { display: flex; align-items: center; gap: var(--sp-2); }
.team-dot {
    width: 44px; height: 44px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.05);
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
    flex-shrink: 0;
}
.team-dot img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    filter: grayscale(50%) brightness(.7);
    transition: filter var(--t-base);
}
.team-dot:hover img,
.team-dot.active img { filter: grayscale(0%) brightness(1); }
.team-dot.active {
    border-color: var(--color-cyan);
    box-shadow: 0 0 0 3px rgba(0,180,216,.22);
    transform: scale(1.08);
}
.team-dot:hover:not(.active) {
    border-color: rgba(0,180,216,.35);
    transform: scale(1.04);
}


/* ══════════════════════════════════════════════════════
   §7 · CTA FINAL — imagem mais visível
══════════════════════════════════════════════════════ */
.final-cta {
    padding: var(--section-y) var(--section-x);
    background:
        linear-gradient(135deg, rgba(0,155,190,.80) 0%, rgba(0,125,160,.84) 100%),
        url('/images/institutional/client-driver.jpg') center / cover no-repeat;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}
.final-cta::after {
    content: '';
    position: absolute;
    width: 540px; height: 540px;
    background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 65%);
    filter: blur(72px);
    top: -160px; left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.final-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-3);
}
.final-cta h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -.025em;
}
.final-cta p {
    font-size: clamp(.9rem, 1.4vw, 1.05rem);
    line-height: 1.8;
    color: rgba(255,255,255,.82);
    max-width: 540px;
    margin: 0;
}

.final-cta .btn-ac-primary {
    background: #fff !important;
    color: #007EA8 !important;
    border-color: #fff !important;
    box-shadow: 0 10px 32px rgba(0,0,0,.2);
    font-weight: 700 !important;
}
.final-cta .btn-ac-primary::before {
    background: var(--color-dark-blue) !important;
}
.final-cta .btn-ac-primary:hover {
    color: #fff !important;
    border-color: var(--color-dark-blue) !important;
}

.final-cta__note {
    font-size: .68rem;
    color: rgba(255,255,255,.48);
    letter-spacing: .06em;
    margin-top: var(--sp-1);
}


/* ══════════════════════════════════════════════════════
   RESPONSIVO — mobile-first
══════════════════════════════════════════════════════ */

/* ── Tablet ≥ 640px ── */
@media (min-width: 640px) {
    .hiw__steps { flex-direction: row; align-items: flex-start; }
    .hiw__connector {
        transform: rotate(0);
        margin-top: calc(68px / 2 + 24px);
    }
    .features__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Desktop ≥ 1024px ── */
@media (min-width: 1024px) {
    .hero__inner { grid-template-columns: 54% 1fr; }

    .hiw__steps { align-items: stretch; }
    .hiw__step  { max-width: none; }

    .features__grid { grid-template-columns: repeat(3, 1fr); }

    .for-providers__inner { grid-template-columns: 1fr 420px; }

    .review-card { flex-basis: calc(33.33% - 14px); }
}

/* ── Large ≥ 1280px ── */
@media (min-width: 1280px) {
    .review-card { flex-basis: 340px; }
}

/* ── Mobile < 640px ── */
@media (max-width: 639px) {
    .hero { padding-top: 90px; }
    .hero__visual { display: none; }
    .hero__actions { flex-direction: column; }
    .hero__actions a { width: 100%; text-align: center; }

    .hiw__connector { display: none; }

    .team-slide {
        grid-template-columns: 1fr !important;
        text-align: center;
        padding: var(--sp-4) var(--sp-3);
        gap: var(--sp-3);
    }
    .team-slide-photo { max-width: 150px; }
    .team-slide-info h3 { font-size: 1.5rem; }

    .team-dots { gap: var(--sp-1); }
    .team-dot  { width: 36px; height: 36px; border-radius: 4px; }

    .carousel-btn.prev { left: -8px; }
    .carousel-btn.next { right: -8px; }

    .review-card { flex-basis: 280px; }
}


/* ══════════════════════════════════════════════════════
   TEMA LIGHT — institucional
   Aplica quando o modo escuro (ac-dark) não está ativo.

   PALETA DE CONTRASTE (WCAG AA em fundos claros):
   Texto primário ............. #0B1F3A  (~15:1 no branco)
   Texto secundário ........... #475569  (~7.4:1)
   Texto auxiliar ............. #64748B  (~5.7:1)
   Accent/cyan para texto ..... #005F87  (~6.3:1) ← substitui #00B4D8 que só tem 2.4:1
   Accent título (grande) ..... #006B8F  (~5.4:1)
   Estrelas preenchidas ....... #B45309  (~4.6:1 no branco)

   Sections com background-image (for-providers, final-cta)
   mantêm cor escura — não são tocadas aqui.
══════════════════════════════════════════════════════ */

/* ────────────────────────────────────────────────────
   BOTÕES — corrige contraste no fundo claro
────────────────────────────────────────────────────── */
/* Primary: mantém cyan mas corrige hover (fill branco → fill navy + text branco) */
html:not(.ac-dark) .btn-ac-primary::before      { background: #0B1F3A; }
html:not(.ac-dark) .btn-ac-primary:hover        { color: #fff; border-color: #0B1F3A; }

/* Eyebrow — cor global em fundo claro (texto pequeno, precisa de contraste alto) */
html:not(.ac-dark) .eyebrow,
html:not(.ac-dark) .eyebrow--light { color: #005F87; }

/* text-cyan usado em títulos */
html:not(.ac-dark) .text-cyan { color: #006B8F; }

/* ────────────────────────────────────────────────────
   HERO
────────────────────────────────────────────────────── */
html:not(.ac-dark) .hero { background-color: #F4F6F8; }
html:not(.ac-dark) .hero__grid {
    background-image: radial-gradient(circle, rgba(11,31,58,.04) 1px, transparent 1px);
}
html:not(.ac-dark) .hero__photo {
    background:
        linear-gradient(
            to right,
            #F4F6F8     0%,
            #F4F6F8     26%,
            rgba(244,246,248,.9) 48%,
            rgba(244,246,248,.2) 72%,
            transparent 92%
        ),
        url('/images/institutional/portrait-mechanic-2.jpg') right center / cover no-repeat;
}
html:not(.ac-dark) .hero__glow {
    background: radial-gradient(circle, rgba(0,95,135,.08) 0%, transparent 65%);
}
html:not(.ac-dark) .hero__title         { color: #0B1F3A; }
html:not(.ac-dark) .hero__title-accent  { color: #006B8F; }   /* grande — contraste 5.4:1 ✓ */
html:not(.ac-dark) .hero__sub           { color: #475569; }   /* 7.4:1 ✓ */
html:not(.ac-dark) .hero__stats         { border-top-color: rgba(11,31,58,.1); }
html:not(.ac-dark) .hero-stat strong    { color: #0B1F3A; }
html:not(.ac-dark) .hero-stat span      { color: #64748B; }   /* 5.7:1 ✓ — era #94A3B8 (2.9:1) */
html:not(.ac-dark) .hero-stat__div      { background: rgba(11,31,58,.14); }
html:not(.ac-dark) .hero__scroll-hint   { color: rgba(11,31,58,.35); }
html:not(.ac-dark) .hero__scroll-hint:hover { color: rgba(11,31,58,.7); }

/* Botão secundário "Sou prestador" — text branco em fundo translúcido = invisível no claro */
html:not(.ac-dark) .hero .btn-ac-gray {
    background: #0B1F3A;
    border-color: #0B1F3A;
    color: #fff;
}
html:not(.ac-dark) .hero .btn-ac-gray::before   { background: #005F87; }
html:not(.ac-dark) .hero .btn-ac-gray:hover      { color: #fff; border-color: #005F87; }

/* Mock card no hero — light */
html:not(.ac-dark) .hero__visual::before {
    background: radial-gradient(ellipse, rgba(0,95,135,.1) 0%, transparent 68%);
}
html:not(.ac-dark) .mock-card {
    background: #fff;
    border-color: #CBD5E1;
    border-width: 1px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 4px 24px rgba(11,31,58,.12);
}
html:not(.ac-dark) .mock-card__name     { color: #0B1F3A; }
html:not(.ac-dark) .mock-card__meta     { color: #64748B; }
html:not(.ac-dark) .mock-card__score    { color: #0B1F3A; }
html:not(.ac-dark) .mock-card__sep      { color: rgba(11,31,58,.2); }
html:not(.ac-dark) .mock-card__status   { color: #64748B; }
html:not(.ac-dark) .mock-card__status.online { color: #15803D; }  /* verde legível no claro */
html:not(.ac-dark) .mock-card__tags span {
    background: #E0F2FE;
    color: #005F87;    /* era #0284C7 (3.8:1) → agora 6.3:1 ✓ */
    border-color: #BAE6FD;
}
html:not(.ac-dark) .mock-card__footer   { border-top-color: #E2E8F0; }
html:not(.ac-dark) .mock-card__cta      { background: #006B8F; }   /* cyan escuro no claro */
html:not(.ac-dark) .mock-card__cta:hover { background: #005F87; }
html:not(.ac-dark) .mock-card__verified { color: #15803D; }
html:not(.ac-dark) .mock-card__star     { color: #B45309; }  /* estrela mais escura no claro */

/* ────────────────────────────────────────────────────
   §2 · COMO FUNCIONA
────────────────────────────────────────────────────── */
html:not(.ac-dark) .hiw { background-color: #F4F6F8; }
html:not(.ac-dark) .hiw::before {
    background-image: radial-gradient(circle, rgba(11,31,58,.03) 1px, transparent 1px);
}
html:not(.ac-dark) .hiw .section-title  { color: #0B1F3A !important; }
html:not(.ac-dark) .hiw .section-sub    { color: #475569 !important; }
html:not(.ac-dark) .hiw__step {
    background: #fff;
    border-color: #CBD5E1;
    box-shadow: 0 2px 10px rgba(11,31,58,.06);
}
html:not(.ac-dark) .hiw__step:hover {
    background: #F0F9FF;
    border-color: #7DD3FC;
    box-shadow: 0 4px 20px rgba(0,95,135,.12);
}
html:not(.ac-dark) .hiw__step-num       { color: rgba(0,95,135,.08); }
html:not(.ac-dark) .hiw__step h3        { color: #0B1F3A; }
html:not(.ac-dark) .hiw__step p         { color: #475569; }  /* era #64748B — levemente melhor */
/* Ícone do passo — mais visível no fundo branco */
html:not(.ac-dark) .hiw__step-icon {
    background: rgba(0,95,135,.12);
    border-color: rgba(0,95,135,.32);
    color: #005F87;
    box-shadow: 0 0 24px rgba(0,95,135,.18), 0 0 0 6px rgba(0,95,135,.06);
}
html:not(.ac-dark) .hiw__step:hover .hiw__step-icon {
    background: rgba(0,95,135,.2);
    box-shadow: 0 0 32px rgba(0,95,135,.28), 0 0 0 8px rgba(0,95,135,.1);
}
/* Seta entre steps */
html:not(.ac-dark) .hiw__connector { color: #005F87; opacity: 1; }

/* ────────────────────────────────────────────────────
   §3 · DIFERENCIAIS
────────────────────────────────────────────────────── */
html:not(.ac-dark) .features { background-color: #fff; }
html:not(.ac-dark) .features::before {
    background-image: radial-gradient(circle, rgba(11,31,58,.025) 1px, transparent 1px);
}
html:not(.ac-dark) .features::after {
    background: linear-gradient(to right, transparent, rgba(0,95,135,.18), transparent);
}
html:not(.ac-dark) .features .section-title { color: #0B1F3A !important; }
html:not(.ac-dark) .features .section-sub   { color: #475569 !important; }
html:not(.ac-dark) .feature-card {
    background: #F8FAFC;
    border-color: #CBD5E1;
    border-width: 1px;
}
html:not(.ac-dark) .feature-card:hover {
    background: #F0F9FF;
    border-color: #7DD3FC;
    box-shadow: 0 4px 20px rgba(0,95,135,.1);
}
html:not(.ac-dark) .feature-card h3 { color: #0B1F3A; }
html:not(.ac-dark) .feature-card p  { color: #475569; }
/* Tag do card — texto legível no fundo azul-claro */
html:not(.ac-dark) .feature-card__tag {
    background: #E0F2FE;
    color: #005F87;    /* era #0284C7 (3.8:1) → agora 6.3:1 ✓ */
    border-color: #BAE6FD;
}
html:not(.ac-dark) .feature-card:hover .feature-card__tag { background: #BAE6FD; }
/* Ícone do feature card — mais visível em fundo branco */
html:not(.ac-dark) .feature-card__icon {
    background: rgba(0,95,135,.1);
    border-color: rgba(0,95,135,.28);
    color: #005F87;
    box-shadow: 0 0 18px rgba(0,95,135,.16);
}
html:not(.ac-dark) .feature-card:hover .feature-card__icon {
    background: rgba(0,95,135,.18);
    color: #005F87;
    box-shadow: 0 0 28px rgba(0,95,135,.26);
}
/* Linha accent na base do card */
html:not(.ac-dark) .feature-card__accent {
    background: linear-gradient(to right, #005F87, rgba(0,95,135,.3));
}

/* ────────────────────────────────────────────────────
   §5 · DEPOIMENTOS
────────────────────────────────────────────────────── */
html:not(.ac-dark) .testimonials { background-color: #F4F6F8; }
html:not(.ac-dark) .testimonials::before {
    background: linear-gradient(to right, transparent, rgba(0,95,135,.18), transparent);
}
html:not(.ac-dark) .testimonials .section-title { color: #0B1F3A !important; }
html:not(.ac-dark) .testimonials .section-sub   { color: #475569 !important; }
html:not(.ac-dark) .review-card {
    background: #fff;
    border-color: #CBD5E1;
    box-shadow: 0 2px 10px rgba(11,31,58,.06);
}
html:not(.ac-dark) .review-card::before {
    background: radial-gradient(circle, rgba(0,95,135,.04) 0%, transparent 70%);
}
html:not(.ac-dark) .review-card:hover {
    background: #F0F9FF;
    border-color: #7DD3FC;
    box-shadow: 0 4px 16px rgba(0,95,135,.1);
}
html:not(.ac-dark) .review-user h4  { color: #0B1F3A; }
html:not(.ac-dark) .review-user span { color: #64748B; }  /* era #94A3B8 (2.9:1) → agora 5.7:1 ✓ */
html:not(.ac-dark) .review-avatar {
    background: #E0F2FE;
    color: #005F87;      /* era #0284C7 (3.8:1) → agora 6.3:1 ✓ */
    border-color: #BAE6FD;
}
html:not(.ac-dark) .review-text  { color: #475569; }
/* Estrelas — ouro mais escuro para contraste no branco */
html:not(.ac-dark) .star.filled  { color: #B45309; }  /* era #F59E0B (1.7:1) → agora 4.6:1 ✓ */
html:not(.ac-dark) .star.empty   { color: #CBD5E1; }
/* Botões do carrossel */
html:not(.ac-dark) .carousel-btn {
    background: #fff;
    border-color: #CBD5E1;
    color: #0B1F3A;
    box-shadow: 0 2px 8px rgba(11,31,58,.08);
}
html:not(.ac-dark) .carousel-btn:hover { background: #005F87; border-color: #005F87; color: #fff; }

/* ────────────────────────────────────────────────────
   §6 · EQUIPE
────────────────────────────────────────────────────── */
html:not(.ac-dark) .team { background-color: #fff; }
html:not(.ac-dark) .team::before {
    background: linear-gradient(to right, transparent, rgba(0,95,135,.15), transparent);
}
html:not(.ac-dark) .team .section-title { color: #0B1F3A !important; }
html:not(.ac-dark) .team .section-sub   { color: #475569 !important; }
html:not(.ac-dark) .team-slide {
    background: #0B1F3A;
    border-color: rgba(0,180,216,.18);
    box-shadow: 0 8px 32px rgba(11,31,58,.18);
}
html:not(.ac-dark) .team-slide-photo {
    background: linear-gradient(145deg, #0F2A4A, #1A3A5C);
    box-shadow: 0 16px 48px rgba(0,0,0,.25), 0 0 0 3px rgba(0,180,216,.2);
}
html:not(.ac-dark) .team-slide-photo::after {
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
html:not(.ac-dark) .team-slide-eyebrow { color: #00B4D8; }
html:not(.ac-dark) .team-slide-role    { color: #00B4D8; }
html:not(.ac-dark) .team-slide-info h3 { color: #fff; }
html:not(.ac-dark) .team-slide-bio     { color: rgba(255,255,255,.55); }
html:not(.ac-dark) .team-slide-divider { background: rgba(255,255,255,.1); }
html:not(.ac-dark) .team-slide-school  { color: rgba(255,255,255,.38); }
/* Navegação */
html:not(.ac-dark) .team-nav-btn {
    background: #fff; border-color: #CBD5E1; color: #0B1F3A;
}
html:not(.ac-dark) .team-nav-btn:hover  { background: #0B1F3A; border-color: #0B1F3A; color: #fff; }
html:not(.ac-dark) .team-dot            { background: #F4F6F8; border-color: #CBD5E1; }
html:not(.ac-dark) .team-dot.active     { border-color: #00B4D8; box-shadow: 0 0 0 3px rgba(0,180,216,.2); }
html:not(.ac-dark) .team-dot:hover:not(.active) { border-color: rgba(0,180,216,.4); }
