/* ============================================================
   ASTROBEBÊ — IDENTIDADE VISUAL
   ============================================================ */

:root {
  --bg:           #FAF3E8;
  --bg-soft:      #F3E9DB;
  --surface:      rgba(255, 255, 255, 0.88);
  --surface-str:  #ffffff;
  --text:         #3A302A;
  --text-soft:    #6B5E55;
  --text-muted:   #9A8E85;

  /* Gold — acento principal */
  --gold:         #C9A876;
  --gold-dark:    #A6854E;
  --gold-tint:    rgba(201, 168, 118, 0.12);

  /* Accents secundários */
  --blue:         #A8B8CC;
  --lilac:        #C9BDD9;
  --peach:        #E8C9BC;

  /* Estrutura */
  --border:       rgba(208, 192, 170, 0.80);
  --border-lt:    rgba(224, 212, 194, 0.60);
  --shadow-sm:    0 2px 14px rgba(50, 36, 24, 0.05);
  --shadow:       0 6px 26px rgba(50, 36, 24, 0.07);
  --shadow-md:    0 14px 44px rgba(50, 36, 24, 0.09);

  /* Raio — conforme brief: 6-12px */
  --r-xl:   12px;
  --r-lg:   10px;
  --r-md:    8px;
  --r-sm:    6px;
  --r-pill:  999px;

  /* Aliases para páginas internas */
  --radius-lg: 12px;
  --radius-md:  8px;
  --radius-sm:  6px;
  --primary:      #C9A876;
  --primary-dark: #A6854E;
  --accent:       #A8B8CC;

  --container: 1160px;
}

/* ============================================================
   BASE
   ============================================================ */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text);
  /* Gradiente "céu ao amanhecer": lilás no topo → creme na base */
  background:
    linear-gradient(180deg,
      #E8DFF0 0%,
      #EDE5F2 10%,
      #F4EBE0 52%,
      #F3E2CE 100%
    );
  background-attachment: fixed;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: var(--r-md);
  z-index: 999;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* ============================================================
   TIPOGRAFIA
   ============================================================ */

h1, h2, h3 {
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

h1, h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
}

h1 { font-size: clamp(2.9rem, 6vw, 5.2rem); margin-bottom: 18px; }
h2 { font-size: clamp(2rem, 4vw, 3.3rem);   margin-bottom: 14px; }

h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
}

/* Itálico dourado — keyword do headline */
em.gold {
  font-style: italic;
  color: var(--gold-dark);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(248, 241, 230, 0.80);
  border-bottom: 1px solid var(--border-lt);
}

.nav-wrapper {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }

.brand-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}

/* Anel ornamental ao redor do ponto */
.brand-orb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 118, 0.50);
  flex-shrink: 0;
}
.brand-orb::after {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* Alias para páginas que usam brand-name / brand-mark */
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.brand-mark { display: none; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--gold-dark); }

.nav-actions { display: flex; align-items: center; }

/* ============================================================
   BOTÕES
   ============================================================ */

.btn,
.link-button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary,
.link-button,
button:not(.btn-secondary):not(.modal-close):not(.btn-ghost):not(.gender-card) {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  box-shadow: 0 5px 18px rgba(166, 133, 78, 0.22);
}

.btn-primary:hover,
.link-button:hover,
button:not(.btn-secondary):not(.modal-close):not(.btn-ghost):not(.gender-card):hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(166, 133, 78, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover {
  background: var(--surface-str);
  transform: translateY(-1px);
}

.full-width { width: 100%; }

/* ============================================================
   HERO — ASTROBEBÊ
   ============================================================ */

.hero-astrobebe {
  position: relative;
  padding: 108px 0 78px;
  overflow: hidden;
  text-align: center;
}

/* Ornamentos decorativos absolutos */
.orb-bg {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.orb-bg--circle {
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 760px;
  height: 760px;
  opacity: 0.14;
}

.orb-bg--stars {
  top: 54px;
  right: 9%;
  opacity: 0.55;
}

.orb-bg--moon {
  top: 70px;
  left: 7%;
  opacity: 0.40;
}

.hero-astrobebe__inner {
  position: relative;
  z-index: 1;
  max-width: 840px;
  margin: 0 auto;
  animation: fadeRise 0.9s cubic-bezier(0.22, 0.8, 0.4, 1) both;
}

.hero-astrobebe h1 {
  font-size: clamp(2.9rem, 6.5vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.036em;
  margin-bottom: 26px;
  font-weight: 300;
}

.hero-astrobebe__subtitle {
  font-size: 1.06rem;
  font-weight: 300;
  line-height: 1.80;
  color: var(--text-soft);
  max-width: 560px;
  margin: 0 auto 38px;
}

.hero-astrobebe__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-astrobebe__trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 44px;
}

.hero-astrobebe__trust-item {
  padding: 9px 16px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.50);
  border: 1px solid var(--border-lt);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-soft);
  backdrop-filter: blur(6px);
}

/* ============================================================
   SEÇÕES — BASE
   ============================================================ */

.section { padding: 88px 0; }

.section-soft {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(2px);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 48px;
}
.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-heading p {
  color: var(--text-soft);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.78;
  margin: 0;
}

/* ============================================================
   O QUE É O MAPA ASTRAL
   ============================================================ */

.what-is-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.what-is-card {
  background: rgba(255, 255, 255, 0.60);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  padding: 32px 26px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.what-is-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.what-is-card__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
  opacity: 0.70;
}

.what-is-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--text);
}

.what-is-card p {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.78;
  margin: 0;
}

/* ============================================================
   COMO FUNCIONA — 3 PASSOS
   ============================================================ */

.steps-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.steps-track::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 18%;
  right: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.30;
  pointer-events: none;
}

.step-item {
  text-align: center;
  padding: 34px 24px 28px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
}

.step-item__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(201, 168, 118, 0.50);
  background: rgba(201, 168, 118, 0.08);
  color: var(--gold-dark);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 auto 22px;
}

.step-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--text);
}

.step-item p {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.74;
  margin: 0;
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-item {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  padding: 30px;
}

.testimonial-item__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.62;
  color: var(--text);
  margin: 0 0 22px;
}

