/* =========================================================
   SISTEMA DE DISEÑO — Dr. Luis Borja
   Estética: Premium médico + naturalidad emocional + autoridad
   ========================================================= */

:root {
  /* Paleta */
  --cream: #F6F1E8;
  --cream-deep: #EDE5D5;
  --paper: #FBF8F2;
  --ink: #1A2028;
  --ink-soft: #3A4250;
  --ink-mute: #6B7280;
  --petrol: #1F3D4D;
  --petrol-deep: #122830;
  --bronze: #A8896A;
  --bronze-soft: #C4A988;
  --line: #D9CFBE;
  --whatsapp: #25D366;

  /* Tipografía */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 242, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(217, 207, 190, 0.5);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--petrol-deep);
  line-height: 1;
}
.brand small {
  display: block;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: 4px;
}

nav.main-nav { display: none; gap: 32px; }
nav.main-nav a {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
nav.main-nav a:hover { color: var(--petrol); }
nav.main-nav a.active {
  color: var(--petrol);
  font-weight: 500;
}
nav.main-nav a.active::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 1px;
  background: var(--bronze);
}
@media (min-width: 1000px) { nav.main-nav { display: flex; } }

.btn-cta-header {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--petrol);
  padding: 12px 22px;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-cta-header:hover { background: var(--petrol-deep); }

/* Menú móvil */
.menu-toggle {
  display: flex;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 1000px) { .menu-toggle { display: none; } }
.menu-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s;
}
body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--paper);
  z-index: 49;
  padding: 100px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
body.menu-open .mobile-menu { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .btn-cta-header {
  margin-top: 30px;
  text-align: center;
  font-family: var(--sans);
  font-size: 13px;
}
@media (min-width: 1000px) { .mobile-menu { display: none; } }

/* ---------- BOTONES GENÉRICOS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 30px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--sans);
}
.btn-primary { background: var(--petrol); color: var(--paper); }
.btn-primary:hover { background: var(--petrol-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-bronze { background: var(--bronze); color: var(--ink); }
.btn-bronze:hover { background: var(--bronze-soft); transform: translateY(-2px); }

/* ---------- TOPBAR ---------- */
.topbar {
  background: var(--ink);
  color: var(--bronze-soft);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 8px 16px;
  text-transform: uppercase;
  line-height: 1.5;
}
@media (min-width: 700px) { .topbar { font-size: 12px; letter-spacing: 0.12em; } }

/* ---------- HERO (general) ---------- */
.hero {
  position: relative;
  padding: 50px 0 70px;
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -100px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(168, 137, 106, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
@media (min-width: 900px) { .hero { padding: 80px 0 100px; } }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.15fr 1fr; gap: 80px; } }

.hero-eyebrow,
.section-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before,
.section-eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--bronze);
  display: inline-block;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(38px, 6.5vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero-title em { font-style: italic; font-weight: 400; color: var(--petrol); }

.hero-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

/* Tira de autoridad */
.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  max-width: 520px;
}
@media (min-width: 600px) { .hero-trust { grid-template-columns: repeat(4, 1fr); } }
.trust-item .num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  color: var(--petrol);
  line-height: 1;
  margin-bottom: 6px;
}
.trust-item .lbl {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  line-height: 1.35;
}

/* Visual del hero (placeholder) */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--cream-deep);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(31, 61, 77, 0.25);
}
.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: contrast(1.02) saturate(0.95);
}
.hero-visual-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(31, 61, 77, 0.85) 0%, rgba(18, 40, 48, 0.92) 100%),
    radial-gradient(circle at 30% 30%, rgba(168, 137, 106, 0.3), transparent 60%);
  color: var(--paper);
}
.hero-visual-placeholder svg { width: 56px; height: 56px; opacity: 0.85; margin-bottom: 18px; }
.hero-visual-placeholder .ph-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 8px;
}
.hero-visual-placeholder .ph-sub {
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze-soft);
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(196, 169, 136, 0.5);
  pointer-events: none;
}

