/* ============================================================
   SEMBRANDO MEDICINA — Estilos v5 · Mobile First
   Clother via Adobe Fonts (gsr7ohq)
   ============================================================ */

/* ============================================================
   FUENTES
   ============================================================ */
@font-face {
  font-family: 'Recoleta';
  src: url('fonts/Recoleta-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ProvidenceSans';
  src: url('fonts/Providence.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ProvidenceSans';
  src: url('fonts/providence-bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --verde-selva: #7B7249;
  --gris-volcan: #2D271E;
  --amarillo-coto: #E97A4D;
  --azul-cielo: #636445;
  --beige-tierra: #333415;
  --amarillo-paja: #F1E778;

  --warm-gold: #E97A4D;
  --deep-olive: #7B7249;
  --sage-green: #9a9b70;
  --earth-brown: #3d3525;
  --soft-cream: #F5F0E8;
  --warm-beige: #E8E0D0;
  --oak-leaf: #FAFAF5;
  --soft-terracotta: #7B7249;
  --golden-light: #F1E778;
  --deep-forest: #2D271E;
  --moss-green: #636445;
  --soft-white: #FAFAF5;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'clother', 'ProvidenceSans', Georgia, serif;
  background: var(--soft-cream);
  color: var(--gris-volcan);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

/* ============================================================
   TIPOGRAFÍA
   ============================================================ */
h1,
h2,
h3,
h4 {
  font-family: 'Recoleta', Georgia, serif;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
}

p {
  font-family: 'clother', 'ProvidenceSans', Georgia, serif;
  font-weight: 400;
  font-size: clamp(0.96rem, 1.4vw, 1.08rem);
}

/* ============================================================
   SHAPE DIVIDERS
   ============================================================ */
.shape-bottom,
.shape-top {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
  z-index: 3;
}

.shape-bottom {
  bottom: -1px;
}

.shape-top {
  top: -1px;
}

.shape-bottom svg,
.shape-top svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ============================================================
   ANIMACIONES
   ============================================================ */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes floatTag {
  0% {
    transform: translateY(0px) rotate(-0.5deg);
  }

  33% {
    transform: translateY(-6px) rotate(1deg);
  }

  66% {
    transform: translateY(-3px) rotate(-1.2deg);
  }

  100% {
    transform: translateY(-9px) rotate(0.8deg);
  }
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scd-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ============================================================
   SECTION LABEL & HEADER
   ============================================================ */
.section-label {
  display: block;
  font-family: 'ProvidenceSans', Georgia, serif;
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--moss-green);
  margin-bottom: 0.8rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  color: var(--deep-olive);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--earth-brown);
}

/* ============================================================
   BOTONES
   ============================================================ */
.btn {
  display: inline-block;
  font-family: 'clother', 'ProvidenceSans', Georgia, serif;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  padding: 0.6rem 1.6rem;
  border-radius: 3rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.25s;
  border: none;
}

.btn-primary {
  background: var(--warm-gold);
  color: var(--oak-leaf);
  font-weight: 700;
}

.btn-primary:hover {
  background: var(--oak-leaf);
  color: var(--earth-brown);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--soft-white);
  border: 1.5px solid rgba(250, 250, 248, 0.45);
}

.btn-outline:hover {
  border-color: var(--warm-gold);
  color: var(--warm-gold);
  transform: translateY(-2px);
}

.btn-large {
  padding: 0.78rem 2.4rem;
  font-size: 0.97rem;
}

.fourdays {
  background: var(--deep-olive);
  color: var(--soft-white);
}

.fourdays:hover {
  background: var(--gris-volcan);
  color: var(--soft-white);
}

.btn-price {
  background-color: #E8E0D0;
  color: var(--deep-forest);
  font-weight: 700;
  border: none;
  padding: 0.6rem 0;
  border-radius: 2rem;
  transition: background 0.25s, transform 0.2s;
  box-shadow: none;
}

.btn-price:hover {
  background-color: var(--amarillo-paja);
  color: var(--deep-forest);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, padding 0.3s, transform 0.35s;
}

.navbar.scrolled {
  background: rgba(45, 39, 30, 0.95);
  backdrop-filter: blur(14px);
  padding: 0.8rem 5%;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.22);
}

.navbar.nav-hidden {
  transform: translateY(-110%);
}

.nav-logo {
  font-family: 'Recoleta', Georgia, serif;
  font-size: 1.2rem;
  color: var(--soft-white);
  letter-spacing: 0.02em;
}

.nav-logo span {
  color: var(--amarillo-paja);
}

/* Mobile: nav oculta, hamburger visible */
.nav-links {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--deep-forest);
  z-index: 999;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.nav-links.open {
  display: flex;
}

.nav-links a {
  font-family: 'ProvidenceSans', Georgia, serif;
  font-size: 0.82rem;
  color: var(--soft-white);
  opacity: 0.82;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a.active-link {
  opacity: 1;
  color: var(--warm-gold);
}

.nav-cta {
  background: var(--warm-gold);
  color: var(--oak-leaf) !important;
  padding: 0.42rem 1.2rem;
  border-radius: 2rem;
  font-weight: 700 !important;
  opacity: 1 !important;
  transition: background 0.25s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--soft-terracotta) !important;
  color: var(--soft-white) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--soft-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Desktop: nav horizontal, hamburger oculto */
@media (min-width: 701px) {
  .nav-links {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    position: static;
    height: auto;
    width: auto;
    background: none;
    font-size: 1rem;
  }

  .hamburger {
    display: none;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(45, 39, 30, 0.78) 0%, rgba(45, 39, 30, 0.50) 50%, rgba(45, 39, 30, 0.88) 100%);
  z-index: 1;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 5%;
  width: 100%;
}

.hero-eyebrow {
  font-family: 'ProvidenceSans';
  text-shadow: var(--gris-volcan) 0px 0px 4px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amarillo-coto);
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero h1 {
  padding-top: 16px;
  font-family: 'recoleta';
  font-weight: 700;
  font-size: 55px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--soft-white);
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.5s forwards;
}

.hero h1 em {
  font-style: normal;
  color: var(--amarillo-paja);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: var(--golden-light);
  margin: 1.2rem auto 2rem;
  max-width: 640px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.75s forwards;
}

/* Badges marquee */
.badges-marquee-wrap {
  position: relative;
  width: 80%;
  overflow: hidden;
  margin: 0 auto;
  opacity: 0;
  padding-bottom: 16px;
  transform: translateY(16px);
  animation: fadeUp 0.9s 0.95s forwards;
}

.badges-marquee-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}