.testimonial-item__quote::before {
  content: '\201C';
  display: block;
  font-size: 2.8rem;
  line-height: 0.7;
  color: var(--gold);
  opacity: 0.45;
  margin-bottom: 10px;
  font-style: normal;
}

.testimonial-item__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-item__dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.testimonial-item__author strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.testimonial-item__author span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 300;
}

/* ============================================================
   SEÇÃO DE PEDIDO
   ============================================================ */

.order-section { padding: 88px 0; }

.order-section__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.order-section__subtitle {
  color: var(--text-soft);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.78;
  margin: 0 auto 44px;
}

.order-card-main {
  background: rgba(255, 255, 255, 0.80);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  padding: 42px;
  text-align: left;
}

.order-card-main__includes {
  display: grid;
  gap: 12px;
  margin: 24px 0 30px;
}

.order-card-main__include-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.60);
  border: 1px solid var(--border-lt);
}

.order-card-main__include-mark {
  color: var(--gold);
  font-size: 14px;
  font-weight: 400;
  flex-shrink: 0;
  margin-top: 1px;
}

.order-card-main__include-item strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 3px;
  color: var(--text);
}

.order-card-main__include-item span {
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 300;
}

.order-card-main__actions { display: grid; gap: 10px; }

/* ============================================================
   TRUST STRIP
   ============================================================ */

.trust-strip { padding: 0 0 36px; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trust-grid article {
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  padding: 20px;
}

.trust-grid strong { display: block; font-size: 14px; font-weight: 500; margin-bottom: 5px; color: var(--text); }
.trust-grid span   { font-size: 13px; font-weight: 300; color: var(--text-soft); }

/* ============================================================
   CTA FINAL
   ============================================================ */

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 44px;
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-actions.stacked { flex-direction: column; min-width: 220px; }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  padding: 44px 0 54px;
  border-top: 1px solid var(--border-lt);
  background: rgba(243, 233, 219, 0.40);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.footer-brand-wrap { display: flex; flex-direction: column; gap: 10px; }

/* Wordmark "ASTROBEBÊ" em versalete espaçado */
.footer-wordmark {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--text);
}

/* Alias para páginas admin que usam .footer-brand */
.footer-brand {
  margin: 0 0 6px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.footer-text {
  margin: 0;
  max-width: 360px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
}

.footer-nav { display: grid; gap: 8px; align-content: start; }

.footer-nav a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold-dark); }

/* ============================================================
   MODAL
   ============================================================ */

.modal-open { overflow: hidden; }

.modal-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
}
.modal-overlay.hidden { display: none !important; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 20, 12, 0.38);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.order-modal-premium {
  position: relative;
  width: min(100%, 900px) !important;
  max-height: calc(100vh - 40px) !important;
  overflow-y: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: var(--r-xl) !important;
  background: rgba(255, 255, 255, 0.97) !important;
  border: 1px solid var(--border) !important;
  box-shadow: 0 24px 70px rgba(36, 24, 14, 0.16) !important;
}

.order-modal-grid-premium {
  display: grid !important;
  grid-template-columns: 0.88fr 1.12fr !important;
  gap: 0 !important;
  align-items: stretch !important;
}

.order-modal-copy-premium {
  padding: 38px 28px 34px 34px;
  background: linear-gradient(160deg, rgba(232, 223, 240, 0.28), rgba(250, 243, 232, 0.48));
  border-right: 1px solid var(--border-lt);
}

.order-modal-copy-premium h2 {
  font-size: clamp(1.85rem, 2.5vw, 2.55rem);
  line-height: 1.04;
  margin-bottom: 12px;
}

.order-modal-copy-premium p {
  font-size: 14px;
  line-height: 1.72;
  color: var(--text-soft);
  font-weight: 300;
}

.modal-highlight-box {
  margin-top: 20px;
  padding: 16px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--border-lt);
}

.modal-highlight-box strong {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.modal-trust-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.modal-trust-mini span {
  padding: 7px 12px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid var(--border-lt);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 400;
}

.order-modal-form-wrap-premium {
  padding: 26px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 0 var(--r-xl) var(--r-xl) 0;
}

.order-modal-premium .purchase-form-block {
  padding: 22px 0 20px;
  margin-bottom: 0;
  border-bottom: none;
}
.order-modal-premium .purchase-form-block:first-of-type { padding-top: 0; }
.order-modal-premium .purchase-form-block:last-of-type  { padding-bottom: 8px; }

.order-modal-premium .section-mini-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.order-modal-premium .section-mini-number {
  min-width: 30px;
  height: 30px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-tint);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(201, 168, 118, 0.22);
}

.order-modal-premium .section-mini-head h3 { font-size: 14px; font-weight: 500; margin: 0 0 3px; }
.order-modal-premium .section-mini-head p  { margin: 0; font-size: 12px; color: var(--text-soft); font-weight: 300; }

.order-modal-premium .order-form label {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
}

.order-modal-premium .order-form input {
  width: 100%;
  margin-top: 5px;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.order-modal-premium .order-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 118, 0.12);
}

.order-modal-premium .checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-soft);
  margin-bottom: 4px !important;
}
.order-modal-premium .order-form .checkbox-line {
  margin-bottom: 4px !important;
}
.order-modal-premium .checkbox-line input {
  width: 16px; height: 16px;
  min-height: auto; margin-top: 2px;
  padding: 0; border-radius: 4px; box-shadow: none;
}

.purchase-submit-box-premium { margin-top: 8px; padding-top: 4px; }
.purchase-submit-box-premium button {
  width: 100%;
  min-height: 50px;
  border: none;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.submit-note {
  margin: 10px 4px 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: center;
  font-weight: 300;
}

.modal-close {
  position: absolute !important;
  top: 16px !important;
  right: 16px !important;
  width: 44px !important;
  height: 44px !important;
  padding: 0 !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--r-pill) !important;
  background: rgba(255, 255, 255, 0.95) !important;
  color: var(--text-soft) !important;
  font-size: 22px !important;
  font-weight: 300 !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: var(--shadow-sm) !important;
  cursor: pointer !important;
  z-index: 20 !important;
  transition: all 0.2s ease !important;
  flex-shrink: 0 !important;
  min-height: unset !important;
  width: 44px !important;
}
.modal-close:hover {
  transform: translateY(-1px) !important;
  background: #fff !important;
  color: var(--gold-dark) !important;
  border-color: var(--gold) !important;
}
.modal-close span { pointer-events: none; line-height: 1; display: flex; align-items: center; justify-content: center; }