/* ---------- SECCIONES GENÉRICAS ---------- */
section {
  padding: 60px 0;
  position: relative;
}
@media (min-width: 900px) { section { padding: 90px 0; } }

.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(30px, 4.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: 780px;
}
.section-title em { font-style: italic; color: var(--petrol); font-weight: 400; }

.section-lead {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 40px;
}

/* ---------- BLOQUE EMOCIONAL ---------- */
.emotional {
  background: var(--petrol);
  color: var(--paper);
  text-align: center;
  padding: 70px 0;
}
.emotional-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(26px, 3.8vw, 40px);
  line-height: 1.35;
  max-width: 880px;
  margin: 0 auto;
  letter-spacing: -0.01em;
}
.emotional-quote::before {
  content: "\201C";
  font-family: var(--serif);
  font-size: 100px;
  color: var(--bronze);
  line-height: 0;
  vertical-align: -28px;
  margin-right: 6px;
}
.emotional-quote::after {
  content: "\201D";
  font-family: var(--serif);
  font-size: 100px;
  color: var(--bronze);
  line-height: 0;
  vertical-align: -28px;
  margin-left: 4px;
}
.emotional-author {
  margin-top: 32px;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bronze-soft);
}

/* ---------- RESULTADOS (GALERÍA) ---------- */
.results { background: var(--cream); }
.results-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.filter-chip {
  padding: 10px 18px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--sans);
}
.filter-chip:hover { border-color: var(--petrol); color: var(--petrol); }
.filter-chip.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 28px;
}
@media (min-width: 700px) { .results-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .results-grid { grid-template-columns: repeat(3, 1fr); } }

.case-card {
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -20px rgba(26, 32, 40, 0.18);
}
.case-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--cream-deep), var(--cream));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transform-origin: center;
}
.case-card { overflow: hidden; }

/* Imágenes reales dentro de las tarjetas de casos */
.case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.case-card:hover .case-img img {
  transform: scale(1.03);
}
.case-img::before {
  content: "ANTES / DESPUÉS";
  font-size: 10.5px;
  letter-spacing: 0.32em;
  color: var(--bronze);
  font-weight: 500;
  position: absolute;
  bottom: 18px;
  left: 18px;
}
.case-img-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--bronze-soft);
}
.case-img svg { width: 60px; height: 60px; opacity: 0.35; color: var(--petrol); }
.case-meta {
  padding: 22px 24px;
  border-top: 1px solid var(--line);
}
.case-meta h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 4px;
}
.case-meta p {
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}

.disclaimer {
  margin-top: 36px;
  font-size: 12.5px;
  color: var(--ink-mute);
  font-style: italic;
  border-left: 2px solid var(--bronze);
  padding-left: 14px;
  max-width: 620px;
}

/* ---------- MÉTODO / FEATURES (GRID DE TARJETAS) ---------- */
.method { background: var(--paper); }
.method-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 50px;
}
@media (min-width: 800px) { .method-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .method-grid { grid-template-columns: repeat(3, 1fr); } }

.method-card {
  padding: 38px 32px;
  background: var(--cream);
  border: 1px solid var(--line);
  position: relative;
}
.method-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 38px;
  color: var(--bronze);
  line-height: 1;
  margin-bottom: 22px;
}
.method-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.25;
}
.method-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ---------- PROCESO (TIMELINE) ---------- */
.process { background: var(--cream); }
.timeline {
  position: relative;
  max-width: 820px;
  margin: 50px auto 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--line);
}
@media (min-width: 700px) { .timeline::before { left: 50%; } }
.timeline-step {
  position: relative;
  padding-left: 64px;
  padding-bottom: 36px;
}
@media (min-width: 700px) {
  .timeline-step {
    width: 50%;
    padding-left: 0;
    padding-right: 60px;
    text-align: right;
  }
  .timeline-step:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 60px;
    text-align: left;
  }
}
.timeline-step::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 4px;
  width: 19px;
  height: 19px;
  background: var(--paper);
  border: 2px solid var(--petrol);
  border-radius: 50%;
}
@media (min-width: 700px) {
  .timeline-step::before { left: auto; right: -10px; }
  .timeline-step:nth-child(even)::before { left: -10px; right: auto; }
}
.timeline-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--bronze);
  font-size: 14px;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.timeline-step h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 21px;
  color: var(--ink);
  margin-bottom: 6px;
}
.timeline-step p {
  font-size: 15px;
  color: var(--ink-soft);
}

