/* ── ESPAÇO JULIANA FERREIRA - DESIGN SYSTEM & CSS ── */
:root {
  --ink: #0A0708;
  --ink2: #140D10;
  --ink3: #1E151A;
  --parch: #F8F2EC;
  --parch2: #EEE5DA;
  --parch3: #E2D6C6;
  --gold: #B8863A;
  --gold-hi: #F0D090;
  --gold-dim: #6D501D;
  --gold-soft: rgba(184, 134, 58, 0.14);
  --gold-line: rgba(184, 134, 58, 0.3);
  --rose: #C4747A;
  --rose-hi: #F2B0B6;
  --rose-dim: #7A3A40;
  --rose-soft: rgba(196, 116, 122, 0.14);
  --text-dark: #120A0E;
  --text-muted: #423238;
  --text-light: #FFFDF8;
  --text-light-muted: rgba(255, 253, 248, 0.85);
  --green: #15803D;
  --green-h: #166534;
  --uber-black: #000000;
  --uber-h: #1f1f1f;
  --ninetynine-yellow: #E6AD00;
  --ninetynine-h: #c69400;
  --r: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--parch);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--parch);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── WA FAB ── */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #fff;
  border-radius: 100px;
  padding: 14px 22px 14px 18px;
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.45);
  animation: fabpulse 2.8s infinite;
  transition: transform 0.2s, background 0.2s;
}
.wa-fab:hover {
  transform: scale(1.05);
  background: var(--green-h);
}
.wa-fab svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  flex-shrink: 0;
}
@keyframes fabpulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(34, 197, 94, 0.45); }
  50% { box-shadow: 0 8px 46px rgba(34, 197, 94, 0.75); }
}
@media (max-width: 540px) {
  .wa-fab .ft { display: none; }
  .wa-fab { padding: 14px; border-radius: 50%; }
}

/* ── TOPBAR ── */
.topbar {
  background: var(--ink);
  color: var(--gold-hi);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  font-weight: 500;
  text-transform: uppercase;
}
.topbar a {
  color: var(--gold-hi);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(248, 242, 236, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--parch3);
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
}
.nav-brand strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  color: var(--text-dark);
  font-weight: 600;
}
.nav-brand span {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  font-size: 0.84rem;
  font-weight: 500;
}
@media (max-width: 900px) {
  .nav-links { display: none; }
}
.nav-links a:hover {
  color: var(--gold-dim);
}
.btn-nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.35);
  transition: background 0.2s, transform 0.15s;
}
.btn-nav-wa:hover {
  background: var(--green-h);
  transform: translateY(-1px);
}
.btn-nav-wa svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

/* ── HERO ── */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
}
.hero-left {
  padding: clamp(60px, 8vw, 110px) clamp(24px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  color: var(--text-light);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
}
.eyebrow.light { color: var(--gold-hi); }
.eyebrow.dark { color: var(--gold-dim); }

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--text-light);
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-hi);
}
.hero h1 .highlight-rose {
  color: var(--rose-hi);
  font-style: italic;
}
.hero-lead {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.8;
  font-weight: 300;
  color: var(--text-light-muted);
  margin-bottom: 28px;
  max-width: 500px;
}
.hero-stars {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
.hero-stars .stars {
  color: #FBBF24;
  font-size: 0.95rem;
  letter-spacing: 2px;
}
.hero-stars span {
  font-size: 0.8rem;
  color: rgba(255, 253, 248, 0.65);
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 380px;
}
.btn-wa-big {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--green);
  color: #fff;
  border-radius: 14px;
  padding: 18px 32px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 28px rgba(34, 197, 94, 0.45);
  transition: all 0.25s;
}
.btn-wa-big:hover {
  background: var(--green-h);
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(34, 197, 94, 0.65);
}
.btn-wa-big svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}
.btn-trinks-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(255, 253, 248, 0.25);
  color: rgba(255, 253, 248, 0.75);
  border-radius: 14px;
  padding: 12px 20px;
  font-size: 0.82rem;
  font-weight: 400;
  opacity: 0.8;
  transition: all 0.2s;
}
.btn-trinks-outline:hover {
  opacity: 1;
  background: rgba(255, 253, 248, 0.08);
  border-color: rgba(255, 253, 248, 0.5);
  color: #fff;
}