.badges-marquee-fade--left {
  left: 0;
  background: linear-gradient(to right, rgba(45, 39, 30, 0.72) 0%, transparent 100%);
}

.badges-marquee-fade--right {
  right: 0;
  background: linear-gradient(to left, rgba(45, 39, 30, 0.72) 0%, transparent 100%);
}

.badges-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 18s linear infinite;
}

.badges-marquee-track:hover {
  animation-play-state: paused;
}

.badges-marquee-inner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 0.3rem;
  white-space: nowrap;
}

.badge {
  color: var(--oak-leaf);
  font-family: 'ProvidenceSans', Georgia, serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  padding: 0.18rem 0.75rem;
  border-radius: 2rem;
  backdrop-filter: blur(6px);
  white-space: nowrap;
  border: 1px solid rgba(250, 250, 245, 0.18);
}

.badge-sep {
  color: rgba(250, 250, 245, 0.3);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.9s 1.15s forwards;
}

@media (min-width: 701px) {
  .badges-marquee-wrap {
    width: 45%;
  }
}

/* ============================================================
   INTRO
   ============================================================ */
.section-intro {
  position: relative;
  background: var(--soft-cream);
  padding: 7rem 5% 10rem;
}

.section-intro .container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.intro-text .section-label {
  display: block;
  margin-bottom: 1rem;
}

.intro-text h2 {
  color: var(--deep-olive);
  margin-bottom: 1.5rem;
}

.intro-text h2 em {
  font-style: normal;
  color: var(--soft-terracotta);
}

.intro-text p {
  color: var(--earth-brown);
  margin-bottom: 1rem;
}

.intro-img-wrap {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
}

.intro-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px 60px 2px 60px;
  box-shadow: 12px 20px 60px rgba(45, 39, 30, 0.16);
}

.intro-img-accent {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid var(--soft-cream);
  box-shadow: 8px 8px 30px rgba(45, 39, 30, 0.12);
}

@media (min-width: 1025px) {
  .section-intro .container {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }

  .intro-img-wrap {
    max-width: none;
    margin: 0;
  }
}

/* ============================================================
   LOS 4 DÍAS
   ============================================================ */
.section-days {
  position: relative;
  background: var(--warm-beige);
  padding: 55px 16px 34px 16px;
}