/* ---------- QUIZ ---------- */
.quiz {
  background: linear-gradient(135deg, var(--petrol) 0%, var(--petrol-deep) 100%);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.quiz::before {
  content: "";
  position: absolute;
  top: -150px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(168, 137, 106, 0.15), transparent 70%);
}
.quiz .section-eyebrow { color: var(--bronze-soft); }
.quiz .section-eyebrow::before { background: var(--bronze-soft); }
.quiz .section-title { color: var(--paper); }
.quiz .section-lead { color: rgba(251, 248, 242, 0.78); }

.quiz-wrap {
  max-width: 720px;
  margin-top: 30px;
  background: rgba(251, 248, 242, 0.04);
  border: 1px solid rgba(196, 169, 136, 0.25);
  padding: 40px 32px;
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 1;
}
@media (min-width: 700px) { .quiz-wrap { padding: 50px 48px; } }

.quiz-question {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.35;
  margin-bottom: 24px;
  color: var(--paper);
}
.quiz-options { display: grid; gap: 10px; margin-bottom: 26px; }
.quiz-opt {
  padding: 16px 20px;
  background: transparent;
  border: 1px solid rgba(196, 169, 136, 0.4);
  color: var(--paper);
  text-align: left;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 15px;
  transition: all 0.2s;
}
.quiz-opt:hover { background: rgba(196, 169, 136, 0.15); border-color: var(--bronze); }
.quiz-opt.selected {
  background: var(--bronze);
  border-color: var(--bronze);
  color: var(--petrol-deep);
  font-weight: 500;
}

.quiz-progress { display: flex; gap: 6px; margin-bottom: 28px; }
.quiz-dot {
  flex: 1;
  height: 3px;
  background: rgba(196, 169, 136, 0.25);
  transition: background 0.3s;
}
.quiz-dot.done { background: var(--bronze); }

.quiz-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.quiz-back {
  background: transparent;
  border: none;
  color: var(--bronze-soft);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 0;
}
.quiz-back:disabled { opacity: 0.3; cursor: not-allowed; }
.quiz-next {
  background: var(--bronze);
  color: var(--petrol-deep);
  border: none;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.quiz-next:hover:not(:disabled) { background: var(--bronze-soft); }
.quiz-next:disabled { opacity: 0.4; cursor: not-allowed; }

.quiz-finish { display: none; text-align: center; padding: 16px 0; }
.quiz-finish.show { display: block; }
.quiz-finish h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  margin-bottom: 14px;
  color: var(--paper);
}
.quiz-finish p {
  color: rgba(251, 248, 242, 0.8);
  margin-bottom: 28px;
  font-size: 15px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--whatsapp);
  color: #FFFFFF;
  padding: 18px 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.2s;
}
.btn-whatsapp:hover { transform: translateY(-2px); }

/* ---------- FAQ ---------- */
.faq { background: var(--paper); }
.faq-list {
  max-width: 820px;
  margin-top: 40px;
  border-top: 1px solid var(--line);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 26px 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--petrol); }
.faq-q .plus {
  font-size: 24px;
  color: var(--bronze);
  transition: transform 0.3s;
  font-weight: 300;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding-bottom: 26px;
}

/* ---------- CIERRE FINAL ---------- */
.closing {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: 80px 0;
}
.closing h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.closing h2 em { font-style: italic; color: var(--bronze-soft); }
.closing p {
  color: rgba(251, 248, 242, 0.7);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 40px;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--petrol-deep);
  color: rgba(251, 248, 242, 0.6);
  padding: 60px 0 30px;
  font-size: 14px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
