:root {
    --azul: #001b42;
    --azul-medio: #12294f;
    --azul-escuro: #001028;
    --dourado: #C59325;
    --dourado-claro: #e6b943;
    --branco: #FFFFFF;
    --cinza: #A8B0BF;
    --cinza-claro: #D8DEE8;
    --sombra: 0 12px 40px rgba(0, 27, 66, .12);
    --sombra-forte: 0 20px 60px rgba(0, 27, 66, .2);
    --raio: 12px;
    --raio-lg: 20px;
    --tempo: .28s cubic-bezier(.4, 0, .2, 1);
    --container: 1200px;
    --font: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font);
    background: var(--azul);
    color: var(--branco);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--tempo); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font); font-weight: 700; letter-spacing: -.01em; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.skip-link {
    position: absolute; left: -9999px; top: 8px; z-index: 999;
    background: var(--dourado); color: var(--azul); padding: 12px 20px;
    border-radius: 8px; font-weight: 600;
}
.skip-link:focus { left: 8px; }

/* ============ HEADER ============ */
.header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(0, 16, 40, .95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(197, 147, 37, .12);
    padding: 16px 0;
}
.header .container {
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.header-logo {
    font-family: var(--font);
    font-size: 20px; font-weight: 700;
    letter-spacing: .02em;
    color: var(--branco);
    white-space: nowrap;
    text-transform: uppercase;
}
.header-logo span { color: var(--dourado); font-weight: 400; }
.nav-menu { display: flex; gap: 4px; align-items: center; }
.nav-menu a {
    padding: 10px 14px; font-size: 13px; font-weight: 500;
    color: rgba(255, 255, 255, .82); border-radius: 8px;
    transition: all var(--tempo); position: relative;
    letter-spacing: .02em;
}
.nav-menu a:hover { color: var(--branco); background: rgba(197, 147, 37, .1); }
.nav-menu a.ativo { color: var(--dourado); }
.nav-menu a.ativo::after {
    content: ''; position: absolute; bottom: 6px; left: 14px; right: 14px;
    height: 2px; background: var(--dourado); border-radius: 2px;
}
.hamburger {
    display: none; padding: 10px; font-size: 22px; color: var(--branco);
    border-radius: 8px; transition: background var(--tempo);
}
.hamburger:hover { background: rgba(255, 255, 255, .08); }

/* ============ HERO ============ */
.hero {
    position: relative; overflow: hidden;
    padding: clamp(60px, 12vh, 120px) 0 clamp(60px, 10vh, 100px);
    background: linear-gradient(135deg, var(--azul-escuro) 0%, var(--azul) 60%, var(--azul-medio) 100%);
}
.hero-small { padding: clamp(50px, 8vh, 80px) 0 clamp(40px, 6vh, 60px); }
.hero-bg {
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(197, 147, 37, .18) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(18, 41, 79, .8) 0%, transparent 55%);
    z-index: 0;
}
.hero-content { position: relative; z-index: 1; max-width: 860px; }
.hero .eyebrow {
    display: inline-block; padding: 6px 14px; margin-bottom: 20px;
    font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
    background: rgba(197, 147, 37, .15); color: var(--dourado);
    border: 1px solid rgba(197, 147, 37, .3); border-radius: 100px;
}
.hero h1 {
    font-family: var(--font);
    font-size: clamp(32px, 5.5vw, 58px);
    font-weight: 800; line-height: 1.1;
    margin-bottom: 20px; letter-spacing: -.03em;
    color: var(--branco);
}
.hero h1 em { color: var(--dourado); font-style: normal; font-weight: 800; }
.hero .lead {
    font-size: clamp(15px, 1.4vw, 18px);
    color: var(--cinza-claro); max-width: 720px;
    margin-bottom: 32px; line-height: 1.7;
    font-weight: 400;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.hero-stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; padding-top: 40px;
    border-top: 1px solid rgba(197, 147, 37, .2);
    max-width: 640px;
}
.hero-stats > div { text-align: center; }
.hero-stats strong {
    display: block; font-family: var(--font);
    font-size: clamp(30px, 4vw, 42px); color: var(--dourado);
    font-weight: 800; line-height: 1; margin-bottom: 6px;
    letter-spacing: -.02em;
}
.hero-stats span { font-size: 11px; color: var(--cinza); text-transform: uppercase; letter-spacing: .12em; font-weight: 500; }

/* ============ BOTOES ============ */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 26px; border-radius: 100px;
    font-family: var(--font);
    font-size: 14px; font-weight: 600; letter-spacing: .02em;
    transition: all var(--tempo);
    white-space: nowrap;
}
.btn-dourado {
    background: var(--dourado); color: var(--azul);
    box-shadow: 0 8px 24px rgba(197, 147, 37, .35);
}
.btn-dourado:hover { background: var(--dourado-claro); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(197, 147, 37, .45); }
.btn-outline {
    border: 1.5px solid rgba(255, 255, 255, .3); color: var(--branco);
    background: transparent;
}
.btn-outline:hover { background: rgba(255, 255, 255, .08); border-color: var(--branco); }