.section-days .section-header h2 {
  color: var(--deep-olive);
}

.days-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.day-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  transition: transform 0.35s, box-shadow 0.35s;
}

.day-card:hover {
  transform: translateY(-5px);
}

.day-card-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.day-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.day-card:hover .day-card-img img {
  transform: scale(1.07);
}

.day-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(45, 39, 30, 0.05) 0%, rgba(45, 39, 30, 0.25) 45%, rgba(45, 39, 30, 0.90) 100%);
}

.day-card-num {
  position: absolute;
  top: 1rem;
  left: 1.1rem;
  z-index: 2;
  font-family: 'Recoleta', Georgia, serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  color: var(--amarillo-paja);
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(45, 39, 30, 0.5);
}

.day-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.4rem 1.5rem 1.6rem;
}

.day-card-overline {
  font-family: 'ProvidenceSans', Georgia, serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amarillo-paja);
  opacity: 0.85;
  margin-bottom: 0.4rem;
}

.day-card-body h3 {
  font-size: 1.05rem;
  color: var(--soft-white);
  margin-bottom: 0.4rem;
  line-height: 1.25;
}

.day-card-body p {
  font-family: 'clother', 'ProvidenceSans', Georgia, serif;
  font-weight: 400;
  font-size: 0.84rem;
  color: rgba(250, 250, 245, 0.72);
  line-height: 1.55;
}

@media (min-width: 701px) {
  .days-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .days-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* ============================================================
   MODAL CONTENIDOS
   ============================================================ */
.modal-panel--wide {
  max-width: 780px;
}

.modal-contenidos-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
}

.mc-dia {
  border-bottom: 1px solid rgba(99, 100, 69, 0.15);
  padding: 1.4rem 0;
}

.mc-dia:last-child {
  border-bottom: none;
}

.mc-dia-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.mc-dia-num {
  font-family: 'Recoleta', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--amarillo-paja);
  line-height: 1;
  opacity: 0.85;
  flex-shrink: 0;
  min-width: 2ch;
}

.mc-dia-titulo {
  font-family: 'Recoleta', Georgia, serif;
  font-size: 1rem;
  color: var(--soft-white);
  margin: 0 0 0.15rem !important;
  line-height: 1.2;
}

.mc-dia-hora {
  font-family: 'ProvidenceSans', Georgia, serif;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin: 0 !important;
}

.mc-lista {
  list-style: none;
  padding: 0 0 0 2rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.mc-lista li {
  font-family: 'clother', 'ProvidenceSans', Georgia, serif;
  font-size: 0.86rem;
  color: var(--sage-green);
  line-height: 1.6;
  padding-left: 1rem;
  position: relative;
}

.mc-lista li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--amarillo-paja);
  opacity: 0.6;
}

@media (min-width: 561px) {
  .mc-dia-num {
    font-size: 2.2rem;
  }

  .mc-lista {
    padding-left: 3.2rem;
  }
}

/* ============================================================
   GALERÍA
   ============================================================ */
.section-gallery {
  position: relative;
  background: var(--soft-cream);
  padding: 10rem 5% 10rem;
}

.gallery-grid {
  max-width: 1100px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  min-height: 160px;
}

.gallery-item:first-child {
  grid-column: span 2;
  min-height: 260px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

@media (min-width: 701px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-item {
    min-height: 200px;
  }

  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 430px;
  }
}

/* ============================================================
   LABORATORIO
   ============================================================ */
.section-lab {
  position: relative;
  background: var(--deep-olive);
  padding: 10rem 5% 10rem;
  overflow: hidden;
}

.lab-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lab-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lab-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(45, 39, 30, 0.88) 0%, rgba(45, 39, 30, 0.72) 50%, rgba(45, 39, 30, 0.90) 100%);
  z-index: 1;
}

.section-lab .section-label,
.section-lab .section-header,
.section-lab .lab-highlight {
  position: relative;
  z-index: 2;
}

.lab-highlight-tags {
  padding-top: 21px;
}

.section-lab::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 93, 83, 0.06) 0%, transparent 70%);
  z-index: 2;
}

.section-lab .section-label {
  color: var(--oak-leaf);
}

.section-lab .section-header h2 {
  color: var(--soft-white);
}

.section-lab .section-header p {
  color: var(--oak-leaf);
}

.hidrolato {
  color: var(--golden-light);
}

