/* =========================================================================
   D&S MobilityRental - estilo da marca
   Paleta oficial (JPG da Dalva): navy #021F59 · azul #0455BF ·
   amarelo #F2CB05 / dourado #F2B807 · vermelho #F20505 · WhatsApp #25D366
   Fontes: Poppins (títulos) + Inter (corpo)
   ========================================================================= */

:root {
    --navy:   #021F59;
    --blue:   #0455BF;
    --blue-d: #033a8c;
    --yellow: #F2CB05;
    --gold:   #F2B807;
    --red:    #F20505;
    --wa:     #25D366;
    --wa-d:   #1da851;

    --ink:    #16233d;
    --muted:  #636569;
    --line:   #e4e9f2;
    --bg:     #f4f7fc;
    --white:  #ffffff;

    --radius: 16px;
    --radius-s: 10px;
    --shadow:  0 10px 30px rgba(2, 31, 89, .10);
    --shadow-s: 0 4px 14px rgba(2, 31, 89, .08);
    --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .brand { font-family: 'Poppins', sans-serif; line-height: 1.15; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ------------------------------ Botões ---------------------------------- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 15px;
    padding: 13px 24px; border-radius: 999px; border: 0; cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--yellow); color: var(--navy); box-shadow: 0 8px 20px rgba(242,184,7,.4); }
