/* ==========================================================================
   Thaís Araújo — Site Institucional + Catálogo
   Design System: Burgundy + Gold + Playfair Display + Outfit
   ========================================================================== */

:root {
  --bg: #ffffff;
  --bg-alt: #f9fafb;
  --bg-soft: #fbf8f9;
  --surface: #ffffff;
  --text-primary: #1f2937;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;
  --primary: #773758;
  --primary-hover: #5a2a44;
  --primary-deep: #5a2a44;
  --primary-soft: #f5e8ee;
  --accent: #f59e0b;
  --gold: #f59e0b;
  --gold-deep: #b45309;
  --secondary: #111827;
  --border: #e5e7eb;
  --border-strong: #d1d5db;

  --t-display: clamp(2.4rem, 5vw, 4rem);
  --t-h1: clamp(2rem, 4vw, 3.2rem);
  --t-h2: clamp(1.7rem, 3vw, 2.4rem);
  --t-h3: clamp(1.3rem, 2.2vw, 1.6rem);
  --t-body-lg: clamp(1.05rem, 1.6vw, 1.2rem);
  --t-body: 1rem;
  --t-small: 0.875rem;
  --t-caption: 0.75rem;

  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px;

  --shadow-sm: 0 1px 3px rgba(31,41,55,0.06), 0 1px 2px rgba(31,41,55,0.04);
  --shadow-md: 0 12px 32px -8px rgba(31,41,55,0.18);
  --shadow-lg: 0 32px 64px -24px rgba(31,41,55,0.28);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 160ms;
  --dur-base: 240ms;

  --container-max: 1280px;
  --container-narrow: 820px;
  --gutter: clamp(20px, 4vw, 48px);
  --topbar-h: 64px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text-primary);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: var(--t-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text-primary);
}

p { margin: 0 0 1em; color: var(--text-secondary); }
em { font-style: italic; color: var(--primary); }
strong { font-weight: 600; color: var(--text-primary); }

ul { padding: 0; margin: 0; list-style: none; }

/* Layout */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
  margin-bottom: var(--s-4);
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--primary);
  display: inline-block;
}
.eyebrow--center {
  display: block;
  text-align: center;
}
.eyebrow--center::before { display: none; }

/* Section header */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--s-7);
}
.section-title {
  font-size: var(--t-h2);
  margin-bottom: var(--s-4);
}
.section-sub {
  font-size: var(--t-body-lg);
  color: var(--text-secondary);
  margin: 0;
}

/* CTA */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all var(--dur-base) var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}
.cta--primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(119, 55, 88, 0.32);
}
.cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(119, 55, 88, 0.45);
}
.cta--ghost {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.cta--ghost:hover {
  background: var(--primary);
  color: #fff;
}
.cta--block { width: 100%; }
.cta--xl { padding: 20px 40px; font-size: 1rem; }

/* ==========================================================================
   TOPBAR
   ========================================================================== */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--topbar-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.topbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
}
.topbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-primary);
}
.topbar__logo-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #fff;
  border-radius: 50%;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-style: italic;
}
.topbar__nav {
  display: flex;
  gap: var(--s-6);
}
.topbar__nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--dur-fast);
}
.topbar__nav a:hover { color: var(--primary); }
.topbar__cta {
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #fff;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all var(--dur-base) var(--ease-out);
  box-shadow: 0 2px 8px rgba(119, 55, 88, 0.25);
}
.topbar__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(119, 55, 88, 0.4);
}

@media (max-width: 900px) {
  .topbar__nav { display: none; }
}
@media (max-width: 540px) {
  .topbar__logo-text { display: none; }
  .topbar__cta { padding: 8px 14px; font-size: 0.78rem; }
}

main { padding-top: var(--topbar-h); }

/* ==========================================================================
   HERO
   ========================================================================== */
