/* ================================================================
   REGISTER.CSS — ESTILOS PADRÕES PARA TODAS AS PÁGINAS PÚBLICAS
   ================================================================
   Inclui: header, home, contatos, cadastros, sucesso
   ================================================================ */

/* ─── VARIÁVEIS GLOBAIS ─────────────────────────────────────────── */
:root {
    --ink:        #0b1220;
    --muted:      #64748b;
    --orange:     #f97316;
    --red:        #dc2626;
    --green:      #059669;
    --blue:       #2563eb;
    --cream:      #fff8ed;
    --line:       #f1e7d8;
    --radius:     24px;
    --shadow:     0 24px 70px rgba(15, 23, 42, .14);
}

/* ─── RESET & BASE ──────────────────────────────────────────────── */
* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { 
    padding: 10px 14px;
    border-radius: 10px;
    background: linear-gradient(135deg, #fdba74, #fb923c);
    font-weight: 900;
    transition: transform .2s ease, filter .2s ease; }
img { display: block; max-width: 100%; }

html { min-height: 100%; }
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
}
body > main { flex: 1 0 auto; width: 100%; }
body > .site-footer,
.site-footer { flex-shrink: 0; }

/* ─── HEADER ────────────────────────────────────────────────────── */
.site-header,
.site-header * { box-sizing: border-box; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    isolation: isolate;
    overflow: visible;
    background: rgba(15, 23, 42, 0.96);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.site-header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1120px, calc(100% - 28px));
    margin: 0 auto;
    overflow: visible;
}

.site-header nav > .site-brand {
    display: flex;
    align-items: center;
    min-width: 0;
    flex-shrink: 1;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    position: relative;
}

.site-header nav > .site-brand::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    z-index: -1;
}

.site-header nav > .site-brand > img {
    display: block;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 50%;
    object-fit: cover;
    background: white;
    position: relative;
}

.site-header .site-brand-text {
    display: flex;
    min-width: 0;
    max-width: 155px;
    flex-direction: column;
    overflow: hidden;
    line-height: 1.1;
}