.modal-mini-offer { display: grid; gap: 10px; margin-top: 16px; }
.modal-mini-offer-item {
  padding: 13px 14px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--border-lt);
}
.modal-mini-offer-item strong { display: block; margin-bottom: 3px; font-size: 14px; font-weight: 500; color: var(--text); }
.modal-mini-offer-item span  { font-size: 13px; color: var(--text-soft); font-weight: 300; }

.modal-grid-3-premium { gap: 10px; }

.sample-modal-premium { max-width: 900px !important; }
.sample-modal-grid    { grid-template-columns: 0.88fr 1.12fr !important; }
.sample-modal-copy h2 { max-width: 430px; }

/* ============================================================
   FORMULÁRIOS — COMPONENTES PARTILHADOS
   ============================================================ */

.order-form label { display: block; margin-bottom: 14px; font-weight: 400; font-size: 13px; }

.order-form input,
.admin-status-form select {
  width: 100%;
  margin-top: 6px;
  padding: 11px 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }

.checkbox-line {
  display: flex !important;
  align-items: center;
  gap: 10px;
  font-weight: 400 !important;
  font-size: 13px;
}
.checkbox-line input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px; height: 18px; min-width: 18px;
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  position: relative;
  margin: 0;
  transition: background 0.15s, border-color 0.15s;
}
.checkbox-line input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}
.checkbox-line input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px; top: 2px;
  width: 5px; height: 9px;
  border: 1.5px solid #fff;
  border-top: none; border-left: none;
  transform: rotate(45deg);
}
.checkbox-line input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.result-box { margin-top: 18px; padding: 18px; border-radius: var(--r-lg); line-height: 1.6; font-size: 14px; }
.result-box.success { background: rgba(230, 248, 238, 0.88); border: 1px solid rgba(148, 208, 172, 0.70); }
.result-box.error   { background: rgba(255, 242, 242, 0.88); border: 1px solid rgba(224, 175, 175, 0.70); }
.result-box a { color: var(--gold-dark); font-weight: 500; text-decoration: none; }
.result-box a:hover { text-decoration: underline; }

.hidden { display: none !important; }

/* ============================================================
   CHECKLIST
   ============================================================ */

.check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px;
  display: grid;
  gap: 10px;
}
.check-list.compact { margin: 14px 0; }
.check-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-soft);
}
.check-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 300;
}

/* ============================================================
   PÁGINAS INTERNAS (admin, compra, área cliente)
   ============================================================ */

.page-form { padding: 48px 0 72px; }

.form-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
}
.form-wrapper h1 { font-size: clamp(2.3rem, 4vw, 3.4rem); margin-bottom: 8px; }
.subtitle { margin-top: 0; margin-bottom: 28px; color: var(--text-soft); font-weight: 300; }

.order-form h2, .detail-section h2 {
  margin-top: 28px; margin-bottom: 12px;
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
}

.order-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; line-height: 1.5; }
.dashboard-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.actions-top { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.order-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.orders-box, .detail-box { display: grid; gap: 16px; }
.dashboard-box { margin-bottom: 24px; }

.order-card, .order-detail-card, .dashboard-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  padding: 22px;
}

.order-card-header { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-bottom: 14px; }

.status-badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  background: var(--gold-tint);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 500;
}

.detail-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; margin-bottom: 20px; }
.dashboard-card { padding: 18px; line-height: 1.5; }
.success-inline { color: #1d6b35; margin-top: 14px; font-weight: 600; }
.error-inline   { color: #a22d2d; margin-top: 14px; font-weight: 600; }

/* Compra page */
.purchase-page { padding-bottom: 24px; }
.purchase-hero { padding: 58px 0 28px; }
.purchase-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: start; }
.purchase-copy, .purchase-side-card, .purchase-help-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
}
.purchase-copy { padding: 34px; }
.purchase-copy h1 { margin-bottom: 16px; }
.purchase-text { margin: 0 0 22px; color: var(--text-soft); max-width: 720px; font-weight: 300; }
.purchase-trust-list { display: grid; gap: 12px; }
.purchase-trust-item {
  padding: 14px 16px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--border-lt);
}
.purchase-trust-item strong { display: block; margin-bottom: 3px; font-size: 14px; }
.purchase-trust-item span  { color: var(--text-soft); font-size: 14px; font-weight: 300; }
.purchase-side-card { padding: 28px; position: sticky; top: 96px; }
.purchase-card-label {
  display: inline-block;
  margin: 0 0 12px;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: var(--gold-tint);
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.purchase-side-card h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); margin-bottom: 12px; }
.purchase-side-card p  { color: var(--text-soft); font-weight: 300; }
.purchase-form-section { padding: 18px 0 72px; }
.purchase-layout { display: grid; grid-template-columns: 1.05fr 0.55fr; gap: 28px; align-items: start; }
.purchase-form-header { margin-bottom: 24px; }
.purchase-form-block { padding: 22px 0 8px; border-top: 1px solid var(--border-lt); }
.purchase-form-block:first-of-type { border-top: none; padding-top: 0; }
.section-mini-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.section-mini-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px; height: 34px;
  border-radius: var(--r-pill);
  background: var(--gold-tint);
  color: var(--gold-dark);
  font-weight: 500; font-size: 14px;
  border: 1px solid rgba(201, 168, 118, 0.22);
}
.section-mini-head h3 { margin: 0 0 4px; font-size: 1.02rem; }
.section-mini-head p  { margin: 0; color: var(--text-soft); font-size: 14px; font-weight: 300; }
.helper-box {
  margin-top: 10px; padding: 14px 16px;
  border-radius: var(--r-lg);
  background: rgba(250, 243, 232, 0.68);
  border: 1px solid var(--border-lt);
  color: var(--text-soft); font-size: 14px; font-weight: 300;
}
.purchase-submit-box { margin-top: 20px; padding-top: 14px; }
.purchase-submit-note { margin: 12px 0 0; color: var(--text-soft); font-size: 14px; font-weight: 300; }
.purchase-help-panel { display: grid; gap: 18px; }
.purchase-help-card { padding: 24px; }
.purchase-help-card h3 { margin-bottom: 10px; }
.purchase-help-card p  { color: var(--text-soft); font-weight: 300; }