.lab-hl-tag {
  font-family: 'ProvidenceSans', Georgia, serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.26rem 0.76rem;
  border-radius: 2rem;
  color: var(--amarillo-paja);
  display: inline-block;
  animation-name: floatTag;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.lab-hl-tag:nth-child(1) {
  animation-duration: 3.1s;
  animation-delay: 0s;
  transform-origin: center;
}

.lab-hl-tag:nth-child(2) {
  animation-duration: 4.3s;
  animation-delay: 0.7s;
}

.lab-hl-tag:nth-child(3) {
  animation-duration: 3.7s;
  animation-delay: 1.4s;
}

.lab-hl-tag:nth-child(4) {
  animation-duration: 5.1s;
  animation-delay: 0.3s;
}

.lab-hl-tag:nth-child(5) {
  animation-duration: 4.0s;
  animation-delay: 1.9s;
}

/* ============================================================
   FACILITADORAS
   ============================================================ */
#facilitadoras {
  padding-bottom: 21px;
}

.section-facilitadoras {
  position: relative;
  background: linear-gradient(135deg, #2D271E, #1a1510);
  padding: 10rem 5% 10rem;
}


#facilitadoras .section-label {
  color: #F1E778;
}

#facilitadoras h2 {
  color: var(--oak-leaf);
}

#facilitadoras p {
  color: #E8E0D0;
}



.facilitadoras-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.facilitadora-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--warm-beige);
  transition: transform 0.35s, box-shadow 0.35s;
}

.facilitadora-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(45, 39, 30, 0.18);
}

.fac-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.fac-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 10% 90%;
  display: block;
  transition: transform 0.55s ease;
}

.agu img {
  object-position: 90% 10%;
}

.facilitadora-card:hover .fac-img-wrap img {
  transform: scale(1.05);
}

.fac-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(45, 39, 30, 0) 30%, rgba(45, 39, 30, 0.82) 100%);
}

.fac-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.4rem 1.6rem 1.5rem;
}

.fac-overlay h3 {
  color: var(--soft-white);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.facilitadora-role {
  font-family: 'ProvidenceSans', Georgia, serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amarillo-paja);
  opacity: 0.85;
  margin: 0;
}

.fac-desc {
  padding: 1.4rem 1.6rem 1.8rem;
  background: linear-gradient(135deg, #636445, #7B7249);
}

.fac-desc p {
  font-family: 'clother', 'ProvidenceSans', Georgia, serif;
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--earth-brown);
  line-height: 1.75;
}

@media (min-width: 1025px) {

  #facilitadoras {
    padding-bottom: 0;
  }

  .facilitadoras-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   FRANJA AVALES
   ============================================================ */
.section-avales {
  position: relative;

  padding: 5rem 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  overflow: hidden;
}

.section-avales .shape-top {
  transform: scaleY(-1);
  top: -1px;
}

.avales-label {
  font-family: 'ProvidenceSans', Georgia, serif;
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: white;
  margin: 0;
  position: relative;
  z-index: 1;
}

.avales-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.aval-logo-link {
  display: flex;
  align-items: center;
  opacity: 0.4;
  transition: opacity 0.35s ease;
  filter: grayscale(100%) brightness(2.5);
}

.aval-logo-link:hover {
  opacity: 0.9;
}

.aval-logo {
  height: 50px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.avales-divider {
  width: 1px;
  height: 28px;
  background: rgba(99, 100, 69, 0.22);
  flex-shrink: 0;
}

@media (min-width: 481px) {
  .avales-logos {
    gap: 3rem;
  }

  .aval-logo {
    height: 70px;
    max-width: 160px;
  }
}

/* ============================================================
   BANNER INFO
   ============================================================ */
.section-info-banner {
  position: relative;
  overflow: hidden;
}

.section-info-banner::before {
  content: '';
  position: absolute;
  inset: 0;

  pointer-events: none;
}

.info-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.info-banner-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.info-banner-header h2 {
  color: var(--deep-olive);
  margin: 0 auto;
  width: 85%;

}

.info-banner-header h2 em {
  font-style: normal;
  color: var(--soft-terracotta);
}

.info-banner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.info-card {
  position: relative;
  padding: 2.2rem 1.8rem;
  background: none;
  border: none;
  border-radius: 0;
  overflow: visible;
  transition: transform 0.38s cubic-bezier(0.34, 1.3, 0.64, 1);
}

.info-card::before {
  content: '';
  position: absolute;
  inset: -6px -8px -10px -8px;
  background-image: url('papper-card.png');
  opacity: 0.7;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(0.34, 1.3, 0.64, 1);
}

.info-card:nth-child(1) {
  transform: rotate(-1.2deg);
}

.info-card:nth-child(2) {
  transform: rotate(0.8deg);
}

.info-card:nth-child(3) {
  transform: rotate(-0.6deg);
}

.info-card:nth-child(4) {
  transform: rotate(1.4deg);
}

.info-card:hover {
  transform: rotate(0deg) translateY(-8px) !important;
  filter: drop-shadow(0 18px 36px rgba(45, 39, 30, 0.22));
}

.info-card>* {
  position: relative;
  z-index: 1;
}

.info-card-icon {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--moss-green);
  margin-bottom: 1.1rem;
  transition: background 0.3s, transform 0.3s;
}