@media (min-width: 800px) { .foot-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.foot-brand {
  font-family: var(--serif);
  color: var(--paper);
  font-size: 22px;
  margin-bottom: 14px;
}
.foot-brand small {
  display: block;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-soft);
  margin-top: 4px;
}
.foot-col h5 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze-soft);
  margin-bottom: 18px;
}
.foot-col a, .foot-col p {
  display: block;
  margin-bottom: 8px;
  color: rgba(251, 248, 242, 0.6);
  transition: color 0.2s;
}
.foot-col a:hover { color: var(--paper); }
.foot-bottom {
  border-top: 1px solid rgba(196, 169, 136, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(251, 248, 242, 0.4);
}

/* ---------- WhatsApp flotante ---------- */
.fab-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.5);
  z-index: 100;
  transition: transform 0.25s ease;
}
.fab-whatsapp:hover { transform: scale(1.08); }
.fab-whatsapp svg { width: 30px; height: 30px; color: #fff; }

/* ---------- Aparición suave al hacer scroll ---------- */
/* La clase .reveal es para el fallback CSS si GSAP no carga.
   Cuando GSAP carga, anula esta regla con su propia animación. */
.reveal { opacity: 1; transform: none; transition: opacity 0.8s ease, transform 0.8s ease; }
.no-gsap .reveal { opacity: 0; transform: translateY(24px); }
.no-gsap .reveal.visible { opacity: 1; transform: translateY(0); }

/* Performance: imágenes que se van a animar */
.case-img, .hero-visual, .author-portrait { will-change: transform, opacity; }

/* ---------- ESTILOS ESPECÍFICOS PARA PÁGINAS INTERNAS ---------- */

/* Hero variant para páginas internas: más compacto */
.hero-inner {
  padding: 60px 0 70px;
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
}
@media (min-width: 900px) { .hero-inner { padding: 90px 0 100px; } }
.hero-inner .hero-title { font-size: clamp(34px, 5.5vw, 56px); margin-bottom: 22px; }
.hero-inner .container { text-align: left; max-width: 900px; }
.hero-inner .hero-lead { max-width: 700px; }

/* Bloques de contenido editorial */
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3.5vw, 36px);
  line-height: 1.2;
  color: var(--ink);
  margin: 50px 0 18px;
  letter-spacing: -0.01em;
}
.prose h2 em { font-style: italic; color: var(--petrol); }
.prose h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  color: var(--petrol);
  margin: 36px 0 12px;
}
.prose p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 18px;
}
.prose ul {
  list-style: none;
  margin-bottom: 24px;
  padding: 0;
}
.prose ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}
.prose ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--bronze);
  font-weight: 500;
}
.prose strong { color: var(--ink); font-weight: 500; }

/* Tarjeta destacada (callout) */
.callout {
  background: var(--cream);
  border-left: 3px solid var(--bronze);
  padding: 26px 32px;
  margin: 30px 0;
}
.callout p { margin-bottom: 0; font-size: 16px; }

/* Comparativa (tabla de 2 columnas) */
.compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--line);
  margin: 30px 0;
}
@media (min-width: 700px) { .compare { grid-template-columns: 1fr 1fr; } }
.compare-col { padding: 30px; }
.compare-col + .compare-col { border-top: 1px solid var(--line); }
@media (min-width: 700px) {
  .compare-col + .compare-col {
    border-top: none;
    border-left: 1px solid var(--line);
  }
}
.compare-col.featured { background: var(--cream); }
.compare-col h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 18px;
  color: var(--ink);
}
.compare-col ul { padding: 0; list-style: none; }
.compare-col ul li {
  padding: 7px 0 7px 22px;
  position: relative;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.compare-col ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px; height: 8px;
  border: 1px solid var(--bronze);
  border-radius: 50%;
}
.compare-col.featured ul li::before { background: var(--bronze); }