.site-header .site-brand-nome,
.site-header .site-brand-slogan {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-header .site-brand-nome {
    font-size: 16px;
    font-weight: 900;
}

.site-header .site-brand-nome span:last-child {
    color: #fdba74;
}

.site-header .site-brand-slogan {
    margin-top: 1px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.site-header .nav-links {
    display: none;
    min-width: 0;
    align-items: stretch;
    justify-content: end;
    flex: 1 1 auto;
    gap: 0;
    margin-left: auto;
}

.site-header .nav-links a {
    display: inline-flex;
    width: 70px;
    min-width: 0;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3px;
    padding: 0 8px;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.66);
    text-align: center;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.site-header .nav-links a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.site-header .nav-links a:hover {
    color: #fff;
    transform: translateY(-1px);
}

.site-header .nav-links a > i {
    height: 14px;
    color: #fdba74;
    font-size: 12px;
}

.site-header .nav-links a.is-active {
    position: relative;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.site-header .nav-links a.is-active > i {
    color: #fb923c;
}

.site-header .nav-links a.is-active::after {
    content: '';
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: 0;
    height: 2px;
    border-radius: 2px 2px 0 0;
    background: linear-gradient(90deg, #fb923c, #dc2626);
}

.nav-mobile-links a.is-active {
    background: rgba(251, 146, 60, 0.12);
    color: #fff;
    border-right: 3px solid #fb923c;
}

.nav-mobile-links a.is-active i {
    color: #fb923c;
}

.site-header .nav-links a > span {
    display: block;
    width: 100%;
    overflow: hidden;
    color: inherit;
    font-size: 9px;
    line-height: 1.1;
    text-overflow: ellipsis;
}

.site-header-account,
.site-header-action {
    flex-shrink: 0;
}

.site-header-account {
    position: relative;
    z-index: 1001;
}

.site-header-account-trigger {
    display: inline-flex;
    width: auto;
    min-width: 36px;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
    font: inherit;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header-account-trigger:hover,
.site-header-account-trigger[aria-expanded="true"] {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.14);
}

.site-header-account-trigger[aria-expanded="true"] {
    box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.2);
}

.site-header-account-trigger img,
.site-header-avatar {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    object-fit: cover;
}

.site-header-avatar {
    background: linear-gradient(135deg, #fb923c, #dc2626);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
}

.site-header-account-dropdown {
    position: absolute;
    top: calc(100% + 0px);
    right: 0;
    z-index: 1002;
    width: 230px;
    max-height: min(70vh, 420px);
    overflow-x: hidden;
    overflow-y: auto;
    visibility: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.99);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
}

.site-header-account-dropdown.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
}

.site-header-account-summary {
    padding: 13px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header-account-summary strong,
.site-header-account-summary span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-header-account-summary strong {
    color: #fff;
    font-size: 11px;
}

.site-header-account-summary span {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 9px;
}

.site-header-account-dropdown a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.site-header-account-dropdown a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.site-header-account-dropdown a i {
    width: 15px;
    flex: 0 0 15px;
    color: #fdba74;
    text-align: center;
}

.site-header-action {
    display: inline-flex;
    min-width: 98px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 7px 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    background: transparent;
    color: #fff !important;
    font-size: 11px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.site-header-action:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

.site-header-action span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-header .nav-hamburger {
    display: none;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 8px 7px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: background 0.2s ease;
}

.site-header .nav-hamburger:hover {
    background: rgba(255, 255, 255, 0.16);
}

.site-header .nav-hamburger span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header .nav-hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header .nav-hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.site-header .nav-hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(2, 6, 23, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.nav-mobile-overlay.is-open {
    display: block;
}

.nav-mobile-drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1110;
    display: flex;
    width: min(300px, 85vw);
    flex-direction: column;
    overflow-y: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    background: #0f172a;
    transform: translateX(-100%);
    transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.nav-mobile-drawer.is-open {
    transform: translateX(0);
}

.nav-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    padding: 16px 16px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-mobile-close {
    display: flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
    font-size: 14px;
}

.nav-mobile-links {
    flex: 1;
    padding: 12px 0;
}

.nav-mobile-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.nav-mobile-links a:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}

.nav-mobile-links a i {
    width: 16px;
    color: #fdba74;
    text-align: center;
}

.nav-mobile-footer {
    flex-shrink: 0;
    padding: 14px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .site-header nav {
        min-height: 44px;
        padding: 0px;
        gap: 0px;
    }
    .site-header nav > .site-brand > img {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }
    .site-header .nav-links {
        display: flex;
    }
    .site-header .nav-hamburger {
        display: none;
    }
    .site-header-account,
    .site-header-action {
        padding-left: 8px;
        border-left: 1px solid rgba(255, 255, 255, 0.2);
    }
    .site-header-account-trigger {
        padding: 0px;
    }
}

@media (max-width: 767px) {
    .site-header {
        height: 54px;
    }
    .site-header nav {
        min-height: 54px;
        height: 54px;
        flex-wrap: nowrap;
        padding: 7px 10px;
        gap: 8px;
    }
    .site-header nav > .site-brand {
        min-width: 0;
        flex: 1 1 auto;
        order: 1;
    }
    .site-header .site-brand-text {
        max-width: 128px;
    }
    .site-header nav > .site-header-account,
    .site-header nav > .site-header-action {
        order: 2;
    }
    .site-header nav > .nav-hamburger {
        display: flex;
        order: 3;
        margin-left: 0;
    }
    .site-header-action {
        min-width: 0;
        max-width: 112px;
        padding: 7px 9px;
        font-size: 9px;
    }
    .site-header-account-dropdown {
        top: calc(100% + -5px);
        right: -4px;
        width: min(230px, calc(100vw - 20px));
    }
    .nav-mobile-drawer {
        width: min(310px, 88vw);
    }
    .nav-mobile-links a {
        min-height: 46px;
        padding: 11px 18px;
        font-size: 12px;
    }
}

@media (max-width: 390px) {
    .site-header-action {
        max-width: 98px;
    }
    .site-header-action span {
        font-size: 8px;
    }
}

/* ─── BOTÕES PADRÕES ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 13px;
    padding: 12px 17px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    transition: transform .25s ease, filter .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-3px); filter: brightness(1.08); }
.btn-primary { background: linear-gradient(135deg, #fb923c, #f97316); color: #1c1917; }
.btn-light { background: #fff; color: #7c2d12; }
.btn-ghost { border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.08); color: #fff; backdrop-filter: blur(12px); }

/* ─── HOME ──────────────────────────────────────────────────────── */
.home-page { background: #fff; }
.home-shell { overflow: hidden; background: #fff; }

/* Hero */
.home-hero {
    position: relative;
    isolation: isolate;
    min-height: clamp(540px, 72vh, 760px);
    height: clamp(360px, var(--hero-height-mobile, var(--hero-height, 62vh)), 760px);
    background: #0b1220;
    overflow: hidden;
}
.home-hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.035);
    transition: opacity .7s ease, transform .9s cubic-bezier(.22,.61,.36,1);
}
.home-hero-slide.is-active { opacity: 1; visibility: visible; transform: scale(1); }
.home-hero-slide.effect-slide { transform: translateX(7%); }
.home-hero-slide.effect-slide.is-active { transform: translateX(0); }
.home-hero-slide.effect-zoom { transform: scale(1.09); }
.home-hero-slide.effect-zoom.is-active { transform: scale(1); }

.home-hero-media { position: absolute; inset: 0; width: 100%; height: 60vh; object-fit: cover; }
.home-hero-media.mobile { display: none; }

.home-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2,6,23,.94), rgba(2,6,23,.63) 45%, rgba(2,6,23,.15));
    z-index: 1;
}
.home-hero-copy {
    position: relative;
    z-index: 3;
    width: min(1180px, 100%);
    padding: 40px clamp(16px,4vw,24px) 92px;
    margin: auto;
    color: #fff;
}
.home-hero-copy.align-center { text-align: center; margin-left: auto; margin-right: auto; }
.home-hero-copy.align-right { text-align: right; margin-left: auto; }

.home-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    padding: 7px 12px;
    color: #fed7aa;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    backdrop-filter: blur(14px);
}
.home-hero-eyebrow i { color: #34d399; font-size: 8px; }

.home-hero-title {
    max-width: 780px;
    margin: 18px 0 0;
    font-size: clamp(2.45rem, 7vw, 2.8rem);
    font-weight: 950;
    line-height: .94;
    letter-spacing: -.06em;
    text-wrap: balance;
    text-shadow: 0 5px 32px rgba(0,0,0,.3);
}
.home-hero-description {
    max-width: 610px;
    margin-top: 8px;
    color: rgba(255,255,255,.78);
    font-size: clamp(14px, 1.8vw, 19px);
    line-height: 1.55;
}
.home-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.align-center .home-hero-actions { justify-content: center; }
.align-right .home-hero-actions { justify-content: flex-end; }

.home-hero-controls {
    position: absolute;
    z-index: 5;
    right: 24px;
    bottom: 25px;
    left: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.home-hero-dots { display: flex; align-items: center; gap: 7px; }
.home-hero-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    transition: .25s ease;
}
.home-hero-dots button.is-active { width: 28px; border-color: #fb923c; background: #fb923c; }
.home-hero-progress {
    height: 3px;
    flex: 1;
    max-width: 170px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255,255,255,.22);
}
.home-hero-progress span { display: block; height: 100%; width: 0; background: #fb923c; }
.home-hero-progress.is-running span { animation: homeProgress var(--hero-duration, 7000ms) linear forwards; }
@keyframes homeProgress { to { width: 100%; } }

.home-hero-pause {
    display: flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 50%;
    background: rgba(2,6,23,.32);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(12px);
}
.home-hero-pause:hover { background: #fb923c; color: #1c1917; }

/* Intro */
.home-intro {
    position: relative;
    z-index: 4;
    width: min(1120px, calc(100% - 28px));
    margin: 10px auto 10px;
    padding: 34px 36px;
    background: linear-gradient(180deg, #fffaf2, #fff);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(15,23,42,.08);
}
.home-intro-grid {
    display: grid;
    grid-template-columns: 0.25fr .75fr;
    gap: 24px;
    align-items: center;
}
.home-intro h2 {
    margin: 10px 0 0;
    font-size: clamp(1.45rem, 3vw, 2.3rem);
    font-weight: 950;
    line-height: 1.04;
    letter-spacing: -.04em;
}
.home-intro p { margin: 10px 0 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

.home-intro-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.home-intro-card {
    position: relative;
    display: flex;
    min-height: 154px;
    overflow: hidden;
    align-items: flex-end;
    border-radius: 20px;
    background: linear-gradient(145deg, #f97316, #be123c 72%, #312e81);
    box-shadow: 0 16px 30px rgba(15,23,42,.12);
    color: #fff;
    text-decoration: none;
    isolation: isolate;
    transform: translateY(0) rotate(0deg);
    transition: transform .3s ease, box-shadow .3s ease;
    animation: introCardFloat 5s ease-in-out infinite;
    animation-delay: var(--card-delay, 0ms);
}
.home-intro-card:nth-child(2n) { background: linear-gradient(145deg, #0f766e, #0f4c5c 62%, #1e3a8a); }
.home-intro-card:nth-child(3n) { background: linear-gradient(145deg, #7c3aed, #4338ca 58%, #0f766e); }
.home-intro-card:nth-child(4n) { background: linear-gradient(145deg, #e11d48, #9f1239 58%, #7c2d12); }
.home-intro-card:hover { transform: translateY(-7px) rotate(-1deg); box-shadow: 0 24px 42px rgba(15,23,42,.2); }
.home-intro-card::before,
.home-intro-card::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}
.home-intro-card::before { width: 130px; height: 130px; top: -58px; right: -22px; background: rgba(255,255,255,.22); }
.home-intro-card::after { width: 90px; height: 90px; bottom: -42px; left: -20px; background: rgba(255,255,255,.12); }
.home-intro-card-media { position: absolute; inset: 0; z-index: -2; }
.home-intro-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .66;
    mix-blend-mode: screen;
    transition: transform .5s ease, opacity .3s ease;
}
.home-intro-card:hover .home-intro-card-media img { transform: scale(1.08); opacity: .78; }
.home-intro-card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2,6,23,.04), rgba(2,6,23,.78) 86%);
}
.home-intro-card-copy { position: relative; z-index: 1; padding: 14px; }
.home-intro-card-icon {
    display: flex;
    width: 31px;
    height: 31px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.32);
    border-radius: 10px;
    background: rgba(255,255,255,.15);
    font-size: 12px;
    backdrop-filter: blur(8px);
}
.home-intro-card h3 { margin: 10px 0 0; font-size: 13px; font-weight: 950; line-height: 1.1; }
.home-intro-card p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 5px 0 0;
    color: rgba(255,255,255,.8);
    font-size: 10px;
    line-height: 1.35;
}
@keyframes introCardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Sections */
.home-section {
    width: min(1120px, calc(100% - 28px));
    margin: 0 auto;
    padding: 70px 0;
}
.home-section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}
.home-section-kicker {
    margin: 0 0 7px;
    color: #ea580c;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .17em;
    text-transform: uppercase;
}
.home-section-title {
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 950;
    line-height: 1;
    letter-spacing: -.045em;
}
.home-section-copy {
    max-width: 420px;
    margin: 7px 0 0;
    color: #78716c;
    font-size: 12px;
    line-height: 1.5;
}
.home-text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #c2410c;
    font-size: 11px;
    font-weight: 900;
    text-decoration: none;
}
.home-text-link:hover { text-decoration: underline; }

.home-section-wrap { background: #f8fafc; width: 100%; padding: 0; }
.home-section-wrap .home-section { margin: 0 auto; }
.home-section--stories { background: #fff7ed; }
.home-section--posts { background: #eff6ff; }

/* Process */
.home-process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.home-process-card {
    position: relative;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #ffffff;
    overflow: visible;
}
.home-process-card::after {
    content: "";
    position: absolute;
    top: 21px;
    right: -14px;
    width: 16px;
    height: 2px;
    border-top: 2px dashed #fb923c;
    z-index: 2;
}
.home-process-card:last-child::after { display: none; }
.home-process-card:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 15px;
    right: -20px;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 9px solid #fb923c;
    z-index: 3;
}
.home-process-icon {
    position: relative;
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #fff0df;
    color: #ea580c;
    font-size: 17px;
}
.home-process-card:nth-child(2) .home-process-icon { background: #eaf2ff; color: #2563eb; }
.home-process-card:nth-child(3) .home-process-icon { background: #e8fbf1; color: #059669; }
.home-process-node {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fb923c;
    color: #fff;
    font-size: 8px;
    font-weight: 950;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(251,146,60,.45);
    line-height: 1;
}
.home-process-number {
    display: block;
    margin-top: 18px;
    color: #a8a29e;
    font-size: 8px;
    font-weight: 950;
    letter-spacing: .12em;
}
.home-process-card h3 { margin: 5px 0 0; font-size: 15px; font-weight: 950; }
.home-process-card p { margin: 6px 0 0; color: #78716c; font-size: 11px; line-height: 1.55; }

/* Stories Carousel */
.home-story-carousel-wrap {
    position: relative;
    overflow: hidden;
    cursor: grab;
    touch-action: pan-y;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.home-story-carousel-wrap.is-dragging { cursor: grabbing; }
.home-story-track {
    display: flex;
    gap: 7px;
    width: max-content;
    will-change: transform;
    user-select: none;
    -webkit-user-select: none;
}
.home-story-card {
    position: relative;
    flex: 0 0 160px;
    height: 280px;
    overflow: hidden;
    border-radius: 20px;
    background: #0f172a;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(15,23,42,.08);
}
.home-story-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.home-story-card:hover img { transform: scale(1.07); }
.home-story-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 10px;
    background: linear-gradient(180deg, rgba(0,0,0,.13) 25%, rgb(2,6,23) 100%);
    color: #fff;
}
.home-story-card h3 { margin: 5px 0 0; font-size: 10px; font-weight: 500; line-height: 1.2; }

/* Posts */
.home-posts { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.home-post {
    position: relative;
    aspect-ratio: 1/1.5;
    overflow: hidden;
    border-radius: 19px;
    background: #0f172a;
    cursor: pointer;
}
.home-post > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.home-post:hover > img { transform: scale(1.07); }
.home-post-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2,6,23,.05), rgba(2,6,23,.88)); }
.home-post-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 999px;
    background: rgba(2,6,23,.6);
    padding: 6px 8px;
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    backdrop-filter: blur(7px);
}
.home-post-play {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    color: #fff;
    backdrop-filter: blur(10px);
}
.home-post-copy {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.35;
}

/* Partners */
.home-links-band { background: #fff8ed; }
.home-links-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.home-link-card {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 11px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    text-decoration: none;
    transition: .25s ease;
}
.home-link-card:hover { transform: translateY(-3px); border-color: #fdba74; box-shadow: 0 13px 24px rgba(194,65,12,.1); }
.home-link-media {
    display: flex;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff7ed, #fee2e2);
    color: #c2410c;
}
.home-link-media img { width: 100%; height: 100%; object-fit: contain; padding: 5px; }
.home-link-media i { font-size: 16px; }
.home-link-content { min-width: 0; flex: 1; }
.home-link-content strong,
.home-link-content span { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.home-link-content strong { font-size: 11px; font-weight: 950; }
.home-link-content span { margin-top: 2px; color: #78716c; font-size: 9px; }
.home-link-arrow { color: #c2410c; font-size: 9px; }

/* CTA */
.home-cta {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 40px 20px;
    color: #fff;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(251,146,60,.22);
}
.home-cta::before,
.home-cta::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(251,146,60,.18);
    filter: blur(18px);
    pointer-events: none;
}
.home-cta::before { top: -170px; left: -60px; }
.home-cta::after { right: -90px; bottom: -180px; }
.home-cta-inner {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 28px));
    margin: auto;
    color: #0f172a;
}
.home-cta h2 {
    margin: 14px 0 0;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 950;
    line-height: .98;
    letter-spacing: -.05em;
}
.home-cta p {
    margin: 2px auto 0;
    max-width: 520px;
    font-size: 13px;
    line-height: 1.6;
}
 .home-cta-actions {
           display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    justify-content: center;
    align-items: stretch;
    gap: 10px;
    margin: 10px;
    max-width: 600px; /* Limita a largura máxima para evitar que os botões fiquem muito largos */
    margin-left: auto;
    margin-right: auto;
        }
        .home-cta-actions .home-btn { flex: 1 1 170px;
    padding: 10px 14px;
    border-radius: 10px;
    color: #1c1917;
    background: linear-gradient(135deg, #fdba74, #fb923c);
    font-weight: 900;
    transition: transform .2s ease, filter .2s ease;}

/* Testimonials */
.home-section--testimonials { background: #faf5ff; }
.home-testi-grid {
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 14px;
    align-items: start;
}
.home-testi-card {
    min-width: 0;
    border: 0;
    border-radius: 22px;
    background: transparent;
    cursor: pointer;
    text-align: left;
    transition: transform .25s ease, filter .25s ease;
}
.home-testi-card:hover,
.home-testi-card:focus-visible {
    transform: translateY(-7px);
    filter: drop-shadow(0 16px 18px rgba(91,33,182,.15));
}
.home-testi-card:focus-visible { outline: 2px solid #8b5cf6; outline-offset: 4px; }
.home-testi-photo {
    position: relative;
    display: flex;
    aspect-ratio: 1 / 1.08;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(145deg, #f97316, #be123c 70%, #312e81);
    color: #fff;
    font-size: 42px;
    font-weight: 950;
    box-shadow: 0 12px 24px rgba(15,23,42,.12);
}
.home-testi-card:nth-child(2n) .home-testi-photo { background: linear-gradient(145deg, #0f766e, #0f4c5c 65%, #1e3a8a); }
.home-testi-card:nth-child(3n) .home-testi-photo { background: linear-gradient(145deg, #7c3aed, #4338ca 65%, #0f766e); }
.home-testi-card:nth-child(4n) .home-testi-photo { background: linear-gradient(145deg, #e11d48, #9f1239 65%, #7c2d12); }
.home-testi-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(2,6,23,.14));
    pointer-events: none;
}
.home-testi-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}
.home-testi-card:hover .home-testi-photo img { transform: scale(1.07); }
.home-testi-fallback {
    position: relative;
    z-index: 1;
    display: flex;
    width: 74px;
    height: 74px;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,.55);
    border-radius: 50%;
    background: rgba(255,255,255,.16);
    box-shadow: 0 10px 22px rgba(2,6,23,.18);
    backdrop-filter: blur(8px);
}
.home-testi-author-info { display: block; min-width: 0; padding: 10px 4px 0; }
.home-testi-author-info strong {
    display: block;
    overflow: hidden;
    color: var(--ink);
    font-size: 12px;
    font-weight: 950;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.home-testi-author-info span {
    display: block;
    overflow: hidden;
    margin-top: 3px;
    color: #8b5cf6;
    font-size: 9px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Responsável */
.home-responsavel-wrap { width: 100%; padding: 0; }
.home-resp-banner {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    width: 100%;
    background: linear-gradient(120deg, #080f1d 0%, #0b1220 45%, #3f1016 82%, #7c2d12 100%);
}
.home-resp-banner::before,
.home-resp-banner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.home-resp-banner::before {
    width: 420px;
    height: 420px;
    top: -180px;
    left: -120px;
    background: rgba(251,146,60,.14);
    filter: blur(60px);
}
.home-resp-banner::after {
    width: 320px;
    height: 320px;
    bottom: -160px;
    left: 38%;
    background: rgba(220,38,38,.16);
    filter: blur(70px);
}
.home-resp-banner-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 32px;
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
    padding: 64px 0;
    height: 50vh;
}
.home-resp-banner-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    color: #fdba74;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em;
}
.home-resp-banner-title {
    margin: 8px 0 0;
    max-width: 480px;
    font-size: clamp(1.7rem, 3.4vw, 2.5rem);
    font-weight: 950;
    line-height: 1.14;
    letter-spacing: -.03em;
    color: #fff;
}
.home-resp-banner-sub {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 440px;
    margin: 16px 0 0;
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(255,255,255,.6);
}
.home-resp-banner-byline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 12px;
    font-weight: 800;
    color: rgba(255,255,255,.85);
}
.home-resp-banner-byline span { color: rgba(255,255,255,.45); font-weight: 600; }
.home-resp-banner-byline i { color: var(--orange); font-size: 10px; }
.home-resp-banner .btn { margin-top: 26px; }
.home-resp-banner-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}
.home-resp-banner-blob {
    position: absolute;
    width: min(340px, 78%);
    aspect-ratio: 1;
    border-radius: 42% 58% 63% 37% / 45% 40% 60% 55%;
    background: linear-gradient(135deg, rgba(251,146,60,.55), rgba(220,38,38,.35));
    filter: blur(2px);
    opacity: .85;
}
.home-resp-banner-photo {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    aspect-ratio: 3 / 4;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 26px;
    color: #7c2d12;
    font-size: 64px;
    font-weight: 950;
}
.home-resp-banner-photo img { height: 70vh; object-fit: cover; }
.home-resp-banner-ring {
    position: absolute;
    z-index: 0;
    width: min(230px, 55%);
    aspect-ratio: 1;
    top: 6%;
    right: 4%;
    border-radius: 50%;
    border: 1px dashed rgba(255,255,255,.14);
}

/* Modais */
.home-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(2,6,23,.78);
    backdrop-filter: blur(10px);
}
.home-modal.is-open { display: flex; }
.home-modal-card {
    position: relative;
    width: min(440px, 94vw);
    height: min(680px, calc(100svh - 32px));
    overflow: hidden;
    border-radius: 24px;
    background: #0f172a;
    box-shadow: 0 25px 80px rgba(0,0,0,.34);
}
.home-modal-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: unset;
    transition: transform .5s ease;
}
.home-modal-card:hover .home-modal-image { transform: scale(1.03); }
.home-modal-body {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: auto;
    padding: clamp(24px, 5vw, 38px);
    background: linear-gradient(180deg, rgba(2,6,23,0) 22%, rgba(2,6,23,.08) 36%, rgba(2,6,23,.72) 69%, rgba(2,6,23,.97) 100%);
    color: #fff;
}
.home-modal-body h2 {
    margin: 0;
    font-size: clamp(25px, 4vw, 34px);
    font-weight: 950;
    line-height: 1.05;
    letter-spacing: -.04em;
    text-shadow: 0 3px 20px rgba(0,0,0,.3);
}
.home-modal-body p {
    margin: 12px 0 0;
    color: rgba(255,255,255,.78);
    font-size: 14px;
    line-height: 1.6;
    text-shadow: 0 2px 14px rgba(0,0,0,.3);
}
.home-modal-close {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    display: flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%;
    background: rgba(2,6,23,.55);
    color: #fff;
    cursor: pointer;
}
.home-modal-action {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 17px;
    border-radius: 12px;
    background: #f97316;
    padding: 11px 15px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
}
.home-video-card {
    position: relative;
    width: min(390px, 100%);
    overflow: hidden;
    border-radius: 22px;
    background: #020617;
}
.home-video-card iframe { display: block; width: 100%; aspect-ratio: 9/16; border: 0; }
.home-video-close { position: absolute; z-index: 2; top: 10px; right: 10px; }

.home-resp-card {
    position: relative;
    width: min(440px, 94vw);
    max-height: calc(100svh - 32px);
    overflow-y: auto;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 25px 80px rgba(0,0,0,.34);
}
.home-resp-hero {
    position: relative;
    overflow: hidden;
    padding: 34px 22px 54px;
    text-align: center;
    background: linear-gradient(135deg, #080f1d 0%, #3f1016 54%, #9a3412 100%);
    color: #fff;
}
.home-resp-hero::before,
.home-resp-hero::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(251,146,60,.18);
    filter: blur(18px);
    pointer-events: none;
}
.home-resp-hero::before { top: -90px; left: -50px; }
.home-resp-hero::after { right: -60px; bottom: -100px; }
.home-resp-avatar {
    position: relative;
    z-index: 1;
    width: 96px;
    height: 96px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,.85);
    background: #1c1917;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 900;
    color: #fed7aa;
}
.home-resp-avatar img { width: 100%; height: 100%; object-fit: cover; }
.home-resp-name {
    position: relative;
    z-index: 1;
    margin: 14px 0 0;
    font-size: 20px;
    font-weight: 950;
    letter-spacing: -.02em;
}
.home-resp-role {
    position: relative;
    z-index: 1;
    margin-top: 4px;
    font-size: 10.5px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fdba74;
}
.home-resp-badges {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}
.home-resp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    padding: 5px 11px;
    font-size: 10.5px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}
.home-resp-body { padding: 22px 22px 24px; }
.home-resp-quote {
    position: relative;
    margin: 0;
    padding: 16px 16px 16px 40px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff8ed;
    font-size: 13px;
    line-height: 1.62;
    font-style: italic;
    color: #44403c;
}
.home-resp-quote i {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 15px;
    color: rgba(251,146,60,.5);
}
.home-resp-socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}
.home-resp-social {
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #fff7ed;
    color: #c2410c;
    font-size: 14px;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}
.home-resp-social:hover { transform: translateY(-3px); background: #f97316; color: #fff; }

.home-testi-modal-stars {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-top: 10px;
    font-size: 13px;
    color: #fcd34d;
}

/* Reveal */
.home-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .55s ease, transform .55s ease;
}
.home-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ─── CADASTROS ──────────────────────────────────────────────────── */
.register-page,
.register-page {
    --register-ink: #0b1220;
    --register-muted: #64748b;
    --register-orange: #f97316;
    --register-red: #dc2626;
    --register-line: #e9e4dd;
    --register-soft: #fff8ed;
    --register-blue: #2563eb;
}
.register-page,
.register-page {
    min-height: 100vh;
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--register-ink);
    overflow-x: hidden;
}
.register-page { background: linear-gradient(180deg, #f8fafc, #fff8ed); }
.register-page { background: linear-gradient(180deg, #f8fafc, #eff6ff); }

.register-page main,
.register-page main {
    width: min(1180px, calc(100% - 28px));
    margin: 0 auto;
}

.register-layout,
.register-layout {
    display: grid;
    grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
    gap: 18px;
    align-items: start;
}

/* Aside */
.register-aside,
.register-aside {
    position: sticky;
    top: 112px;
    overflow: hidden;
    border-radius: 28px;
    padding: 30px;
    color: #fff;
    box-shadow: 0 24px 58px rgba(15,23,42,.18);
}
.register-aside {
    background: linear-gradient(150deg, #0b1220, #321017 65%, #9a3412);
}
.register-aside {
    background: linear-gradient(150deg, #0b1220, #172554 70%, #1d4ed8);
}
.register-aside:after,
.register-aside:after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -90px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    filter: blur(13px);
}
.register-aside:after { background: rgba(251,146,60,.2); }
.register-aside:after { background: rgba(96,165,250,.22); }
.register-aside>*,
.register-aside>* {
    position: relative;
    z-index: 1;
}

.aside-icon,
.register-aside-icon {
    display: flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 17px;
    background: rgba(255,255,255,.1);
    font-size: 21px;
}
.register-aside .aside-icon { color: #fdba74; }
.register-aside .register-aside-icon { color: #bfdbfe; }

.aside-kicker,
.register-aside-kicker {
    margin: 25px 0 8px;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.register-aside .aside-kicker { color: #fed7aa; }
.register-aside .register-aside-kicker { color: #bfdbfe; }

.register-aside h1,
.register-aside h1 {
    margin: 0;
    font-size: clamp(1.85rem, 3.6vw, 3.25rem);
    font-weight: 950;
    line-height: .98;
    letter-spacing: -.055em;
}
.register-aside>p,
.register-aside>p {
    margin: 15px 0 0;
    color: rgba(255,255,255,.7);
    font-size: 13px;
    line-height: 1.6;
}

.aside-list,
.register-list {
    display: grid;
    gap: 11px;
    margin-top: 27px;
}
.aside-list div,
.register-list div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,.78);
    font-size: 11px;
    line-height: 1.45;
}
.aside-list i { color: #fdba74; }
.register-list i { color: #93c5fd; }

.aside-switch,
.register-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    margin-top: 27px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 12px;
    padding: 10px 12px;
    color: #fff;
    text-decoration: none;
    font-size: 10px;
    font-weight: 900;
    transition: .2s;
}
.aside-switch:hover,
.register-switch:hover {
    background: rgba(255,255,255,.1);
    transform: translateY(-2px);
}

/* Cards */
.register-card,
.register-card {
    overflow: hidden;
    border: 1px solid rgba(226,232,240,.85);
    border-radius: 28px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 18px 50px rgba(15,23,42,.08);
}
.register-card-head,
.register-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background: #182032;
    padding: 22px 25px 17px;
    border-bottom: 1px solid #f1f5f9;
}
.register-card-head h2,
.register-card-head h2 {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 950;
    letter-spacing: -.03em;
}
.register-card-head p,
.register-card-head p {
    margin: 6px 0 0;
    color: var(--register-muted);
    font-size: 12px;
}
.register-head-icon {
    display: flex;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #fff0df;
    color: #ea580c;
}
.register-head-icon.blue,
.register-head-icon {
    background: #eaf2ff;
    color: var(--register-blue);
}

.register-form-wrap,
.register-form-wrap {
    padding: 22px 28px 27px;
}

/* Alerts */
.register-alert,
.register-alert {
    display: flex;
    gap: 10px;
    margin-bottom: 19px;
    border: 1px solid #fecaca;
    border-radius: 15px;
    background: #fff1f2;
    padding: 12px 14px;
    color: #b91c1c;
    font-size: 11px;
    line-height: 1.5;
}
.register-alert ul,
.register-alert ul {
    margin: 5px 0 0;
    padding-left: 16px;
}

/* Progress */
.register-progress,
.register-progress {
    display: grid;
    gap: 8px;
    margin: 0 0 25px;
}
.register-progress { grid-template-columns: repeat(3, 1fr); }
.register-progress.two { grid-template-columns: repeat(2, 1fr); }
.register-progress { grid-template-columns: repeat(2, 1fr); }

.register-progress-item,
.register-progress span {
    position: relative;
    height: 5px;
    border-radius: 99px;
    background: #e2e8f0;
}
.register-progress-item:after,
.register-progress span:after {
    content: attr(data-label);
    position: absolute;
    top: 10px;
    left: 0;
    color: #94a3b8;
    font-size: 9px;
    font-weight: 800;
}
.register-progress-item.active {
    background: linear-gradient(90deg, #fb923c, #ea580c);
}
.register-progress-item.active:after { color: #ea580c; }
.register-progress-item.done { background: #34d399; }
.register-progress-item.done:after { color: #059669; }

.register-progress span.active {
    background: linear-gradient(90deg, #60a5fa, #2563eb);
}
.register-progress span.active:after { color: #2563eb; }
.register-progress span.done { background: #34d399; }
.register-progress span.done:after { color: #059669; }

/* Steps */
.register-step,
.register-step {
    display: none;
    animation: stepIn .3s ease;
}
.register-step.active,
.register-step.active { display: block; }
@keyframes stepIn {
    from { opacity: 0; transform: translateY(7px); }
    to { opacity: 1; transform: none; }
}

.step-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 17px;
}
.step-heading h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 950;
}
.step-heading p {
    margin: 5px 0 0;
    color: var(--register-muted);
    font-size: 11px;
    line-height: 1.5;
}
.step-number {
    display: flex;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    font-size: 12px;
    font-weight: 950;
}
.register-page .step-number {
    background: #fff0df;
    color: #ea580c;
}
.register-page .step-number.blue,
.register-page .step-number {
    background: #eaf2ff;
    color: var(--register-blue);
}

/* Fields */
.field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.field { min-width: 0; }
.field.full { grid-column: 1/-1; }
.field label {
    display: block;
    color: #475569;
    font-size: 10px;
    font-weight: 900;
}
.field .required { color: #ef4444; }
.field .optional {
    color: #94a3b8;
    font-size: 9px;
    font-weight: 700;
}
.field input,
.field select,
.field textarea {
    display: block;
    width: 100%;
    min-width: 0;
    margin-top: 6px;
    border: 1px solid var(--register-line);
    border-radius: 12px;
    background: #fff;
    padding: 11px 12px;
    color: #0f172a;
    font: inherit;
    font-size: 13px;
    outline: none;
    transition: .2s;
}
.field textarea { min-height: 80px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: #a8b1bf; }
.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: #fb923c;
    box-shadow: 0 0 0 4px rgba(251,146,60,.12);
}
.register-page .field input:focus,
.register-page .field select:focus,
.register-page .field textarea:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 4px rgba(37,99,235,.11);
}
.field input[readonly] { background: #f8fafc; color: #64748b; }
.field-helper {
    display: block;
    margin-top: 5px;
    color: #94a3b8;
    font-size: 9px;
    font-weight: 700;
    line-height: 1.4;
}
.invalid {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 4px rgba(239,68,68,.1) !important;
}

.address-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}
.address-toolbar strong { font-size: 12px; font-weight: 950; }
.address-toolbar span { color: #94a3b8; font-size: 10px; }

.status-msg {
    display: block;
    min-height: 15px;
    margin-top: 5px;
    font-size: 9px;
    font-weight: 900;
}
.status-msg.loading { color: #d97706; }
.status-msg.success { color: #059669; }
.status-msg.error { color: #dc2626; }

/* Vehicle options */
.vehicle-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
}
.vehicle-option {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 105px;
    border: 1px solid var(--register-line);
    border-radius: 16px;
    background: #fff;
    color: #64748b;
    cursor: pointer;
    transition: .2s;
}
.vehicle-option:hover {
    border-color: #fdba74;
    transform: translateY(-2px);
}
.vehicle-option.active {
    border-color: #fb923c;
    background: #fff7ed;
    color: #c2410c;
    box-shadow: 0 0 0 3px rgba(251,146,60,.12);
}
.vehicle-option i { font-size: 23px; }
.vehicle-option span { font-size: 11px; font-weight: 900; }
.vehicle-option input { position: absolute; opacity: 0; pointer-events: none; }

/* Capacity */
.capacity-box {
    margin-top: 14px;
    border: 1px solid #dbeafe;
    border-radius: 16px;
    background: #eff6ff;
    padding: 13px;
}
.capacity-box label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #1e40af;
    font-size: 10px;
    font-weight: 900;
}
.capacity-box output { font-size: 15px; font-weight: 950; }
.capacity-box input {
    width: 100%;
    margin-top: 9px;
    accent-color: #2563eb;
}

/* Consent */
.register-consent,
.register-consent {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #64748b;
    font-size: 10px;
    line-height: 1.45;
}
.register-consent input,
.register-consent input {
    margin-top: 2px;
    accent-color: #f97316;
}
.register-consent input { accent-color: #2563eb; }

/* Navigation */
.register-nav,
.register-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 23px;
    padding-top: 19px;
    border-top: 1px solid #f1f5f9;
}
.register-nav button,
.register-nav button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 43px;
    border: 0;
    border-radius: 12px;
    padding: 11px 16px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 950;
    transition: .2s;
}
.register-nav button:hover,
.register-nav button:hover { transform: translateY(-2px); }
.register-nav .back,
.register-nav .back {
    background: #f8fafc;
    color: #64748b;
}
.register-nav .next,
.register-nav .submit {
    background: linear-gradient(135deg, #fb923c, #ea580c);
    color: #fff;
    box-shadow: 0 9px 20px rgba(234,88,12,.2);
}
.register-nav .next.blue,
.register-nav .next,
.register-nav .submit {
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    box-shadow: 0 9px 20px rgba(37,99,235,.2);
}
.register-nav .submit,
.register-nav .submit { display: none; }

/* Lookup box */
.lookup-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    border: 1px solid #dbeafe;
    border-radius: 15px;
    background: #eff6ff;
    padding: 11px 12px;
    color: #1e40af;
    font-size: 10px;
    line-height: 1.45;
}
.lookup-box i { margin-top: 2px; font-size: 16px; }
.lookup-box strong { display: block; font-weight: 950; }

/* Closed card */
.closed-card {
    max-width: 650px;
    margin: 0 auto;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    background: #fff;
    padding: 42px 34px;
    text-align: center;
    box-shadow: 0 20px 55px rgba(15,23,42,.09);
}
.closed-icon {
    display: flex;
    width: 68px;
    height: 68px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    font-size: 28px;
}
.register-page .closed-icon { background: #fff7ed; color: #ea580c; }
.register-page .closed-icon { background: #eff6ff; color: #2563eb; }
.closed-card h1 {
    margin: 20px 0 0;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    font-weight: 950;
    letter-spacing: -.05em;
}
.closed-card p {
    margin: 13px auto 0;
    max-width: 480px;
    color: var(--register-muted);
    font-size: 13px;
    line-height: 1.6;
}
.closed-card a {
    display: inline-flex;
    margin-top: 23px;
    border-radius: 12px;
    background: #0b1220;
    padding: 11px 16px;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 900;
}

/* ─── SUCESSO ────────────────────────────────────────────────────── */
.success-page {
    min-height: 100vh;
    margin: 0;
    background: radial-gradient(circle at 10% 15%, rgba(251,146,60,.12), transparent 34%), linear-gradient(180deg, #f8fafc, #fff7ed);
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    color: var(--ink);
    overflow-x: hidden;
}
.success-page main {
    width: min(650px, calc(100% - 24px));
    margin: 0 auto;
    padding: 130px 0 70px;
}
.success-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226,232,240,.9);
    border-radius: 30px;
    background: rgba(255,255,255,.94);
    padding: 37px 34px;
    text-align: center;
    box-shadow: 0 25px 65px rgba(15,23,42,.11);
    backdrop-filter: blur(15px);
}
.success-card::before {
    content: '';
    position: absolute;
    top: -130px;
    right: -110px;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    background: rgba(251,146,60,.13);
    filter: blur(10px);
}
.success-card>* { position: relative; z-index: 1; }
.success-icon {
    display: flex;
    width: 72px;
    height: 72px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: linear-gradient(135deg, #34d399, #059669);
    color: #fff;
    font-size: 28px;
    box-shadow: 0 14px 28px rgba(5,150,105,.2);
}
.success-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 20px;
    border: 1px solid #fed7aa;
    border-radius: 999px;
    background: #fff7ed;
    padding: 7px 12px;
    color: #c2410c;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .09em;
    text-transform: uppercase;
}
.success-card h1 {
    margin: 17px 0 0;
    font-size: clamp(2rem, 5vw, 3.1rem);
    font-weight: 950;
    line-height: .98;
    letter-spacing: -.055em;
}
.success-card h1 span { color: #ea580c; }
.success-card>p {
    max-width: 500px;
    margin: 16px auto 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}
.success-protocol {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 21px;
    border-radius: 12px;
    background: #f8fafc;
    padding: 9px 12px;
    color: #64748b;
    font-size: 10px;
    font-weight: 900;
}
.success-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 23px;
    text-align: left;
}
.success-detail {
    border: 1px solid #f1e7d8;
    border-radius: 15px;
    background: #fffaf3;
    padding: 11px;
}
.success-detail i { color: #ea580c; font-size: 13px; }
.success-detail span {
    display: block;
    margin-top: 7px;
    color: #64748b;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.3;
}
.success-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 25px;
}
.success-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 13px;
    padding: 12px 10px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 950;
    transition: .2s ease;
}
.success-actions a:hover { transform: translateY(-2px); }
.success-actions .primary {
    background: linear-gradient(135deg, #fb923c, #ea580c);
    color: #fff;
    box-shadow: 0 10px 20px rgba(234,88,12,.2);
}
.success-actions .secondary {
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #475569;
}
.success-note {
    margin: 19px 0 0;
    color: #94a3b8;
    font-size: 9px;
}
.success-note i { margin-right: 4px; color: #059669; }

/* ─── CONTATO ────────────────────────────────────────────────────── */
.contact-page {
    min-height: 100vh;
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
}
.contact-page a {text-decoration: none; }
.contact-page button,
.contact-page input { font: inherit; }

.contact-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 96px 24px 132px;
    color: #fff;
    background:
        radial-gradient(circle at 82% 24%, rgba(251,146,60,.23), transparent 30%),
        radial-gradient(circle at 8% 80%, rgba(220,38,38,.18), transparent 28%),
        linear-gradient(132deg, #091120 0%, #17213a 55%, #551a16 100%);
}
.contact-hero-inner,
.contact-main {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}
.contact-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(310px, .88fr);
    gap: clamp(36px, 7vw, 90px);
    align-items: center;
}
.contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 13px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    color: #fed7aa;
    background: rgba(255,255,255,.08);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}
.contact-eyebrow i { color: #fb923c; }
.contact-hero h1 {
    max-width: 670px;
    margin: 20px 0 0;
    font-family: 'Space Grotesk', ui-sans-serif, sans-serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: .96;
    letter-spacing: -.065em;
}
.contact-hero h1 em { color: #fdba74; font-style: normal; }
.contact-hero-copy {
    max-width: 555px;
    margin: 22px 0 0;
    color: rgba(255,255,255,.7);
    font-size: 15px;
    line-height: 1.7;
}
.contact-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 29px;
}
.contact-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    color: rgba(255,255,255,.7);
    background: rgba(255,255,255,.07);
    font-size: 10px;
    font-weight: 700;
}
.contact-hero-meta i { color: #fdba74; }

.contact-main {
   position: relative;
    z-index: 2;
    margin: 30px AUTO;
}
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
    gap: 18px;
    align-items: start;
}
.contact-card {
    padding: clamp(21px, 3vw, 30px);
    border: 1px solid rgba(234,223,206,.95);
    border-radius: 25px;
    background: #fff;
    box-shadow: var(--shadow);
}
.contact-card + .contact-card { margin-top: 18px; }
.contact-card--dark {
    color: #fff;
    border-color: rgba(255,255,255,.1);
    background: #101c32;
    box-shadow: 0 22px 58px rgba(15,23,42,.18);
}
.contact-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
}
.contact-section-kicker {
    margin: 0 0 7px;
    color: var(--orange);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.contact-card--dark .contact-section-kicker { color: #fdba74; }
.contact-card h2 {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.55rem, 3vw, 1rem);
    line-height: 1;
    letter-spacing: -.045em;
}
.contact-card-intro {
    max-width: 420px;
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}
.contact-card--dark .contact-card-intro { color: rgba(255,255,255,.55); }
.contact-live-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    border-radius: 999px;
    color: #15803d;
    background: #ecfdf3;
    font-size: 9px;
    font-weight: 800;
    white-space: nowrap;
}
.contact-live-pill i { font-size: 7px; }

.contact-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.contact-item {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 95px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    color: inherit;
    text-align: left;
    background: #fffaf3;
    cursor: pointer;
    font: inherit;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.contact-item:hover,
.contact-item:focus-visible {
    transform: translateY(-3px);
    border-color: #fdba74;
    outline: none;
    box-shadow: 0 12px 22px rgba(194,65,12,.1);
}
.contact-item:focus-visible { box-shadow: 0 0 0 3px rgba(249,115,22,.2), 0 12px 22px rgba(194,65,12,.1); }
.contact-copy {
    display: block;
    width: calc(100% - 4px);
    min-width: 0;
}
.contact-icon {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    place-items: center;
    border-radius: 10px;
    color: #c2410c;
    background: #ffedd5;
    font-size: 13px;
}
.contact-whatsapp .contact-icon { color: #15803d; background: #dcfce7; }
.contact-phone .contact-icon { color: #2563eb; background: #dbeafe; }
.contact-location .contact-icon { color: #7c3aed; background: #ede9fe; }
.contact-site .contact-icon { color: #0891b2; background: #cffafe; }
.contact-label {
    display: block;
    color: #a08f7c;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.contact-hint {
    display: block;
    margin-top: 5px;
    color: #9d8d7b;
    font-size: 10px;
    font-weight: 600;
}
.contact-value {
    display: block;
    overflow: hidden;
    margin-top: 3px;
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    text-overflow: ellipsis;
    overflow-wrap: anywhere;
}
.contact-arrow {
    position: absolute;
    top: 14px;
    right: 13px;
    margin: 0;
    color: #c7b8a6;
    font-size: 10px;
}
.contact-empty {
    padding: 22px 0 4px;
    color: var(--muted);
    font-size: 12px;
}

/* Social grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
    margin-top: 18px;
}
.social-btn {
    display: grid;
    width: 100%;
    min-height: 52px;
    place-items: center;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 13px;
    color: #475467;
    background: #fffaf3;
    font-size: 11px;
    font-weight: 800;
    transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.social-btn:hover,
.social-btn:focus-visible {
    transform: translateY(-2px);
    border-color: #fdba74;
    outline: none;
    background: #fff;
}
.social-btn:focus-visible { box-shadow: 0 0 0 3px rgba(249,115,22,.16); }
.social-btn i { color: #ea580c; text-align: center; font-size: 20px; }
.social-instagram i { color: #e1306c; }
.social-facebook i { color: #1877f2; }
.social-youtube i { color: #ff0000; }
.social-tiktok i,
.social-twitter i { color: #111827; }
.social-linkedin i { color: #0a66c2; }
.social-empty { grid-column: 1 / -1; color: var(--muted); font-size: 12px; }

/* Newsletter */
.newsletter-copy {
    margin: 7px 0 0;
    color: rgba(255,255,255,.58);
    font-size: 12px;
    line-height: 1.6;
}
.nl-form {
    display: flex;
    gap: 8px;
    margin-top: 17px;
}
.nl-form input {
    min-width: 0;
    flex: 1;
    padding: 11px 12px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 12px;
    outline: none;
    color: #fff;
    background: rgba(255,255,255,.08);
    font-size: 12px;
}
.nl-form input::placeholder { color: rgba(255,255,255,.36); }
.nl-form input:focus {
    border-color: #fb923c;
    box-shadow: 0 0 0 3px rgba(251,146,60,.14);
}
.nl-form button {
    flex: 0 0 auto;
    padding: 10px 13px;
    border: 0;
    border-radius: 12px;
    color: #1c1917;
    background: linear-gradient(135deg, #fdba74, #fb923c);
    font-size: 11px;
    font-weight: 900;
    cursor: pointer;
    transition: transform .2s ease, filter .2s ease;
}
.nl-form button:hover { transform: translateY(-2px); filter: brightness(1.08); }
#nlMsg {
    min-height: 15px;
    margin: 8px 0 0;
    font-size: 11px;
    font-weight: 700;
}

/* Message form */
.msg-form {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}
.msg-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.msg-field label {
    display: block;
    margin-bottom: 5px;
    color: #7c6f60;
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.msg-field input,
.msg-field textarea {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid var(--line);
    border-radius: 12px;
    outline: none;
    color: var(--ink);
    background: #fffaf3;
    font: inherit;
    font-size: 12.5px;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.msg-field textarea {
    resize: vertical;
    min-height: 96px;
}
.msg-field input:focus,
.msg-field textarea:focus {
    border-color: #fb923c;
    box-shadow: 0 0 0 3px rgba(251,146,60,.15);
    background: #fff;
}
.msg-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, #dc2626, #f97316);
    font-size: 12.5px;
    font-weight: 900;
    transition: transform .2s ease, filter .2s ease;
}
.msg-submit:hover { transform: translateY(-2px); filter: brightness(1.06); }
.msg-submit:disabled {
    opacity: .6;
    cursor: default;
    transform: none;
}
#msgFormStatus {
    min-height: 16px;
    margin: 2px 0 0;
    font-size: 11px;
    font-weight: 700;
}
#msgFormStatus.ok { color: #15803d; }
#msgFormStatus.err { color: #dc2626; }

/* Contact Modals */
.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background: rgba(2,6,23,.68);
    backdrop-filter: blur(12px);
    transition: opacity .22s ease, visibility .22s ease;
}
.contact-modal.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
.contact-modal-panel {
    position: relative;
    width: min(390px, 100%);
    overflow: hidden;
    padding: 28px 24px 23px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 25px;
    color: #fff;
    background: linear-gradient(145deg, #17243d, #0b1220 72%);
    box-shadow: 0 28px 80px rgba(0,0,0,.4);
    transform: translateY(10px) scale(.97);
    transition: transform .24s cubic-bezier(.23,1,.32,1);
}
.contact-modal.is-open .contact-modal-panel {
    transform: translateY(0) scale(1);
}
.contact-modal-panel::before {
    position: absolute;
    top: -90px;
    right: -80px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(251,146,60,.16);
    filter: blur(8px);
    content: '';
    pointer-events: none;
}
.contact-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1;
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    color: rgba(255,255,255,.75);
    background: rgba(255,255,255,.08);
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}
.contact-modal-close:hover,
.contact-modal-close:focus-visible {
    color: #fff;
    outline: none;
    background: rgba(255,255,255,.18);
}
.contact-modal-icon {
    position: relative;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 15px;
    color: #fed7aa;
    background: rgba(251,146,60,.17);
    font-size: 19px;
}
.contact-modal-kicker {
    position: relative;
    margin-top: 17px;
    color: #fdba74;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.contact-modal-panel h2 {
    position: relative;
    margin: 7px 0 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 27px;
    line-height: 1;
    letter-spacing: -.045em;
}
.contact-modal-value {
    position: relative;
    margin: 13px 0 0;
    color: rgba(255,255,255,.82);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    overflow-wrap: anywhere;
}
.contact-modal-note {
    position: relative;
    margin: 9px 0 0;
    color: rgba(255,255,255,.5);
    font-size: 11px;
    line-height: 1.5;
}
.contact-modal-action {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 43px;
    margin-top: 20px;
    padding: 10px 13px;
    border: 0;
    border-radius: 12px;
    color: #1c1917;
    background: linear-gradient(135deg, #fdba74, #fb923c);
    cursor: pointer;
    font-size: 11px;
    font-weight: 900;
    transition: transform .2s ease, filter .2s ease;
}
.contact-modal-action:hover,
.contact-modal-action:focus-visible {
    transform: translateY(-2px);
    outline: none;
    filter: brightness(1.08);
}
.contact-modal-status {
    position: relative;
    min-height: 14px;
    margin: 8px 0 0;
    color: #86efac;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
}
.contact-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ─── QUICK CONTACT (dev_contato.php) ────────────────────────────── */
.qc-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    background: radial-gradient(circle at 12% 10%, rgba(251,146,60,.10), transparent 32%), #f8fafc;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    color: var(--ink);
}
.qc-main {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 14px 64px;
}
.qc-wrap { width: min(480px, 100%); text-align: center; }
.qc-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 6px;
    border: 1px solid #fed7aa;
    border-radius: 999px;
    background: #fff7ed;
    padding: 5px 11px;
    color: #c2410c;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.qc-title {
    margin: 0 0 3px;
    font-size: clamp(1.25rem, 5vw, 1.6rem);
    font-weight: 900;
    letter-spacing: -.02em;
}
.qc-subtitle {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 11px;
}
.qc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 100%;
}
.qc-icon-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 4px;
    border: 1px solid #eef0f4;
    border-radius: 14px;
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    font: inherit;
    box-shadow: 0 6px 16px rgba(15,23,42,.05);
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.qc-icon-btn:hover,
.qc-icon-btn:focus-visible {
    transform: translateY(-2px);
    border-color: #fdba9c;
    box-shadow: 0 10px 20px rgba(234,88,12,.12);
    outline: none;
}
.qc-icon-circle {
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #fb923c, #ea580c);
    color: #fff;
    font-size: 15px;
}
.qc-icon-btn span {
    max-width: 100%;
    overflow: hidden;
    color: #475569;
    font-size: 8.5px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.qc-empty { margin-top: 10px; color: #94a3b8; font-size: 11px; }

.qc-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    visibility: hidden;
    background: rgba(11,18,32,.6);
    opacity: 0;
    transition: opacity .18s ease, visibility 0s linear .18s;
}
.qc-modal.is-open {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}
.qc-modal-panel {
    position: relative;
    width: min(320px, 100%);
    border-radius: 20px;
    background: #fff;
    padding: 24px 20px 20px;
    text-align: center;
    box-shadow: 0 30px 70px rgba(15,23,42,.3);
    transform: translateY(8px) scale(.97);
    transition: transform .18s ease;
}
.qc-modal.is-open .qc-modal-panel {
    transform: translateY(0) scale(1);
}
.qc-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    width: 26px;
    height: 26px;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: #f1f5f9;
    color: #475569;
    cursor: pointer;
    font-size: 11px;
}
.qc-modal-icon {
    display: flex;
    width: 52px;
    height: 52px;
    margin: 0 auto 10px;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #fb923c, #ea580c);
    color: #fff;
    font-size: 20px;
}
.qc-modal-panel h2 {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 900;
}
.qc-modal-value {
    margin: 0 0 14px;
    color: #475569;
    font-size: 12px;
    line-height: 1.5;
    word-break: break-word;
}
.qc-modal-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #fb923c, #ea580c);
    padding: 11px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}
.qc-modal-status {
    min-height: 14px;
    margin: 8px 0 0;
    color: #16a34a;
    font-size: 10px;
    font-weight: 700;
}

/* ─── FOOTER ────────────────────────────────────────────────────── */
.site-footer {
    position: relative;
    z-index: 40;
    padding: 56px 24px 0;
    color: rgba(255,255,255,.62);
    background:
        radial-gradient(circle at 12% 0%, rgba(220,38,38,.16), transparent 32%),
        radial-gradient(circle at 88% 12%, rgba(249,115,22,.13), transparent 30%),
        #0b1220;
    font-family: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
}
.site-footer a { text-decoration: none; }
.site-footer .footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}
.site-footer .footer-grid {
    display: grid;
    grid-template-columns: minmax(0,1.2fr) minmax(0,.8fr) minmax(0,1fr) minmax(0,1.1fr);
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-footer .footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.site-footer .footer-brand-logo img {
    height: 34px;
    width: 34px;
    object-fit: contain;
    border-radius: 9px;
    background: rgba(255,255,255,.06);
    padding: 4px;
}
.site-footer .footer-brand-logo span {
    color: #fff;
    font-family: 'Space Grotesk', ui-sans-serif, sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -.02em;
}
.site-footer .footer-slogan {
    max-width: 300px;
    margin: 0 0 16px;
    font-size: 12.5px;
    line-height: 1.7;
    color: rgba(255,255,255,.5);
}
.site-footer .footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.site-footer .footer-social a {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    color: rgba(255,255,255,.7);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    font-size: 12px;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}
.site-footer .footer-social a:hover {
    transform: translateY(-2px);
    color: #fff;
    background: linear-gradient(135deg, #dc2626, #f97316);
    border-color: transparent;
}
.site-footer h4 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}
.site-footer .footer-links {
    display: grid;
    gap: 9px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-footer .footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.58);
    font-size: 12.5px;
    font-weight: 600;
    transition: color .2s ease, transform .2s ease;
}
.site-footer .footer-links a:hover { color: #fdba74; transform: translateX(3px); }
.site-footer .footer-links a i { width: 14px; color: rgba(255,255,255,.32); font-size: 11px; }
.site-footer .footer-contact-list {
    display: grid;
    gap: 11px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-footer .footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255,255,255,.58);
}
.site-footer .footer-contact-list li a { color: inherit; }
.site-footer .footer-contact-list li a:hover { color: #fdba74; }
.site-footer .footer-contact-list i {
    display: grid;
    place-items: center;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border-radius: 7px;
    color: #fdba74;
    background: rgba(251,146,60,.12);
    font-size: 10px;
}
.site-footer .footer-nl-copy {
    margin: 0 0 12px;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255,255,255,.5);
}
.site-footer .footer-nl-form {
    display: flex;
    gap: 7px;
}
.site-footer .footer-nl-form input {
    min-width: 0;
    flex: 1;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 10px;
    outline: none;
    color: #fff;
    background: rgba(255,255,255,.07);
    font-size: 12px;
}
.site-footer .footer-nl-form input::placeholder { color: rgba(255,255,255,.35); }
.site-footer .footer-nl-form input:focus { border-color: #fb923c; box-shadow: 0 0 0 3px rgba(251,146,60,.14); }
.site-footer .footer-nl-form button {
    flex: 0 0 auto;
    padding: 10px 14px;
    border: 0;
    border-radius: 10px;
    color: #1c1917;
    background: linear-gradient(135deg, #fdba74, #fb923c);
    font-size: 11px;
    font-weight: 900;
    cursor: pointer;
    transition: transform .2s ease, filter .2s ease;
}
.site-footer .footer-nl-form button:hover { transform: translateY(-2px); filter: brightness(1.08); }
.site-footer .footer-nl-form button:disabled { opacity: .6; cursor: default; transform: none; }
.site-footer #footerNlMsg { min-height: 14px; margin: 8px 0 0; font-size: 10.5px; font-weight: 700; }
.site-footer #footerNlMsg.ok  { color: #4ade80; }
.site-footer #footerNlMsg.err { color: #f87171; }
.site-footer .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 16px 0 20px;
}
.site-footer .footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,.32);
    font-size: 10.5px;
}
.site-footer .footer-bottom .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.site-footer .footer-bottom .footer-legal-links a {
    color: rgba(255,255,255,.32);
    font-size: 10.5px;
    font-weight: 600;
    transition: color .2s ease;
}
.site-footer .footer-bottom .footer-legal-links a:hover { color: rgba(255,255,255,.7); }

/* ─── RESPONSIVO ────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .home-posts { grid-template-columns: repeat(3, 1fr); }
    .home-links-grid { grid-template-columns: repeat(3, 1fr); }
    .home-intro-grid { grid-template-columns: 1fr; gap: 18px; }
    .home-intro-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-story-card { flex: 0 0 240px; height: 320px; }
    .home-testi-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .site-footer .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 26px 18px; }
}

@media (max-width: 860px) {
    .contact-hero { padding-top: 68px; }
    .contact-hero-inner,
    .contact-layout { grid-template-columns: 1fr; }
    .contact-hero-card { max-width: 620px; }
    .contact-main { margin-top: -38px; }
}

@media (max-width: 820px) {
    .register-layout,
    .register-layout {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 15px;
    }
    .register-aside,
    .register-aside {
        position: relative;
        top: auto;
        display: none;
        padding: 23px;
    }
    .aside-list,
    .register-list {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 20px;
    }
    .register-card,
    .register-card { border-radius: 22px; }

    .home-hero {
        height: clamp(340px, var(--hero-height-mobile, var(--hero-height, 60vh)), 680px);
    }
    .home-hero-copy { padding-top: 92px; padding-bottom: 72px; }
    .home-hero-title { font-size: clamp(2.05rem, 9vw, 3.7rem); }
    .home-hero-description { font-size: 14px; line-height: 1.45; }
    .home-intro-grid { grid-template-columns: 1fr; gap: 15px; }
    .home-section { padding: 48px 0; }
    .home-section-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
    .home-process { grid-template-columns: 1fr 1fr 1fr; }
    .home-process-card::after,
    .home-process-card::before { display: none; }
    .home-links-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .home-posts { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .home-cta { padding: 58px 16px; }
}

@media (max-width: 640px) {
    .home-hero {
        height: clamp(320px, var(--hero-height-mobile, var(--hero-height, 58vh)), 620px);
        min-height: 650px;
    }
    .home-hero-media.desktop { display: none; }
    .home-hero-media.mobile {
        display: block;
        object-position: center top;
        height: 100%;
    }
    .home-hero-copy { padding: 80px 20px 100px; }
    .home-hero-title { font-size: clamp(2.35rem, 12vw, 3.6rem); }
    .home-hero-description { font-size: 13px; }
    .home-hero-actions { display: grid; grid-template-columns: 1fr; gap: 8px; }
    .btn { width: 100%; min-height: 44px; }
    .home-hero-controls { right: 20px; bottom: 20px; left: 20px; }
    .home-hero-progress { max-width: none; }
    .home-intro {
        width: calc(100% - 20px);
        padding: 17px;
    }
    .home-intro h2 { font-size: 1.5rem; }
    .home-intro-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }
    .home-intro-card {
        min-height: 132px;
        border-radius: 17px;
    }
    .home-intro-card-copy { padding: 11px; }
    .home-intro-card h3 { margin-top: 7px; font-size: 11px; }
    .home-intro-card p { font-size: 9px; }
    .home-section {
        width: calc(100% - 24px);
        padding: 48px 0;
    }
    .home-section-header { display: block; margin-bottom: 17px; }
    .home-section-header .home-text-link { margin-top: 12px; }
    .home-process {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 9px;
    }
    .home-process-card { padding: 10px; }
    .home-process-card::after,
    .home-process-card::before { display: none; }
    .home-process-number { margin-top: 12px; }
    .home-process-card h3 { font-size: 12px; }
    .home-story-card {
        flex: 0 0 100px;
        height: 150px;
        border-radius: 16px;
    }
    .home-links-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
    }
    .home-link-card { gap: 7px; padding: 9px; }
    .home-link-media {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }
    .home-link-content strong { font-size: 10px; }
    .home-link-content span { font-size: 8px; }
    .home-link-arrow { display: none; }
    .home-posts {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .home-cta-actions .home-btn {
    font-size: 11px;
    margin: 10px 0px;
}

    .home-post { border-radius: 15px; }
    .home-post-copy { font-size: 10px; }
    .home-cta { padding: 10px; }
    .home-cta h2 { font-size: 1.22rem; }
    .home-cta p { font-size: 12px; }
    .home-cta-actions .btn {
        flex: 1 1 auto;
        min-width: 0;
        max-width: none;
        padding: 10px 12px;
        font-size: 10.5px;
        white-space: nowrap;
    }
    .home-modal { padding: 10px; }
    .home-modal-card {
        width: min(420px, 350px);
        height: min(580px, calc(100svh - 20px));
    }
    .home-modal-image { height: 100%; }
    .home-testi-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }
    .home-testi-author-info { padding-top: 7px; }
    .home-testi-author-info strong { font-size: 10px; }
    .home-testi-author-info span { font-size: 8px; }

    .home-resp-banner-inner {
        grid-template-columns: 1.12fr .88fr;
        text-align: left;
        width: calc(100% - 28px);
        padding: 36px 0 32px;
        gap: 12px;
    }
    .home-resp-banner-title {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        font-size: 1.35rem;
    }
    .home-resp-banner-sub {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        font-size: 10.5px;
        line-height: 1.5;
    }
    .home-resp-banner-byline {
        justify-content: flex-start;
        flex-wrap: wrap;
        margin-top: 13px;
        font-size: 10px;
    }
    .home-resp-banner-media {
        order: initial;
        min-height: 190px;
    }
    .home-resp-banner-photo {
        width: min(180px, 100%);
        font-size: 42px;
    }
    .home-resp-banner-ring {
        width: 70%;
        top: 5%;
        right: 0;
    }
    .home-resp-banner .btn {
        width: auto;
        min-height: 38px;
        margin-top: 16px;
        padding: 9px 11px;
        font-size: 9.5px;
    }
    .home-resp-card {
        width: min(360px, 100%);
        max-height: calc(100svh - 20px);
        border-radius: 20px;
    }
    .home-resp-hero {
        padding: 26px 18px 44px;
    }
    .home-resp-avatar {
        width: 78px;
        height: 78px;
        font-size: 24px;
    }
    .home-resp-name {
        font-size: 17px;
        margin-top: 12px;
    }
    .home-resp-role { font-size: 9.5px; }
    .home-resp-badge {
        font-size: 9.5px;
        padding: 4px 9px;
    }
    .home-resp-body { padding: 16px 16px 18px; }
    .home-resp-quote {
        padding: 13px 13px 13px 34px;
        font-size: 12px;
    }
    .home-resp-quote i {
        top: 12px;
        left: 12px;
        font-size: 13px;
    }
    .home-resp-social {
        width: 34px;
        height: 34px;
        font-size: 12.5px;
    }

    
    
    
    
    
    
    
    
}





@media (max-width: 560px) {
    .register-aside,
    .register-aside {
        padding: 17px;
        border-radius: 18px;
    }
    .aside-icon,
    .register-aside-icon {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }
    .aside-kicker,
    .register-aside-kicker { font-size: 9px; }
    .register-aside h1,
    .register-aside h1 { font-size: 1.8rem; }
    .register-aside>p,
    .register-aside>p { font-size: 11px; }
    .aside-list,
    .register-list {
        grid-template-columns: 1fr;
        gap: 7px;
        margin-top: 15px;
    }
    .aside-list div,
    .register-list div { font-size: 10px; }
    .aside-switch,
    .register-switch {
        width: 100%;
        justify-content: center;
    }
    .register-card-head,
    .register-card-head {
        gap: 10px;
        padding: 14px 13px 12px;
    }
    .register-card-head h2,
    .register-card-head h2 {
        font-size: 14px;
        line-height: 1.15;
    }
    .register-card-head p,
    .register-card-head p {
        font-size: 9px;
        line-height: 1.35;
    }
    .register-head-icon,
    .register-head-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        border-radius: 10px;
    }
    .register-form-wrap,
    .register-form-wrap {
        padding: 14px 12px 17px;
    }
    .register-progress,
    .register-progress { margin-bottom: 20px; }
    .register-progress-item:after,
    .register-progress span:after { font-size: 8px; }
    .field-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .field.full { grid-column: auto; }
    .field label { font-size: 9px; }
    .field input,
    .field select,
    .field textarea {
       margin-top: 4px;
        padding: 9px;
        font-size: 10px;
        border-radius: 10px;
        font-weight: 500;
    }
    .field textarea { min-height: 68px; }
    .field-helper { font-size: 8px; }
    .step-heading {
        gap: 8px;
        margin-bottom: 12px;
    }
    .step-heading h3 { font-size: 14px; }
    .step-heading p { font-size: 9px; }
    .step-number {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
        font-size: 10px;
        border-radius: 9px;
    }
    .vehicle-options { gap: 5px; }
    .vehicle-option {
        min-height: 73px;
        gap: 5px;
    }
    .vehicle-option i { font-size: 17px; }
    .vehicle-option span { font-size: 9px; }
    .register-consent,
    .register-consent { font-size: 9px; }
    .register-nav,
    .register-nav {
        position: sticky;
        bottom: 0;
        z-index: 3;
        margin: 0 -12px -17px;
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
        background: rgba(255,255,255,.96);
        backdrop-filter: blur(12px);
    }
    .register-nav button,
    .register-nav button {
        flex: 1;
        min-height: 40px;
        padding: 9px 10px;
        font-size: 10px;
    }
    .lookup-box {
        padding: 9px 10px;
        font-size: 9px;
    }
    .closed-card {
        padding: 30px 17px;
        border-radius: 20px;
    }
    .closed-card h1 { font-size: 1.8rem; }
    .closed-card p { font-size: 11px; }

    .contact-hero {
        padding: 15px 12px 40px;
    }
    .contact-hero-inner,
    .contact-main { width: 100%; }
    .contact-eyebrow {
        gap: 7px;
        padding: 6px 10px;
        font-size: 8px;
    }
    .contact-hero h1 {
        max-width: 330px;
        margin-top: 14px;
        font-size: clamp(2.15rem, 12vw, 2.8rem);
        line-height: .98;
    }
    .contact-hero-copy {
        max-width: 360px;
        margin-top: 12px;
        font-size: 11px;
        line-height: 1.5;
    }
    .contact-hero-meta {
        gap: 5px;
        margin-top: 15px;
    }
    .contact-hero-meta span {
        gap: 5px;
        padding: 6px 8px;
        border-radius: 8px;
        font-size: 8px;
    }
    .contact-main {
       width: calc(100% - 12px);
        margin: 0 auto;
        padding: 15px;
    }
    .contact-layout { gap: 10px; }
    .contact-card {
        padding: 14px 11px;
        border-radius: 16px;
    }
    .contact-card + .contact-card { margin-top: 10px; }
    .contact-section-head { display: block; margin-bottom: 12px; }
    .contact-section-kicker {
        margin-bottom: 5px;
        font-size: 8px;
    }
    .contact-card h2 { font-size: 1.35rem; }
    .contact-card-intro {
        margin-top: 5px;
        font-size: 10px;
        line-height: 1.45;
    }
    .contact-live-pill {
        margin-top: 9px;
        padding: 5px 7px;
        font-size: 8px;
    }
    .contact-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
    }
    .contact-item {
        min-height: 84px;
        gap: 6px;
        padding: 8px;
        border-radius: 11px;
    }
    .contact-icon {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
        border-radius: 8px;
        font-size: 11px;
    }
    .contact-label { font-size: 7px; }
    .contact-hint {
        margin-top: 3px;
        font-size: 8px;
    }
    .contact-value {
        margin-top: 2px;
        font-size: 9px;
        line-height: 1.25;
    }
    .contact-arrow {
        top: 10px !important;
        right: 9px !important;
        font-size: 8px;
    }
    .social-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
        margin-top: 12px !important;
    }
    .social-btn {
        min-height: 42px;
        padding: 7px;
        border-radius: 10px;
    }
    .social-btn i { font-size: 17px; }
    .newsletter-copy {
        margin-top: 5px;
        font-size: 10px;
        line-height: 1.45;
    }
    .nl-form {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
        margin-top: 11px;
    }
    .nl-form input {
        min-height: 37px;
        padding: 8px 10px;
        border-radius: 10px;
        font-size: 10px;
    }
    .nl-form button {
        min-height: 37px;
        padding: 8px 10px;
        border-radius: 10px;
        font-size: 10px;
    }
    #nlMsg {
        min-height: 13px;
        margin-top: 5px;
        font-size: 9px;
    }
    .msg-row { grid-template-columns: 1fr 1fr; }
    .msg-field input,
    .msg-field textarea {
        padding: 9px 10px;
        font-size: 11px;
    }
    .msg-field textarea { min-height: 72px; }
    .msg-submit {
        padding: 10px 14px;
        font-size: 11px;
    }

    .qc-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    .qc-icon-circle {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .site-footer { padding: 26px 14px 0; }
    .site-footer .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px 14px; padding-bottom: 18px; }
    .site-footer .footer-brand-logo { gap: 8px; margin-bottom: 8px; }
    .site-footer .footer-brand-logo img { height: 26px; width: 26px; border-radius: 7px; padding: 3px; }
    .site-footer .footer-brand-logo span { font-size: 14px; }
    .site-footer .footer-slogan { max-width: none; margin-bottom: 10px; font-size: 10.5px; line-height: 1.5; }
    .site-footer .footer-social { gap: 6px; }
    .site-footer .footer-social a { width: 26px; height: 26px; border-radius: 8px; font-size: 10px; }
    .site-footer h4 { margin-bottom: 9px; font-size: 9px; letter-spacing: .06em; }
    .site-footer .footer-links { gap: 6px; }
    .site-footer .footer-links a { gap: 6px; font-size: 10.5px; }
    .site-footer .footer-links a i { width: 11px; font-size: 9px; }
    .site-footer .footer-contact-list { gap: 7px; }
    .site-footer .footer-contact-list li { gap: 6px; font-size: 10px; line-height: 1.35; }
    .site-footer .footer-contact-list i { flex-basis: 19px; width: 19px; height: 19px; border-radius: 6px; font-size: 8px; }
    .site-footer .footer-nl-copy { margin-bottom: 8px; font-size: 10px; line-height: 1.4; }
    .site-footer .footer-nl-form { flex-direction: column; gap: 6px; }
    .site-footer .footer-nl-form input,
    .site-footer .footer-nl-form button { min-height: 34px; padding: 7px 10px; border-radius: 8px; font-size: 10.5px; }
    .site-footer #footerNlMsg { margin-top: 5px; font-size: 9px; }
    .site-footer .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; padding: 12px 0 16px; }
    .site-footer .footer-bottom p { font-size: 9.5px; }
    .site-footer .footer-bottom .footer-legal-links { gap: 10px; }
    .site-footer .footer-bottom .footer-legal-links a { font-size: 9.5px; }
}

@media (max-width: 480px) {
    .home-hero {
        height: clamp(300px, var(--hero-height-mobile, var(--hero-height, 56vh)), 560px);
    }
    .home-cta-actions .btn {
        padding: 9px 8px;
        font-size: 9.5px;
        gap: 5px;
    }
    .home-testi-grid { gap: 7px; }
    .home-testi-photo { border-radius: 16px; }
    .home-testi-author-info strong { font-size: 9px; }

        .home-resp-banner-inner {
       width: calc(100% - 20px);
        gap: 2px;
        padding: 5px;
        height: 30vh;
                right: 30px;
    }
    
    
    .home-resp-banner-copy {width: 190px;}
    
    
    button {
    padding: 3px 10px;
    font-size: 11px;
    margin: 10px 0px;
}
    
    .home-resp-banner-title { font-size: 1.22rem; }
    .home-resp-banner-sub { font-size: 9px; }
    .home-resp-banner-media {        width: 100%;  justify-content: left; }
    .home-resp-banner-photo { width: 190px; aspect-ratio: 1 / 2;}
    .home-resp-banner-photo img { height: 33vh; }
    .home-resp-banner-ring {
        width: 70%;
        top: 5%;
        right: 0;
    }
    .home-resp-banner-eyebrow {
        padding: 5px 8px;
        font-size: 8px;
    }
    .home-resp-banner .btn {
        padding: 8px 9px;
        font-size: 8.5px;
    }

    .success-page main {
        width: calc(100% - 12px);
        padding: 96px 0 22px;
    }
    .success-card {
        border-radius: 18px;
        padding: 24px 13px;
    }
    .success-icon {
        width: 58px;
        height: 58px;
        border-radius: 18px;
        font-size: 23px;
    }
    .success-badge {
        margin-top: 14px;
        padding: 6px 9px;
        font-size: 9px;
    }
    .success-card h1 {
        margin-top: 14px;
        font-size: clamp(1.75rem, 10vw, 2.3rem);
    }
    .success-card>p {
        margin-top: 12px;
        font-size: 11px;
        line-height: 1.5;
    }
    .success-protocol {
        max-width: 100%;
        margin-top: 16px;
        padding: 8px 9px;
        font-size: 9px;
    }
    .success-details {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 5px;
        margin-top: 17px;
    }
    .success-detail {
        padding: 8px;
        border-radius: 11px;
    }
    .success-detail i { font-size: 11px; }
    .success-detail span {
        margin-top: 5px;
        font-size: 8px;
    }
    .success-actions {
        gap: 7px;
        margin-top: 18px;
    }
    .success-actions a {
        min-height: 42px;
        padding: 10px 8px;
        font-size: 10px;
    }
    .success-note {
        margin-top: 14px;
        font-size: 8px;
        line-height: 1.4;
    }
}

@media (max-width: 360px) {
    .contact-hero { padding-right: 10px; padding-left: 10px; }
    .contact-hero h1 { font-size: 2rem; }
    .contact-hero-copy { font-size: 10px; }
    .contact-hero-meta span { font-size: 7px; }
    .contact-main { width: calc(100% - 8px); }
    .contact-card { padding-right: 9px; padding-left: 9px; }
    .contact-item { min-height: 78px; padding: 7px; }
    .contact-modal { padding: 10px; }
    .contact-modal-panel {
        padding: 24px 18px 18px;
        border-radius: 20px;
    }
    .site-footer .footer-grid { grid-template-columns: 1fr; gap: 16px; }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}