.btn-secondary-neutral {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(255, 253, 248, 0.25);
  color: rgba(255, 253, 248, 0.75);
  border-radius: 12px;
  padding: 10px 18px;
  font-size: 0.8rem;
  font-weight: 400;
  text-decoration: none;
  opacity: 0.75;
  transition: all 0.2s;
  box-shadow: none;
}
.btn-secondary-neutral:hover {
  opacity: 1;
  border-color: rgba(255, 253, 248, 0.5);
  color: #fff;
  background: rgba(255, 253, 248, 0.05);
}

.btn-secondary-neutral-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(18, 10, 14, 0.22);
  color: var(--text-muted);
  border-radius: 12px;
  padding: 10px 18px;
  font-size: 0.8rem;
  font-weight: 400;
  text-decoration: none;
  opacity: 0.75;
  transition: all 0.2s;
  box-shadow: none;
}
.btn-secondary-neutral-dark:hover {
  opacity: 1;
  border-color: var(--text-dark);
  color: var(--text-dark);
  background: rgba(0, 0, 0, 0.04);
}

.hero-right {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
@media (max-width: 860px) {
  .hero-right {
    display: flex;
    min-height: 280px;
    max-height: 440px;
    border-radius: var(--r);
    margin: 24px clamp(24px, 5vw, 72px) 40px;
    border: 1px solid var(--gold-line);
  }
  .hero-badge-float {
    display: none;
  }
}
.hero-video-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero-video-container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 7, 8, 0.7) 0%, transparent 60%);
}
.hero-badge-float {
  position: absolute;
  bottom: 40px;
  right: 32px;
  background: rgba(10, 7, 8, 0.85);
  backdrop-filter: blur(14px);
  border: 1px solid var(--gold-line);
  border-radius: 16px;
  padding: 18px 24px;
  color: var(--text-light);
}
.hero-badge-float strong {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold-hi);
  line-height: 1;
  display: block;
}
.hero-badge-float span {
  font-size: 0.72rem;
  color: rgba(255, 253, 248, 0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--ink2);
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--gold-line);
}
.trust-cell {
  flex: 1;
  min-width: 160px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid rgba(196, 151, 74, 0.12);
}
.trust-cell:last-child { border-right: none; }
.t-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold-hi);
  line-height: 1;
  white-space: nowrap;
}
.t-desc {
  font-size: 0.75rem;
  color: rgba(248, 242, 236, 0.65);
  line-height: 1.4;
  font-weight: 300;
}

/* ── SECTIONS GENERAL ── */
.sec {
  padding: clamp(64px, 9vw, 110px) 5vw;
}
.sec-sm {
  padding: clamp(48px, 6vw, 80px) 5vw;
}
.bg-ink { background: var(--ink); color: var(--text-light); }
.bg-parch { background: var(--parch); color: var(--text-dark); }
.bg-parch2 { background: var(--parch2); color: var(--text-dark); }

.sec-h {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.sec-h em { font-style: italic; }
.on-dark { color: var(--text-light); }
.on-dark em { color: var(--gold-hi); }
.on-light { color: var(--text-dark); }
.on-light em { color: var(--gold-dim); }

/* ── BEFORE / AFTER SLIDER ── */
.ba-wrap {
  max-width: 1100px;
  margin: 0 auto;
}
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 860px) {
  .ba-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}
.ba-card {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--parch3);
  background: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.ba-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.ba-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: col-resize;
  user-select: none;
}
.ba-before, .ba-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-before img, .ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-after {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}
.ba-hdl {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 3;
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.ba-range {
  position: absolute;
  inset: 0;
  z-index: 10;
  opacity: 0;
  cursor: col-resize;
  width: 100%;
  margin: 0;
  -webkit-appearance: none;
}
.ba-lbls {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  z-index: 4;
  pointer-events: none;
}
.bl {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.bl.b { background: rgba(0,0,0,0.65); color: #fff; }
.bl.a { background: var(--gold); color: var(--ink); }

.ba-info {
  padding: 20px 22px 24px;
}
.ba-tag {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dim);
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}
.ba-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.ba-info p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── VIDEO SHOWCASE CARDS ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 40px auto 0;
}
.video-card {
  background: rgba(255, 253, 248, 0.05);
  border: 1px solid var(--gold-line);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s;
}
.video-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-hi);
}
/* GLOBAL VIDEO FIT ENFORCEMENT - ZERO CROPPING */
video {
  object-fit: contain !important;
  background: #000 !important;
  max-width: 100%;
}