/* Sección de técnicas (acordeón visual) */
.techniques {
  background: var(--cream);
}
.tech-list {
  display: grid;
  gap: 18px;
  margin-top: 40px;
}
.tech-item {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 30px 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 800px) {
  .tech-item { grid-template-columns: 280px 1fr; gap: 40px; align-items: start; }
}
.tech-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  color: var(--petrol);
}
.tech-tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: 6px;
}
.tech-desc { color: var(--ink-soft); font-size: 15.5px; line-height: 1.7; }

/* Sección de autoridad (perfil) */
.author-hero {
  background: linear-gradient(135deg, var(--petrol) 0%, var(--petrol-deep) 100%);
  color: var(--paper);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.author-hero::before {
  content: "";
  position: absolute;
  top: -100px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(168, 137, 106, 0.15) 0%, transparent 70%);
}
.author-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) { .author-grid { grid-template-columns: 1fr 1.2fr; gap: 80px; } }
.author-portrait {
  aspect-ratio: 4/5;
  background: var(--petrol-deep);
  border: 1px solid rgba(196, 169, 136, 0.3);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.author-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: contrast(1.02) saturate(0.95);
}
.author-portrait::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(196, 169, 136, 0.25);
}
.author-portrait .ph {
  text-align: center;
  color: var(--bronze-soft);
  padding: 30px;
}
.author-portrait .ph svg { width: 56px; height: 56px; opacity: 0.6; margin: 0 auto 14px; }
.author-portrait .ph-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--paper);
}
.author-portrait .ph-sub {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze-soft);
  margin-top: 6px;
}

.author-content .hero-eyebrow { color: var(--bronze-soft); }
.author-content .hero-eyebrow::before { background: var(--bronze-soft); }
.author-content .hero-title { color: var(--paper); }
.author-content .hero-lead { color: rgba(251, 248, 242, 0.78); }

.credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(196, 169, 136, 0.25);
}
.credential .num {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--bronze-soft);
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.credential .lbl {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: rgba(251, 248, 242, 0.6);
  line-height: 1.4;
}

/* Filosofía (cita grande) */
.philosophy {
  background: var(--cream);
  padding: 80px 0;
  text-align: center;
}
.philosophy-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.4;
  max-width: 880px;
  margin: 0 auto;
  color: var(--ink);
}
.philosophy-author {
  margin-top: 26px;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bronze);
}

/* Lista de logros / formación */
.achievements {
  background: var(--paper);
}
.achievement-list {
  max-width: 820px;
  margin-top: 40px;
}
.achievement {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.achievement-year {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--bronze);
}
.achievement-text h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 4px;
}
.achievement-text p {
  font-size: 14.5px;
  color: var(--ink-mute);
  line-height: 1.6;
}

/* Formulario completo de evaluación */
.form-page {
  background: var(--paper);
}
.eval-form {
  max-width: 720px;
  margin: 0 auto;
  margin-top: 40px;
  display: grid;
  gap: 28px;
}
.eval-form .field {
  display: grid;
  gap: 8px;
}
.eval-form label {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
}
.eval-form input,
.eval-form select,
.eval-form textarea {
  font-family: var(--sans);
  font-size: 16px;
  background: var(--paper);
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  color: var(--ink);
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}
.eval-form input:focus,
.eval-form select:focus,
.eval-form textarea:focus { border-bottom-color: var(--petrol); }
.eval-form textarea { resize: vertical; min-height: 100px; }
.eval-form .field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 600px) { .eval-form .field-row { grid-template-columns: 1fr 1fr; } }

.eval-form .submit-area {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.eval-form .privacy-note {
  font-size: 13px;
  color: var(--ink-mute);
  flex: 1;
  min-width: 250px;
}

/* Estados de "soon" o lista */
.case-grid-wide {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 40px;
}
@media (min-width: 700px) { .case-grid-wide { grid-template-columns: repeat(2, 1fr); } }

.case-wide {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 30px 32px;
  display: grid;
  gap: 14px;
}
.case-wide-tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
}
.case-wide h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.3;
}
.case-wide p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