.info-card:hover .info-card-icon {
  transform: scale(1.08);
}

.info-card-title {
  font-family: 'Recoleta', Georgia, serif;
  font-size: 1.12rem;
  color: var(--gris-volcan);
  margin-bottom: 0.9rem;
  line-height: 1.2;
}

.info-card-text {
  font-family: 'clother', 'ProvidenceSans', Georgia, serif;
  font-size: 0.84rem;
  color: var(--gris-volcan);
  line-height: 1.65;
  margin-bottom: 0.8rem;
}

.info-card-text strong {
  color: var(--gris-volcan);
  font-weight: 700;
}

.info-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.info-card-list li {
  font-family: 'clother', 'ProvidenceSans', Georgia, serif;
  font-size: 0.83rem;
  color: var(--gris-volcan);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.info-card-list li strong {
  color: var(--gris-volcan);
  font-weight: 700;
}

.info-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.38em;
}

.info-dot--yes {
  background: var(--moss-green);
}

.info-dot--no {
  background: var(--amarillo-coto);
  opacity: 0.8;
}

.info-card-note {
  font-family: 'ProvidenceSans', Georgia, serif;
  font-size: 0.84rem;
  color: var(--moss-green);
  font-weight: 600;
  line-height: 1.6;
  margin-top: 0.9rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(45, 39, 30, 0.12);
  letter-spacing: 0.01em;
}

@media (min-width: 601px) {
  .info-banner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-info-banner {
    padding: 8rem 5%;
  }
}

@media (min-width: 1101px) {
  .info-banner-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .section-info-banner {
    padding-top: 0;
  }
}

/* ============================================================
   FAQs
   ============================================================ */
.section-faqs {
  position: relative;
  padding: 55px 16px 0 16px;
}

.faqs-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(99, 100, 69, 0.25);
  overflow: hidden;
}

.faq-item:first-of-type {
  border-top: 1px solid rgba(99, 100, 69, 0.25);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  text-align: left;
}

.faq-question span {
  font-family: 'Recoleta', Georgia, serif;
  font-size: 1.08rem;
  color: var(--deep-olive);
  line-height: 1.3;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--moss-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-olive);
  transition: background 0.25s, border-color 0.25s, transform 0.35s;
}

.faq-item.open .faq-icon {
  background: var(--warm-gold);
  border-color: var(--warm-gold);
  transform: rotate(45deg);
  color: var(--oak-leaf);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 600px;
  padding-bottom: 1.4rem;
}

.faq-answer p {
  font-family: 'clother', 'ProvidenceSans', Georgia, serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--earth-brown);
  line-height: 1.82;
}

.faq-answer ul {
  margin: 0.7rem 0 0 1.2rem;
  font-family: 'clother', 'ProvidenceSans', Georgia, serif;
  font-weight: 400;
  color: var(--earth-brown);
  font-size: 0.93rem;
  line-height: 1.9;
}

@media (min-width: 1025px) {

  .section-faqs {
    padding-top: 0;
  }
}

/* ============================================================
   SECCIÓN CONTENIDOS
   ============================================================ */
.section-contenidos {
  position: relative;
  padding: 55px 16px 55px 16px;
  text-align: center;
}

.section-contenidos .section-headerz h2 em {
  font-style: normal;
  color: var(--amarillo-paja);
}

.section-contenidos .section-headerz {
  color: var(--azul-cielo);
}

.section-contenidos .section-label {
  color: var(--amarillo-coto);
  margin: 0;
}

@media (min-width: 701px) {
  .section-headerz p {
    width: 30%;
    margin: 0 auto;
  }

  .section-contenidos {
    padding-bottom: 84px;
  }
}

