/* ==========================================================================
   VidaVista — Webmarket (/loja)
   Estilo recriado a partir do protótipo Claude Design "Webmarket VidaVista".
   Paleta: lima #cbd84c · grafite #1b1b16 · fundos areia/bege.
   ========================================================================== */

:root {
  --vv-lime: #cbd84c;
  --vv-ink: #1b1b16;
  --vv-ink-soft: #34342c;
  --vv-text: #5a5a3d;
  --vv-muted: #76766b;
  --vv-muted-2: #9c9c92;
  --vv-card: #ffffff;
  --vv-border: #e9e8df;
  --vv-line: #ecebe3;
  --vv-field: #f4f3ec;
  --vv-olive: #7f8a1e;
  --vv-olive-deep: #5f6a12;
  --vv-lime-soft: #eaeecb;
  --vv-maxw: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  color: var(--vv-text);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: clip;
  background:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='180'%20height='180'%3E%3Cfilter%20id='n'%3E%3CfeTurbulence%20type='fractalNoise'%20baseFrequency='0.85'%20numOctaves='2'%20stitchTiles='stitch'/%3E%3C/filter%3E%3Crect%20width='100%25'%20height='100%25'%20filter='url(%23n)'%20opacity='0.05'/%3E%3C/svg%3E") repeat,
    radial-gradient(1100px 640px at 84% -8%, rgba(203, 216, 76, 0.13), transparent 58%),
    linear-gradient(180deg, #f5f3ed 0%, #eae7dd 46%, #e6e2d6 100%);
}

::selection { background: var(--vv-lime); color: var(--vv-ink); }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: #efeee7; }
::-webkit-scrollbar-thumb { background: #d7d6cb; border-radius: 10px; border: 3px solid #efeee7; }
input, button, textarea, select { font-family: inherit; }
input::placeholder { color: #a3a399; }
img { max-width: 100%; }

@keyframes vvpop { from { transform: translateY(10px); opacity: 0; } to { transform: none; opacity: 1; } }
.vv-screen { animation: vvpop .32s ease both; }
[hidden] { display: none !important; }

/* ---- Utilitários de layout ---- */
.vv-wrap { max-width: var(--vv-maxw); margin: 0 auto; padding-left: 32px; padding-right: 32px; }
.vv-eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.vv-eyebrow.olive { color: var(--vv-olive); }
.vv-eyebrow.lime { color: var(--vv-lime); }
button { cursor: pointer; }

/* ---- Botões ---- */
.vv-btn {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  border: none; border-radius: 999px; font-weight: 700; cursor: pointer;
  font-size: 16px; padding: 15px 28px; transition: filter .15s, background .15s, transform .15s;
  text-decoration: none;
}
.vv-btn-lime { background: var(--vv-lime); color: var(--vv-ink); }
.vv-btn-lime:hover { filter: brightness(1.05); }
.vv-btn-ink { background: var(--vv-ink); color: #fff; }
.vv-btn-ink:hover { background: var(--vv-ink-soft); }
.vv-btn-ghost { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.32); }
.vv-btn-ghost:hover { background: rgba(255,255,255,0.16); }
.vv-btn-sm { padding: 11px 18px; font-size: 14px; }

/* ==========================================================================
   TOPO / NAV
   ========================================================================== */
.vv-topbar {
  position: sticky; top: 0; z-index: 40;
  background: rgba(23,23,19,0.92); backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid rgba(203,216,76,0.18);
  box-shadow: 0 6px 20px rgba(22,22,17,0.14);
}
.vv-topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 14px; padding-bottom: 14px; }
.vv-brand { display: flex; align-items: center; gap: 11px; cursor: pointer; background: none; border: none; padding: 0; }
.vv-brand img.mark { width: 32px; height: 32px; object-fit: contain; flex: none; }
.vv-brand img.word { height: 20px; width: auto; }
.vv-topnav { display: flex; align-items: center; gap: 22px; }
.vv-topnav a { color: #d8d8cf; font-weight: 600; font-size: 14.5px; text-decoration: none; transition: color .15s; cursor: pointer; }
.vv-topnav a:hover { color: var(--vv-lime); }
.vv-cart-btn {
  position: relative; display: inline-flex; align-items: center; gap: 9px;
  background: var(--vv-lime); color: var(--vv-ink); border: none; border-radius: 999px;
  padding: 11px 20px; font-weight: 700; font-size: 14.5px;
}
.vv-cart-btn:hover { filter: brightness(1.05); }
.vv-cart-badge {
  background: var(--vv-ink); color: #fff; border-radius: 999px; min-width: 21px; height: 21px;
  display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; padding: 0 6px;
}

/* ==========================================================================
   HOME
   ========================================================================== */
/* Hero full-bleed: ocupa 100% da largura, altura enxuta. O conteúdo fica
   alinhado à esquerda dentro do container central (.vv-wrap). */
.vv-hero-sec { padding: 0; }
.vv-hero {
  position: relative; overflow: hidden; min-height: 340px;
  background: var(--vv-ink); display: flex; align-items: center;
}
.vv-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vv-hero-veil {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(96deg, rgba(22,22,17,0.95) 0%, rgba(22,22,17,0.82) 34%, rgba(22,22,17,0.38) 68%, rgba(22,22,17,0.1) 100%);
}
.vv-hero-body-wrap { position: relative; width: 100%; padding-top: 44px; padding-bottom: 60px; }
.vv-hero-body { max-width: 640px; }
.vv-hero h1 { font-size: 44px; line-height: 1.05; font-weight: 800; letter-spacing: -0.03em; margin: 16px 0 14px; color: #fff; }
.vv-hero h1 .accent { color: var(--vv-lime); }
.vv-hero p { font-size: 17px; color: #d6d6ce; max-width: 520px; margin: 0 0 24px; }
.vv-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.vv-strip-sec { margin-top: -40px; position: relative; z-index: 3; }
.vv-strip {
  max-width: 1180px; margin: 0 auto; background: #fff; border: 1px solid var(--vv-border);
  border-radius: 20px; display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden;
  box-shadow: 0 24px 50px rgba(22,22,17,0.16);
}
.vv-strip > div { padding: 26px; }
.vv-strip > div + div { border-left: 1px solid var(--vv-line); }
.vv-strip b { display: block; font-size: 16px; font-weight: 800; margin-bottom: 6px; color: var(--vv-ink); }
.vv-strip span { font-size: 14px; color: var(--vv-muted); }

.vv-sec { padding: 54px 0 10px; }
.vv-sec-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 26px; gap: 20px; flex-wrap: wrap; }
.vv-sec-head h2 { font-size: 34px; font-weight: 800; letter-spacing: -0.02em; margin: 10px 0 0; color: var(--vv-ink); }
.vv-link { cursor: pointer; font-weight: 700; color: var(--vv-ink); background: none; border: none; font-size: 15px; }
.vv-link:hover { color: var(--vv-olive); }

.vv-steps { padding: 58px 0 0; }
.vv-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.vv-step { background: #fff; border: 1px solid var(--vv-border); border-radius: 18px; padding: 28px; }
.vv-step .num {
  width: 42px; height: 42px; border-radius: 12px; background: var(--vv-lime-soft);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px;
  color: var(--vv-olive-deep); margin-bottom: 18px;
}
.vv-step b { display: block; font-size: 19px; font-weight: 800; margin-bottom: 8px; color: var(--vv-ink); }
.vv-step p { font-size: 15px; color: #6f6f64; margin: 0; }

.vv-cta-sec { padding: 64px 0 0; }
.vv-cta-band {
  background: var(--vv-ink); border-radius: 24px; padding: 46px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.vv-cta-band h2 { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 8px; color: #fff; }
.vv-cta-band p { font-size: 16px; color: #a3a399; margin: 0; }
.vv-cta-band .txt { max-width: 600px; }

/* ==========================================================================
   CARD DE PACOTE (compartilhado home + catálogo)
   ========================================================================== */
.vv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.vv-card {
  background: #fff; border: 1px solid var(--vv-border); border-radius: 18px; overflow: hidden;
  cursor: pointer; display: flex; flex-direction: column;
  transition: transform .18s, box-shadow .18s, border-color .18s;
  box-shadow: 0 1px 2px rgba(27,27,22,0.04), 0 8px 22px rgba(27,27,22,0.06);
}
.vv-card:hover { transform: translateY(-5px); border-color: #e0dfd2; box-shadow: 0 2px 4px rgba(27,27,22,0.05), 0 24px 48px rgba(27,27,22,0.14); }
.vv-card-tile {
  position: relative; height: 150px; overflow: hidden; background-size: cover; background-position: center;
}
.vv-card-tile .rings-1 { position: absolute; right: -28px; bottom: -28px; width: 138px; height: 138px; border-radius: 50%; border: 1.5px solid rgba(27,27,22,0.12); }
.vv-card-tile .rings-2 { position: absolute; right: 8px; bottom: 8px; width: 58px; height: 58px; border-radius: 50%; border: 1.5px solid rgba(27,27,22,0.14); }
.vv-badge-dur {
  position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,0.85);
  border-radius: 999px; padding: 5px 12px; font-size: 12px; font-weight: 700; color: #3b3b33;
}
.vv-badge-pop {
  position: absolute; top: 14px; right: 14px; background: var(--vv-lime);
  border-radius: 999px; padding: 5px 12px; font-size: 12px; font-weight: 800; color: var(--vv-ink);
}
.vv-card-body { padding: 20px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.vv-card-cat { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #8a8a7e; }
.vv-card-body h3 { font-size: 21px; font-weight: 800; letter-spacing: -0.02em; margin: 0; color: var(--vv-ink); }
.vv-card-body p { font-size: 14.5px; color: #6f6f64; margin: 0; flex: 1; }
.vv-card-meta { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #8a8a7e; font-weight: 600; }
.vv-card-foot { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 6px; }
.vv-card-foot .avista { font-size: 12px; color: var(--vv-muted-2); font-weight: 600; }
.vv-card-foot .price { font-size: 23px; font-weight: 800; letter-spacing: -0.02em; color: var(--vv-ink); }

/* ==========================================================================
   PALCO DECORATIVO — profundidade atrás dos grids de pacotes
   Glows suaves + anéis finos (mesmo vocabulário do hero e dos cards),
   em camada full-bleed que fica ATRÁS do conteúdo.
   ========================================================================== */
.vv-stage { position: relative; }
.vv-stage > *:not(.vv-stage-deco) { position: relative; z-index: 1; }
.vv-stage-deco {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 100vw;
  transform: translateX(-50%); z-index: 0; pointer-events: none; overflow: hidden;
}
.vv-stage-deco .glow-a,
.vv-stage-deco .glow-b { position: absolute; border-radius: 50%; }
.vv-stage-deco .glow-a {
  top: -40px; right: 6%; width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(203,216,76,0.22), rgba(203,216,76,0) 66%);
}
.vv-stage-deco .glow-b {
  bottom: -120px; left: 2%; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(120,140,120,0.14), rgba(120,140,120,0) 66%);
}
.vv-stage-deco .ring { position: absolute; border-radius: 50%; border: 1.5px solid rgba(27,27,22,0.06); }
.vv-stage-deco .ring-1 { top: 30px; right: -150px; width: 440px; height: 440px; }
.vv-stage-deco .ring-2 { bottom: -180px; left: -120px; width: 360px; height: 360px; border-color: rgba(203,216,76,0.16); }

/* ==========================================================================
   HERO ESCURO (catálogo / carrinho / checkout)
   ========================================================================== */
.vv-dark-hero { background: var(--vv-ink); position: relative; overflow: hidden; }
.vv-dark-hero .ring-a { position: absolute; right: -140px; top: -160px; width: 500px; height: 500px; border-radius: 50%; border: 1.5px solid rgba(203,216,76,0.16); }
.vv-dark-hero .ring-b { position: absolute; right: 70px; top: -40px; width: 240px; height: 240px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.06); }
.vv-dark-hero .glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(700px 400px at 88% 0%, rgba(203,216,76,0.16), transparent 64%); }
.vv-dark-hero-inner { position: relative; padding: 32px 0 70px; display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.vv-dark-hero h1 { font-size: 46px; line-height: 1.05; font-weight: 800; letter-spacing: -0.025em; margin: 0 0 12px; color: #fff; }
.vv-dark-hero h1 .accent { color: var(--vv-lime); }
.vv-dark-hero p { font-size: 17px; color: #bdbdb4; max-width: 520px; margin: 0; }
.vv-dark-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; cursor: pointer; background: none; border: none; padding: 0; }
.vv-dark-brand img.mark { width: 34px; height: 34px; object-fit: contain; flex: none; }
.vv-dark-brand img.word { height: 22px; width: auto; }

/* ==========================================================================
   CATÁLOGO
   ========================================================================== */
.vv-catalog-body {
  margin-top: -38px; position: relative; z-index: 2;
  display: grid; grid-template-columns: 248px 1fr; gap: 30px; align-items: start;
}
.vv-aside { position: sticky; top: 76px; display: flex; flex-direction: column; gap: 8px; }
.vv-filter-card { background: #fff; border: 1px solid var(--vv-border); border-radius: 18px; padding: 18px 16px; }
.vv-filter-label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--vv-muted-2); margin: 4px 10px 10px; }
.vv-filter-btn {
  display: block; width: 100%; text-align: left; padding: 9px 14px; border-radius: 10px;
  border: 1px solid transparent; background: transparent; color: #56564e; font-weight: 600;
  font-size: 14.5px; cursor: pointer; margin-bottom: 3px;
}
.vv-filter-btn:hover { background: #f4f3ec; }
.vv-filter-btn.active { background: var(--vv-ink); color: #fff; font-weight: 700; }
.vv-filter-sep { height: 1px; background: var(--vv-line); margin: 14px 6px; }
.vv-coupon-card { background: var(--vv-lime-soft); border-radius: 18px; padding: 18px; }
.vv-coupon-card b { display: block; font-size: 14px; font-weight: 800; color: #3b3b33; margin-bottom: 6px; }
.vv-coupon-card span { font-size: 13px; color: var(--vv-olive-deep); line-height: 1.45; }

.vv-catalog-toolbar { display: flex; align-items: center; justify-content: space-between; margin: 52px 0 18px; gap: 16px; flex-wrap: wrap; }
.vv-result-count { font-size: 14.5px; color: var(--vv-muted); font-weight: 600; }
.vv-sort { display: flex; align-items: center; gap: 10px; }
.vv-sort span { font-size: 14px; color: var(--vv-muted-2); font-weight: 600; }
.vv-sort select { background: #fff; border: 1px solid #d8d7cd; border-radius: 10px; padding: 9px 12px; font-size: 14.5px; font-weight: 600; color: var(--vv-ink); cursor: pointer; }
.vv-catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vv-noresults { background: #fff; border: 1px solid var(--vv-border); border-radius: 18px; padding: 48px; text-align: center; color: var(--vv-muted); margin-top: 8px; }
.vv-noresults b { display: block; font-size: 18px; font-weight: 800; color: var(--vv-ink); margin-bottom: 6px; }

/* ==========================================================================
   PRODUTO (página de detalhe reescrita — vv-pd-*)
   ========================================================================== */
/* Camada de profundidade da página inteira: glows lima/frio full-bleed +
   um anel fino, atrás de todo o conteúdo. Combate o fundo bege chapado,
   principalmente na área do hero, sem interferir nos elementos sticky
   (só as <section> ganham z-index; a imagem/sidebar sticky não são tocadas). */
.vv-pd { position: relative; }
.vv-pd > section { position: relative; z-index: 1; }
.vv-pd::before {
  content: ''; position: absolute; z-index: 0; pointer-events: none;
  top: 0; left: 50%; transform: translateX(-50%); width: 100vw; height: 100%;
  background:
    radial-gradient(760px 540px at 82% 150px, rgba(203,216,76,0.24), rgba(203,216,76,0) 58%),
    radial-gradient(660px 540px at 6% 560px, rgba(108,132,108,0.14), rgba(108,132,108,0) 60%),
    radial-gradient(820px 660px at 94% 1040px, rgba(203,216,76,0.13), rgba(203,216,76,0) 58%);
}
.vv-pd::after {
  content: ''; position: absolute; z-index: 0; pointer-events: none;
  top: 44px; right: 4%; width: 460px; height: 460px; border-radius: 50%;
  border: 1.5px solid rgba(27,27,22,0.06);
}

.vv-pd-crumbs { padding: 26px 0 0; font-size: 13.5px; color: #8a8a7e; font-weight: 600; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.vv-pd-crumbs .c { cursor: pointer; }
.vv-pd-crumbs .c:hover { color: var(--vv-olive); }
.vv-pd-crumbs .sep { color: #c9c8bd; }
.vv-pd-crumbs .cur { color: var(--vv-ink); font-weight: 700; }

/* ---- Hero ---- */
.vv-pd-hero { padding: 24px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.vv-pd-media { position: sticky; top: 84px; }
.vv-pd-photo {
  position: relative; overflow: hidden; height: 480px; border-radius: 24px;
  background: var(--vv-ink); background-size: cover; background-position: center;
  box-shadow: 0 30px 60px rgba(22,22,17,0.18);
}
.vv-pd-photo-veil { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(22,22,17,0.28) 0%, transparent 30%, transparent 62%, rgba(22,22,17,0.42) 100%); }
.vv-pd-photo-rings span { position: absolute; border-radius: 50%; pointer-events: none; }
.vv-pd-photo-rings span:first-child { right: -60px; bottom: -60px; width: 320px; height: 320px; border: 1.5px solid rgba(203,216,76,0.28); }
.vv-pd-photo-rings span:last-child { right: 22px; bottom: 22px; width: 150px; height: 150px; border: 1.5px solid rgba(255,255,255,0.16); }
.vv-pd-badges { position: absolute; top: 18px; left: 18px; right: 18px; display: flex; justify-content: space-between; gap: 8px; }
.vv-pd-badge { border-radius: 999px; padding: 8px 15px; font-size: 12.5px; font-weight: 700; }
.vv-pd-badge.dur { background: rgba(255,255,255,0.92); color: #2c2c24; }
.vv-pd-badge.pop { background: var(--vv-lime); color: var(--vv-ink); font-weight: 800; }
.vv-pd-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.vv-pd-thumb { width: 74px; height: 60px; border-radius: 12px; border: 2px solid transparent; background-size: cover; background-position: center; cursor: pointer; padding: 0; opacity: 0.72; transition: opacity .15s, border-color .15s; }
.vv-pd-thumb:hover { opacity: 1; }
.vv-pd-thumb.active { opacity: 1; border-color: var(--vv-lime); }

.vv-pd-info { padding-top: 4px; }
.vv-pd-cat { font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--vv-olive); margin-bottom: 12px; }
.vv-pd-info h1 { font-size: 42px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.04; margin: 0 0 22px; color: var(--vv-ink); }
.vv-pd-tagline { font-size: 18px; line-height: 1.5; color: #56564e; margin: 0 0 24px; max-width: 520px; }
.vv-pd-chips { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 24px; }
.vv-pd-chip { background: #fff; border: 1px solid var(--vv-border); border-radius: 14px; padding: 12px 10px; text-align: center; box-shadow: 0 4px 12px rgba(27,27,22,0.04); }
.vv-pd-chip .k { display: block; font-size: 17px; font-weight: 800; color: var(--vv-ink); letter-spacing: -0.02em; }
.vv-pd-chip .v { display: block; font-size: 11.5px; color: var(--vv-muted); font-weight: 600; margin-top: 2px; }

.vv-pd-buy {
  background: #fff; border: 1px solid var(--vv-border); border-radius: 20px; padding: 22px;
  box-shadow: 0 18px 44px rgba(27,27,22,0.09);
}
.vv-pd-buy-price { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 18px; flex-wrap: wrap; }
.vv-pd-buy-price .lbl { font-size: 13px; color: var(--vv-muted-2); font-weight: 600; display: block; }
.vv-pd-buy-price .big { font-size: 38px; font-weight: 800; letter-spacing: -0.03em; color: var(--vv-ink); line-height: 1.05; }
.vv-pd-buy-price .pix-tag { background: var(--vv-lime-soft); border-radius: 12px; padding: 8px 14px; font-size: 13px; color: var(--vv-olive-deep); font-weight: 600; text-align: right; }
.vv-pd-buy-price .pix-tag b { font-size: 16px; font-weight: 800; color: var(--vv-olive-deep); }
.vv-pd-buy-price .pix-tag span { display: block; font-size: 11.5px; }
.vv-pd-buy-btns { display: flex; gap: 12px; }
.vv-pd-buy-btns .vv-btn { flex: 1; padding: 15px; font-size: 15px; }
.vv-pd-trust { list-style: none; margin: 18px 0 0; padding: 16px 0 0; border-top: 1px solid var(--vv-line); display: flex; flex-direction: column; gap: 8px; }
.vv-pd-trust li { font-size: 13.5px; color: #6f6f64; font-weight: 600; }

/* ---- Corpo ---- */
.vv-pd-body { padding: 56px 0 0; display: grid; grid-template-columns: 1.35fr 1fr; gap: 44px; align-items: start; }
.vv-pd-main { display: flex; flex-direction: column; gap: 34px; }
.vv-pd-block-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.vv-pd-block h2 { font-size: 25px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 16px; color: var(--vv-ink); }
.vv-pd-block-head h2 { margin: 0; }
.vv-pd-count { background: var(--vv-lime-soft); color: var(--vv-olive-deep); border-radius: 999px; padding: 5px 13px; font-size: 12.5px; font-weight: 800; white-space: nowrap; }
.vv-pd-prose { font-size: 16.5px; line-height: 1.72; color: #56564e; margin: 0; text-align: justify; text-justify: inter-word; hyphens: auto; }
.vv-pd-exams { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 20px; background: #fff; border: 1px solid var(--vv-border); border-radius: 18px; padding: 12px 22px; box-shadow: 0 8px 22px rgba(27,27,22,0.05); }
.vv-pd-exam { display: flex; align-items: center; gap: 13px; padding: 13px 0; border-bottom: 1px solid #f2f1ea; }
.vv-pd-exam .chk { width: 24px; height: 24px; border-radius: 50%; background: var(--vv-lime-soft); display: flex; align-items: center; justify-content: center; color: var(--vv-olive-deep); font-weight: 800; font-size: 12px; flex: none; }
.vv-pd-exam span:last-child { font-size: 15px; color: #33332c; line-height: 1.35; }

.vv-pd-side { position: sticky; top: 84px; display: flex; flex-direction: column; gap: 16px; }
.vv-pd-visit { background: #fff; border: 1px solid var(--vv-border); border-radius: 20px; padding: 24px; box-shadow: 0 8px 22px rgba(27,27,22,0.05); }
.vv-pd-visit h3 { font-size: 18px; font-weight: 800; margin: 0 0 18px; color: var(--vv-ink); }
.vv-pd-steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.vv-pd-steps li { display: flex; gap: 14px; align-items: flex-start; }
.vv-pd-steps .n { width: 30px; height: 30px; border-radius: 10px; background: var(--vv-lime-soft); color: var(--vv-olive-deep); font-weight: 800; font-size: 14px; display: flex; align-items: center; justify-content: center; flex: none; }
.vv-pd-steps b { display: block; font-size: 15.5px; font-weight: 800; color: var(--vv-ink); margin-bottom: 3px; }
.vv-pd-steps p { font-size: 13.5px; color: #6f6f64; margin: 0; line-height: 1.45; }
.vv-pd-help { background: var(--vv-ink); border-radius: 20px; padding: 24px; }
.vv-pd-help b { display: block; font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.vv-pd-help p { font-size: 14px; color: #a3a399; margin: 0 0 16px; line-height: 1.5; }

/* ---- CTA final ---- */
.vv-pd-cta-sec { padding: 60px 0 0; }
.vv-pd-cta { background: var(--vv-ink); border-radius: 24px; padding: 44px 46px; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; position: relative; overflow: hidden; }
.vv-pd-cta::after { content: ''; position: absolute; right: -120px; top: -120px; width: 360px; height: 360px; border-radius: 50%; border: 1.5px solid rgba(203,216,76,0.16); pointer-events: none; }
.vv-pd-cta .txt { max-width: 620px; position: relative; }
.vv-pd-cta h2 { font-size: 30px; font-weight: 800; letter-spacing: -0.02em; margin: 12px 0 8px; color: #fff; }
.vv-pd-cta p { font-size: 15.5px; color: #a3a399; margin: 0; }
.vv-pd-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; position: relative; }

/* ==========================================================================
   CARRINHO
   ========================================================================== */
.vv-steps-pills { display: flex; align-items: center; gap: 9px; margin-top: 22px; flex-wrap: wrap; }
.vv-pill { display: inline-flex; align-items: center; border-radius: 999px; padding: 7px 15px; font-size: 13px; font-weight: 600; }
.vv-pill.on { background: var(--vv-lime); color: var(--vv-ink); font-weight: 700; }
.vv-pill.off { background: rgba(255,255,255,0.07); color: #a8a89e; }
.vv-pill.link { cursor: pointer; }
.vv-pill-sep { width: 18px; height: 1px; background: rgba(255,255,255,0.18); }

.vv-cart-body { margin-top: -34px; position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 380px; gap: 30px; align-items: start; }
.vv-cart-lines { display: flex; flex-direction: column; gap: 14px; }
.vv-cart-line { background: #fff; border: 1px solid var(--vv-border); border-radius: 18px; padding: 16px; display: flex; gap: 18px; align-items: center; transition: box-shadow .18s, transform .18s; }
.vv-cart-line:hover { box-shadow: 0 12px 30px rgba(22,22,17,0.08); transform: translateY(-2px); }
.vv-cart-thumb { position: relative; overflow: hidden; width: 76px; height: 76px; border-radius: 12px; flex: none; background-size: cover; background-position: center; }
.vv-cart-thumb .ring { position: absolute; right: -16px; bottom: -16px; width: 64px; height: 64px; border-radius: 50%; border: 1.5px solid rgba(27,27,22,0.12); }
.vv-cart-line .info { flex: 1; min-width: 0; }
.vv-cart-line .info .cat { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--vv-muted-2); }
.vv-cart-line .info .name { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; color: var(--vv-ink); }
.vv-cart-line .info .meta { font-size: 13.5px; color: #8a8a7e; font-weight: 600; }
.vv-qty { display: flex; align-items: center; gap: 6px; background: var(--vv-field); border-radius: 999px; padding: 5px; }
.vv-qty button { width: 30px; height: 30px; border-radius: 50%; border: none; background: #fff; font-size: 18px; font-weight: 700; cursor: pointer; color: var(--vv-ink); }
.vv-qty .n { min-width: 24px; text-align: center; font-weight: 700; }
.vv-cart-line .lineprice { text-align: right; min-width: 96px; }
.vv-cart-line .lineprice .v { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; color: var(--vv-ink); }
.vv-remove { background: none; border: none; color: #a3736b; font-size: 13px; font-weight: 600; cursor: pointer; padding: 4px 0; }

.vv-summary { position: sticky; top: 76px; background: #fff; border: 1px solid var(--vv-border); border-radius: 20px; padding: 24px; box-shadow: 0 14px 36px rgba(22,22,17,0.07); }
.vv-summary h3 { font-size: 18px; font-weight: 800; margin: 0 0 18px; color: var(--vv-ink); }
.vv-sum-row { display: flex; justify-content: space-between; font-size: 15px; color: #56564e; margin-bottom: 10px; }
.vv-sum-row b { font-weight: 700; color: var(--vv-ink); }
.vv-sum-row.disc { color: var(--vv-olive-deep); }
.vv-sum-total { background: var(--vv-ink); border-radius: 14px; padding: 15px 18px; display: flex; justify-content: space-between; align-items: baseline; margin: 16px 0 4px; }
.vv-sum-total span { font-size: 15px; font-weight: 700; color: #bdbdb4; }
.vv-sum-total b { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; color: #fff; }
.vv-coupon-row { display: flex; gap: 8px; margin-bottom: 6px; }
.vv-coupon-row input { flex: 1; background: var(--vv-field); border: 1px solid #e4e3da; border-radius: 11px; padding: 12px 14px; font-size: 14.5px; outline: none; }
.vv-coupon-row button { background: var(--vv-ink); color: #fff; border: none; border-radius: 11px; padding: 0 18px; font-weight: 700; font-size: 14px; cursor: pointer; }
.vv-coupon-msg { font-size: 13px; font-weight: 600; margin-top: 8px; }
.vv-coupon-msg.ok { color: var(--vv-olive-deep); }
.vv-coupon-msg.err { color: #b06a5e; }
.vv-summary .checkout-btn { width: 100%; margin-top: 16px; }
.vv-secure { text-align: center; font-size: 12.5px; color: var(--vv-muted-2); margin-top: 12px; }
.vv-pay-info { background: var(--vv-lime-soft); border-radius: 12px; padding: 12px 14px; font-size: 13px; line-height: 1.5; color: #4d5416; margin-top: 14px; }
.vv-pay-info::before { content: '💳 '; }
.vv-pay-info b { color: var(--vv-olive-deep); font-weight: 700; }
.vv-pay-info.in-card { margin-top: 16px; }
.vv-continue { cursor: pointer; font-weight: 700; color: var(--vv-ink); padding: 6px 0; background: none; border: none; text-align: left; font-size: 15px; }
.vv-empty { background: #fff; border: 1px solid var(--vv-border); border-radius: 20px; padding: 60px; text-align: center; }
.vv-empty b { display: block; font-size: 20px; font-weight: 800; margin-bottom: 8px; color: var(--vv-ink); }
.vv-empty p { font-size: 15px; color: var(--vv-muted); margin: 0 0 24px; }

/* ==========================================================================
   CHECKOUT
   ========================================================================== */
.vv-checkout-body { margin-top: -34px; position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 400px; gap: 30px; align-items: start; }
.vv-checkout-left { display: flex; flex-direction: column; gap: 18px; }
.vv-panel { background: #fff; border: 1px solid var(--vv-border); border-radius: 18px; padding: 24px; }
.vv-panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.vv-panel-head .t { font-size: 18px; font-weight: 800; color: var(--vv-ink); }
.vv-tabs { display: flex; background: var(--vv-field); border-radius: 999px; padding: 4px; gap: 4px; }
.vv-tab { background: transparent; color: #56564e; border: none; border-radius: 999px; padding: 9px 18px; font-weight: 600; font-size: 14px; cursor: pointer; }
.vv-tab.active { background: var(--vv-ink); color: #fff; font-weight: 700; }
.vv-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.vv-field-full { grid-column: 1 / 3; }
.vv-form label { font-size: 13px; font-weight: 600; color: var(--vv-muted); display: block; margin-bottom: 6px; }
.vv-form input { width: 100%; background: var(--vv-field); border: 1px solid #e4e3da; border-radius: 11px; padding: 13px 14px; font-size: 15px; outline: none; }
.vv-form input:focus { border-color: var(--vv-lime); background: #fff; }
.vv-paytabs { display: flex; gap: 10px; margin-bottom: 20px; }
.vv-paytab { flex: 1; border-radius: 12px; padding: 13px; font-weight: 700; font-size: 14.5px; cursor: pointer; background: #fff; color: #56564e; border: 1px solid #d8d7cd; }
.vv-paytab.active { background: var(--vv-ink); color: #fff; border-color: var(--vv-ink); }
.vv-pay-note { font-size: 13px; color: #8a8a7e; margin-top: 14px; }
.vv-pix { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.vv-pix-qr { width: 128px; height: 128px; border-radius: 14px; flex: none; background: repeating-conic-gradient(#1b1b16 0% 25%, #fff 0% 50%) 0 0/16px 16px; border: 6px solid #fff; box-shadow: 0 0 0 1px #e4e3da; }
.vv-pix b { display: block; font-size: 16px; font-weight: 800; margin-bottom: 6px; color: var(--vv-ink); }
.vv-pix p { font-size: 14px; color: #6f6f64; margin: 0 0 12px; }
.vv-order-mini { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.vv-order-mini .row { display: flex; gap: 12px; align-items: center; }
.vv-order-mini .thumb { width: 44px; height: 44px; border-radius: 12px; flex: none; background-size: cover; background-position: center; }
.vv-order-mini .name { font-size: 14.5px; font-weight: 700; line-height: 1.2; color: var(--vv-ink); }
.vv-order-mini .qty { font-size: 12.5px; color: var(--vv-muted-2); }
.vv-order-mini .lp { font-size: 14.5px; font-weight: 700; color: var(--vv-ink); }
.vv-checkout-sep { height: 1px; background: var(--vv-line); margin: 16px 0; }

/* ==========================================================================
   CONFIRMAÇÃO
   ========================================================================== */
.vv-confirm { max-width: 680px; margin: 0 auto; }
.vv-confirm-head { padding: 60px 32px 0; text-align: center; }
.vv-confirm-check { width: 72px; height: 72px; border-radius: 50%; background: var(--vv-lime); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 34px; color: var(--vv-ink); font-weight: 800; }
.vv-confirm-head h1 { font-size: 36px; font-weight: 800; letter-spacing: -0.025em; margin: 0 0 10px; color: var(--vv-ink); }
.vv-confirm-head p { font-size: 17px; color: #56564e; margin: 0 0 6px; }
.vv-confirm-no { font-size: 14px; color: var(--vv-muted-2); font-weight: 700; letter-spacing: 0.04em; }
.vv-confirm-body { padding: 28px 32px 0; }
.vv-confirm-card { background: #fff; border: 1px solid var(--vv-border); border-radius: 20px; padding: 24px; text-align: left; }
.vv-confirm-card h3 { font-size: 16px; font-weight: 800; margin: 0 0 16px; color: var(--vv-ink); }
.vv-confirm-line { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid #f0efe8; }
.vv-confirm-line .n { font-size: 15px; }
.vv-confirm-line .n b { font-weight: 700; }
.vv-confirm-line .n span { color: var(--vv-muted-2); }
.vv-confirm-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 16px; }
.vv-confirm-total span { font-size: 16px; font-weight: 800; color: var(--vv-ink); }
.vv-confirm-total b { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; color: var(--vv-ink); }
.vv-confirm-cta { background: var(--vv-ink); border-radius: 20px; padding: 28px; margin-top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.vv-confirm-cta b { font-size: 17px; font-weight: 800; color: #fff; display: block; margin-bottom: 4px; }
.vv-confirm-cta span { font-size: 14px; color: #a3a399; }

/* ==========================================================================
   RODAPÉ
   ========================================================================== */
.vv-footer { background: var(--vv-ink); color: #cfcfc6; margin-top: 84px; }
.vv-footer-grid { padding: 54px 0 36px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 32px; }
.vv-footer-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.vv-footer-brand img.mark { width: 30px; height: 30px; object-fit: contain; flex: none; }
.vv-footer-brand img.word { height: 20px; width: auto; }
.vv-footer .about { font-size: 14px; color: #8f8f86; max-width: 280px; line-height: 1.5; }
.vv-footer h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #6f6f66; margin: 0 0 14px; }
.vv-footer .col { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.vv-footer .col span, .vv-footer .col a { cursor: pointer; color: #cfcfc6; text-decoration: none; }
.vv-footer .col span:hover, .vv-footer .col a:hover { color: var(--vv-lime); }
.vv-footer .contact { font-size: 14.5px; color: #a3a399; line-height: 1.6; }
.vv-footer .wa { display: inline-block; margin-top: 12px; color: var(--vv-lime); font-weight: 700; text-decoration: none; font-size: 14.5px; }
.vv-footer-bottom { border-top: 1px solid #2c2c26; }
.vv-footer-bottom-inner { padding: 18px 32px; display: flex; justify-content: space-between; font-size: 13px; color: #6f6f66; flex-wrap: wrap; gap: 8px; max-width: var(--vv-maxw); margin: 0 auto; }

/* ---- WhatsApp flutuante ---- */
.vv-whats { position: fixed; right: 26px; bottom: 26px; width: 58px; height: 58px; border-radius: 50%; background: var(--vv-lime); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(27,27,22,0.22); z-index: 60; text-decoration: none; }
.vv-whats:hover { filter: brightness(1.05); }

/* ---- Loading / erro ---- */
.vv-loading, .vv-error { text-align: center; padding: 80px 32px; color: var(--vv-muted); }
.vv-error b { display: block; font-size: 18px; font-weight: 800; color: var(--vv-ink); margin-bottom: 8px; }
.vv-skeleton { background: linear-gradient(90deg, #eceae2 25%, #f4f3ec 50%, #eceae2 75%); background-size: 200% 100%; animation: vvsk 1.2s infinite; border-radius: 18px; height: 340px; }
@keyframes vvsk { from { background-position: 200% 0; } to { background-position: -200% 0; } }

/* ==========================================================================
   AGENDAMENTO — identificação, cadastro, calendário, confirmação
   ========================================================================== */
.vv-sched-queue { display: inline-block; background: var(--vv-lime-soft); color: var(--vv-olive-deep); font-weight: 800; font-size: 12.5px; border-radius: 999px; padding: 5px 13px; }
.vv-sched-progress { margin-bottom: 14px; }
.vv-sched-progress-hint { font-size: 13px; color: var(--vv-muted); margin-top: 7px; }
.vv-multi-note { background: var(--vv-lime-soft); border-radius: 14px; padding: 14px 16px; font-size: 14px; color: #4d5416; line-height: 1.5; margin-bottom: 18px; }
.vv-multi-note b { color: var(--vv-olive-deep); }

/* ---- Identificação / cadastro ---- */
.vv-id-body { margin-top: -34px; position: relative; z-index: 2; display: flex; justify-content: center; }
.vv-id-card { background: #fff; border: 1px solid var(--vv-border); border-radius: 20px; padding: 28px; box-shadow: 0 18px 44px rgba(27,27,22,0.09); width: 100%; max-width: 460px; }
.vv-id-card.wide { max-width: 620px; }
.vv-id-label { display: block; font-size: 13px; font-weight: 700; color: var(--vv-muted); margin-bottom: 8px; }
.vv-id-input { width: 100%; background: var(--vv-field); border: 1.5px solid #e4e3da; border-radius: 13px; padding: 16px; font-size: 22px; font-weight: 700; letter-spacing: 0.02em; color: var(--vv-ink); outline: none; text-align: center; }
.vv-id-input:focus { border-color: var(--vv-lime); background: #fff; }
.vv-id-actions { margin-top: 18px; }
.vv-id-actions .vv-btn { width: 100%; padding: 15px; font-size: 15px; }
.vv-id-hint { font-size: 13px; color: var(--vv-muted); margin-top: 14px; text-align: center; line-height: 1.5; }
.vv-id-err { background: #fbecea; color: #b0503f; border-radius: 11px; padding: 11px 14px; font-size: 13.5px; font-weight: 600; margin-top: 14px; }
.vv-cad-doc { font-size: 14px; color: var(--vv-muted); margin-bottom: 16px; }
.vv-cad-doc b { color: var(--vv-ink); }
.vv-link.sm { font-size: 13px; padding: 0; margin-left: 6px; }

/* ---- Agendamento (calendário + horários) ---- */
.vv-sched-body { margin-top: -34px; position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 360px; gap: 26px; align-items: start; }
.vv-sched-main { background: #fff; border: 1px solid var(--vv-border); border-radius: 20px; padding: 22px; box-shadow: 0 14px 36px rgba(22,22,17,0.07); }
.vv-sched-combo { display: flex; align-items: center; gap: 14px; padding-bottom: 18px; margin-bottom: 6px; border-bottom: 1px solid var(--vv-line); }
.vv-sched-combo-thumb { width: 54px; height: 54px; border-radius: 12px; background-size: cover; background-position: center; flex: none; }
.vv-sched-combo-name { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; color: var(--vv-ink); }
.vv-sched-patient { font-size: 13px; color: var(--vv-muted); margin-top: 2px; }
.vv-sched-patient b { color: var(--vv-ink); }
.vv-sched-price { text-align: right; flex: none; }
.vv-sched-price .final { display: block; font-size: 22px; font-weight: 800; letter-spacing: -0.02em; color: var(--vv-ink); }
.vv-sched-price .orig { display: block; font-size: 13px; color: var(--vv-muted-2); text-decoration: line-through; }

/* cupom por combo */
.vv-sched-coupon { margin: 4px 0 6px; padding: 14px; background: var(--vv-field); border-radius: 14px; }
.vv-sched-coupon-label { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--vv-muted-2); margin-bottom: 10px; }
.vv-sched-coupon .vv-coupon-row { margin-bottom: 0; }
.vv-sched-coupon .vv-coupon-row input { background: #fff; }
.vv-coupon-applied { display: flex; align-items: center; justify-content: space-between; gap: 10px; background: var(--vv-lime-soft); border-radius: 11px; padding: 12px 14px; font-size: 14px; font-weight: 700; color: var(--vv-olive-deep); }
.vv-coupon-applied .vv-link.sm { color: #a3736b; font-weight: 600; }
.vv-cart-coupon-hint { font-size: 12.5px; color: var(--vv-muted); margin: 10px 0 0; line-height: 1.45; }

.vv-cal { margin-top: 12px; }
.vv-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.vv-cal-title { font-size: 16px; font-weight: 800; color: var(--vv-ink); }
.vv-cal-nav { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--vv-border); background: #fff; font-size: 18px; font-weight: 700; color: var(--vv-ink); cursor: pointer; }
.vv-cal-nav:hover { background: var(--vv-field); }
.vv-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.vv-cal-wd { text-align: center; font-size: 11.5px; font-weight: 700; color: var(--vv-muted-2); text-transform: uppercase; padding: 4px 0 8px; }
.vv-cal-cell { aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; border-radius: 11px; font-size: 15px; font-weight: 600; border: 1px solid transparent; background: transparent; color: var(--vv-ink); }
.vv-cal-cell.empty { visibility: hidden; }
.vv-cal-cell.disabled { color: #c9c8bd; }
button.vv-cal-cell { cursor: pointer; background: var(--vv-field); font-weight: 700; }
button.vv-cal-cell:hover { background: var(--vv-lime-soft); border-color: var(--vv-lime); }
button.vv-cal-cell.sel { background: var(--vv-ink); color: #fff; border-color: var(--vv-ink); }

/* horários (sidebar) */
.vv-sched-side { position: sticky; top: 84px; background: #fff; border: 1px solid var(--vv-border); border-radius: 20px; padding: 22px; box-shadow: 0 14px 36px rgba(22,22,17,0.07); }
.vv-sched-side h3 { font-size: 17px; font-weight: 800; margin: 0 0 16px; color: var(--vv-ink); }
.vv-times-empty, .vv-sched-loading { font-size: 14px; color: var(--vv-muted); padding: 18px 4px; line-height: 1.5; }
.vv-times-group { margin-bottom: 16px; }
.vv-times-label { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--vv-muted-2); margin-bottom: 9px; }
.vv-times-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.vv-time { border: 1px solid var(--vv-border); background: #fff; border-radius: 10px; padding: 10px 6px; font-size: 14px; font-weight: 700; color: var(--vv-ink); cursor: pointer; }
.vv-time:hover { border-color: var(--vv-lime); background: var(--vv-lime-soft); }
.vv-time.sel { background: var(--vv-ink); color: #fff; border-color: var(--vv-ink); }
.vv-sched-sel { background: var(--vv-lime-soft); border-radius: 14px; padding: 14px 16px; margin-top: 4px; }
.vv-sched-sel .k { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--vv-olive-deep); }
.vv-sched-sel .v { font-size: 15px; font-weight: 800; color: var(--vv-ink); margin-top: 3px; }
.vv-sched-sel .prof { font-size: 13px; color: var(--vv-olive-deep); margin-top: 3px; }
.vv-sched-actions { margin-top: 16px; }
.vv-sched-actions .vv-btn { width: 100%; padding: 15px; font-size: 15px; }
.vv-sched-actions .vv-btn[disabled] { opacity: 0.5; cursor: not-allowed; }
.vv-btn[disabled] { opacity: 0.6; cursor: default; }

/* ---- Confirmação de agendamento ---- */
.vv-confirm-appt { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid #f0efe8; }
.vv-confirm-appt:last-child { border-bottom: none; }
.vv-confirm-appt-date { flex: none; width: 88px; text-align: center; background: var(--vv-lime-soft); border-radius: 12px; padding: 10px 6px; }
.vv-confirm-appt-date b { display: block; font-size: 13px; font-weight: 800; color: var(--vv-olive-deep); text-transform: capitalize; line-height: 1.25; }
.vv-confirm-appt-date span { font-size: 18px; font-weight: 800; color: var(--vv-ink); }
.vv-confirm-appt-info { flex: 1; min-width: 0; }
.vv-confirm-appt-info .nm { font-size: 16px; font-weight: 800; color: var(--vv-ink); }
.vv-confirm-appt-info .pr { font-size: 13.5px; color: var(--vv-muted); margin-top: 2px; }
.vv-confirm-appt-price { text-align: right; flex: none; }
.vv-confirm-appt-price .final { display: block; font-size: 17px; font-weight: 800; color: var(--vv-ink); }
.vv-confirm-appt-price .orig { display: block; font-size: 12.5px; color: var(--vv-muted-2); text-decoration: line-through; }
.vv-confirm-appt-price .cpn { display: inline-block; margin-top: 3px; background: var(--vv-lime-soft); color: var(--vv-olive-deep); font-size: 11px; font-weight: 800; border-radius: 999px; padding: 2px 8px; }
.vv-confirm-addr { display: flex; gap: 16px; align-items: flex-start; margin-top: 18px; }
.vv-addr-pin { width: 42px; height: 42px; border-radius: 12px; background: var(--vv-lime-soft); display: flex; align-items: center; justify-content: center; flex: none; }
.vv-addr-title { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--vv-muted-2); margin-bottom: 8px; }
.vv-addr-line { font-size: 15px; color: #33332c; line-height: 1.5; }
.vv-addr-line b { color: var(--vv-ink); }
.vv-addr-note { font-size: 13px; color: var(--vv-muted); margin-top: 4px; }
.vv-addr-map { display: inline-block; margin-top: 12px; color: var(--vv-olive-deep); font-weight: 700; text-decoration: none; font-size: 14.5px; }
.vv-addr-map:hover { color: var(--vv-olive); }

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */
@media (max-width: 980px) {
  .vv-sched-body { grid-template-columns: 1fr; }
  .vv-sched-side { position: static; }
  .vv-strip { grid-template-columns: repeat(2, 1fr); }
  .vv-strip > div:nth-child(3) { border-left: none; }
  .vv-strip > div:nth-child(odd) { border-left: none; }
  .vv-strip > div:nth-child(3), .vv-strip > div:nth-child(4) { border-top: 1px solid var(--vv-line); }
  .vv-grid, .vv-catalog-grid, .vv-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .vv-catalog-body { grid-template-columns: 1fr; }
  .vv-aside { position: static; }
  .vv-cart-body, .vv-checkout-body { grid-template-columns: 1fr; }
  .vv-pd-hero, .vv-pd-body { grid-template-columns: 1fr; }
  .vv-pd-media, .vv-pd-side { position: static; }
  .vv-pd-photo { height: 380px; }
  .vv-pd-info h1 { font-size: 34px; }
  .vv-footer-grid { grid-template-columns: 1fr 1fr; }
  .vv-topnav { display: none; }
}
@media (max-width: 640px) {
  .vv-wrap { padding-left: 20px; padding-right: 20px; }
  .vv-hero { min-height: 300px; }
  .vv-hero h1 { font-size: 34px; }
  .vv-hero-body-wrap { padding-top: 32px; padding-bottom: 44px; }
  .vv-dark-hero h1 { font-size: 34px; }
  .vv-grid, .vv-catalog-grid, .vv-steps-grid, .vv-strip { grid-template-columns: 1fr; }
  .vv-strip > div { border-left: none !important; }
  .vv-strip > div + div { border-top: 1px solid var(--vv-line); }
  .vv-footer-grid { grid-template-columns: 1fr; }
  .vv-sec-head h2 { font-size: 28px; }
  .vv-pd-chips { grid-template-columns: repeat(2, 1fr); }
  .vv-pd-exams { grid-template-columns: 1fr; }
  .vv-pd-buy-btns { flex-direction: column; }
  .vv-pd-cta { padding: 32px 26px; }
}