/* ---------- TESTIMONIOS EN VIDEO ---------- */
.testimonials {
  background: var(--paper);
}

.testimonials-videos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-top: 50px;
}
@media (min-width: 800px) {
  /* En escritorio: 2 horizontales arriba, vertical centrado abajo
     o 2 horizontales (col 1 y 2) + vertical (col 3, alto doble) */
  .testimonials-videos {
    grid-template-columns: 1fr 1fr 0.6fr;
    gap: 24px;
    align-items: start;
  }
  .video-testimonial.video-vertical {
    grid-row: span 1;
  }
}

.video-testimonial {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--cream);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -22px rgba(26, 32, 40, 0.18);
}

/* Contenedor 16:9 (videos horizontales normales) */
.video-wrap-16-9 {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--petrol-deep);
  overflow: hidden;
}

/* Contenedor 9:16 (Shorts verticales) */
.video-wrap-9-16 {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: var(--petrol-deep);
  overflow: hidden;
}

.video-wrap-16-9 iframe,
.video-wrap-9-16 iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-meta {
  padding: 22px 24px 24px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.video-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 12px;
  padding: 4px 10px;
  background: rgba(168, 137, 106, 0.12);
  border: 1px solid rgba(168, 137, 106, 0.3);
}
.video-badge-strong {
  color: var(--petrol-deep);
  background: var(--bronze);
  border-color: var(--bronze);
  font-weight: 600;
}

.video-meta h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 21px;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.2;
}

.video-meta p {
  font-size: 13.5px;
  color: var(--ink-mute);
  letter-spacing: 0.01em;
  line-height: 1.5;
}

/* =========================================================
   BLOG — Listado e individual
   ========================================================= */

/* Índice del blog (tarjetas) */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 50px;
}
@media (min-width: 800px) { .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; } }
@media (min-width: 1100px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -22px rgba(26, 32, 40, 0.18);
}

.blog-card-cover {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--petrol) 0%, var(--petrol-deep) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.blog-card-cover::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(196, 169, 136, 0.35);
  pointer-events: none;
}
.blog-card-cover .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 72px;
  color: rgba(196, 169, 136, 0.55);
  line-height: 1;
}
.blog-card-meta {
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.blog-card-cat {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
}
.blog-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.blog-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  flex: 1;
}
.blog-card-link {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--petrol);
  font-weight: 500;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Artículo individual */
.article-hero {
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  padding: 60px 0 50px;
}
@media (min-width: 900px) { .article-hero { padding: 90px 0 70px; } }

.article-hero .container {
  max-width: 820px;
  margin: 0 auto;
}

.article-meta-top {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 26px;
  font-weight: 500;
}
.article-meta-top .dot {
  width: 4px;
  height: 4px;
  background: var(--line);
  border-radius: 50%;
}

.article-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 26px;
}
.article-title em { font-style: italic; color: var(--petrol); font-weight: 400; }

.article-lead {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-mute);
}
.article-author strong {
  display: block;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 2px;
  letter-spacing: 0.01em;
  font-family: var(--sans);
}

.article-body { background: var(--paper); padding: 50px 0 70px; }
@media (min-width: 900px) { .article-body { padding: 70px 0 100px; } }

.article-content {
  max-width: 720px;
  margin: 0 auto;
}
.article-content h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 3.2vw, 32px);
  line-height: 1.2;
  color: var(--ink);
  margin: 48px 0 18px;
  letter-spacing: -0.01em;
}
.article-content h2 em { font-style: italic; color: var(--petrol); }
.article-content h2:first-child { margin-top: 0; }
.article-content h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 21px;
  color: var(--petrol);
  margin: 34px 0 12px;
}
.article-content p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 18px;
}
.article-content p strong { color: var(--ink); font-weight: 500; }
.article-content ul, .article-content ol {
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}
.article-content ul li {
  padding: 7px 0 7px 26px;
  position: relative;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}