.s-hero {
  padding: clamp(48px, 8vw, 96px) 0 clamp(64px, 10vw, 128px);
  background:
    radial-gradient(circle at 20% 0%, var(--primary-soft) 0%, transparent 50%),
    radial-gradient(circle at 90% 100%, #fef3c7 0%, transparent 60%),
    var(--bg);
  position: relative;
}
.s-hero--compact {
  padding: clamp(56px, 9vw, 112px) 0 clamp(48px, 7vw, 80px);
}
.s-hero__text-only {
  text-align: center;
}
.s-hero__text-only .s-hero__title {
  margin-left: auto;
  margin-right: auto;
}
.s-hero__text-only .s-hero__lead {
  margin-left: auto;
  margin-right: auto;
}
.s-hero__cta-row--center {
  justify-content: center;
}
.s-hero__trust--center {
  justify-content: center;
  text-align: center;
}
.s-hero__trust--center li {
  align-items: center;
  text-align: center;
}
.s-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.s-hero__title {
  font-size: var(--t-display);
  margin-bottom: var(--s-5);
}
.s-hero__title em {
  font-style: italic;
  color: var(--primary);
}
.s-hero__lead {
  font-size: var(--t-body-lg);
  color: var(--text-secondary);
  margin-bottom: var(--s-6);
  max-width: 540px;
}
.s-hero__cta-row {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-bottom: var(--s-7);
}
.s-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid var(--border);
}
.s-hero__trust li {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.s-hero__trust strong {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}

.s-hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 480px;
  margin-left: auto;
}
.s-hero__photo {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--primary-soft) 0%, #fef3c7 100%);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.s-hero__photo-placeholder {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--primary);
  opacity: 0.6;
}
.s-hero__badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--surface);
  padding: 12px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  font-weight: 600;
}
.s-hero__badge-icon {
  width: 22px;
  height: 22px;
  background: #1da1f2;
  color: #fff;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.7rem;
}

@media (max-width: 900px) {
  .s-hero__grid { grid-template-columns: 1fr; }
  .s-hero__media { max-width: 360px; margin: 0 auto; }
  .s-hero__trust { gap: var(--s-5); }
}

/* ==========================================================================
   MANIFESTO
   ========================================================================== */
.s-manifesto {
  padding: clamp(64px, 10vw, 128px) 0;
  background: var(--bg-alt);
  text-align: center;
}
.s-manifesto__text {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.4;
  color: var(--text-primary);
  font-weight: 400;
}
.s-manifesto__text em {
  color: var(--primary);
  font-style: italic;
}
.s-manifesto__text strong {
  font-weight: 600;
  display: block;
  margin-top: var(--s-5);
}

/* ==========================================================================
   PILARES
   ========================================================================== */
.s-pilares {
  padding: clamp(72px, 10vw, 128px) 0;
}
.pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.pilar-card {
  padding: var(--s-7) var(--s-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all var(--dur-base) var(--ease-out);
}
.pilar-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.pilar-card__num {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--primary);
  display: block;
  margin-bottom: var(--s-3);
}
.pilar-card h3 {
  font-size: 1.4rem;
  margin-bottom: var(--s-3);
}
.pilar-card p {
  margin: 0;
  font-size: 0.95rem;
}

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

/* ==========================================================================
   CATÁLOGO
   ========================================================================== */