/* Área do cliente */
.client-area-page { padding-bottom: 40px; }
.client-hero { padding: 58px 0 26px; }
.client-hero__grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 28px; align-items: center; }
.client-hero__copy h1 { font-size: clamp(2.6rem, 4.2vw, 4.2rem); line-height: 1.04; letter-spacing: -0.03em; margin-bottom: 16px; }
.client-hero__text { max-width: 680px; color: var(--text-soft); font-size: 1rem; line-height: 1.78; margin: 0 0 22px; font-weight: 300; }
.client-hero__badges { display: flex; flex-wrap: wrap; gap: 10px; }
.client-hero__badges span { padding: 9px 14px; border-radius: var(--r-pill); background: rgba(255,255,255,0.68); border: 1px solid var(--border-lt); font-size: 13px; font-weight: 400; color: var(--text-soft); }
.client-side-card { background: rgba(255,255,255,0.84); border: 1px solid var(--border-lt); border-radius: var(--r-xl); box-shadow: var(--shadow); padding: 28px; }
.client-side-card h2 { font-size: clamp(2rem,3vw,2.6rem); line-height: 1.06; margin-bottom: 12px; }
.client-side-card p  { color: var(--text-soft); font-weight: 300; }
.client-access-section { padding: 10px 0 20px; }
.client-access-box { padding: 28px; border-radius: var(--r-xl); background: rgba(255,255,255,0.88); border: 1px solid var(--border-lt); box-shadow: var(--shadow); }
.client-access-form__grid { display: grid; grid-template-columns: 1fr 1fr auto; gap: 14px; align-items: end; }
.client-access-form label { display: block; font-size: 13px; font-weight: 400; color: var(--text); }
.client-access-form input { width: 100%; margin-top: 6px; min-height: 46px; padding: 12px 14px; border-radius: var(--r-md); border: 1px solid var(--border); background: rgba(255,255,255,0.96); font-size: 14px; font-weight: 300; color: var(--text); outline: none; }
.client-access-form input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,118,0.12); }
.client-access-btn { min-width: 200px; }
.client-dashboard-section { padding: 10px 0 30px; }
.client-dashboard__top { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 16px; margin-bottom: 18px; }
.client-status-card { padding: 22px; border-radius: var(--r-xl); background: rgba(255,255,255,0.84); border: 1px solid var(--border-lt); box-shadow: var(--shadow); }
.client-status-card--main { background: linear-gradient(160deg, rgba(232,223,240,0.22), rgba(255,255,255,0.95)); }
.client-status-card__label { margin: 0 0 10px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold-dark); font-weight: 500; }
.client-status-card strong { display: block; font-size: 1.4rem; line-height: 1.2; margin-bottom: 6px; color: var(--text); }
.client-status-card span  { display: block; font-size: 13px; line-height: 1.6; color: var(--text-soft); font-weight: 300; }
.client-dashboard__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.client-panel-card { padding: 24px; border-radius: var(--r-xl); background: rgba(255,255,255,0.84); border: 1px solid var(--border-lt); box-shadow: var(--shadow); }
.client-panel-card--highlight { background: linear-gradient(160deg, rgba(201,189,217,0.14), rgba(255,255,255,0.96)); }
.client-panel-card__head { margin-bottom: 16px; }
.client-panel-card__head h3 { margin-bottom: 0; }
.client-action-box, .client-action-placeholder { display: grid; gap: 12px; }
.client-action-box p, .client-action-placeholder p { margin: 0; color: var(--text-soft); line-height: 1.7; font-weight: 300; }
.client-timeline { display: grid; gap: 12px; }
.client-timeline__item { padding: 14px; border-radius: var(--r-lg); background: rgba(255,255,255,0.62); border: 1px solid var(--border-lt); }
.client-timeline__item strong { display: block; margin-bottom: 4px; font-size: 14px; color: var(--text); }
.client-timeline__item span  { display: block; font-size: 13px; line-height: 1.6; color: var(--text-soft); font-weight: 300; }

/* Páginas legais */
.legal-page { padding-bottom: 32px; }
.legal-hero { padding-bottom: 20px; }
.legal-shell { max-width: 900px; }
.legal-updated { margin: 0 0 18px; color: var(--text-soft); font-size: 14px; }
.legal-intro { max-width: 760px; color: var(--text-soft); font-size: 1rem; line-height: 1.8; font-weight: 300; }
.legal-content-section { padding-top: 12px; }
.legal-content { background: rgba(255,255,255,0.82); border: 1px solid var(--border-lt); border-radius: var(--r-xl); box-shadow: var(--shadow); padding: 34px; }
.legal-content h2 { font-size: clamp(1.7rem,2.8vw,2.3rem); margin-top: 28px; margin-bottom: 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--text-soft); line-height: 1.85; font-size: 15px; font-weight: 300; }
.legal-content ul { margin: 0 0 10px; padding-left: 22px; }