.article-content ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--bronze);
  font-weight: 500;
}
.article-content ol { counter-reset: art; }
.article-content ol li {
  counter-increment: art;
  padding: 7px 0 7px 32px;
  position: relative;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}
.article-content ol li::before {
  content: counter(art) ".";
  position: absolute;
  left: 0;
  color: var(--bronze);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

.article-content blockquote {
  border-left: 3px solid var(--bronze);
  padding: 6px 0 6px 22px;
  margin: 30px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
}

.article-content .callout-info {
  background: var(--cream);
  border-left: 3px solid var(--petrol);
  padding: 22px 26px;
  margin: 28px 0;
}
.article-content .callout-info p { font-size: 15.5px; margin-bottom: 0; }
.article-content .callout-info strong { color: var(--petrol); }

.article-disclaimer {
  margin-top: 40px;
  padding: 20px 24px;
  background: rgba(217, 207, 190, 0.25);
  border: 1px solid var(--line);
  font-size: 13px;
  font-style: italic;
  color: var(--ink-mute);
  line-height: 1.6;
}

/* CTA al final del artículo */
.article-cta {
  background: var(--cream);
  padding: 70px 0;
  text-align: center;
}
.article-cta .container { max-width: 720px; }
.article-cta h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 18px;
}
.article-cta h3 em { font-style: italic; color: var(--petrol); }
.article-cta p { color: var(--ink-soft); margin-bottom: 28px; font-size: 16px; }

/* Artículos relacionados */
.related-articles { background: var(--paper); padding: 70px 0; border-top: 1px solid var(--line); }
.related-articles .section-eyebrow { justify-content: center; }
.related-articles .section-title { text-align: center; margin: 0 auto 38px; }


/* ---------- TESTIMONIOS PRÓXIMAMENTE ---------- */
.testimonials-soon {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 60px 40px;
  text-align: center;
  margin-top: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.testimonials-soon-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  margin-bottom: 22px;
  color: var(--bronze);
}
.testimonials-soon-icon svg { width: 28px; height: 28px; }
.testimonials-soon h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}
.testimonials-soon p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 28px;
}
.testimonials-soon-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ---------- CASOS EN VIDEO (Reels + horizontales) ---------- */
.reels-section {
  background: var(--cream);
}

.reels-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 50px;
  justify-items: center;
}
@media (min-width: 700px) {
  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    justify-items: stretch;
  }
}
@media (min-width: 1000px) {
  .reels-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.reel-card {
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -22px rgba(26, 32, 40, 0.18);
}

/* Vertical (Reels): ocupa 1 columna, máx 320px */
.reel-card.reel-vertical {
  max-width: 320px;
  margin: 0 auto;
}

/* Horizontal (video tradicional): ocupa 2 columnas en escritorio */
.reel-card.reel-horizontal {
  max-width: 100%;
}
@media (min-width: 700px) {
  .reel-card.reel-horizontal {
    grid-column: span 2;
  }
}
@media (min-width: 1000px) {
  .reel-card.reel-horizontal {
    grid-column: span 2;
    max-width: 720px;
    margin: 0 auto;
  }
}

/* Contenedor del video: ratio se ajusta según clase */
.reel-wrap {
  position: relative;
  width: 100%;
  background: var(--petrol-deep);
  overflow: hidden;
}
.reel-wrap-9-16 { aspect-ratio: 9 / 16; }
.reel-wrap-16-9 { aspect-ratio: 16 / 9; }

.reel-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.reel-meta {
  padding: 20px 22px 22px;
  border-top: 1px solid var(--line);
}

.reel-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 10px;
  padding: 3px 9px;
  background: rgba(168, 137, 106, 0.12);
  border: 1px solid rgba(168, 137, 106, 0.3);
}

.reel-meta h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.25;
}

.reel-meta p {
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.01em;
  line-height: 1.5;
}