/* ============ SECTIONS ============ */
.section {
    padding: clamp(60px, 10vh, 110px) 0;
    background: var(--azul);
}
.section-dark {
    background:
        linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .12) 100%),
        var(--azul-escuro);
    position: relative;
}
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.eyebrow {
    display: inline-block; font-size: 11px; font-weight: 700;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--dourado); margin-bottom: 14px;
}
.section-head h2 {
    font-family: var(--font);
    font-size: clamp(28px, 3.6vw, 42px); font-weight: 700;
    line-height: 1.2; margin-bottom: 16px; letter-spacing: -.02em;
    color: var(--branco);
}
.section-head h2 em { color: var(--dourado); font-style: normal; font-weight: 700; }
.section-head p { color: var(--cinza-claro); font-size: clamp(14px, 1.2vw, 16px); line-height: 1.7; font-weight: 400; }

/* ============ CARDS ============ */
.cards-grid {
    display: grid; gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.cards-grid.cards-4 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--raio-lg);
    padding: 28px 24px;
    transition: all var(--tempo);
    position: relative; overflow: hidden;
}
.card:hover {
    border-color: rgba(197, 147, 37, .4);
    background: rgba(255, 255, 255, .06);
    transform: translateY(-4px);
    box-shadow: var(--sombra);
}
.card-min { padding: 24px 20px; }
.card-icon {
    width: 54px; height: 54px; border-radius: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(197, 147, 37, .2), rgba(197, 147, 37, .06));
    color: var(--dourado); font-size: 22px;
    margin-bottom: 18px;
}
.card-icon.sm { width: 44px; height: 44px; font-size: 18px; border-radius: 12px; margin-bottom: 14px; }
.card h3 {
    font-family: var(--font);
    font-size: 18px; font-weight: 700;
    margin-bottom: 12px; letter-spacing: -.01em;
    color: var(--branco); line-height: 1.3;
}
.card p { color: var(--cinza-claro); font-size: 14px; line-height: 1.6; font-weight: 400; }
.card-sub {
    color: var(--dourado); font-weight: 600;
    font-size: 12px; text-transform: uppercase; letter-spacing: .1em;
    margin-bottom: 8px !important;
}
.card-link {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 16px; color: var(--dourado);
    font-size: 13px; font-weight: 600;
    transition: gap var(--tempo);
}
.card-link:hover { gap: 10px; }

/* ============ STEPS ============ */
.steps-grid {
    display: grid; gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    position: relative;
}
.step {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--raio-lg);
    padding: 32px 26px; position: relative;
}
.step-num {
    display: inline-block; font-family: var(--font);
    font-size: 44px; color: var(--dourado);
    line-height: 1; margin-bottom: 14px;
    font-weight: 800; letter-spacing: -.03em;
}
.step h3 {
    font-family: var(--font);
    font-size: 20px; font-weight: 700;
    margin-bottom: 8px; color: var(--branco);
    letter-spacing: -.01em;
}
.step-sub {
    color: var(--dourado); font-size: 12px;
    text-transform: uppercase; letter-spacing: .1em;
    margin-bottom: 12px !important; font-weight: 600;
}
.step p { color: var(--cinza-claro); font-size: 14px; line-height: 1.6; font-weight: 400; }

/* ============ CTA ============ */
.section-cta { padding: 44px 0 56px; background: var(--azul-medio); }
.cta-box {
    background: linear-gradient(135deg, rgba(197, 147, 37, .08), rgba(197, 147, 37, .02));
    border: 1px solid rgba(197, 147, 37, .18);
    border-radius: var(--raio);
    padding: 26px 30px;
    display: flex; flex-wrap: wrap;
    align-items: center; justify-content: space-between;
    gap: 20px;
}
.cta-box > div:first-child { flex: 1 1 320px; min-width: 0; }
.cta-box .eyebrow { font-size: 10px; letter-spacing: .15em; margin-bottom: 6px; display: block; }
.cta-box h2 {
    font-family: var(--font);
    font-size: clamp(17px, 2vw, 22px); font-weight: 700;
    line-height: 1.25; margin-bottom: 4px;
    letter-spacing: -.01em;
}
.cta-box h2 em { color: var(--dourado); font-style: normal; font-weight: 700; }
.cta-box p { color: var(--cinza-claro); font-weight: 400; font-size: 13px; margin: 0; }
.cta-actions {
    display: flex; flex-wrap: wrap; gap: 8px;
}
.cta-actions .btn {
    padding: 9px 16px; font-size: 12.5px;
}