/* Outros cards usados em páginas secundárias */
.feature-card { background: rgba(255,255,255,0.62); border: 1px solid var(--border-lt); border-radius: var(--r-xl); box-shadow: var(--shadow-sm); padding: 24px; }
.feature-card h3 { font-size: 1rem; font-weight: 500; margin-bottom: 8px; }
.feature-card p  { color: var(--text-soft); font-size: 14px; font-weight: 300; margin: 0; }
.info-card { background: rgba(255,255,255,0.62); border: 1px solid var(--border-lt); border-radius: var(--r-xl); box-shadow: var(--shadow-sm); padding: 24px; }
.info-card h3 { font-size: 1rem; font-weight: 500; margin-bottom: 8px; }
.info-card p  { color: var(--text-soft); font-size: 14px; font-weight: 300; margin: 0; }
.step-card { background: rgba(255,255,255,0.62); border: 1px solid var(--border-lt); border-radius: var(--r-xl); box-shadow: var(--shadow-sm); padding: 24px; }
.testimonial-card { background: rgba(255,255,255,0.62); border: 1px solid var(--border-lt); border-radius: var(--r-xl); box-shadow: var(--shadow-sm); padding: 26px; }
.testimonial-card p { color: var(--text-soft); font-style: italic; font-weight: 300; margin: 0 0 14px; }
.testimonial-card strong { font-size: 13px; font-weight: 500; }
.comparison-card { background: rgba(255,255,255,0.65); border: 1px solid var(--border-lt); border-radius: var(--r-xl); box-shadow: var(--shadow-sm); padding: 28px; }
.comparison-card-highlight { border-color: rgba(201,168,118,0.48); background: linear-gradient(160deg, rgba(201,168,118,0.06), rgba(255,255,255,0.92)); }
.comparison-label { display: inline-block; margin: 0 0 14px; padding: 5px 12px; border-radius: var(--r-pill); background: var(--gold-tint); color: var(--gold-dark); font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; }
.comparison-text { margin-top: 14px; margin-bottom: 22px; color: var(--text-soft); font-weight: 300; }
.step-number { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: var(--r-pill); background: var(--gold-tint); color: var(--gold-dark); font-size: 14px; font-weight: 500; margin-bottom: 14px; border: 1px solid rgba(201,168,118,0.22); }
.cards-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.cards-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.benefits-grid   { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.benefits-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.comparison-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: stretch; }
.trust-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.trust-grid-4 article { background: rgba(255,255,255,0.52); border: 1px solid var(--border-lt); border-radius: var(--r-xl); box-shadow: var(--shadow-sm); padding: 18px 20px; }
.trust-grid-4 strong { display: block; margin-bottom: 5px; font-size: 14px; }
.trust-grid-4 span   { font-size: 13px; color: var(--text-soft); font-weight: 300; }
.faq-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 36px; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { background: rgba(255,255,255,0.68); border: 1px solid var(--border-lt); border-radius: var(--r-lg); padding: 18px 20px; box-shadow: var(--shadow-sm); }
.faq-list summary { cursor: pointer; font-weight: 500; font-size: 14px; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p { margin: 10px 0 0; color: var(--text-soft); font-weight: 300; font-size: 14px; }

/* ============================================================
   ANIMAÇÕES
   ============================================================ */

/* ============================================================
   CITY AUTOCOMPLETE
   ============================================================ */

.city-field-wrap {
  position: relative;
}

.city-dropdown {
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  right: 0;
  z-index: 200;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  max-height: 196px;
  overflow-y: auto;
  display: none;
  scrollbar-width: thin;
}

.city-dropdown.open { display: block; }

.city-dropdown__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  transition: background 0.12s;
  border-bottom: 1px solid var(--border-lt);
}

.city-dropdown__item:last-child { border-bottom: none; }

.city-dropdown__item:hover,
.city-dropdown__item.active {
  background: var(--gold-tint);
  color: var(--gold-dark);
}

.city-dropdown__uf {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  background: rgba(201, 168, 118, 0.10);
  padding: 2px 7px;
  border-radius: var(--r-pill);
}

/* Estado — readonly preenchido automaticamente */
.state-input-readonly {
  background: rgba(250, 243, 232, 0.60) !important;
  color: var(--gold-dark) !important;
  font-weight: 500 !important;
  border-color: rgba(201, 168, 118, 0.35) !important;
  text-transform: uppercase;
}
.state-input-readonly::placeholder {
  color: var(--text-muted) !important;
  font-weight: 300 !important;
  opacity: 0.55;
  text-transform: none;
  font-size: 12px;
  letter-spacing: 0;
}

/* ============================================================
   CUSTOM DATE / TIME PICKERS
   ============================================================ */

.cpicker { position: relative; }

/* Input row — texto digitável + ícone */
.cpicker__input-row {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.96);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cpicker__input-row:focus-within,
.cpicker__input-row.open {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 118, 0.12);
}
.cpicker__text-input {
  flex: 1;
  min-height: 44px;
  padding: 0 12px;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  border-radius: 0 !important;
  letter-spacing: 0.02em;
}
.cpicker__text-input::placeholder { color: var(--text-muted); }
.cpicker__text-input:focus { outline: none; box-shadow: none !important; }
.cpicker__icon-btn {
  width: 40px !important; min-height: 44px !important;
  padding: 0 !important; margin: 0 !important;
  background: none !important; box-shadow: none !important;
  border: none !important; border-left: 1px solid var(--border-lt) !important;
  border-radius: 0 !important;
  color: var(--text-muted) !important;
  cursor: pointer !important; flex-shrink: 0 !important;
  display: flex !important; align-items: center !important;
  justify-content: center !important;
  transition: background 0.15s, color 0.15s !important;
}
.cpicker__icon-btn:hover,
.cpicker__icon-btn.open {
  background: rgba(201, 168, 118, 0.14) !important;
  color: var(--gold-dark) !important;
  transform: none !important;
}
.cpicker__icon { width: 15px; height: 15px; opacity: 0.55; flex-shrink: 0; }

/* Panel dropdown */
.cpicker__panel {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 400;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: 0 12px 40px rgba(50, 36, 24, 0.12);
  display: none;
  overflow: hidden;
}
.cpicker__panel.open {
  display: block;
  animation: fadeRise 0.15s ease both;
}