/* ============================================================
   PRECIOS
   ============================================================ */
.section-precios {
  position: relative;
  background: linear-gradient(135deg, var(--soft-cream), (var(--oak-leaf)));
  padding: 10rem 5% 10rem;
  overflow: hidden;
}

.section-precios::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 93, 83, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.section-precios .section-label {
  color: var(--gris-volcan);
}

.section-precios .section-header h2 {
  background: linear-gradient(135deg, #1a1510, #3d3525);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section-precios .section-header p {
  color: var(--beige-tierra);
}

.pricing-grid {
  max-width: 380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.price-card {
  background: var(--gris-volcan);
  border: 1px solid #2D271E;
  border-radius: 20px;
  padding: 2.3rem 1.8rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.price-card.featured {
  background: rgba(232, 93, 83, 0.07);
  border-color: var(--warm-gold);
}

.price-card .badge-featured {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--warm-gold);
  color: var(--oak-leaf);
  font-family: 'clother', 'ProvidenceSans', Georgia, serif;
  font-weight: 700;
  font-size: 0.71rem;
  letter-spacing: 0.1em;
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  white-space: nowrap;
}

.price-lote {
  font-family: 'ProvidenceSans', Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--amarillo-paja);
  margin-bottom: 0.8rem;
}

.price-amount {
  font-family: 'Recoleta', Georgia, serif;
  font-size: 3.3rem;
  color: var(--oak-leaf);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.price-amount sup {
  font-size: 1.3rem;
  vertical-align: super;
}

.price-deadline {
  font-family: 'ProvidenceSans', Georgia, serif;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--golden-light);
  font-weight: 600;
  margin-bottom: 1.4rem;
}

.price-card .btn-primary {
  width: 100%;
  text-align: center;
}

.price-card:hover:not(.featured) {
  transform: translateY(-4px);
  border-color: var(--amarillo-paja);
}

@media (min-width: 1025px) {
  .pricing-grid {
    max-width: 960px;
    grid-template-columns: repeat(3, 1fr);
  }

  .price-card.featured {
    transform: scale(1.03);
  }
}

/* Countdown */
#countdown {
  text-align: center;
  margin-bottom: 3rem;
}

.cd-label {
  font-family: 'ProvidenceSans', Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-green);
  margin-bottom: 1rem;
  display: block;
}

.cd-units {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;

}

.cd-unit {

  text-align: center;
}

.cd-num {
  font-family: 'Recoleta', Georgia, serif;
  font-size: 2.9rem;
  color: var(--beige-tierra);
  line-height: 1;
  display: block;
}

.cd-txt {
  font-family: 'ProvidenceSans', Georgia, serif;
  font-size: 0.64rem;
  color: var(--azul-cielo);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 0.3rem;
  display: block;
}

/* Pago */
.payment-info {
  max-width: 700px;
  margin: 4rem auto 0;
  text-align: center;
}

.payment-info h4 {
  font-family: 'Recoleta', Georgia, serif;
  color: var(--beige-tierra);
  margin-bottom: 1rem;
}

.payment-info p {
  font-family: 'clother', 'ProvidenceSans', Georgia, serif;
  font-weight: 400;
  color: var(--beige-tierra);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.bank-data {
  background: var(--sage-green);
  border: 1px solid rgba(99, 100, 69, 0.18);
  border-radius: 12px;
  padding: 1.4rem 1.8rem;
  margin-top: 1.4rem;
  text-align: center;
  margin-bottom: 32px;
}

.bank-data p {
  font-family: 'clother';
  color: var(--oak-leaf);
  font-size: 0.84rem;
  margin-bottom: 0.4rem;
  letter-spacing: 1px;
}

.bank-data strong {
  color: var(--soft-white);
  font-weight: 700;
}

/* ============================================================
   BOTÓN POLÍTICA DE RESERVA
   ============================================================ */
.btn-politica-reserva {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: 1px solid #636445;
  color: var(--deep-forest);
  font-family: 'Clother';
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  padding: 0.5rem 1.1rem;
  border-radius: 2rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.btn-politica-reserva:hover {
  color: var(--oak-leaf);
  background: #333415;
}

.btn-politica-reserva svg {
  flex-shrink: 0;
  opacity: 0.7;
}


/* ============================================================
   CTA FINAL
   ============================================================ */
.section-cta {
  position: relative;
  padding: 9rem 5%;
  text-align: center;
  overflow: hidden;
}

.section-cta-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-cta-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 39, 30, 0.92) 0%, rgba(123, 114, 73, 0.60) 100%);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--soft-white);
  margin-bottom: 1rem;
}