/* ============ FOOTER ============ */
.footer {
    background: var(--azul-escuro);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(197, 147, 37, .12);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand h3 {
    font-family: var(--font);
    font-size: 18px; font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: .02em;
    text-transform: uppercase;
}
.footer-brand h3 span { color: var(--dourado); font-weight: 400; }
.footer-brand p { color: var(--cinza); font-size: 13px; line-height: 1.6; margin-bottom: 20px; font-weight: 400; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(197, 147, 37, .12);
    color: var(--dourado); font-size: 15px;
    transition: all var(--tempo);
}
.footer-social a:hover {
    background: var(--dourado); color: var(--azul);
    transform: translateY(-2px);
}
.footer-col h4 {
    font-size: 12px; letter-spacing: .15em;
    text-transform: uppercase; margin-bottom: 16px;
    color: var(--dourado); font-weight: 700;
}
.footer-col a, .footer-col span {
    display: flex; align-items: center; gap: 8px;
    padding: 6px 0; font-size: 13px;
    color: var(--cinza-claro); transition: color var(--tempo);
    font-weight: 400;
}
.footer-col a:hover { color: var(--dourado); }
.footer-col a i, .footer-col span i { color: var(--dourado); width: 14px; font-size: 12px; }

.footer-dev {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    font-size: 11px;
    color: rgba(255, 255, 255, .35);
    letter-spacing: .04em;
    font-weight: 400;
}

/* ============ FLUTUANTES (minimalista) ============ */
.flutuantes { position: fixed; bottom: 24px; right: 24px; z-index: 90; }
.botao-flutuante {
    width: 44px; height: 44px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(0, 27, 66, .85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .1);
    color: var(--branco);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .18);
    transition: all var(--tempo);
    cursor: pointer;
}
.botao-flutuante:hover { transform: translateY(-2px); border-color: rgba(255, 255, 255, .25); box-shadow: 0 8px 22px rgba(0, 0, 0, .28); }
.botao-whatsapp { color: #25D366; }
.botao-whatsapp:hover { color: #4ee08c; background: rgba(37, 211, 102, .12); border-color: rgba(37, 211, 102, .35); }

/* ============ LGPD BANNER ============ */
.lgpd-banner {
    position: fixed; bottom: 24px; left: 24px;
    max-width: 400px;
    background: var(--azul-escuro);
    border: 1px solid rgba(197, 147, 37, .3);
    border-radius: var(--raio-lg); padding: 20px 22px;
    box-shadow: var(--sombra-forte);
    z-index: 80;
}
.lgpd-banner h4 { font-size: 14px; margin-bottom: 8px; color: var(--branco); font-weight: 700; }
.lgpd-banner p { font-size: 12px; color: var(--cinza-claro); margin-bottom: 14px; font-weight: 400; }
.lgpd-banner .btn { padding: 10px 20px; font-size: 13px; }

/* ============ MOBILE / TABLET ============ */
@media (max-width: 960px) {
    .nav-menu {
        position: fixed; top: 70px; left: 0; right: 0;
        background: var(--azul-escuro);
        flex-direction: column; align-items: stretch;
        padding: 20px; gap: 0;
        border-top: 1px solid rgba(197, 147, 37, .12);
        transform: translateY(-120%);
        transition: transform var(--tempo);
        max-height: calc(100vh - 70px); overflow-y: auto;
    }
    .nav-menu.aberto { transform: translateY(0); }
    .nav-menu a { padding: 14px 16px; border-radius: 10px; }
    .nav-menu a.ativo::after { display: none; }
    .nav-menu a.ativo { background: rgba(197, 147, 37, .15); }
    .hamburger { display: inline-flex; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
    .container { padding: 0 18px; }
    .hero { padding: 50px 0 60px; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { justify-content: center; }
    .hero-stats { grid-template-columns: 1fr; gap: 16px; padding-top: 24px; }
    .section { padding: 60px 0; }
    .cards-grid, .cards-grid.cards-4 { grid-template-columns: 1fr; }
    .cta-box { padding: 20px 18px; text-align: center; }
    .cta-actions { justify-content: center; }
    .cta-box h2 { font-size: 16px; }
    .footer { padding: 40px 0 16px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 28px; }
    .flutuantes { bottom: 18px; right: 18px; }
    .botao-flutuante { width: 42px; height: 42px; }
    .lgpd-banner { left: 12px; right: 12px; bottom: 12px; max-width: 100%; }
}

@media (min-width: 1400px) {
    .container { max-width: 1280px; }
}

/* ============ WIDGET DE ACESSIBILIDADE ============ */
.a11y-toggle {
    position: fixed; bottom: 76px; right: 24px; z-index: 95;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(0, 27, 66, .85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(197, 147, 37, .35);
    color: var(--dourado);
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .18);
    transition: all var(--tempo);
    cursor: pointer;
}
.a11y-toggle:hover { transform: translateY(-2px); background: rgba(197, 147, 37, .12); border-color: var(--dourado); box-shadow: 0 8px 22px rgba(197, 147, 37, .28); }
.a11y-toggle:focus-visible { outline: 2px solid var(--dourado); outline-offset: 3px; }

.a11y-panel {
    position: fixed; bottom: 68px; right: 20px;
    width: min(280px, calc(100vw - 20px));
    max-height: calc(100vh - 90px);
    background: var(--azul-escuro);
    border: 1px solid rgba(197, 147, 37, .3);
    border-radius: var(--raio-lg);
    box-shadow: var(--sombra-forte);
    z-index: 96;
    opacity: 0; pointer-events: none;
    transform: translateY(20px) scale(.96);
    transition: opacity .25s, transform .25s;
    display: flex; flex-direction: column;
}
.a11y-panel.aberto { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }

.a11y-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 14px; border-bottom: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--raio-lg) var(--raio-lg) 0 0;
}
.a11y-header h3 {
    font-family: var(--font); font-size: 12.5px; font-weight: 700;
    color: var(--dourado); display: flex; align-items: center; gap: 6px;
    letter-spacing: .02em;
}
.a11y-header h3 i { font-size: 20px; }
.a11y-close {
    width: 24px; height: 24px; border-radius: 6px;
    color: var(--cinza-claro); background: rgba(255, 255, 255, .06);
    display: inline-flex; align-items: center; justify-content: center;
    transition: all var(--tempo);
}
.a11y-close:hover { background: rgba(255, 255, 255, .12); color: var(--branco); }

.a11y-body { padding: 10px 12px 12px; overflow-y: auto; }

.a11y-group { margin-bottom: 10px; }
.a11y-label {
    display: block; font-size: 9px; letter-spacing: .1em;
    text-transform: uppercase; color: var(--cinza);
    margin-bottom: 6px; font-weight: 600;
}
.a11y-stepper {
    display: flex; align-items: center; gap: 6px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px; padding: 4px;
}
.a11y-stepper button {
    width: 28px; height: 28px; border-radius: 6px;
    background: rgba(197, 147, 37, .12); color: var(--dourado);
    display: inline-flex; align-items: center; justify-content: center;
    transition: all var(--tempo); font-size: 12px;
}
.a11y-stepper button:hover { background: var(--dourado); color: var(--azul); }
.a11y-value {
    flex: 1; text-align: center; font-weight: 700;
    color: var(--branco); font-size: 12px;
    font-family: var(--font);
}

.a11y-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 5px;
    margin-bottom: 10px;
}
.a11y-btn {
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    padding: 8px 4px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    color: var(--cinza-claro);
    font-size: 9.5px; font-weight: 500;
    text-align: center;
    transition: all var(--tempo);
    cursor: pointer;
    letter-spacing: 0;
    min-height: 52px;
    line-height: 1.15;
}
.a11y-btn i { font-size: 16px; color: var(--dourado); }
.a11y-btn:hover { border-color: rgba(197, 147, 37, .5); background: rgba(197, 147, 37, .08); color: var(--branco); }
.a11y-btn.ativo {
    background: rgba(197, 147, 37, .2);
    border-color: var(--dourado);
    color: var(--branco);
}
.a11y-btn.ativo i { color: var(--dourado-claro); }

.a11y-reset {
    width: 100%; padding: 7px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 7px;
    color: var(--cinza-claro);
    font-size: 10px; font-weight: 500;
    display: inline-flex; align-items: center; justify-content: center; gap: 5px;
    transition: all var(--tempo);
    cursor: pointer;
}
.a11y-reset:hover { background: rgba(255, 255, 255, .06); color: var(--branco); border-color: rgba(255, 255, 255, .3); }

/* Guia de leitura */
.a11y-guide {
    position: fixed; left: 0; right: 0;
    height: 30px; background: rgba(197, 147, 37, .25);
    border-top: 2px solid var(--dourado);
    border-bottom: 2px solid var(--dourado);
    pointer-events: none; z-index: 999;
    display: none;
    mix-blend-mode: multiply;
}

/* Modos ativados */
html.a11y-contraste-alto {
    filter: contrast(1.4) brightness(1.1);
}
html.a11y-contraste-alto body {
    background: #000 !important; color: #fff !important;
}
html.a11y-contraste-alto a { color: #ffd54f !important; }
html.a11y-contraste-alto a.botao-whatsapp { color: #25D366 !important; }
html.a11y-contraste-alto .btn-dourado { background: #ffd54f !important; color: #000 !important; }

html.a11y-escala-cinza {
    filter: grayscale(1);
}

html.a11y-sublinhar-links a { text-decoration: underline !important; text-underline-offset: 3px; }

html.a11y-cursor-grande, html.a11y-cursor-grande * {
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'><path d='M8 4 L8 40 L18 30 L24 44 L30 42 L24 28 L38 26 Z' fill='%23fff' stroke='%23000' stroke-width='2'/></svg>") 4 4, auto !important;
}

html.a11y-pausar-animacoes *, html.a11y-pausar-animacoes *::before, html.a11y-pausar-animacoes *::after {
    animation: none !important;
    transition: none !important;
}

html.a11y-espaco-texto body {
    line-height: 2 !important;
    letter-spacing: .05em !important;
    word-spacing: .1em !important;
}
html.a11y-espaco-texto p, html.a11y-espaco-texto li { margin-bottom: 1.2em !important; }

html.a11y-destaque-foco *:focus {
    outline: 3px solid var(--dourado) !important;
    outline-offset: 4px !important;
    box-shadow: 0 0 0 6px rgba(197, 147, 37, .3) !important;
}

/* Mobile ajustes */
@media (max-width: 620px) {
    .a11y-toggle { bottom: 60px; right: 12px; width: 38px; height: 38px; }
    .a11y-panel {
        bottom: 12px; right: 12px; left: 12px; top: auto;
        width: auto; max-width: 300px; margin-left: auto;
        max-height: 80vh;
    }
    .a11y-btn[data-tip]:hover::after,
    .a11y-btn[data-tip]:hover::before { display: none; }
    .flutuantes { bottom: 12px; right: 12px; }
    .botao-flutuante { width: 38px; height: 38px; }
}
@media (max-width: 380px) {
    .a11y-panel { max-width: none; }
    .a11y-grid { gap: 4px; }
    .a11y-btn { min-height: 48px; font-size: 9px; padding: 6px 3px; }
    .a11y-btn svg { width: 13px; height: 13px; }
}

/* ============ PAGINAS LEGAIS ============ */
.legal-doc {
    max-width: 780px;
    color: var(--cinza-claro);
    line-height: 1.75;
    font-size: 15px;
}
.legal-meta {
    color: var(--cinza);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-weight: 500;
}
.legal-doc h2 {
    font-family: var(--font);
    font-size: 20px;
    font-weight: 700;
    color: var(--branco);
    margin: 36px 0 14px;
    letter-spacing: -.01em;
}
.legal-doc h2:first-of-type { margin-top: 0; }
.legal-doc p {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--cinza-claro);
    font-weight: 400;
}
.legal-doc a {
    color: var(--dourado);
    border-bottom: 1px dashed rgba(197, 147, 37, .5);
    transition: all var(--tempo);
}
.legal-doc a:hover { color: var(--dourado-claro); border-bottom-color: var(--dourado-claro); }
.legal-doc strong { color: var(--branco); font-weight: 600; }

@media (max-width: 620px) {
    .legal-doc, .legal-doc p { font-size: 14px; }
    .legal-doc h2 { font-size: 18px; margin-top: 28px; }
}

/* Menu aberto trava scroll body */
body.menu-aberto { overflow: hidden; }


/* Tooltip explicativo nos botoes da a11y - alinhamento inteligente */
.a11y-btn[data-tip] { position: relative; }
.a11y-btn[data-tip]:hover::after,
.a11y-btn[data-tip]:focus-visible::after {
    content: attr(data-tip);
    position: absolute;
    bottom: calc(100% + 10px);
    background: var(--azul);
    color: var(--branco);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(197, 147, 37, .4);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.45;
    white-space: normal;
    width: 190px;
    z-index: 100;
    box-shadow: var(--sombra);
    pointer-events: none;
    text-align: left;
}
/* Botoes da coluna esquerda: tooltip cresce pra direita */
.a11y-grid .a11y-btn[data-tip]:nth-child(odd):hover::after,
.a11y-grid .a11y-btn[data-tip]:nth-child(odd):focus-visible::after {
    left: 0;
}
/* Botoes da coluna direita: tooltip cresce pra esquerda */
.a11y-grid .a11y-btn[data-tip]:nth-child(even):hover::after,
.a11y-grid .a11y-btn[data-tip]:nth-child(even):focus-visible::after {
    right: 0;
}

.a11y-btn svg { color: var(--dourado); width: 16px; height: 16px; }

/* ============ PARCEIROS ============ */
.section-parceiros { background: linear-gradient(180deg, rgba(0,27,66,.02), transparent); padding-top: 60px; padding-bottom: 60px; }
.parceiros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.parceiro-card {
    display: flex; flex-direction: column; align-items: center;
    padding: 24px 20px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--raio);
    transition: all var(--tempo);
    text-align: center;
    color: inherit;
    min-height: 140px;
    justify-content: center;
}
.parceiro-card:hover { transform: translateY(-3px); border-color: var(--dourado); background: rgba(197, 147, 37, .08); }
.parceiro-card img {
    max-height: 60px; max-width: 160px;
    object-fit: contain;
    filter: brightness(1.1);
}
.parceiro-nome {
    font-family: var(--font);
    font-size: 15px; font-weight: 700;
    color: var(--branco);
    letter-spacing: -.01em;
}
.parceiro-desc {
    margin-top: 10px;
    font-size: 11.5px;
    color: var(--cinza);
    line-height: 1.4;
}
@media (max-width: 620px) {
    .parceiros-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ==== Secao Depoimentos ==== */
/* ============================================
   DEPOIMENTOS - Layout horizontal moderno
   ============================================ */
.section-depoimentos {
    background: linear-gradient(160deg, #0a1a3e 0%, #001b42 60%, #001229 100%);
    padding: 100px 0 110px;
    position: relative;
    overflow: hidden;
}
.section-depoimentos::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 55%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(197,147,37,.08) 0%, transparent 65%);
    pointer-events: none;
}
.section-depoimentos::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -15%;
    width: 55%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(197,147,37,.05) 0%, transparent 65%);
    pointer-events: none;
}
.section-depoimentos .container { position: relative; z-index: 1; }
.section-depoimentos .eyebrow { color: var(--dourado); letter-spacing: .18em; }
.section-depoimentos h2 { color: #fff; letter-spacing: -.01em; }
.section-depoimentos .section-head p { color: rgba(255,255,255,.72); max-width: 640px; margin: 12px auto 0; }

.depoimentos-lista {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 56px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.depoimento-item {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    background: #ffffff;
    border-radius: 18px;
    padding: 32px 36px;
    box-shadow: 0 12px 34px -8px rgba(0,0,0,.35), 0 0 0 1px rgba(197,147,37,.06);
    transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s ease;
    position: relative;
}
.depoimento-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px -8px rgba(0,0,0,.45), 0 0 0 1px rgba(197,147,37,.18);
}
.depoimento-avatar {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dourado) 0%, #a17615 100%);
    box-shadow: 0 6px 16px rgba(0,0,0,.2);
    border: 3px solid #ffffff;
    outline: 1px solid rgba(197,147,37,.25);
}
.depoimento-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.depoimento-inicial {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: var(--azul);
    font-family: var(--font);
    font-weight: 700;
    font-size: 38px;
    letter-spacing: .01em;
}
.depoimento-corpo {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.depoimento-topo {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}
.depoimento-nome {
    font-family: var(--font);
    font-size: 18px;
    font-weight: 700;
    color: var(--azul);
    margin: 0 0 4px;
    letter-spacing: -.005em;
}
.depoimento-cargo {
    margin: 0;
    font-size: 13.5px;
    color: #64748b;
    font-weight: 500;
    line-height: 1.4;
}
.depoimento-cargo .sep {
    color: rgba(197,147,37,.6);
    margin: 0 4px;
    font-weight: 400;
}
.depoimento-cargo .empresa {
    color: var(--dourado);
    font-weight: 600;
}
.depoimento-estrelas {
    display: flex;
    gap: 3px;
    color: var(--dourado);
    font-size: 14px;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(197,147,37,.25));
}
.depoimento-texto {
    margin: 0;
    padding: 0 0 0 18px;
    border-left: 3px solid var(--dourado);
    font-family: var(--font);
    font-size: 15.5px;
    line-height: 1.72;
    color: #334155;
    font-weight: 400;
    font-style: normal;
    quotes: none;
}
.depoimento-texto::before { content: none; }
@media (max-width: 720px) {
    .section-depoimentos { padding: 70px 0 80px; }
    .depoimentos-lista { gap: 18px; margin-top: 40px; }
    .depoimento-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 28px 24px;
        gap: 18px;
    }
    .depoimento-avatar { width: 84px; height: 84px; }
    .depoimento-topo { justify-content: center; }
    .depoimento-texto {
        padding: 12px 0 0;
        border-left: none;
        border-top: 3px solid var(--dourado);
        font-size: 15px;
        text-align: left;
    }
}