.s-catalogo {
  padding: clamp(72px, 10vw, 128px) 0;
  background: var(--bg-soft);
}
.s-catalogo--first {
  padding-top: clamp(56px, 8vw, 96px);
  background:
    radial-gradient(circle at 20% 0%, var(--primary-soft) 0%, transparent 50%),
    radial-gradient(circle at 90% 100%, #fef3c7 0%, transparent 60%),
    var(--bg-soft);
}
.section-header--hero {
  margin-bottom: clamp(40px, 6vw, 64px);
}
.section-title--hero {
  font-size: var(--t-display);
  line-height: 1.1;
}
.section-title--hero em {
  font-style: italic;
  color: var(--primary);
}

/* ==========================================================================
   BIO
   ========================================================================== */
.s-bio {
  padding: clamp(72px, 10vw, 128px) 0;
  background: var(--bg);
}
.s-bio__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: 1100px;
}
.s-bio__media {
  position: relative;
  aspect-ratio: 3 / 4;
  max-width: 420px;
}
.s-bio__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}
.s-bio__headline {
  font-size: var(--t-display);
  line-height: 1.1;
  margin-bottom: var(--s-5);
}
.s-bio__headline em {
  font-style: italic;
  color: var(--primary);
}
.s-bio__text {
  font-size: var(--t-body-lg);
  color: var(--text-secondary);
  margin-bottom: var(--s-4);
}
.s-bio__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-6);
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid var(--border);
}
.s-bio__trust li {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.s-bio__trust strong {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}
@media (max-width: 880px) {
  .s-bio__grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .s-bio__media { max-width: 320px; margin: 0 auto; }
  .s-bio__content { text-align: left; }
  .s-bio__trust { justify-content: flex-start; }
}
.catalogo-filtros {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-bottom: var(--s-7);
}
.filtro {
  padding: 10px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--border-strong);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: transparent;
  transition: all var(--dur-fast);
}
.filtro:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.filtro.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.catalogo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 980px) {
  .catalogo-grid { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
}
@media (max-width: 640px) {
  .catalogo-grid { grid-template-columns: 1fr; max-width: 400px; }
}
.produto-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--dur-base) var(--ease-out);
}
.produto-card.is-hidden { display: none; }
.produto-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.produto-card--featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-md);
  position: relative;
}
.produto-card--featured::before {
  content: "Mais procurado";
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: #fff;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}
.produto-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--primary-soft) 0%, #fef3c7 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.produto-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--dur-slow, 420ms) var(--ease-out);
}
.produto-card:hover .produto-card__media img {
  transform: scale(1.04);
}
.produto-card__media-placeholder {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--primary);
  text-align: center;
  opacity: 0.55;
}
.produto-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.produto-card__badge--ativo {
  background: #d1fae5; color: #065f46;
}
.produto-card__badge--lista {
  background: #fef3c7; color: #92400e;
}
.produto-card__body {
  padding: var(--s-6) var(--s-5) var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  flex: 1;
}
.produto-card__pilar {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}
.produto-card__title {
  font-size: 1.3rem;
  line-height: 1.25;
}
.produto-card__promise {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
}
.produto-card__bullets {
  margin: var(--s-2) 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.produto-card__bullets li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
}
.produto-card__bullets li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--primary);
  font-weight: 700;
}
.produto-card__price-row {
  margin-top: auto;
  padding-top: var(--s-3);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.produto-card__price-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.produto-card__price {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}

/* Discount variant (Método) */
.produto-card__price-row--discount {
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.produto-card__price-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.produto-card__price-old {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(107, 114, 128, 0.6);
}
.produto-card__price-tag {
  background: var(--gold);
  color: #fff;
  padding: 6px 12px;
  border-radius: 50px;
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.32);
}

/* ==========================================================================
   SOBRE
   ========================================================================== */
.s-sobre {
  padding: clamp(72px, 10vw, 128px) 0;
}
.s-sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.s-sobre__media {
  aspect-ratio: 4 / 5;
  max-width: 420px;
}
.s-sobre__photo {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(135deg, #fef3c7 0%, var(--primary-soft) 100%);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
}
.s-sobre__photo-placeholder {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--primary);
  opacity: 0.6;
}
.s-sobre__text p {
  font-size: var(--t-body-lg);
  margin-bottom: var(--s-4);
}
.s-sobre__credentials {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin-top: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid var(--border);
}
.s-sobre__credentials li {
  padding-left: 24px;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.s-sobre__credentials li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
@media (max-width: 900px) {
  .s-sobre__grid { grid-template-columns: 1fr; }
  .s-sobre__media { margin: 0 auto; }
}

/* ==========================================================================
   PROVA SOCIAL
   ========================================================================== */
.s-prova {
  padding: clamp(72px, 10vw, 128px) 0;
  background: var(--bg-alt);
}
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-bottom: var(--s-6);
}
.depoimento {
  padding: var(--s-6);
  background: var(--surface);
  border-radius: 16px;
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
}
.depoimento p {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin: 0 0 var(--s-3);
}
.depoimento footer {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.s-prova__disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}
@media (max-width: 900px) {
  .depoimentos-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.s-faq {
  padding: clamp(72px, 10vw, 128px) 0;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color var(--dur-base);
}
.faq-item[open] { border-color: var(--primary); }
.faq-item summary {
  padding: var(--s-5);
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: "Outfit", sans-serif;
  color: var(--primary);
  font-size: 1.6rem;
  font-weight: 300;
  transition: transform var(--dur-base);
  flex-shrink: 0;
  margin-left: var(--s-3);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body {
  padding: 0 var(--s-5) var(--s-5);
}
.faq-item__body p {
  margin: 0;
  color: var(--text-secondary);
}

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.s-cta-final {
  padding: clamp(72px, 10vw, 128px) 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  text-align: center;
  color: #fff;
}
.s-cta-final h2 {
  color: #fff;
  font-size: var(--t-h1);
  margin-bottom: var(--s-4);
}
.s-cta-final p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--t-body-lg);
  margin-bottom: var(--s-6);
}
.s-cta-final .cta--primary {
  background: #fff;
  color: var(--primary-deep);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.s-cta-final .cta--primary:hover {
  background: var(--gold);
  color: #fff;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.7);
  padding-top: var(--s-8);
}
.footer--slim { padding-top: var(--s-7); }
.footer__slim-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--s-6);
  padding-bottom: var(--s-6);
}
@media (max-width: 700px) {
  .footer__slim-grid { grid-template-columns: 1fr; gap: var(--s-5); }
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--s-6);
  padding-bottom: var(--s-7);
}
.footer__brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-top: var(--s-3);
  max-width: 280px;
}
.footer__logo {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
}
.footer__col h4 {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}
.footer__col a {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin-bottom: 8px;
  transition: color var(--dur-fast);
}
.footer__col a:hover { color: var(--gold); }
.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--s-4) 0;
  font-size: 0.78rem;
}
.footer__bar .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-3);
}
@media (max-width: 800px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   FAB
   ========================================================================== */
.fab {
  display: grid;
  place-items: center;
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.42);
  transition: all var(--dur-base) var(--ease-out);
}
.fab:hover {
  background: #1ebe57;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.55);
}
@media (max-width: 540px) {
  .fab {
    bottom: 16px;
    right: 16px;
    width: 54px;
    height: 54px;
  }
}