/* ── Calendário ── */
.dp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 8px;
  border-bottom: 1px solid var(--border-lt);
}
.dp-nav__btn {
  width: 32px !important; height: 32px !important;
  min-height: 32px !important; padding: 0 !important;
  background: none !important; border: none !important;
  box-shadow: none !important;
  border-radius: var(--r-pill) !important;
  font-size: 20px !important; font-weight: 300 !important;
  color: var(--text-soft) !important;
  display: flex !important; align-items: center !important;
  justify-content: center !important; cursor: pointer !important;
  line-height: 1 !important; flex-shrink: 0 !important;
}
.dp-nav__btn:hover {
  background: var(--gold-tint) !important;
  color: var(--gold-dark) !important;
  transform: none !important; box-shadow: none !important;
}
.dp-nav__label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 400;
  color: var(--text); letter-spacing: 0.01em;
}
.dp-weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  padding: 6px 10px 2px;
}
.dp-weekdays span {
  text-align: center; font-size: 10px; font-weight: 500;
  color: var(--text-muted); letter-spacing: 0.06em;
  text-transform: uppercase; padding: 2px 0;
}
.dp-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  padding: 2px 10px 12px; gap: 1px;
}
.dp-day {
  display: flex !important; align-items: center !important;
  justify-content: center !important;
  height: 34px !important; min-height: 34px !important;
  width: 100% !important; padding: 0 !important;
  font-size: 12.5px !important; font-weight: 300 !important;
  font-family: 'Inter', sans-serif !important;
  color: var(--text) !important;
  background: none !important; border: none !important;
  box-shadow: none !important; border-radius: var(--r-pill) !important;
  cursor: pointer !important; letter-spacing: 0 !important;
  transition: background 0.12s, color 0.12s !important;
}
.dp-day:hover:not(.dp-other):not(.dp-dis) {
  background: rgba(201, 168, 118, 0.30) !important;
  color: var(--gold-dark) !important; transform: none !important;
}
.dp-today { border: 1px solid rgba(201, 168, 118, 0.50) !important; color: var(--gold-dark) !important; }
.dp-sel   { background: var(--gold) !important; color: #fff !important; font-weight: 500 !important; }
.dp-sel:hover { background: var(--gold-dark) !important; color: #fff !important; }
.dp-other { color: var(--text-muted) !important; opacity: 0.28 !important; pointer-events: none !important; }
.dp-dis   { opacity: 0.20 !important; pointer-events: none !important; }

/* ── Time Picker ── */
.cpicker--time .cpicker__panel {
  width: 200px;
  left: auto; right: 0;
}
.tp-cols {
  display: flex; align-items: stretch;
  border-bottom: 1px solid var(--border-lt);
}
.tp-col {
  flex: 1; max-height: 200px; overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border-lt) transparent;
}
.tp-col::-webkit-scrollbar { width: 3px; }
.tp-col::-webkit-scrollbar-thumb { background: var(--border-lt); border-radius: 3px; }
.tp-sep {
  width: 22px; display: flex; align-items: center;
  justify-content: center; font-size: 18px; font-weight: 300;
  color: var(--text-muted); flex-shrink: 0;
}
.tp-opt {
  display: flex !important; align-items: center !important;
  justify-content: center !important;
  height: 40px !important; min-height: 40px !important;
  width: 100% !important; padding: 0 !important;
  font-size: 15px !important;
  font-family: var(--font-sans) !important;
  font-weight: 400 !important; color: var(--text-soft) !important;
  cursor: pointer !important; background: none !important;
  border: none !important; box-shadow: none !important;
  border-radius: 0 !important; letter-spacing: 0 !important;
  transition: background 0.12s, color 0.12s !important;
}
.tp-opt:hover {
  background: rgba(201, 168, 118, 0.30) !important;
  color: var(--gold-dark) !important; transform: none !important;
}
.tp-sel { background: rgba(201, 168, 118, 0.28) !important; color: var(--gold-dark) !important; font-weight: 500 !important; }
.tp-footer { padding: 8px 12px 10px; }
.tp-footer button {
  width: 100% !important; min-height: 36px !important;
  border-radius: var(--r-pill) !important;
  font-size: 12px !important; font-weight: 500 !important;
  letter-spacing: 0.05em !important; padding: 0 !important;
}

/* ============================================================
   MINHA ÁREA — CLIENT AREA (magic link)
   ============================================================ */

.minha-area-page { padding: 0 0 64px; }

.minha-area-masthead {
  text-align: center;
  padding: 52px 16px 36px;
  border-bottom: 1px solid var(--border-lt);
  margin-bottom: 44px;
}
.minha-area-masthead .eyebrow { margin-bottom: 10px; }
.minha-area-masthead h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400; color: var(--text);
  margin: 0 0 8px; letter-spacing: -0.01em;
}
.minha-area-masthead .user-email {
  font-size: 13px; font-weight: 300;
  color: var(--text-muted); letter-spacing: 0.01em;
}

.order-cards-list {
  display: flex; flex-direction: column; gap: 20px;
  max-width: 660px; margin: 0 auto;
}

.order-card-ma {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.order-card-ma:hover { box-shadow: var(--shadow-md); }

.order-card-ma__head {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 18px 24px 14px;
  border-bottom: 1px solid var(--border-lt);
  gap: 12px;
}
.order-card-ma__baby {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 400; color: var(--text);
}
.order-card-ma__body { padding: 18px 24px 20px; }

.status-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 11px; border-radius: var(--r-pill);
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.04em;
  white-space: nowrap;
}
.status-badge--pending {
  background: rgba(168,184,204,0.18); color: #607080;
  border: 1px solid rgba(168,184,204,0.45);
}
.status-badge--working {
  background: rgba(201,168,118,0.15); color: var(--gold-dark);
  border: 1px solid rgba(201,168,118,0.40);
}
.status-badge--ready {
  background: rgba(90,160,110,0.12); color: #3a7a52;
  border: 1px solid rgba(90,160,110,0.35);
}
.status-badge--error {
  background: rgba(200,80,80,0.10); color: #b04040;
  border: 1px solid rgba(200,80,80,0.30);
}

.order-meta-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px 24px; margin-bottom: 0;
}
.order-meta-grid__item { font-size: 13px; color: var(--text-soft); }
.order-meta-grid__item strong {
  display: block; font-size: 10px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 2px;
}

.order-action-box {
  margin-top: 16px; padding: 14px 18px;
  border-radius: var(--r-md);
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
}
.order-action-box--preparing {
  background: rgba(248, 244, 238, 0.80);
  border: 1px solid rgba(201,168,118,0.18);
}
.order-action-box--ready {
  background: linear-gradient(135deg, rgba(201,168,118,0.10), rgba(255,255,255,0.7));
  border: 1px solid rgba(201,168,118,0.35);
}
.order-action-box__text p { margin: 0; font-size: 13px; color: var(--text-soft); }
.order-action-box__text strong { display: block; font-size: 14px; color: var(--text); margin-bottom: 2px; }
.order-action-box .btn-download {
  flex-shrink: 0;
  min-width: 120px !important; min-height: 38px !important;
  font-size: 13px !important; padding: 0 16px !important;
  border-radius: var(--r-pill) !important;
}