.cta-content h2 em {
  font-style: normal;
  color: var(--warm-gold);
}

.cta-content p {
  font-family: 'clother', 'ProvidenceSans', Georgia, serif;
  font-weight: 400;
  color: var(--golden-light);
  margin-bottom: 2.5rem;
  font-size: 1.06rem;
}

.cta-note {
  margin-top: 1.1rem;
  font-family: 'ProvidenceSans', Georgia, serif !important;
  font-size: 0.79rem !important;
  letter-spacing: 0.04em;
  color: var(--oak-leaf) !important;
}



/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(135deg, var(--gris-volcan), var(--earth-brown));
  padding: 4rem 5% 2rem;
  padding-bottom: calc(52px + 2rem);
  color: var(--soft-white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(99, 100, 69, 0.20);
}

.footer-brand h3 {
  font-size: 1.3rem;
  color: var(--oak-leaf);
  margin-bottom: 0.8rem;
}

.footer-brand h3 span {
  color: var(--amarillo-paja);
}

.footer-brand p {
  font-family: 'clother', 'ProvidenceSans', Georgia, serif;
  font-weight: 400;
  color: var(--oak-leaf);
  font-size: 0.87rem;
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'clother', 'ProvidenceSans', Georgia, serif;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin-bottom: 1.1rem;
}

.tarjeta {
  margin-top: 9px;
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 14px 18px;
  background: var(--oak-leaf);
  border: 1px solid rgba(45, 39, 30, .08);
  border-radius: 12px;

  transition: .25s ease;
}

.tarjeta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.tarjeta img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.tarjeta h3 {
  margin: 0;
  font-size: .8rem;
  font-family: "Clother";

  color: #D28B45;
  font-weight: 700;
}

.tarjeta p {
  margin: 4px 0 0;
  font-size: 1em;
  color: #2D271E;
  font-weight: 500;
}

@media (min-width: 701px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer-bottom {
    padding-top: 32px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    color: #E8E0D0;
  }
}

@media (min-width: 1025px) {
  .footer-top {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
#lightbox {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ============================================================
   MODAL — POLÍTICA DE RESERVA & CONTENIDOS
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(20, 16, 10, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.modal-overlay:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
}

.modal-overlay.modal-visible {
  display: flex;
}

.modal-panel {
  position: relative;
  background: var(--deep-forest);
  border: 1px solid rgba(241, 231, 120, 0.12);
  border-radius: 18px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.2rem 1.4rem 1.8rem;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(241, 231, 120, 0.2) transparent;
}

.modal-overlay:not([hidden]) .modal-panel {
  transform: translateY(0) scale(1);
}

.modal-panel::-webkit-scrollbar {
  width: 5px;
}

.modal-panel::-webkit-scrollbar-track {
  background: transparent;
}

.modal-panel::-webkit-scrollbar-thumb {
  background: rgba(241, 231, 120, 0.18);
  border-radius: 3px;
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--sage-green);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.modal-close:hover {
  background: rgba(232, 93, 83, 0.15);
  color: var(--warm-gold);
  border-color: rgba(232, 93, 83, 0.3);
}

.modal-header {
  margin-bottom: 2rem;
  padding-right: 2rem;
}

.modal-eyebrow {
  display: block;
  font-family: 'ProvidenceSans', Georgia, serif;
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin-bottom: 0.6rem;
}

.modal-header h3 {
  font-family: 'Recoleta', Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--soft-white);
  line-height: 1.15;
}

.modal-body {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: 2rem;
}

.modal-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0.8rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(99, 100, 69, 0.15);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  transition: border-color 0.2s;
}

.modal-item:hover {
  border-color: rgba(99, 100, 69, 0.30);
}

.modal-item--alert {
  border-color: rgba(232, 93, 83, 0.22);
  background: rgba(232, 93, 83, 0.04);
}

.modal-item--alert:hover {
  border-color: rgba(232, 93, 83, 0.38);
}

.modal-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(241, 231, 120, 0.08);
  border: 1px solid rgba(241, 231, 120, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amarillo-paja);
  flex-shrink: 0;
}

.modal-item--alert .modal-item-icon {
  background: rgba(232, 93, 83, 0.10);
  border-color: rgba(232, 93, 83, 0.22);
  color: var(--warm-gold);
}