/* ==========================================================================
   MODAL
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(31, 41, 55, 0.7);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  transition: opacity var(--dur-base);
}
.modal-backdrop.is-open {
  opacity: 1;
}
.modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(560px, 92vw);
  max-height: 90vh;
  background: var(--surface);
  border: 0;
  border-radius: 20px;
  padding: 0;
  z-index: 201;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.modal[open] {
  display: flex;
  flex-direction: column;
}
.modal__close {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--text-primary);
  z-index: 3;
  transition: all var(--dur-fast);
}
.modal__close:hover {
  background: var(--primary);
  color: #fff;
}
.modal__media {
  height: 240px;
  background: linear-gradient(135deg, var(--primary-soft) 0%, #fef3c7 100%);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}
.modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.modal__media-placeholder {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--primary);
  opacity: 0.6;
}
.modal__body {
  padding: var(--s-6);
  overflow-y: auto;
}
.modal__pilar {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: var(--s-3);
}
.modal__body h3 {
  font-size: 1.6rem;
  margin-bottom: var(--s-3);
}
.modal__body h4 {
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin: var(--s-5) 0 var(--s-3);
}
.modal__body ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 var(--s-3);
}
.modal__body ul li {
  padding-left: 22px;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.modal__body ul li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--primary);
  font-weight: 700;
}
.modal__promise {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin: 0 0 var(--s-3);
}
.modal__price {
  margin: var(--s-5) 0;
  padding: var(--s-4);
  background: var(--bg-alt);
  border-radius: 12px;
  text-align: center;
}
.modal__price-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.modal__price-value {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}
.modal__price-note {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Discount variant (Método) */
.modal__price--discount {
  background: linear-gradient(135deg, var(--primary-soft) 0%, #fef3c7 100%);
  border: 1px solid var(--gold);
  position: relative;
}
.modal__price--discount .modal__price-label {
  color: var(--gold-deep);
  font-weight: 700;
}
.modal__price-old {
  display: block;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(107, 114, 128, 0.7);
  margin: 4px 0 2px;
}
.modal__price--discount .modal__price-value {
  color: var(--primary);
}

/* Hide native dialog backdrop */
.modal::backdrop { display: none; }

/* Smooth fade for body when modal open */
body.is-modal-open { overflow: hidden; }

@media (max-width: 600px) {
  .modal { width: 100vw; height: 100vh; max-height: 100vh; border-radius: 0; }
  .modal__media { height: 160px; }
}