/* ============================================
   BLOG - Tipografia do artigo (show.php)
   ============================================ */
.blog-content {
    font-family: var(--font);
    color: #2a3547;
    font-size: 17px;
    line-height: 1.75;
    max-width: 720px;
    margin: 0 auto;
}
body.tema-escuro .blog-content, body:not(.tema-claro) .blog-content { color: rgba(255,255,255,.85); }
.blog-content > * { margin-top: 1.4em; margin-bottom: 0; }
.blog-content > *:first-child { margin-top: 0; }
.blog-content p {
    font-size: 17px;
    line-height: 1.75;
    color: inherit;
    font-weight: 400;
    letter-spacing: .001em;
    margin: 1.2em 0;
}
.blog-content p:first-child { font-size: 19px; line-height: 1.65; color: inherit; opacity: .95; }
.blog-content h2 {
    font-family: var(--font);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.28;
    color: var(--azul);
    margin-top: 2.4em;
    margin-bottom: .6em;
    letter-spacing: -.005em;
}
body:not(.tema-claro) .blog-content h2 { color: #fff; }
.blog-content h3 {
    font-family: var(--font);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.32;
    color: var(--azul);
    margin-top: 2em;
    margin-bottom: .55em;
}
body:not(.tema-claro) .blog-content h3 { color: #fff; }
.blog-content h4 {
    font-family: var(--font);
    font-size: 18px;
    font-weight: 600;
    color: var(--azul);
    margin-top: 1.8em;
    margin-bottom: .5em;
}
body:not(.tema-claro) .blog-content h4 { color: #fff; }
.blog-content ul, .blog-content ol {
    margin: 1.2em 0;
    padding-left: 1.8em;
}
.blog-content li {
    margin: .55em 0;
    line-height: 1.7;
    font-size: 17px;
}
.blog-content li::marker { color: var(--dourado); font-weight: 600; }
.blog-content blockquote {
    border-left: 4px solid var(--dourado);
    padding: 18px 26px;
    margin: 2em 0;
    background: rgba(197,147,37,.06);
    border-radius: 0 10px 10px 0;
    font-style: italic;
    font-size: 17.5px;
    color: var(--azul);
    line-height: 1.7;
}
body:not(.tema-claro) .blog-content blockquote {
    background: rgba(197,147,37,.08);
    color: rgba(255,255,255,.92);
}
.blog-content blockquote p { margin: 0; font-size: inherit; }
.blog-content blockquote cite {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    font-style: normal;
    color: var(--dourado);
    font-weight: 600;
}
.blog-content a {
    color: var(--dourado);
    text-decoration: none;
    border-bottom: 1px solid rgba(197,147,37,.35);
    transition: border-color .2s ease, color .2s ease;
}
.blog-content a:hover { border-bottom-color: var(--dourado); color: #b8871f; }
.blog-content strong { color: var(--azul); font-weight: 700; }
body:not(.tema-claro) .blog-content strong { color: #fff; }
.blog-content em { font-style: italic; }
.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2em auto;
    display: block;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.blog-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197,147,37,.35), transparent);
    margin: 3em 0;
}
.blog-content code {
    background: rgba(0,27,66,.08);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 15px;
    color: var(--azul);
}
body:not(.tema-claro) .blog-content code { background: rgba(255,255,255,.1); color: #fff; }
.blog-content pre {
    background: #0a1a3e;
    color: #e2e8f0;
    padding: 20px 24px;
    border-radius: 10px;
    overflow-x: auto;
    font-size: 14.5px;
    line-height: 1.55;
    margin: 1.8em 0;
    font-family: 'Consolas', 'Monaco', monospace;
}
.blog-content pre code { background: transparent; color: inherit; padding: 0; }
.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
    font-size: 15px;
}
.blog-content th, .blog-content td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(0,27,66,.1);
}
.blog-content th { background: rgba(197,147,37,.08); font-weight: 700; color: var(--azul); }
@media (max-width: 620px) {
    .blog-content { font-size: 16px; line-height: 1.72; }
    .blog-content p { font-size: 16px; }
    .blog-content p:first-child { font-size: 17.5px; }
    .blog-content h2 { font-size: 24px; }
    .blog-content h3 { font-size: 20px; }
    .blog-content blockquote { padding: 14px 20px; font-size: 16px; }
}

@media (max-width: 640px) {
    .section-depoimentos { padding: 56px 0; }
    .depoimentos-grid { grid-template-columns: 1fr; gap: 18px; }
    .depoimento-card { padding: 26px 22px 22px; }
    .depoimento-texto { font-size: 14px; }
}

/* ==== Cookie banner fix - nao sobrepor CTA mobile ==== */
.lgpd-cookies, [data-lgpd-banner], .cookie-banner {
    z-index: 9998 !important;
}
@media (max-width: 640px) {
    .lgpd-cookies, [data-lgpd-banner], .cookie-banner {
        max-width: calc(100vw - 20px) !important;
        left: 10px !important;
        right: 10px !important;
        bottom: 10px !important;
    }
    .hero-cta { padding-bottom: 60px; }
}

/* ==== Variaveis de tema editaveis via admin ==== */
:root {
    --cor-primaria-cfg: var(--cor-primaria, #001b42);
    --cor-secundaria-cfg: var(--cor-secundaria, #f5a623);
    --cor-texto-cfg: var(--cor-texto, #ffffff);
}

/* =========================================================
   TEMA CLARO - overrides via body.tema-claro
   Aplicado quando body possui a classe tema-claro
   Segue paleta: fundo branco/off-white, texto azul marinho, destaque dourado
   ========================================================= */

body.tema-claro {
    background: #ffffff;
    color: #001b42;
}

/* HEADER */
body.tema-claro .header {
    background: #ffffff;
    border-bottom: 1px solid #e5e9f2;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
body.tema-claro .header-logo { color: #001b42; }
body.tema-claro .header-logo span { color: #f5a623; }
body.tema-claro .nav-menu a {
    color: #001b42;
}
body.tema-claro .nav-menu a:hover,
body.tema-claro .nav-menu a.ativo {
    color: #f5a623;
}
body.tema-claro .nav-menu a.ativo { border-color: #f5a623; }
body.tema-claro .hamburger { color: #001b42; }

/* HERO */
body.tema-claro .hero {
    background: linear-gradient(135deg, #f5f7fb 0%, #ffffff 100%);
}
body.tema-claro .hero-bg { opacity: 0; }
body.tema-claro .hero .eyebrow {
    background: rgba(245,166,35,.08);
    color: #f5a623;
    border: 1px solid rgba(245,166,35,.35);
}
body.tema-claro .hero h1 { color: #001b42; }
body.tema-claro .hero h1 em { color: #f5a623; font-style: normal; }
body.tema-claro .hero .lead { color: #4b5568; }
body.tema-claro .hero-stats > div > strong { color: #f5a623; }
body.tema-claro .hero-stats > div > span { color: #6b7280; }

/* BOTOES */
body.tema-claro .btn-dourado {
    background: #f5a623;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(245,166,35,.25);
}
body.tema-claro .btn-dourado:hover { background: #d18d00; }
body.tema-claro .btn-outline {
    background: transparent;
    color: #001b42;
    border: 1.5px solid #001b42;
}
body.tema-claro .btn-outline:hover {
    background: #001b42;
    color: #ffffff;
}

/* SECOES */
body.tema-claro .section { background: #ffffff; }
body.tema-claro .section-dark {
    background: #f5f7fb;
}
body.tema-claro .section-head h2 { color: #001b42; }
body.tema-claro .section-head h2 em { color: #f5a623; font-style: normal; }
body.tema-claro .section-head p { color: #4b5568; }
body.tema-claro .section-head .eyebrow {
    color: #f5a623;
    background: rgba(245,166,35,.08);
    border: 1px solid rgba(245,166,35,.3);
}

/* CARDS */
body.tema-claro .card {
    background: #ffffff;
    border: 1px solid #e5e9f2;
    box-shadow: 0 2px 8px rgba(10,26,62,.04);
    color: #001b42;
}
body.tema-claro .card:hover {
    border-color: #f5a623;
    box-shadow: 0 8px 24px rgba(10,26,62,.08);
}
body.tema-claro .card h3 { color: #001b42; }
body.tema-claro .card p { color: #4b5568; }
body.tema-claro .card-icon {
    background: rgba(245,166,35,.1);
    color: #f5a623;
}
body.tema-claro .card-link { color: #f5a623; }
body.tema-claro .card-sub { color: #6b7280; }

/* METODOLOGIA STEPS */
body.tema-claro .step { color: #001b42; }
body.tema-claro .step-num { color: #f5a623; }
body.tema-claro .step-sub { color: #6b7280; }

/* SECAO CTA */
body.tema-claro .section-cta {
    background: linear-gradient(135deg, #001b42 0%, #002d6b 100%);
    color: #ffffff;
}
body.tema-claro .cta-box h2 { color: #ffffff; }
body.tema-claro .cta-box h2 em { color: #f5a623; }
body.tema-claro .cta-box p { color: rgba(255,255,255,.85); }
body.tema-claro .cta-box .eyebrow { color: #f5a623; }

/* DEPOIMENTOS */
body.tema-claro .section-depoimentos {
    background: #f5f7fb;
}
body.tema-claro .section-depoimentos .eyebrow { color: #f5a623; }
body.tema-claro .section-depoimentos h2 { color: #001b42; }
body.tema-claro .depoimento-card {
    background: #ffffff;
    border: 1px solid #e5e9f2;
    box-shadow: 0 2px 6px rgba(0,0,0,.04);
}
body.tema-claro .depoimento-texto { color: #4b5568; }
body.tema-claro .depoimento-autor strong { color: #001b42; }
body.tema-claro .depoimento-autor span { color: #6b7280; }
body.tema-claro .depoimento-autor { border-top-color: #e5e9f2; }

/* PARCEIROS */
body.tema-claro .section-parceiros { background: #ffffff; }
body.tema-claro .parceiro-card {
    background: #f5f7fb;
    border: 1px solid #e5e9f2;
}
body.tema-claro .parceiro-nome { color: #001b42; }
body.tema-claro .parceiro-desc { color: #4b5568; }

/* FOOTER */
body.tema-claro .footer {
    background: #001b42;
    color: #ffffff;
}
body.tema-claro .footer h3, body.tema-claro .footer h4 { color: #ffffff; }
body.tema-claro .footer p, body.tema-claro .footer a, body.tema-claro .footer span {
    color: rgba(255,255,255,.75);
}
body.tema-claro .footer a:hover { color: #f5a623; }
body.tema-claro .footer h3 span { color: #f5a623; }

/* WIDGET ACESSIBILIDADE */
body.tema-claro .a11y-toggle {
    background: #001b42;
    color: #ffffff;
    border-color: rgba(0,27,66,.15);
}
body.tema-claro .a11y-panel {
    background: #ffffff;
    color: #001b42;
    border: 1px solid #e5e9f2;
    box-shadow: 0 12px 32px rgba(0,0,0,.12);
}
body.tema-claro .a11y-header h3 { color: #001b42; }
body.tema-claro .a11y-label { color: #4b5568; }
body.tema-claro .a11y-panel button { color: #001b42; }
body.tema-claro .a11y-panel button:hover { background: rgba(245,166,35,.1); }

/* HEADINGS/TEXTOS GERAIS */
body.tema-claro h1, body.tema-claro h2, body.tema-claro h3, body.tema-claro h4 { color: #001b42; }
body.tema-claro em { color: #f5a623; }

/* Skip link */
body.tema-claro .skip-link { background: #001b42; color: #ffffff; }

/* Formularios */
body.tema-claro input, body.tema-claro textarea, body.tema-claro select {
    background: #ffffff;
    color: #001b42;
    border-color: #d0d5dd;
}
body.tema-claro input:focus, body.tema-claro textarea:focus {
    border-color: #f5a623;
    box-shadow: 0 0 0 3px rgba(245,166,35,.15);
}

/* BOTOES FLUTUANTES */
body.tema-claro .botao-flutuante {
    background: #ffffff;
    color: #001b42;
    border: 1px solid #e5e9f2;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
body.tema-claro .botao-flutuante:hover { border-color: #f5a623; color: #f5a623; }

/* Cookie banner */
body.tema-claro .lgpd-cookies, body.tema-claro [data-lgpd-banner] {
    background: #ffffff;
    color: #001b42;
    border: 1px solid #e5e9f2;
    box-shadow: 0 12px 40px rgba(0,0,0,.12);
}

.a11y-tema-opt {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 12px; border-radius: 6px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    color: currentColor; cursor: pointer;
    font-size: 12px; font-weight: 500;
    transition: all .2s;
}
.a11y-tema-opt:hover { border-color: #f5a623; }
.a11y-tema-opt.ativo {
    background: rgba(245,166,35,.15);
    border-color: #f5a623;
    color: #f5a623;
}
body.tema-claro .a11y-tema-opt {
    background: #f5f7fb;
    border: 1px solid #e5e9f2;
    color: #001b42;
}
body.tema-claro .a11y-tema-opt.ativo {
    background: rgba(197,147,37,.15);
    border-color: var(--dourado);
    color: var(--dourado);
}

/* ========== WCAG 2.4.7 - Focus Visible (CWPC-001) ========== */
:focus-visible {
    outline: 3px solid #f5a623;
    outline-offset: 2px;
    border-radius: 4px;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid #f5a623;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.25);
}
body.tema-claro :focus-visible {
    outline-color: #001b42;
    box-shadow: 0 0 0 4px rgba(0, 27, 66, 0.20);
}








/* WhatsApp fixo flutuante - alinhado exatamente ao a11y-toggle */
.whatsapp-fixo {
    position: fixed;
    bottom: 132px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #25D366;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 95;
    box-shadow: 0 4px 12px rgba(37,211,102,.4), 0 2px 4px rgba(0,0,0,.15);
    transition: transform .2s ease, box-shadow .2s ease;
    text-decoration: none;
    border: none;
}
.whatsapp-fixo svg { width: 22px; height: 22px; display: block; }
.whatsapp-fixo:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 18px rgba(37,211,102,.5), 0 3px 6px rgba(0,0,0,.2);
    color: #ffffff;
}
@media (max-width: 620px) {
    .whatsapp-fixo {
        width: 38px;
        height: 38px;
        bottom: 112px;
        right: 12px;
    }
    .whatsapp-fixo svg { width: 20px; height: 20px; }
}