.minha-area-state {
  text-align: center; padding: 64px 16px;
  max-width: 440px; margin: 0 auto;
}
.minha-area-state svg { margin-bottom: 20px; opacity: 0.50; }
.minha-area-state h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 400; color: var(--text); margin: 0 0 10px;
}
.minha-area-state p {
  font-size: 14px; color: var(--text-soft);
  margin: 0 0 24px; font-weight: 300; line-height: 1.6;
}

/* ============================================================
   ANIMAÇÕES
   ============================================================ */

@keyframes fadeRise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes successPop {
  0%   { opacity: 0; transform: scale(0.88) translateY(12px); }
  60%  { transform: scale(1.02) translateY(0); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* ============================================================
   ORDER SUCCESS SCREEN
   ============================================================ */

.order-success-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 52px 40px 56px;
  min-height: 460px;
  animation: successPop 0.5s cubic-bezier(0.34, 1.3, 0.64, 1) both;
}

.success-ornament {
  width: 96px;
  height: 96px;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.success-ornament svg { width: 100%; height: 100%; }

.success-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 10px;
}

.success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--text);
  margin: 0 0 16px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.success-message {
  font-size: 15px;
  font-weight: 300;
  color: var(--text);
  max-width: 380px;
  line-height: 1.75;
  margin: 0 0 10px;
}
.success-message strong { font-weight: 500; color: var(--gold-dark); }

.success-sub {
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 300;
  line-height: 1.65;
  max-width: 340px;
  margin: 0 0 22px;
}

.success-code {
  font-size: 10.5px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin: 0 0 28px;
  font-family: 'Inter', sans-serif;
}

.success-close-btn {
  min-width: 210px !important;
}

/* ============================================================
   LINHA DE PREÇO (acima do botão de submit)
   ============================================================ */

.order-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  margin-bottom: 14px;
  background: rgba(201,168,118,0.07);
  border: 1px solid rgba(201,168,118,0.22);
  border-radius: 10px;
  width: 100%;
}
.order-price-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.01em;
}
.order-price-duo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.order-price-original {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: line-through;
  letter-spacing: 0.01em;
  opacity: 0.75;
}
.order-price-value {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.02em;
  line-height: 1;
}

/* ============================================================
   TELA PIX
   ============================================================ */

@keyframes spin { to { transform: rotate(360deg); } }

.order-pix-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 32px 44px;
  text-align: center;
  animation: successPop 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
}

.pix-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 300;
  color: var(--text);
  margin: 0 0 4px;
  line-height: 1.15;
}

.pix-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0 0 22px;
}
.pix-subtitle strong { color: var(--gold-dark); font-weight: 500; }

.pix-amount-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 22px;
  padding: 12px 32px;
  background: rgba(201,168,118,0.07);
  border: 1px solid rgba(201,168,118,0.22);
  border-radius: 12px;
}
.pix-amount-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.pix-amount-value {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: 0.01em;
  line-height: 1;
}

.pix-qr-box {
  margin-bottom: 20px;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(201,168,118,0.28);
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.pix-qr-img {
  display: block;
  width: 200px;
  height: 200px;
  border-radius: 6px;
}

.pix-copy-section {
  width: 100%;
  max-width: 380px;
  margin-bottom: 18px;
  text-align: left;
}
.pix-copy-label {
  font-size: 11.5px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}
.pix-copy-row {
  display: flex;
  gap: 8px;
}
.pix-copy-input {
  flex: 1;
  font-size: 11px;
  font-family: 'Inter', monospace;
  padding: 10px 12px;
  border: 1px solid rgba(201,168,118,0.32);
  border-radius: 8px;
  background: rgba(250,243,232,0.5);
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pix-copy-btn {
  padding: 10px 18px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
  flex-shrink: 0;
}
.pix-copy-btn:hover { background: var(--gold-dark); }

.pix-copied-msg {
  font-size: 12px;
  color: #5a9e6f;
  margin: 6px 0 0;
  font-weight: 500;
}

.pix-waiting {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  background: rgba(201,168,118,0.06);
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
}

.pix-dev-mode {
  width: 100%;
  max-width: 380px;
  margin-bottom: 16px;
  padding: 16px;
  background: rgba(255,248,204,0.6);
  border: 1px dashed rgba(180,145,0,0.35);
  border-radius: 10px;
  text-align: center;
}
.pix-dev-label {
  font-size: 12px;
  color: #7a6400;
  margin: 0 0 12px;
  font-weight: 500;
}

.pix-expiry {
  font-size: 11px;
  color: var(--text-muted);
  opacity: 0.6;
  margin: 0;
}

/* ── Timer de contagem regressiva PIX ──────────────────────── */
.pix-timer {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.pix-timer__label { font-weight: 300; opacity: 0.75; }
.pix-timer__sep   { opacity: 0.35; }
.pix-timer__ref   { opacity: 0.40; font-size: 11px; }
.pix-timer__value {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  color: var(--text-soft);
  transition: color 0.4s;
  min-width: 38px;
  display: inline-block;
}
.pix-timer--warning .pix-timer__value { color: #9e6800; }
.pix-timer--danger  .pix-timer__value { color: #b03030; }
@keyframes pix-pulse { 0%,100%{opacity:1} 50%{opacity:0.55} }
.pix-timer--danger { animation: pix-pulse 1s ease-in-out infinite; }

.pix-expired-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  text-align: center;
}
.pix-expired-label {
  font-size: 13px;
  font-weight: 500;
  color: #b03030;
  margin: 0;
}

/* ============================================================
   TELA DE RESGATE PIX
   ============================================================ */

.order-rescue-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 44px 32px 48px;
  text-align: center;
  animation: successPop 0.35s cubic-bezier(0.34,1.56,0.64,1) both;
}

.rescue-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.rescue-icon svg { width: 100%; height: 100%; }

.rescue-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--text);
  margin: 0 0 14px;
  line-height: 1.15;
}

.rescue-message {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 360px;
  line-height: 1.75;
  margin: 0 0 24px;
}
.rescue-message strong { color: var(--gold-dark); font-weight: 500; }

.rescue-link-box {
  width: 100%;
  max-width: 380px;
  padding: 14px 20px;
  background: rgba(250,243,232,0.7);
  border: 1px solid rgba(201,168,118,0.30);
  border-radius: 10px;
  margin-bottom: 28px;
}
.rescue-link-label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 7px;
}
.rescue-area-link {
  display: inline-block;
  font-size: 12.5px;
  color: var(--gold-dark);
  word-break: break-all;
  text-decoration: none;
  border-bottom: 1px solid rgba(166,133,78,0.35);
  padding-bottom: 1px;
  margin-bottom: 6px;
}
.rescue-link-hint {
  font-size: 11px;
  color: var(--text-muted);
  margin: 6px 0 0;
  font-weight: 300;
}