.btn-primary:hover { background: var(--gold); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-d); }
.btn-whatsapp { background: var(--wa); color: #fff; box-shadow: 0 8px 20px rgba(37,211,102,.35); }
.btn-whatsapp:hover { background: var(--wa-d); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

/* ------------------------------- Ícones --------------------------------- */
.icon { width: 20px; height: 20px; display: inline-block; vertical-align: middle; flex: none; }
.btn .icon { width: 18px; height: 18px; }
.ic-lg { width: 28px; height: 28px; }

/* ------------------------------ Header ---------------------------------- */
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; box-shadow: var(--shadow-s); }
/* nas páginas de produtos/checkout o header não é fixo (não atrapalha a rolagem) */
body.no-sticky-header .site-header { position: static; }
body.no-sticky-header .booking-side { top: 20px; }
.topbar { background: var(--navy); color: #cdd8ef; font-size: 13px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; height: 38px; }
.lang-switch { display: flex; gap: 8px; align-items: center; }
.lang-flag {
    display: inline-flex; padding: 2px; border-radius: 5px; line-height: 0;
    opacity: .55; transition: opacity .15s, box-shadow .15s, transform .15s;
}
.lang-flag:hover { opacity: 1; transform: translateY(-1px); }
.lang-flag.is-active { opacity: 1; box-shadow: 0 0 0 2px var(--yellow); }
/* No celular a bandeirinha renderiza 30x22, pequeno demais pro dedo (o mínimo
   confortável é ~44px). O ::after estende só a ÁREA DE TOQUE, sem mexer no
   visual nem na altura da topbar. Trocar de idioma é o diferencial do site,
   então errar o toque aqui custa caro. */
@media (max-width: 860px) {
    .lang-switch { gap: 14px; }
    .lang-flag { position: relative; }
    .lang-flag::after {
        content: ""; position: absolute; left: 50%; top: 50%;
        transform: translate(-50%, -50%);
        width: 44px; height: 38px;
    }
}
.flag { width: 26px; height: 18px; border-radius: 3px; display: block; box-shadow: 0 1px 2px rgba(0,0,0,.3); }

.nav-inner { display: flex; align-items: center; gap: 22px; height: 76px; }
.brand-logo { height: 42px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.main-nav > a {
    font-weight: 600; font-size: 15px; color: var(--ink); padding: 6px 2px;
    border-bottom: 2px solid transparent; transition: color .15s, border-color .15s;
}
.main-nav > a:hover { color: var(--blue); }
.main-nav > a.active { color: var(--blue); border-color: var(--yellow); }
.nav-cta { padding: 11px 20px; font-size: 14px; }
.nav-cta-mobile { display: none; }
.nav-toggle { display: none; background: none; border: 0; font-size: 26px; color: var(--navy); cursor: pointer; }

/* ------------------------------ Hero ------------------------------------ */
.hero {
    position: relative; overflow: hidden; color: #fff;
    background: radial-gradient(1100px 500px at 85% -10%, #1466d6 0%, transparent 60%),
                linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
}
.hero::after {
    content: ""; position: absolute; right: -120px; bottom: -120px;
    width: 360px; height: 360px; border-radius: 50%;
    background: radial-gradient(circle, rgba(242,203,5,.25), transparent 70%);
}
.hero-grid {
    display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px;
    align-items: center;
    /* padding só na vertical: o atalho "padding: 50px 0 56px" zerava o padding
       lateral que vem do .container, e no celular o texto colava na borda. */
    padding-top: 50px; padding-bottom: 56px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.25); padding: 7px 16px; border-radius: 999px;
    font-size: 13px; font-weight: 600; margin-bottom: 20px;
}
.hero-badge .icon { width: 16px; height: 16px; color: var(--yellow); }
.hero h1 { font-size: 49px; font-weight: 800; letter-spacing: -1px; }
.hero h1 .hl { color: var(--yellow); }
.hero-sub { font-size: 18px; color: #dce6fa; margin: 18px 0 30px; max-width: 540px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 28px; margin-top: 32px; flex-wrap: wrap; }
.hero-note { display: flex; align-items: center; gap: 9px; margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); color: #cfe0ff; font-size: 14.5px; font-weight: 600; }
.hero-note .icon { width: 18px; height: 18px; color: var(--yellow); flex: none; }
.hero-stat { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: #eaf1ff; }
.hero-stat .ic {
    width: 38px; height: 38px; display: grid; place-items: center; font-size: 18px;
    background: rgba(255,255,255,.14); border-radius: 12px;
}

/* foto de destaque no hero */
.hero-photo { position: relative; z-index: 1; }
.hero-photo img {
    width: 100%; aspect-ratio: 1 / 1; height: auto; border-radius: 22px;
    box-shadow: 0 24px 50px rgba(2, 31, 89, .45);
    display: block; object-fit: cover; object-position: center 30%;
}
.hero-price-badge {
    position: absolute; left: -18px; bottom: 26px; background: #fff; color: var(--ink);
    border-radius: 16px; padding: 14px 22px; box-shadow: var(--shadow); text-align: center; z-index: 2;
}
.hero-price-badge .lbl { display: block; color: var(--muted); font-size: 12px; font-weight: 600; }
.hero-price-badge .big { display: block; font-family: 'Poppins'; font-weight: 800; font-size: 32px; color: var(--blue); line-height: 1.1; }

/* ----------------------------- Seções ----------------------------------- */
.section { padding: 72px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.section-head .eyebrow { color: var(--blue); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.section-head h2 { font-size: 36px; font-weight: 800; margin: 8px 0 12px; color: var(--navy); }
.section-head p { color: var(--muted); font-size: 17px; }

/* ---------------------------- Benefícios -------------------------------- */
.benefits { background: #fff; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.benefit-card {
    background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 28px 22px; transition: transform .18s, box-shadow .18s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.benefit-ic {
    width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
    font-size: 26px; margin-bottom: 16px; background: linear-gradient(135deg, var(--blue), var(--navy)); color: #fff;
}
.benefit-card:nth-child(2) .benefit-ic { background: linear-gradient(135deg, var(--yellow), var(--gold)); color: var(--navy); }
.benefit-card:nth-child(3) .benefit-ic { background: linear-gradient(135deg, var(--red), #c40404); }
.benefit-card:nth-child(4) .benefit-ic { background: linear-gradient(135deg, var(--wa), var(--wa-d)); }
.benefit-ic .icon { width: 28px; height: 28px; }
.benefit-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.benefit-card p { color: var(--muted); font-size: 15px; }

/* ----------------------------- Produtos --------------------------------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; display: flex; flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #d3ddf0; }
.product-media {
    position: relative; padding: 24px 20px 18px;
    background: linear-gradient(160deg, #f8fbff 0%, #eaf1fb 100%);
    border-bottom: 1px solid var(--line);
}
.product-media .scooter-svg,
.product-media .scooter-photo { width: 100%; height: 188px; object-fit: contain; display: block; transition: transform .28s ease; }
.product-card:hover .product-media .scooter-svg,
.product-card:hover .product-media .scooter-photo { transform: scale(1.045); }
/* as tags ficam ANTES da imagem no HTML; no hover a imagem ganha transform e cria
   contexto de empilhamento, passando por cima delas. z-index resolve. */
.color-badge {
    position: absolute; top: 14px; left: 14px; z-index: 2; display: inline-flex; align-items: center; gap: 7px;
    background: #fff; padding: 5px 12px; border-radius: 999px; font-size: 12px; font-weight: 600;
    box-shadow: var(--shadow-s);
}
.color-dot { width: 13px; height: 13px; border-radius: 50%; border: 1px solid rgba(0,0,0,.1); }
.wheels-tag {
    position: absolute; top: 14px; right: 14px; z-index: 2; background: var(--navy); color: #fff;
    font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: 999px;
}
.product-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 17px; color: var(--navy); line-height: 1.3; min-height: 44px; margin-bottom: 2px; }
.product-fleet { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 13px; margin: 6px 0 16px; }
.product-fleet .icon { width: 15px; height: 15px; color: var(--wa); }
.product-price { margin-top: auto; margin-bottom: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.product-price .from { display: block; color: var(--muted); font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; }
.product-price .price-main { display: flex; align-items: baseline; gap: 7px; white-space: nowrap; margin-top: 4px; }
.product-price .val { font-family: 'Poppins'; font-weight: 800; font-size: 26px; color: var(--blue); letter-spacing: -.5px; }
.product-price .per { color: var(--muted); font-size: 13px; }
/* botão do card: retângulo arredondado + seta que desliza no hover */
.product-body .btn-block { border-radius: 12px; }
.product-body .btn-blue { padding: 13px 20px; box-shadow: 0 6px 16px rgba(4,85,191,.22); }
.product-body .btn-blue:hover { box-shadow: 0 12px 24px rgba(4,85,191,.30); }
.product-body .btn-blue .icon { transition: transform .18s ease; }
.product-body .btn-blue:hover .icon { transform: translateX(3px); }

/* filtros */
.filters { display: flex; gap: 10px; justify-content: center; margin-bottom: 34px; flex-wrap: wrap; }
.filter-btn {
    background: #fff; border: 1px solid var(--line); color: var(--ink); font-weight: 600;
    padding: 9px 20px; border-radius: 999px; cursor: pointer; font-family: 'Inter'; font-size: 14px;
}
.filter-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* --------------------------- Como funciona ------------------------------ */
.how {
    position: relative; color: #fff;
    background-image: linear-gradient(180deg, rgba(2,31,89,.93), rgba(4,85,191,.9)), url('../img/fotos/fundo-parque.webp');
    background-size: cover; background-position: center; background-attachment: fixed;
}
.how .section-head h2 { color: #fff; }
.how .section-head .eyebrow { color: var(--yellow); }
.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step {
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius); padding: 28px 22px; backdrop-filter: blur(4px);
}
.step-num {
    width: 50px; height: 50px; border-radius: 14px; background: var(--yellow); color: var(--navy);
    font-family: 'Poppins'; font-weight: 800; font-size: 22px; display: grid; place-items: center; margin-bottom: 16px;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: #d6e1f7; font-size: 15px; }

/* ------------------------------ Vídeo ----------------------------------- */
.video-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.video-text h2 { font-size: 32px; color: var(--navy); margin-bottom: 14px; }
.video-text p { color: var(--muted); font-size: 17px; }
.video-frame {
    position: relative; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden;
    background: var(--navy); box-shadow: var(--shadow);
}
/* iframe com leve zoom: empurra título (topo) e logo/share (cantos) pra fora, e o overflow corta */
.video-frame #ytPlayer, .video-frame iframe {
    position: absolute; top: -20%; left: -20%; width: 140%; height: 140%; border: 0; z-index: 0;
    pointer-events: none;
}
/* poster opaco: cobre o vídeo quando pausado, escondendo o overlay do YouTube */
.video-cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.video-frame.is-playing .video-cover { display: none; }
.video-frame:not(.is-playing)::after { content: ""; position: absolute; inset: 0; background: rgba(2, 31, 89, .35); z-index: 3; pointer-events: none; }
/* camada de clique (play/pause) por cima de tudo */
.video-toggle {
    position: absolute; inset: 0; z-index: 4; display: grid; place-items: center;
    background: transparent; border: 0; cursor: pointer; padding: 0;
}
.video-toggle .vt-play, .video-toggle .vt-pause {
    width: 78px; height: 78px; border-radius: 50%; background: rgba(255, 255, 255, .95); color: var(--blue);
    display: grid; place-items: center; transition: transform .15s; box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}
.video-toggle:hover .vt-play { transform: scale(1.06); }
.video-toggle .vt-play .icon { width: 30px; height: 30px; margin-left: 4px; }
.video-toggle .vt-pause { display: none; }
.video-toggle .vt-pause .icon { width: 28px; height: 28px; }
.video-toggle .vt-spin {
    width: 56px; height: 56px; border-radius: 50%; display: none;
    border: 4px solid rgba(255, 255, 255, .35); border-top-color: #fff;
    animation: vt-spin .8s linear infinite; box-shadow: none; background: transparent;
}
@keyframes vt-spin { to { transform: rotate(360deg); } }
.video-frame.is-loading .vt-spin { display: block; }
.video-frame.is-loading .vt-play { display: none; }
.video-frame.is-playing .vt-play { display: none; }
.video-frame.is-playing .video-toggle:hover .vt-pause { display: grid; }

/* ---------------------------- Lifestyle --------------------------------- */
.lifestyle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.life-card { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.life-card img { width: 100%; height: 300px; object-fit: cover; display: block; transition: transform .35s ease; }
.life-card:hover img { transform: scale(1.05); }
.life-card figcaption {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 18px 16px; color: #fff;
    font-weight: 600; font-size: 15px; background: linear-gradient(transparent, rgba(2, 31, 89, .88));
}

/* ---------------------------- Segurança --------------------------------- */
.safety { background: #fff; }
.safety-card {
    background: linear-gradient(135deg, #fff8da, #fff); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 36px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.safety-item { display: flex; gap: 14px; align-items: center; }
.safety-item .ic { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: #fff; box-shadow: var(--shadow-s); }
.safety-item .ic .icon { width: 24px; height: 24px; }
.safety-item:nth-child(1) .ic { color: var(--gold); }
.safety-item:nth-child(2) .ic { color: var(--blue); }
.safety-item:nth-child(3) .ic { color: var(--wa); }
.safety-item p { font-size: 15px; color: var(--ink); }

/* ------------------------------- FAQ ------------------------------------ */
.faq { background: var(--bg); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-s); margin-bottom: 12px; overflow: hidden; }
.faq-item summary {
    cursor: pointer; list-style: none; padding: 18px 22px; font-weight: 600; color: var(--navy);
    display: flex; justify-content: space-between; align-items: center; font-size: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 24px; color: var(--blue); font-weight: 400; }
.faq-item[open] summary::after { content: "-"; }
.faq-item .faq-a { padding: 0 22px 20px; color: var(--muted); font-size: 15px; }

/* ------------------------------- CTA band ------------------------------- */
.cta-band { background: linear-gradient(135deg, var(--yellow), var(--gold)); }
.cta-band .container { padding: 48px 22px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-band h2 { font-size: 30px; color: var(--navy); }
.cta-band p { color: #5b4a06; font-weight: 600; }

/* ------------------------------ Footer ---------------------------------- */
.site-footer { background: var(--navy); color: #c5d2ee; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 36px; padding: 56px 22px 30px; }
.footer-logo { height: 40px; background: #fff; padding: 8px 12px; border-radius: 10px; margin-bottom: 16px; }
.footer-brand p { font-size: 15px; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 16px; margin-bottom: 14px; }
.footer-col a { display: block; color: #c5d2ee; font-size: 15px; padding: 5px 0; }
.footer-col a:hover { color: var(--yellow); }
.footer-contact-line { display: flex; align-items: center; gap: 9px; font-size: 15px; margin-bottom: 10px; }
.footer-contact-line .icon { width: 17px; height: 17px; color: var(--yellow); }
/* o botão herda .footer-col a (block + cor cinza); restaura o visual de botão */
.footer-col a.btn { display: inline-flex; color: #fff; margin-top: 12px; box-shadow: none; }
.footer-col a.btn-whatsapp { background: var(--wa); }
.footer-col a.btn-whatsapp:hover { color: #fff; background: var(--wa-d); box-shadow: none; }
.footer-note { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; font-size: 13px; color: #9fb0d4; text-align: center; }
.footer-bottom { background: rgba(0,0,0,.2); text-align: center; padding: 16px; font-size: 13px; color: #9fb0d4; }

/* ====================== Página de produto ============================== */
.breadcrumb { padding-top: 22px; font-size: 14px; color: var(--muted); }
.breadcrumb a { color: var(--blue); font-weight: 600; }
.product-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; padding-top: 24px; padding-bottom: 8px; align-items: start; }
.product-main { min-width: 0; }
.product-main h1 { font-size: 32px; color: var(--navy); font-weight: 800; margin-top: 22px; }
.booking-side { position: sticky; top: 96px; }
.gallery-main {
    background: #f5f8ff; border: 1px solid var(--line);
    border-radius: var(--radius); padding: 34px; position: relative;
}
.gallery-main .scooter-photo { width: 100%; height: auto; max-height: 440px; object-fit: contain; display: block; }
.gallery-main .photo-note {
    margin-top: 12px; text-align: center; font-size: 12px; color: var(--muted);
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
.gallery-main .photo-note .icon { width: 14px; height: 14px; }
.detail-tags { display: flex; gap: 10px; margin: 14px 0 18px; flex-wrap: wrap; }
.detail-tags span { background: var(--bg); border: 1px solid var(--line); padding: 6px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--ink); display:inline-flex; align-items:center; gap:7px; }
.detail-tags span .icon { width: 15px; height: 15px; color: var(--muted); }
.block-title { color: var(--navy); font-size: 18px; margin: 22px 0 4px; }
.from-label { display: block; color: var(--muted); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; }

.specs-list { list-style: none; margin: 18px 0; border-top: 1px solid var(--line); }
.specs-list li { display: flex; justify-content: space-between; padding: 12px 2px; border-bottom: 1px solid var(--line); font-size: 15px; }
.specs-list li span:first-child { color: var(--muted); }
.specs-list li span:last-child { font-weight: 600; color: var(--ink); }
.specs-note { font-size: 12px; color: var(--muted); margin-top: 6px; }

/* tabela de preços */
.price-table { width: 100%; border-collapse: collapse; margin: 16px 0 8px; border-radius: var(--radius-s); overflow: hidden; box-shadow: var(--shadow-s); }
.price-table th { background: var(--navy); color: #fff; font-family: 'Poppins'; font-size: 14px; padding: 12px; text-align: left; }
.price-table td { padding: 11px 12px; border-bottom: 1px solid var(--line); background: #fff; font-size: 15px; }
.price-table tr:nth-child(even) td { background: #fafcff; }
.price-table td:last-child { font-weight: 700; color: var(--blue); text-align: right; }
.price-note { font-size: 13px; color: var(--muted); }

/* formulário de reserva */
.booking-card {
    position: relative; overflow: hidden;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 30px 28px 28px; box-shadow: 0 18px 44px rgba(2, 31, 89, .12);
}
.booking-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
    background: linear-gradient(90deg, var(--blue), var(--navy));
}
.booking-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.booking-card .price-head { display: flex; align-items: baseline; gap: 8px; margin-top: 2px; }
.booking-card .price-head .val { font-family: 'Poppins'; font-weight: 800; font-size: 38px; line-height: 1; color: var(--navy); }
.booking-card .price-head .per { color: var(--muted); font-size: 14px; }
.booking-badge {
    display: inline-flex; align-items: center; gap: 6px; background: #eafaf3; color: #176b3c;
    font-size: 12px; font-weight: 700; padding: 7px 12px; border-radius: 999px; white-space: nowrap;
}
.booking-badge .icon { width: 14px; height: 14px; }
.booking-trust {
    list-style: none; display: flex; flex-direction: column; gap: 9px;
    margin: 18px 0 22px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.booking-trust li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 500; color: var(--ink); }
.booking-trust li .icon { width: 16px; height: 16px; color: var(--wa); flex: none; }
.booking-card h2 { font-size: 21px; color: var(--navy); margin-bottom: 20px; }
.form-group-label {
    grid-column: 1 / -1; display: flex; align-items: center; gap: 9px; margin-top: 6px;
    font-family: 'Poppins'; font-size: 12px; font-weight: 700; letter-spacing: .5px;
    text-transform: uppercase; color: var(--navy);
}
.form-group-label .icon { width: 15px; height: 15px; color: var(--blue); flex: none; }
.form-group-label::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.form-grid [hidden] { display: none !important; } /* respeita o atributo hidden mesmo com .field flex */
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 600; color: var(--ink); }
.field input, .field select {
    border: 1px solid var(--line); border-radius: var(--radius-s); padding: 13px 14px;
    font-family: 'Inter'; font-size: 15px; color: var(--ink); background: #fcfdff; transition: border-color .15s, box-shadow .15s, background .15s;
}
.field input:hover, .field select:hover { border-color: #c7d3e8; }
.field input:focus, .field select:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(4,85,191,.12); }
.field .row2 { display: grid; grid-template-columns: 1fr 120px; gap: 10px; }

/* caixa combinada de datas - estilo Airbnb (entrega | retirada), com hora */
.daterange {
    display: grid; grid-template-columns: 1fr 1fr;
    border: 1.5px solid var(--line); border-radius: var(--radius-s);
    overflow: hidden; background: #fff; transition: border-color .15s, box-shadow .15s;
}
.daterange-cell { display: flex; flex-direction: column; gap: 5px; padding: 11px 14px; min-width: 0; }
.daterange-cell + .daterange-cell { border-left: 1.5px solid var(--line); }
.dr-label { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); }
.dr-label .icon { width: 13px; height: 13px; color: var(--blue); }
.daterange input {
    border: 0; background: transparent; padding: 0; width: 100%; min-width: 0;
    font-family: 'Inter'; font-weight: 700; color: var(--ink); color-scheme: light;
}
.daterange input:hover, .daterange input:focus { border: 0; background: transparent; box-shadow: none; }
.daterange input:focus { outline: none; }
.daterange .dr-date { font-size: 15px; }
.daterange .dr-time { font-size: 13px; font-weight: 600; color: var(--muted); border-top: 1px solid var(--line); padding-top: 7px; margin-top: 2px; }
.daterange-cell:focus-within { background: #f6f9ff; }
.daterange:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(4,85,191,.12); }

/* gatilhos (botões) que abrem o popup de data+hora */
.dr-field { position: relative; }
.dr-trigger { border: 0; background: transparent; cursor: pointer; text-align: left; font-family: inherit; color: inherit; width: 100%; transition: background .15s; }
.dr-trigger:hover { background: #f6f9ff; }
.dr-trigger.is-open { background: #eef4ff; }
.dr-value { font-size: 15px; font-weight: 700; color: var(--ink); }
.dr-value.is-empty { font-weight: 600; color: var(--muted); }

/* popup compacto de data + hora (estilo Airbnb) */
.dtpicker {
    position: absolute; top: 100%; margin-top: 8px; z-index: 70;
    width: 316px; max-width: 100%;
    background: #fff; border: 1px solid var(--line); border-radius: 14px;
    box-shadow: 0 14px 36px rgba(2,31,89,.16); padding: 12px;
}
.dtp-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.dtp-title { font-family: 'Poppins'; font-weight: 700; font-size: 14px; color: var(--navy); text-transform: capitalize; }
.dtp-nav { width: 28px; height: 28px; border-radius: 8px; border: 1px solid var(--line); background: #fff; color: var(--navy); font-size: 16px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.dtp-nav:hover:not(:disabled) { background: var(--bg); border-color: #c7d3e8; }
.dtp-nav:disabled { opacity: .3; cursor: not-allowed; }
.dtp-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; }
.dtp-dow span { text-align: center; font-size: 10.5px; font-weight: 700; color: var(--muted); padding: 2px 0 4px; text-transform: uppercase; }
.dtp-day { aspect-ratio: 1 / 1; border: 0; background: transparent; border-radius: 8px; cursor: pointer; font-family: inherit; font-size: 12.5px; font-weight: 600; color: var(--ink); display: flex; align-items: center; justify-content: center; }
.dtp-day.is-empty { pointer-events: none; }
.dtp-day:hover:not(:disabled):not(.is-empty) { background: #eef4ff; }
.dtp-day:disabled { color: #d7dce4; cursor: not-allowed; }
.dtp-day.is-today:not(.is-sel) { box-shadow: inset 0 0 0 1.5px #c7d3e8; }
.dtp-day.is-sel { background: var(--blue); color: #fff; font-weight: 700; }
.dtp-time { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 8px; padding-top: 10px; border-top: 1px solid var(--line); }
.dtp-time-label { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; color: var(--ink); }
.dtp-time-label .icon { width: 15px; height: 15px; color: var(--blue); }
.dtp-time select { border: 1.5px solid var(--line); border-radius: 8px; padding: 6px 10px; font-family: inherit; font-size: 13px; font-weight: 600; color: var(--ink); background: #fff; cursor: pointer; }
.dtp-time select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(4,85,191,.12); }
.dtp-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.dtp-clear { background: none; border: 0; color: var(--muted); font-family: inherit; font-weight: 600; font-size: 12.5px; cursor: pointer; padding: 5px 2px; }
.dtp-clear:hover { color: var(--red); }
.dtp-apply { background: var(--blue); color: #fff; border: 0; border-radius: 9px; padding: 8px 20px; font-family: 'Poppins'; font-weight: 700; font-size: 13px; cursor: pointer; }
.dtp-apply:hover { background: var(--blue-d); }

/* aceite do contrato (checkbox + link) */
.terms-field { margin-top: 2px; }
.terms-row { align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.45; }
.terms-row input { margin-top: 2px; flex: none; }
.terms-link { background: none; border: 0; padding: 0; font: inherit; color: var(--blue); font-weight: 700; text-decoration: underline; cursor: pointer; }
.terms-link:hover { color: var(--blue-d); }
.terms-msg { display: flex; align-items: center; gap: 8px; margin-top: 8px; background: #fdecec; border: 1px solid #f6c9c9; color: #a11; padding: 10px 13px; border-radius: var(--radius-s); font-size: 13px; font-weight: 600; }
.terms-msg .icon { width: 16px; height: 16px; flex: none; color: var(--red); }

/* modal (contrato) */
.modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(2,31,89,.55); }
.modal-box { position: relative; background: #fff; border-radius: 16px; width: 640px; max-width: 100%; max-height: 88vh; display: flex; flex-direction: column; box-shadow: 0 30px 70px rgba(2,31,89,.35); overflow: hidden; }
.modal-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 17px 22px; border-bottom: 1px solid var(--line); }
.modal-head h3 { font-size: 18px; color: var(--navy); }
.modal-close { background: none; border: 0; font-size: 26px; line-height: 1; color: var(--muted); cursor: pointer; padding: 0 4px; }
.modal-close:hover { color: var(--ink); }
.modal-body { padding: 20px 22px; overflow-y: auto; }
.modal-foot { padding: 15px 22px; border-top: 1px solid var(--line); background: var(--bg); }

/* tipografia do contrato */
.contract-body { font-size: 13.5px; line-height: 1.55; color: var(--ink); }
.ct-title { font-size: 16px; color: var(--navy); text-align: center; margin-bottom: 16px; }
.ct-parties { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-s); padding: 12px 14px; margin-bottom: 16px; font-size: 13px; }
.ct-parties p { margin-bottom: 8px; }
.ct-parties p:last-child { margin-bottom: 0; }
.ct-blank { color: var(--red); font-weight: 600; }
.ct-h { font-size: 14px; color: var(--navy); margin: 16px 0 6px; }
.ct-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 5px; }
.ct-accept { margin-top: 18px; padding: 14px; background: #eef4ff; border: 1px solid #cfe0fb; border-radius: var(--radius-s); font-weight: 600; color: var(--navy); }
.contract-body p { margin-bottom: 8px; }
.ct-party { margin-top: 14px; }

.check-row { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.check-row input { width: 18px; height: 18px; accent-color: var(--blue); }

.insurance-opts { display: flex; flex-direction: column; gap: 10px; }
.opt-pill {
    border: 1.5px solid var(--line); border-radius: var(--radius-s);
    padding: 13px 15px; cursor: pointer; display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600;
    transition: border-color .15s, background .15s;
}
.opt-pill .icon { width: 18px; height: 18px; color: var(--wa); flex: none; }
.opt-pill input { accent-color: var(--blue); }
.opt-pill:hover { border-color: #c7d3e8; }
.opt-pill.sel { border-color: var(--blue); background: #f1f6ff; box-shadow: 0 0 0 3px rgba(4,85,191,.08); }

.acc-soon { display: inline-flex; align-items: center; gap: 7px; background: var(--bg); border: 1px dashed var(--line); color: var(--muted); padding: 12px 16px; border-radius: var(--radius-s); font-size: 14px; }
.acc-soon .icon { width: 15px; height: 15px; }
.acc-list { display: flex; flex-wrap: wrap; gap: 9px; }
.acc-item {
    position: relative; display: inline-flex; align-items: center; gap: 8px;
    background: var(--bg); border: 1.5px solid var(--line); padding: 9px 14px 9px 12px;
    border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--ink);
    cursor: pointer; user-select: none; transition: border-color .15s, background .15s, box-shadow .15s;
}
.acc-item:hover { border-color: #c7d3e8; }
.acc-item .acc-check { position: absolute; opacity: 0; width: 0; height: 0; margin: 0; }
.acc-item .acc-name { display: inline-flex; align-items: center; gap: 8px; }
.acc-item .acc-name::before {
    content: ''; width: 17px; height: 17px; border-radius: 50%; flex: none;
    border: 1.5px solid #c2ccdd; background: #fff; transition: border-color .15s, background .15s;
}
.acc-item .acc-price { color: var(--muted); font-weight: 700; }
.acc-item.sel { border-color: var(--blue); background: #eef4ff; box-shadow: 0 0 0 3px rgba(4,85,191,.08); }
.acc-item.sel .acc-price { color: var(--blue); }
.acc-item.sel .acc-name::before {
    border-color: var(--blue);
    background: var(--blue) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><path d='M5 13l4 4L19 7'/></svg>") center / 11px 11px no-repeat;
}
.acc-item .acc-check:focus-visible + .acc-name::before { box-shadow: 0 0 0 3px rgba(4,85,191,.25); }

/* resumo / total */
.summary-box {
    grid-column: 1 / -1; background: linear-gradient(135deg, var(--navy), var(--blue)); color: #fff;
    border-radius: var(--radius); padding: 24px 26px; margin-top: 6px;
}
.summary-box h3 { font-size: 16px; color: var(--yellow); margin-bottom: 14px; text-transform: uppercase; letter-spacing: .5px; }
.summary-line { display: flex; justify-content: space-between; padding: 7px 0; font-size: 15px; color: #dbe6fb; }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 12px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.2); }
.summary-total .lbl { font-weight: 600; }
.summary-total .val { font-family: 'Poppins'; font-weight: 800; font-size: 32px; color: var(--yellow); }
.summary-empty { color: #c9d6f3; font-size: 14px; }
.booking-actions { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.booking-actions .btn { width: 100%; justify-content: center; }
.or-sep { display: grid; place-items: center; color: var(--muted); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }

/* ---------------------- Cores sob disponibilidade ----------------------- */
.colors-block { margin: 6px 0 8px; }
.colors-label { font-size: 14px; font-weight: 700; color: var(--navy); }
.colors-dots { display: flex; gap: 10px; flex-wrap: wrap; margin: 8px 0; }
.color-chip { display: inline-flex; align-items: center; gap: 7px; background: var(--bg); border: 1px solid var(--line); padding: 6px 12px; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--ink); }
.colors-note { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: 13px; }
.colors-note .icon { width: 15px; height: 15px; }

/* ---------------------- Responsabilidades / seguro ---------------------- */
.resp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 12px 0 8px; }
.resp-card { border: 1px solid var(--line); border-radius: var(--radius-s); padding: 16px 18px; background: var(--white); }
.resp-card .resp-head { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; margin-bottom: 12px; }
.resp-card .resp-head .icon { width: 18px; height: 18px; }
.resp-card ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.resp-card li { font-size: 14px; color: var(--ink); display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
.resp-card li .icon { width: 16px; height: 16px; flex: none; margin-top: 2px; }
.resp-covered { border-color: #b9ead0; background: #f4fbf7; }
.resp-covered .resp-head { color: #176b3c; }
.resp-covered li .icon { color: var(--wa); }
.resp-not { border-color: #f3d3d3; background: #fdf6f6; }
.resp-not .resp-head { color: var(--red); }
.resp-not li::before { content: "•"; color: var(--red); font-weight: 700; }
.resp-note { font-size: 13px; color: var(--muted); margin-top: 8px; }

/* ------------------------------- Cupom ---------------------------------- */
.coupon-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; }
.coupon-row .btn { white-space: nowrap; }

/* ---- telas estreitas (iPhone SE, Android de entrada) --------------------
   A 320px sobram 276px pro cartão de reserva. Com 28px de padding de cada lado
   restavam 220px úteis, e as duas caixas de data lado a lado precisam de 288px:
   o conteúdo vazava do cartão. Aqui o padding afina e as datas empilham. */
@media (max-width: 420px) {
    .booking-card { padding: 18px; }
    .daterange { grid-template-columns: 1fr; }
    .daterange-cell + .daterange-cell {
        border-left: 0; border-top: 1.5px solid var(--line);
    }
    /* Todo .btn nasce com white-space:nowrap. "Reservar pelo WhatsApp" numa linha
       só dá 290px de min-content, e como o formulário é um grid de 1fr (piso =
       min-content do item mais largo), esse botão sozinho esticava o formulário
       inteiro pra 290px dentro de um cartão de 240px. Deixar quebrar resolve. */
    .booking-actions .btn, .btn-block, .checkout-done .btn { white-space: normal; }
    /* preço e selo lado a lado não cabem: o selo desce */
    .booking-head { flex-wrap: wrap; }
    /* opções de seguro/acessórios empilham em vez de disputar a linha */
    .opt-pill { white-space: normal; }
}

/* ---- o formulário de reserva PRECISA poder encolher no celular ----------
   Um <input> nativo tem min-content de ~228px, e como item de flex/grid ele
   nasce com min-width:auto, que proíbe encolher abaixo disso. Num grid de uma
   coluna só (o layout do celular), o piso da coluna é o maior min-content
   entre os itens: um único campo travado empurra a PÁGINA INTEIRA pra fora da
   tela. Era o que estourava até 80px na página de produto a 320px de largura.
   min-width:0 não muda nada no desktop, onde já sobra espaço. */
.booking-side, .booking-card, .field, .field.full { min-width: 0; }
.field input, .field select, .field textarea { min-width: 0; }
.coupon-msg { font-size: 13px; font-weight: 600; margin-top: 2px; display: block; }
.coupon-msg.is-ok { color: #176b3c; }
.coupon-msg.is-bad { color: var(--red); }

/* aviso de mínimo de dias (só WhatsApp) */
.min-days-note { grid-column: 1 / -1; display: flex; align-items: center; gap: 9px; background: #eafaf3; border: 1px solid #b9ead0; color: #176b3c; padding: 12px 16px; border-radius: var(--radius-s); font-size: 14px; font-weight: 600; }
.min-days-note .icon { width: 18px; height: 18px; color: var(--wa); flex: none; }

/* ----------------------- Sem unidades (esgotado) ------------------------ */
.sold-badge { position: absolute; top: 14px; left: 14px; z-index: 2; display: inline-flex; align-items: center; gap: 6px; background: var(--red); color: #fff; padding: 5px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; box-shadow: var(--shadow-s); }
.sold-badge .icon { width: 14px; height: 14px; }
.product-card.is-soldout .product-media { opacity: .72; filter: grayscale(.35); }
.product-card.is-soldout .product-price .val { color: var(--muted); }
.btn-disabled { background: #eef1f6; color: var(--muted); cursor: not-allowed; pointer-events: none; box-shadow: none; }
.tag-soldout { background: #fdecec; color: var(--red); border: 1px solid #f6c9c9; font-weight: 700; }
.soldout-note { display: flex; align-items: center; gap: 10px; background: #fdecec; border: 1px solid #f6c9c9; color: #a11; padding: 13px 16px; border-radius: var(--radius-s); font-size: 14px; font-weight: 600; margin: 4px 0 18px; }
.soldout-note .icon { width: 18px; height: 18px; flex: none; color: var(--red); }
.soldout-box { text-align: center; padding: 6px 4px; }
.soldout-tag { display: inline-flex; align-items: center; gap: 7px; background: #fdecec; color: var(--red); border: 1px solid #f6c9c9; padding: 6px 14px; border-radius: 999px; font-size: 13px; font-weight: 700; margin-bottom: 14px; }
.soldout-tag .icon { width: 15px; height: 15px; }
.soldout-box h2 { font-size: 20px; color: var(--navy); margin-bottom: 8px; }
.soldout-box p { color: var(--muted); font-size: 14px; line-height: 1.55; margin-bottom: 18px; }

/* --------------------------- Carrinhos de bebê -------------------------- */
.strollers { background: var(--bg); }
.avail-badge { position: absolute; top: 14px; left: 14px; z-index: 2; display: inline-flex; align-items: center; gap: 6px; background: var(--gold); color: var(--navy); padding: 5px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; box-shadow: var(--shadow-s); }
.avail-badge .icon { width: 14px; height: 14px; }
.product-card.is-stroller .product-fleet { font-weight: 600; color: var(--ink); }
.stroller-avail { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: 13px; margin: 4px 0 16px; }
.stroller-avail .icon { width: 15px; height: 15px; color: var(--blue); }
.product-card.is-stroller .btn-block { margin-top: auto; }

@media (max-width: 720px) {
    .resp-grid { grid-template-columns: 1fr; }
}

/* ----------------------------- Responsivo ------------------------------- */
@media (max-width: 980px) {
    .hero-grid, .video-wrap, .product-layout { grid-template-columns: 1fr; }
    .booking-side { position: static; }
    .product-main h1 { margin-top: 8px; }
    .hero-photo { max-width: 460px; margin: 0 auto; }
    .hero-photo img { height: auto; min-height: 0; aspect-ratio: 5 / 4; }
    .hero-price-badge { left: 12px; }
    .benefit-grid, .step-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
    .safety-card { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
    .nav-cta { display: none; }
    .nav-toggle { display: block; }
    .main-nav {
        display: none; position: absolute; top: 114px; left: 0; right: 0; background: #fff;
        flex-direction: column; align-items: stretch; gap: 0; padding: 10px 22px 20px; box-shadow: var(--shadow);
    }
    body.nav-open .main-nav { display: flex; }
    .main-nav > a { padding: 12px 0; border-bottom: 1px solid var(--line); }
    .nav-cta-mobile { display: inline-flex !important; justify-content: center; margin-top: 12px; }
    .hero h1 { font-size: 36px; }
    .section-head h2, .video-text h2, .cta-band h2 { font-size: 28px; }
    .benefit-grid, .step-grid, .product-grid, .form-grid, .footer-grid, .lifestyle-grid { grid-template-columns: 1fr; }
    .how { background-attachment: scroll; }
    .section { padding: 52px 0; }
}

/* ============================ CHECKOUT ============================ */
.checkout-h1 { font-family:'Poppins'; font-weight:800; color:var(--navy); font-size:30px; margin:6px 0 22px; }
.checkout-layout { display:grid; grid-template-columns: .82fr 1.18fr; gap:34px; align-items:start; padding-bottom:20px; }

/* coluna resumo */
.checkout-summary { position:sticky; top:20px; }
.cs-card { background:var(--white); border:1px solid var(--line); border-radius:var(--radius); box-shadow:var(--shadow-s); padding:22px; }
.cs-media { border-radius:var(--radius-s); overflow:hidden; background:var(--bg); margin-bottom:16px; display:flex; align-items:center; justify-content:center; min-height:150px; }
.cs-media img, .cs-media svg { width:100%; height:auto; display:block; }
.cs-card h2 { font-size:19px; color:var(--navy); margin:0 0 14px; }
.cs-facts { list-style:none; padding:0; margin:0 0 16px; display:flex; flex-direction:column; gap:11px; border-top:1px solid var(--line); padding-top:15px; }
.cs-facts li { display:flex; justify-content:space-between; gap:14px; font-size:13.5px; }
.cs-facts li span { color:var(--muted); display:inline-flex; align-items:center; gap:7px; white-space:nowrap; }
.cs-facts li span .icon { width:15px; height:15px; }
.cs-facts li b { color:var(--ink); font-weight:600; }
.cs-facts li b.right { text-align:right; }
.cs-lines { border-top:1px solid var(--line); padding-top:14px; display:flex; flex-direction:column; gap:9px; }
.cs-line { display:flex; justify-content:space-between; font-size:14px; color:var(--ink); }
.cs-line.cs-disc { color:var(--wa-d); font-weight:600; }
.cs-total { display:flex; justify-content:space-between; align-items:baseline; margin-top:8px; padding-top:13px; border-top:2px solid var(--navy); }
.cs-total span:first-child { font-weight:700; color:var(--navy); font-size:15px; }
.cs-total span:last-child { font-family:'Poppins'; font-weight:800; font-size:26px; color:var(--blue); }

/* coluna formulário */
.checkout-form { background:var(--white); border:1px solid var(--line); border-radius:var(--radius); box-shadow:var(--shadow-s); padding:26px; display:flex; flex-direction:column; gap:16px; }
.co-group { display:flex; align-items:center; gap:9px; font-size:16px; color:var(--navy); font-weight:700; margin:4px 0 -2px; }
.co-group .icon { width:19px; height:19px; color:var(--blue); }
.co-2col { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.checkout-form textarea { border:1.6px solid var(--line); border-radius:var(--radius-s); padding:11px 13px; font:inherit; font-size:15px; background:#fbfcfe; resize:vertical; }
.checkout-form textarea:focus { outline:none; border-color:var(--blue); background:#fff; box-shadow:0 0 0 3px rgba(4,85,191,.12); }
.checkout-form .is-err { border-color:var(--red) !important; background:#fff5f5; }
.co-err { color:var(--red); font-size:12.5px; font-weight:600; }
.co-hint { color:var(--muted); font-size:12.5px; }
.co-alert { background:#fff4e5; border:1px solid #f5d9a8; color:#8a5a00; padding:12px 15px; border-radius:var(--radius-s); font-weight:600; font-size:14px; display:flex; align-items:center; gap:9px; }
.co-terms { display:flex; align-items:center; gap:9px; color:var(--muted); font-size:13.5px; background:var(--bg); border-radius:var(--radius-s); padding:11px 14px; }
.co-terms .icon { width:17px; height:17px; color:var(--blue); flex-shrink:0; }
.co-terms a { color:var(--blue); font-weight:600; }
.co-pay { margin-top:4px; }
.co-secure { text-align:center; color:var(--muted); font-size:12.5px; display:flex; align-items:center; justify-content:center; gap:7px; margin:0; }
.co-secure .icon { width:14px; height:14px; }
.co-or { display:flex; align-items:center; text-align:center; color:var(--muted); font-size:13px; gap:12px; }
.co-or::before, .co-or::after { content:""; flex:1; height:1px; background:var(--line); }

/* reserva criada (fallback) */
.checkout-done { max-width:520px; margin:20px auto; text-align:center; background:var(--white); border:1px solid var(--line); border-radius:var(--radius); box-shadow:var(--shadow-s); padding:40px 30px; display:flex; flex-direction:column; align-items:center; gap:14px; }
.cd-icon { width:64px; height:64px; border-radius:50%; background:#eafaf0; color:var(--wa-d); display:flex; align-items:center; justify-content:center; }
.cd-icon .icon { width:32px; height:32px; }
.checkout-done h1 { font-family:'Poppins'; font-weight:800; color:var(--navy); font-size:26px; margin:0; }
.cd-sub { color:var(--muted); margin:0; line-height:1.55; }
.cd-ref { background:var(--bg); border-radius:var(--radius-s); padding:10px 18px; color:var(--ink); font-size:15px; }
.checkout-done .btn { width:100%; max-width:340px; }

@media (max-width: 860px) {
    .checkout-layout { grid-template-columns:1fr; gap:22px; }
    .checkout-summary { position:static; order:2; }
    .checkout-form-col { order:1; }
    .co-2col { grid-template-columns:1fr; }
    .checkout-h1 { font-size:24px; }
}

/* variações da tela de status do pagamento */
.ret-pendente  .cd-icon { background:#fff4e5; color:var(--gold); }
.ret-cancelado .cd-icon { background:#fdecec; color:var(--red); }
.cd-x { font-size:38px; line-height:1; font-weight:700; }
.checkout-done .btn-blue { background:var(--blue); color:#fff; }

/* spinner da tela de espera do pagamento */
.co-wait-spin { width:34px; height:34px; border-radius:50%; border:3px solid var(--line); border-top-color:var(--blue); animation:cospin .8s linear infinite; }
@keyframes cospin { to { transform:rotate(360deg); } }