.video-wrapper {
  position: relative;
  width: 100%;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.video-wrapper video {
  width: 100%;
  max-height: 560px;
  object-fit: contain !important;
  display: block;
  background: #000 !important;
}
.video-card-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.video-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 8px;
}
.video-card-body p {
  font-size: 0.86rem;
  color: var(--text-light-muted);
  margin-bottom: 16px;
  flex: 1;
}

/* ── SPECIALIST / ABOUT SECTION ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}
@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; }
}
.about-video-col {
  position: relative;
  background: #000;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-video-col video {
  width: 100%;
  max-height: 580px;
  object-fit: contain;
  display: block;
  background: #000;
}
.about-txt {
  background: var(--parch);
  padding: clamp(48px, 6vw, 80px) clamp(32px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-txt p {
  color: var(--text-muted);
  margin: 16px 0;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ── MOBILITY & LOCATION ── */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
  max-width: 1060px;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .loc-grid { grid-template-columns: 1fr; }
}
.loc-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.loc-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.loc-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--parch3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.loc-txt strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.loc-txt span {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.mobility-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.btn-ride {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.86rem;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.btn-ride:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}
.btn-uber {
  background: var(--uber-black);
  color: #fff;
}
.btn-uber:hover {
  background: var(--uber-h);
}
.btn-99 {
  background: var(--ninetynine-yellow);
  color: #111;
}
.btn-99:hover {
  background: var(--ninetynine-h);
}
.btn-maps {
  background: #fff;
  border: 1px solid var(--parch3);
  color: var(--text-dark);
}
.btn-maps:hover {
  background: var(--parch2);
}

.map-frame {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--parch3);
  aspect-ratio: 4/3;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 40px auto 0;
}
.testi-card {
  background: rgba(255, 253, 248, 0.05);
  border: 1px solid var(--gold-line);
  border-radius: var(--r);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.testi-stars {
  color: #FBBF24;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testi-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255, 253, 248, 0.88);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-hi));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 600;
}
.testi-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-hi);
  display: block;
}
.testi-detail {
  font-size: 0.72rem;
  color: rgba(255, 253, 248, 0.45);
}

/* ── THANK YOU PAGE ── */
.thankyou-box {
  max-width: 620px;
  margin: 60px auto;
  background: #fff;
  border-radius: 24px;
  padding: 48px 36px;
  text-align: center;
  border: 1px solid var(--parch3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.thankyou-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  margin: 0 auto 24px;
}
.thankyou-box h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.thankyou-box p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.countdown-tag {
  display: inline-block;
  background: var(--parch2);
  color: var(--gold-dim);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  margin-bottom: 24px;
}

/* ── QUIZ DE VISAGISMO & ALTA CONVERSÃO ── */
.quiz-container {
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid var(--gold-line);
  box-shadow: 0 12px 36px rgba(0,0,0,0.06);
  padding: clamp(24px, 4vw, 40px);
  max-width: 820px;
  margin: 32px auto 0;
}
.quiz-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.quiz-progress-bar {
  flex: 1;
  height: 6px;
  border-radius: 100px;
  background: var(--parch3);
  transition: background 0.3s;
}
.quiz-progress-bar.active {
  background: var(--gold-dim);
}
.quiz-step-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--text-dark);
  margin-bottom: 16px;
  text-align: center;
}
.quiz-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.quiz-opt-btn {
  background: var(--parch2);
  border: 1.5px solid var(--parch3);
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.quiz-opt-btn:hover {
  background: #fff;
  border-color: var(--gold-dim);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}
.quiz-result-card {
  background: linear-gradient(135deg, #FAF7F2, #FFFDF8);
  border: 1.5px solid var(--gold);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}

/* ── SELOS DE CONFIAÇÃO & GARANTIA ── */
.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.trust-badge-card {
  background: #fff;
  border: 1px solid var(--parch3);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.03);
}
.trust-badge-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.trust-badge-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 2px;
}
.trust-badge-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── URGÊNCIA DE VAGAS ── */
.urgency-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.25);
  color: #B91C1C;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #EF4444;
  animation: pulseDot 1.5s infinite;
}
@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.25); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(248, 242, 236, 0.4);
  padding: 40px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
  border-top: 1px solid var(--gold-line);
}
footer strong { color: var(--gold-hi); }
footer a { color: var(--gold-hi); }