.rescue-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Action box para pedido com pagamento pendente ─────────── */
.order-action-box--pending {
  background: rgba(201,168,118,0.06);
  border: 1px solid rgba(201,168,118,0.22);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.order-action-box--pending p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  margin: 0;
  flex: 1;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */

@media (max-width: 1100px) {
  .what-is-grid,
  .steps-track,
  .testimonials-grid,
  .trust-grid,
  .trust-grid-4,
  .cards-grid-3,
  .benefits-grid,
  .benefits-grid-3,
  .testimonial-grid,
  .comparison-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid-2 { grid-template-columns: 1fr 1fr; }

  .client-hero__grid,
  .client-dashboard__top,
  .client-dashboard__grid,
  .client-access-form__grid,
  .purchase-hero-grid,
  .purchase-layout {
    grid-template-columns: 1fr;
  }

  .purchase-side-card { position: static; }
  .steps-track::before { display: none; }
  .cta-box, .footer-grid, .detail-header { flex-direction: column; }
  .dashboard-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 840px) {
  .site-nav { display: none; }
  .hero-astrobebe { padding: 72px 0 54px; }
  .dashboard-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-2, .grid-3, .order-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .modal-overlay { padding: 10px; align-items: flex-end; }
  .order-modal-premium {
    width: 100% !important;
    max-height: calc(100vh - 10px) !important;
    border-radius: var(--r-xl) var(--r-xl) 0 0 !important;
  }
  .order-modal-grid-premium { grid-template-columns: 1fr !important; }
  .order-modal-copy-premium { padding: 28px 18px 18px; border-right: none; border-bottom: 1px solid var(--border-lt); }
  .order-modal-form-wrap-premium { padding: 18px; border-radius: 0; }
  .order-modal-premium .grid-2,
  .order-modal-premium .grid-3 { grid-template-columns: 1fr !important; }
  .sample-modal-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 560px) {
  .container { width: min(var(--container), calc(100% - 24px)); }
  .btn, button:not(.gender-card) { width: 100%; }
  .hero-astrobebe__actions { flex-direction: column; align-items: center; }
  .hero-astrobebe h1 { font-size: clamp(2.5rem, 10vw, 3.8rem); }
  .order-card-main { padding: 24px; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .brand-wordmark, .brand-name { font-size: 18px; letter-spacing: 0.14em; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .legal-content { padding: 22px; }
  .cta-actions.stacked { min-width: 0; width: 100%; }
  .client-hero__badges span, .hero-astrobebe__trust-item { width: 100%; text-align: center; }
  .client-side-card, .client-access-box, .client-status-card, .client-panel-card { padding: 20px; }
  .client-hero__copy h1 { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .client-access-btn { width: 100%; min-width: 0; }

  /* PIX screen — tela de pagamento em mobile */
  .pix-copy-row { flex-direction: column; }
  .pix-copy-section { max-width: 100%; }
  .pix-dev-mode { max-width: 100%; }
  .pix-copy-input { white-space: normal; overflow: auto; }

  /* Minha Área — cards de pedido */
  .minha-area-masthead { padding: 28px 16px 20px; }
  .order-card-ma__head { padding: 12px 16px 10px; flex-wrap: wrap; }
  .order-card-ma__body { padding: 12px 16px 14px; }
  .order-meta-grid { grid-template-columns: 1fr; gap: 6px; }
  .order-action-box { flex-direction: column; align-items: stretch; }
  .order-action-box .btn-download { min-width: 0 !important; }

  /* Tela de resgate — link pode quebrar linha */
  .rescue-link-box { max-width: 100%; }
  .rescue-area-link { word-break: break-all; font-size: 12px; }

  /* Gender cards — mobile */
  .gender-selector { gap: 10px; }
  .gender-card { padding: 14px 10px; }
}

/* ============================================================
   GENDER CARD SELECTOR
   ============================================================ */

.gender-selector {
  display: flex;
  gap: 14px;
}

.gender-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 12px;
  background: rgba(255, 255, 255, 0.70);
  border: 1.5px solid var(--border-lt);
  border-radius: var(--r-xl);
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
  font-family: 'Inter', sans-serif;
}

.gender-card:hover {
  border-color: rgba(201, 168, 118, 0.55);
  background: rgba(201, 168, 118, 0.06);
}

.gender-card--selected {
  border-color: var(--gold) !important;
  background: rgba(201, 168, 118, 0.12) !important;
  box-shadow: 0 0 0 3px rgba(201, 168, 118, 0.18);
}

.gender-card__icon {
  font-size: 1.6rem;
  line-height: 1;
  color: var(--gold-dark);
  opacity: 0.80;
}

.gender-card__label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-soft);
  text-transform: uppercase;
}

.gender-card--selected .gender-card__label {
  color: var(--gold-dark);
}

/* Variante compacta para o formulário premium */
.gender-selector--sm { gap: 10px; }

.gender-card--sm {
  padding: 10px 14px;
  gap: 4px;
  border-radius: var(--r-lg);
}

.gender-card--sm .gender-card__icon { font-size: 1.15rem; }

.gender-card--sm .gender-card__label {
  font-size: 11.5px;
  letter-spacing: 0.05em;
}