.modal-item-title {
  font-family: 'Recoleta', Georgia, serif;
  font-size: 0.92rem;
  color: var(--amarillo-paja);
  margin-bottom: 0.3rem !important;
  line-height: 1.2;
}

.modal-item p:not(.modal-item-title) {
  font-family: 'clother', 'ProvidenceSans', Georgia, serif;
  font-size: 0.84rem;
  color: var(--sage-green);
  line-height: 1.75;
  margin: 0 !important;
}

.modal-item p strong {
  color: var(--soft-white);
  font-weight: 700;
}

.modal-footer {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: stretch;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(99, 100, 69, 0.15);
}

.modal-footer .btn-primary {
  text-align: center;
  min-width: 140px;
}

.modal-btn-cerrar {
  background: none;
  border: 1px solid rgba(99, 100, 69, 0.3);
  color: var(--sage-green);
  font-family: "clother";
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
  text-align: center;
  width: 100%;
}

.modal-btn-cerrar:hover {
  border-color: var(--sage-green);
  color: var(--soft-white);
}

body.modal-open {
  overflow: hidden;
}

@media (min-width: 561px) {
  .modal-panel {
    padding: 2.8rem 2.4rem 2.2rem;
    border-radius: 24px;
  }

  .modal-item {
    grid-template-columns: 40px 1fr;
    padding: 1.1rem 1.2rem;
  }

  .modal-item-icon {
    width: 40px;
    height: 40px;
  }

  .modal-footer {
    flex-direction: row;
    align-items: center;
  }

  .modal-footer .btn-primary {
    flex: 1;
  }

  .modal-btn-cerrar {
    width: auto;
  }
}

/* ============================================================
   STICKY COUNTDOWN BAR
   ============================================================ */
.sticky-countdown {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: #1a1510;
  border-top: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  height: 84px;
  transition: transform 0.35s;
}

.scd-shape-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
  transform: translateY(calc(-100% + 2px));
  height: 41px;
}

.scd-shape-top svg {
  display: block;
  width: auto;
  height: 100%;
  min-width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.sticky-countdown.bar-hidden {
  transform: translateY(110%);
}

.scd-pill {
  position: absolute;
  top: -29px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amarillo-paja);
  color: var(--gris-volcan);
  font-family: 'clother';
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.22rem 0.9rem;
  border-radius: 2rem;
  white-space: nowrap;
  pointer-events: none;
}

.scd-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Mobile: ocultar label y dot */
.scd-dot {
  display: none;
}

.scd-label {
  display: none;
}

.scd-units {
  display: flex;
  align-items: center;
}

.scd-unit {
  display: flex;
  align-items: baseline;
  gap: 3px;
  padding: 0 0.6rem;
  border-right: 1px solid rgba(241, 231, 120, 0.10);
}

.scd-unit:last-of-type {
  border-right: none;
}

.scd-num {
  font-family: 'Recoleta', Georgia, serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--amarillo-paja);
  line-height: 1;
  min-width: 2ch;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.scd-txt {
  font-family: 'ProvidenceSans', Georgia, serif;
  font-weight: 700;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amarillo-paja);
}

.scd-sep {
  font-size: 0.9rem;
  color: rgba(241, 231, 120, 0.18);
  padding-bottom: 1px;
  line-height: 1;
  user-select: none;
}

.scd-right {
  flex-shrink: 0;
}

.scd-cta {
  white-space: nowrap;
  padding: 3px 16px;
}

@media (min-width: 481px) {
  .sticky-countdown {
    padding: 0 5%;
  }

  .scd-dot {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amarillo-paja);
    animation: scd-pulse 2s infinite;
  }

  .scd-label {
    display: block;
    font-family: "clother";
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(241, 231, 120, 0.5);
    white-space: nowrap;
  }

  .scd-unit {
    padding: 0 0.85rem;
  }

  .scd-num {
    font-size: 1.65rem;
  }
}

/* bOTONES DEL MODALE DE RESERVA */
.mr-choice {
  width: 100%;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.mr-choice:hover {
  border-color: rgba(241, 231, 120, 0.4);
}

.mr-choice .mr-monto {
  font-family: 'Recoleta', Georgia, serif;
  font-size: 1.15rem;
  color: var(--amarillo-paja);
  margin: 0.2rem 0 0;
}

.mr-choice.mr-loading {
  opacity: 0.55;
  pointer-events: none;
}