*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: #FFF; overflow-x: hidden; }
body {
  padding: 0 0.8rem;
}

@font-face {
  font-family: "Heart";
  src: url("fonts/Hearth_Stone.ttf");
  font-weight: normal;
  font-style: normal;
}

/* OVERLAY INICIAL */

#desktop-warning {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.warning-box {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  max-width: 400px;
  text-align: center;
}

.warning-box h2 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: #333;
}

.warning-box p {
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
}

#desktop-warning #logo {
  margin-bottom: 1rem;
}

#view-desktop {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border: 1px solid #333; /* color del borde */
  border-radius: 25px;
  background: transparent;
  text-decoration: none;
  color: #333;
  font-weight: normal;
  transition: 0.3s;
}

#view-desktop:hover {
  background: #4A5E35;
  color: #fff;
  border: none;
  transform: scale(1.1);
}

/* OVERLAY INICIAL ENDS */

/* CARTA */

/* --- NUEVO / MODIFICADO: Carta encima del hero --- */
.carta {
  position: fixed;       /* se queda fija sobre hero */
  inset: 0;              /* ocupa toda la pantalla */
  z-index: 10;           /* encima del hero */
  pointer-events: none;  /* no bloquea interacción con hero */
}

.carta-img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(0);  /* centrado horizontal + movimiento vertical */
  width: 100%;
  object-fit: cover;
  will-change: transform, opacity;
  height: 100vh;
}

.carta-arriba { 
  top: 0; 
  z-index: 2; 
}  /* 11.avif encima */

.carta-abajo { 
  bottom: 0; 
  z-index: 1; 
} /* 12.avif debajo */

/* CARTA ENDS */

/* ═══════════════════════
    HERO
═══════════════════════ */
#hero {
  position: relative;
  width: 100%; height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('img/Foto 2.webp');
  background-size: cover; background-position: center;
  animation: bgZoom 8s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
}
@media (min-width: 768px) {
  .hero-bg {
    background-image: url('img/Foto 2.webp');
    background-position: center 30%;
  }
}
@keyframes bgZoom { from{transform:scale(1.08)} to{transform:scale(1)} }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,8,5,.30) 0%, rgba(10,8,5,.10) 45%, rgba(10,8,5,.62) 100%);
}
.hero-content {
  position: absolute; top:50%; left:50%;
  transform: translate(-50%,-50%) scale(0.78);
  width: 100%; text-align: center; padding: 0 24px;
  display: flex; flex-direction: column; align-items: center;
  z-index: 2; opacity: 0;
  animation: zoomIn 4s cubic-bezier(0.16,1,0.3,1) 1.5s forwards;
}
@keyframes zoomIn { to{ opacity:1; transform:translate(-50%,-50%) scale(1); } }

.t-nos   { font-family:'Montserrat',sans-serif; font-weight:300; font-size:11px; letter-spacing:8px; color:rgb(255, 255, 255); text-transform:uppercase; margin-bottom:24px; }
.t-paulina { font-family:'Montserrat',sans-serif; font-weight:700; font-size:clamp(40px,8vw,60px); color:#f5efe6; letter-spacing:4px; line-height:1; margin-bottom:2px; text-transform:uppercase; }
.t-amp   { 
  font-family:'Cormorant Garamond',serif; 
  font-style:italic; 
  font-weight:300; 
  font-size:clamp(26px,6.5vw,36px); 
  color:#FFF; 
  line-height:1; 
  margin-bottom:2px; 
}
.t-jose  { font-family:'Montserrat',sans-serif; font-weight:700; font-size:clamp(40px,8vw,60px); color:#f5efe6; letter-spacing:2px; line-height:1; margin-bottom:30px; text-transform:uppercase; }
.t-fecha { 
  font-family:'Montserrat',sans-serif; 
  font-weight: 700;
  font-size: 18px;
  letter-spacing:7px; 
  color:rgba(255, 255, 255, 0.88); 
  text-transform:uppercase; 
}

/* ═══════════════════════
    COUNTDOWN
═══════════════════════ */
#countdown {
  background: #F2F4EE;
  padding: 72px 32px 80px;
  text-align: center;
}
.cd-title    { 
  font-family: 'Montserrat', sans-serif; 
  font-style: normal; 
  font-weight: 700; 
  font-size:clamp(32px,7vw,44px); 
  color: #2F3A23;
  text-transform: uppercase;
  letter-spacing: 2px; margin-bottom:12px; }

.cd-title .cd-subtitlespan {
  display: block;
  font-family: "Heart", cursive;
  font-size: clamp(30px, 5vw, 38px);
  font-weight: normal;
  text-transform: none;
  letter-spacing: normal;
}

.cd-subtitle { 
  font-family:'Montserrat',sans-serif; 
  font-weight:300; 
  font-size:clamp(13px,3vw,15px); 
  color:#000; 
  letter-spacing:1px; 
  margin-bottom:52px; 
}
.cd-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; max-width: 360px; margin: 0 auto;
}
@media (min-width: 640px) {
  .cd-grid { grid-template-columns: repeat(4,1fr); max-width:660px; gap:16px; }
}
.cd-card { 
  background: #c8d8b080; 
  border-radius: 12px; 
  padding: 22px 16px 30px;
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap:8px; 
}
.cd-num  { font-family:'Cormorant Garamond',serif; font-weight:300; font-size:clamp(48px,10vw,64px); color:#3D5230; line-height:1; min-width:2ch; text-align:center; }
.cd-label{ font-family:'Montserrat',sans-serif; font-weight:400; font-size:9px; letter-spacing:4px; text-transform:uppercase; color:#849669; }

/* ═══════════════════════
    DETALLES
═══════════════════════ */
#detalles {
  background: #F2F4EE;
  padding: 72px 32px 88px;
  text-align: center;
  /* separador sutil del countdown */
}

.det-title {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(32px, 7vw, 44px);
  color: #2F3A23;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.det-subtitle {
  display: block;
  font-family: "Heart", cursive;
  font-size: clamp(25px, 4vw, 32px);
  font-weight: normal;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 4rem;
  color: #2F3A23;
}

.det-title {
  text-align: center; /* esto centra todo */
}

/* Tarjeta del lugar */
.det-card {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Ícono pin */
.det-icon {
  width: 52px; height: 52px;
  background: #C1CBB6;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.det-icon svg {
  width: 22px; height: 22px;
  stroke: #2F3A23; fill: none;
  stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}

.det-lugar {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: clamp(18px, 5vw, 22px);
  color: #2F3A23;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.det-ciudad {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: #000;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* Horario */
.det-horario {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: #000;
  letter-spacing: 1px;
  margin-bottom: 36px;
}
.det-horario svg {
  width: 15px; height: 15px;
  stroke: #000; fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  flex-shrink: 0;
}

/* Botón Maps */
.det-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #2F3A23, #2F3A23);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  transition: opacity 0.3s, transform 0.2s;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: 0.5s;
}
.det-btn:hover {
  background: linear-gradient(135deg, #5F6F4A, #5F6F4A);
  color: #fff;
  transition: 0.5s;
}
.det-btn svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round;
}

.det-foto-wrap {
  width: 100%;
  margin-top: 36px;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #DFE9D4;
}
.det-foto {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.det-foto-wrap {
  width: 100%;
  margin-top: 36px;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #DFE9D4;
  max-height: 300px;
}
.det-foto {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ═══════════════════════
    PROGRAMA
═══════════════════════ */
#programa {
  background: #F2F4EE;
  padding: 72px 32px 88px;
  text-align: center;
  
}

.prog-title    { 
  font-family: 'Montserrat', sans-serif; 
  font-style: normal; 
  font-weight: 700; 
  font-size:clamp(32px,7vw,44px); 
  color: #2F3A23;
  text-transform: uppercase;
  letter-spacing: 2px; 
  margin-bottom: 4rem; 
}

.prog-subtitle {
  display: block;
  font-family: "Heart", cursive;
  font-size: clamp(30px, 5vw, 38px);
  font-weight: normal;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 6px;
}

.prog-title {
  text-align: center; /* esto centra todo */
}

/* ── MOBILE: lista vertical ── */
.prog-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
}

/* línea vertical conectora */
.prog-list::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 40px; bottom: 40px;
  width: 1px;
  background: rgba(114,131,89,0.25);
}

.prog-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 0 0 32px;
  position: relative;
}
.prog-item:last-child { padding-bottom: 0; }

/* Círculo con icono — sistema de máscara */
.prog-icon {
  flex-shrink: 0;
  width: 80px; height: 80px;
  border: 1.5px solid rgba(114,131,89,0.30);
  border-radius: 50%;
  background: #F2F4EE;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  overflow: hidden;
}

/* Imagen de icono via CSS mask — funciona con SVG y PNG */
.prog-icon-img {
  width: 50px;
  height: 50px;
  /* Color por defecto — sobreescrito por nth-child */
  background-color: #000;
  /* La máscara se define inline en el HTML con la ruta de tu imagen */
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  flex-shrink: 0;
}

.prog-text { text-align: left; padding-top: 6px; }

.prog-hora {
  display: inline-block;
  font-family: 'Montserrat',sans-serif;
  font-weight: 500; font-size: 11px;
  letter-spacing: 2px;
  background: #5f6f4a;
  color: #fff;
  border-radius: 20px;
  padding: 3px 10px;
  margin-bottom: 6px;
}

.prog-nombre {
  font-family: 'Cormorant Garamond',serif;
  font-weight: 400; font-size: 20px;
  color: #000;
  display: block;
  margin-bottom: 2px;
}

.prog-desc {
  font-family: 'Montserrat',sans-serif;
  font-weight: 300; font-size: 12px;
  color: #000; letter-spacing: 0.5px;
}

/* ── DESKTOP: timeline horizontal ── */
@media (min-width: 768px) {
  #programa { padding: 80px 48px 96px; }

  .prog-list {
    flex-direction: row;
    align-items: flex-start;
    max-width: 1000px;
    gap: 0;
  }

  /* línea horizontal */
  .prog-list::before {
    left: 0; right: 0;
    top: 40px; bottom: auto;
    width: auto; height: 1px;
  }

  .prog-item {
    flex: 1;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0 8px 0;
  }

  .prog-icon { margin-top: 0; }

  .prog-text { text-align: center; padding-top: 0; }

  .prog-hora { display: block; margin-bottom: 8px; }

  .prog-nombre { font-size: 18px; }
}

/* ═══════════════════════
    REGALOS
═══════════════════════ */
#regalos {
  background: #F2F4EE;
  padding: 72px 32px 88px;
  text-align: center;
  
}

.reg-title {
  font-family: 'Montserrat', sans-serif;
  font-style: normal; font-weight: 700;
  font-size: clamp(32px, 7vw, 44px);
  color: #728359;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.reg-subtitle {
  display: block;
  font-family: "Heart", cursive;
  font-size: clamp(30px, 5vw, 38px);
  font-weight: normal;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 6px;
}

.reg-title {
  text-align: center; /* esto centra todo */
}

.reg-nota {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: clamp(13px, 3.5vw, 15px);
  color: #5F6F4A;
  line-height: 1.75;
  max-width: 380px;
  margin: 0 auto 44px;
  padding: 0 32px;
}

.reg-lista {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Acordeón / tarjeta ── */
.reg-card {
  background: #E8EDE0;
  border-radius: 10px;
  overflow: hidden;
}

.reg-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}

/* Logo placeholder — se reemplaza con <img> */
.reg-logo {
  height: 32px;
  display: flex;
  align-items: center;
}
.reg-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
/* Fallback texto si no hay imagen */
.reg-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  color: #3D5230;
}

/* Chevron */
.reg-chevron {
  width: 18px; height: 18px;
  stroke: #3D5230; fill: none;
  stroke-width: 2; stroke-linecap: round;
  transition: transform 0.35s ease;
  flex-shrink: 0;
}
.reg-card.open .reg-chevron {
  transform: rotate(180deg);
}

/* Contenido expandible */
.reg-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.reg-card.open .reg-body {
  max-height: 300px;
}

.reg-body-inner {
  padding: 0 22px 24px;

  padding-top: 20px;
}

/* Tarjeta de tienda — solo link */
.reg-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  border: 1.5px solid #728359;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #3D5230;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.reg-link-btn:hover { background: #728359; color: #fff; }
.reg-link-btn svg {
  width: 13px; height: 13px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round;
}

/* Datos transferencia */
.reg-datos {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.reg-dato {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.reg-dato-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #849669;
}
.reg-dato-valor {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #3D5230;
  letter-spacing: 0.5px;
}

/* ═══════════════════════
    DRESS CODE
═══════════════════════ */
#dresscode {
  background: #F2F4EE;
  padding: 72px 32px 88px;
  text-align: center;
  
}

.dc-title {
  font-family: 'Montserrat', sans-serif;
  font-style: normal; font-weight: 700;
  font-size: clamp(32px, 7vw, 44px);
  color: #2F3A23;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.dc-subtitle {
  display: block;
  font-family: "Heart", cursive;
  font-size: clamp(30px, 5vw, 38px);
  font-weight: normal;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 6px;
}

.dc-title {
  text-align: center; /* esto centra todo */
}

.dc-nota {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: clamp(12px, 3vw, 14px);
  color: #000;
  letter-spacing: 0.5px;
  line-height: 1.8;
  max-width: 320px;
  margin: 0 auto 10px;
}

.dc-nota .dc-color {
  display: inline-block;
  width: 11px; height: 11px;
  background: #314b68;
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 4px 1px;
}

.dc-etiqueta {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(13px, 3.5vw, 15px);
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #5F6F4A;
  margin-bottom: 20px;
}

/* Espacio ilustración */
.dc-ilustracion {
  max-width: 150px;
  margin: 0 auto;
}
.dc-ilustracion img {
  width: 100%;
  display: block;
}

.dresscode-img {
  height: 200px;
  background: linear-gradient(0deg, #000, #000);
  -webkit-mask: url("img/dresscode.svg") no-repeat center;
  mask: url("img/dresscode.svg") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.dresscode-img-png {
  width: 200px;
  height: auto;
}

/* ── Timeline gradient ── */
/* Vertical line gradient */
.prog-list::before {
  background: linear-gradient(to bottom, #728359, #A6B98B, #B5C99A, #9FAF7A) !important;
}
/* Desktop horizontal line */
@media (min-width: 768px) {
  .prog-list::before {
    background: linear-gradient(to right, #728359, #A6B98B, #B5C99A, #9FAF7A) !important;
  }
}

/* ── Hotel card per-color ── */
.hosp-card:nth-child(1) { background: #72835928; border-left: 3px solid #728359; }
.hosp-card:nth-child(1):hover { background: #72835948; transform: translateY(-3px); }
.hosp-card:nth-child(1) .hosp-card-icon { border-color: #728359; }
.hosp-card:nth-child(1) .hosp-card-icon svg { stroke: #728359; }
.hosp-card:nth-child(1) .hosp-card-name { color: #728359; }
.hosp-card:nth-child(1) .hosp-card-cta { color: #728359; opacity: 0.9; }
.hosp-card:nth-child(2) { background: #A6B98B28; border-left: 3px solid #A6B98B; }
.hosp-card:nth-child(2):hover { background: #A6B98B48; transform: translateY(-3px); }
.hosp-card:nth-child(2) .hosp-card-icon { border-color: #A6B98B; }
.hosp-card:nth-child(2) .hosp-card-icon svg { stroke: #A6B98B; }
.hosp-card:nth-child(2) .hosp-card-name { color: #A6B98B; }
.hosp-card:nth-child(2) .hosp-card-cta { color: #A6B98B; opacity: 0.9; }
.hosp-card:nth-child(3) { background: #B5C99A28; border-left: 3px solid #B5C99A; }
.hosp-card:nth-child(3):hover { background: #B5C99A48; transform: translateY(-3px); }
.hosp-card:nth-child(3) .hosp-card-icon { border-color: #B5C99A; }
.hosp-card:nth-child(3) .hosp-card-icon svg { stroke: #B5C99A; }
.hosp-card:nth-child(3) .hosp-card-name { color: #B5C99A; }
.hosp-card:nth-child(3) .hosp-card-cta { color: #B5C99A; opacity: 0.9; }
.hosp-card:nth-child(4) { background: #9FAF7A28; border-left: 3px solid #9FAF7A; }
.hosp-card:nth-child(4):hover { background: #9FAF7A48; transform: translateY(-3px); }
.hosp-card:nth-child(4) .hosp-card-icon { border-color: #9FAF7A; }
.hosp-card:nth-child(4) .hosp-card-icon svg { stroke: #9FAF7A; }
.hosp-card:nth-child(4) .hosp-card-name { color: #9FAF7A; }
.hosp-card:nth-child(4) .hosp-card-cta { color: #9FAF7A; opacity: 0.9; }
.hosp-card:nth-child(5) { background: #72835928; border-left: 3px solid #728359; }
.hosp-card:nth-child(5):hover { background: #72835948; transform: translateY(-3px); }
.hosp-card:nth-child(5) .hosp-card-icon { border-color: #728359; }
.hosp-card:nth-child(5) .hosp-card-icon svg { stroke: #728359; }
.hosp-card:nth-child(5) .hosp-card-name { color: #728359; }
.hosp-card:nth-child(5) .hosp-card-cta { color: #728359; opacity: 0.9; }
.hosp-card:nth-child(6) { background: #A6B98B28; border-left: 3px solid #A6B98B; }
.hosp-card:nth-child(6):hover { background: #A6B98B48; transform: translateY(-3px); }
.hosp-card:nth-child(6) .hosp-card-icon { border-color: #A6B98B; }
.hosp-card:nth-child(6) .hosp-card-icon svg { stroke: #A6B98B; }
.hosp-card:nth-child(6) .hosp-card-name { color: #A6B98B; }
.hosp-card:nth-child(6) .hosp-card-cta { color: #A6B98B; opacity: 0.9; }
.hosp-card:nth-child(7) { background: #B5C99A28; border-left: 3px solid #B5C99A; }
.hosp-card:nth-child(7):hover { background: #B5C99A48; transform: translateY(-3px); }
.hosp-card:nth-child(7) .hosp-card-icon { border-color: #B5C99A; }
.hosp-card:nth-child(7) .hosp-card-icon svg { stroke: #B5C99A; }
.hosp-card:nth-child(7) .hosp-card-name { color: #B5C99A; }
.hosp-card:nth-child(7) .hosp-card-cta { color: #B5C99A; opacity: 0.9; }
.hosp-card:nth-child(8) { background: #9FAF7A28; border-left: 3px solid #9FAF7A; }
.hosp-card:nth-child(8):hover { background: #9FAF7A48; transform: translateY(-3px); }
.hosp-card:nth-child(8) .hosp-card-icon { border-color: #9FAF7A; }
.hosp-card:nth-child(8) .hosp-card-icon svg { stroke: #9FAF7A; }
.hosp-card:nth-child(8) .hosp-card-name { color: #9FAF7A; }
.hosp-card:nth-child(8) .hosp-card-cta { color: #9FAF7A; opacity: 0.9; }
.hosp-card:nth-child(9) { background: #72835928; border-left: 3px solid #728359; }
.hosp-card:nth-child(9):hover { background: #72835948; transform: translateY(-3px); }
.hosp-card:nth-child(9) .hosp-card-icon { border-color: #728359; }
.hosp-card:nth-child(9) .hosp-card-icon svg { stroke: #728359; }
.hosp-card:nth-child(9) .hosp-card-name { color: #728359; }
.hosp-card:nth-child(9) .hosp-card-cta { color: #728359; opacity: 0.9; }
.hosp-card:nth-child(10) { background: #A6B98B28; border-left: 3px solid #A6B98B; }
.hosp-card:nth-child(10):hover { background: #A6B98B48; transform: translateY(-3px); }
.hosp-card:nth-child(10) .hosp-card-icon { border-color: #A6B98B; }
.hosp-card:nth-child(10) .hosp-card-icon svg { stroke: #A6B98B; }
.hosp-card:nth-child(10) .hosp-card-name { color: #A6B98B; }
.hosp-card:nth-child(10) .hosp-card-cta { color: #A6B98B; opacity: 0.9; }
.hosp-card:nth-child(11) { background: #B5C99A28; border-left: 3px solid #B5C99A; }
.hosp-card:nth-child(11):hover { background: #B5C99A48; transform: translateY(-3px); }
.hosp-card:nth-child(11) .hosp-card-icon { border-color: #B5C99A; }
.hosp-card:nth-child(11) .hosp-card-icon svg { stroke: #B5C99A; }
.hosp-card:nth-child(11) .hosp-card-name { color: #B5C99A; }
.hosp-card:nth-child(11) .hosp-card-cta { color: #B5C99A; opacity: 0.9; }
.hosp-card:nth-child(12) { background: #9FAF7A28; border-left: 3px solid #9FAF7A; }
.hosp-card:nth-child(12):hover { background: #9FAF7A48; transform: translateY(-3px); }
.hosp-card:nth-child(12) .hosp-card-icon { border-color: #9FAF7A; }
.hosp-card:nth-child(12) .hosp-card-icon svg { stroke: #9FAF7A; }
.hosp-card:nth-child(12) .hosp-card-name { color: #9FAF7A; }
.hosp-card:nth-child(12) .hosp-card-cta { color: #9FAF7A; opacity: 0.9; }

.hashtag {
  margin-top: 4rem;
  text-align: center;
}

/* ═══════════════════════
    NO NIÑOS
═══════════════════════ */
#ninos {
  background: #F2F4EE;
  padding: 64px 32px 30px;
  text-align: center;

}
.ninos-icon {
  width: 60px; height: 60px;
  border: 2px solid rgba(114,131,89,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.ninos-icon svg { width:26px; height:26px; stroke:#728359; fill:none; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
.ninos-title { 
  font-family:'Montserrat',sans-serif; 
  font-weight:700; 
  font-size:clamp(16px,4vw,20px); 
  color:#2F3A23; 
  text-transform:uppercase; 
  letter-spacing:3px; 
  margin-bottom:16px; }
.ninos-text { font-family:'Cormorant Garamond',serif; font-weight:300; font-size:clamp(18px,4.5vw,22px); color:#000; line-height:1.7; max-width:360px; margin:0 auto; font-style:italic; }

/* ═══════════════════════
    HASHTAG
═══════════════════════ */
#hashtag {
  padding: 72px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(45deg, #4A5E35 0%, #728359 50%, #9FAF7A 100%), url(img/lino_background.webp);
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
}

@media (max-width: 768px) {
  #hashtag {
    background-size: auto;
  }
}

.ht-label { font-family:'Montserrat',sans-serif; font-weight:300; font-size:11px; letter-spacing:6px; color:rgba(255,255,255,0.8); text-transform:uppercase; margin-bottom:20px; position:relative; }
.ht-tag {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #2F3A23;
  font-size:clamp(28px,8vw,48px);
  text-decoration:none;
  letter-spacing:2px;
  position:relative;
  display:inline-block;
  transition: transform 0.3s, text-shadow 0.3s;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.ht-tag:hover { transform: scale(1.05); text-shadow: 0 4px 30px rgba(0,0,0,0.25); }
.ht-hint { font-family:'Montserrat',sans-serif; font-weight:300; font-size:11px; letter-spacing:3px; color:#000; text-transform:uppercase; margin-top:16px; position:relative; }

/* ═══════════════════════
    RSVP
═══════════════════════ */
#rsvp {
  background: #F2F4EE;
  padding: 72px 32px 44px;

}
.rsvp-header { text-align:center; margin-bottom:40px; }
.rsvp-title { font-family:'Montserrat',sans-serif; font-weight:700; font-size:clamp(20px,5vw,28px); color:#2F3A23; text-transform:uppercase; letter-spacing:3px; margin-bottom:10px; }
.rsvp-subtitle { font-family:'Montserrat',sans-serif; font-weight:300; font-size:13px; color:#000; letter-spacing:1px; }
.rsvp-subtitlespan {
  display: block;
  font-family: "Heart", cursive;
  font-size: clamp(40px, 6vw, 30px);
  font-weight: normal;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 6px;
}


.rsvp-form {
  max-width: 420px; margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 40px rgba(114,131,89,0.10);
  border: 1px solid rgba(114,131,89,0.12);
}

.rsvp-field { margin-bottom: 22px; }
.rsvp-label {
  display:block;
  font-family:'Montserrat',sans-serif; font-weight:500; font-size:11px;
  letter-spacing:2px; text-transform:uppercase; color:#000;
  margin-bottom:8px;
}
.rsvp-label span { color:#728359; margin-left:2px; }

.rsvp-input, .rsvp-select, .rsvp-textarea {
  width:100%; padding:12px 14px;
  background: #EBF0E4;
  border: 1px solid rgba(114,131,89,0.20);
  border-radius: 8px;
  font-family:'Montserrat',sans-serif; font-weight:300; font-size:14px;
  color:#3D5230;
  outline: none;
  transition: border-color 0.3s;
  box-sizing: border-box;
}
.rsvp-input:focus, .rsvp-select:focus, .rsvp-textarea:focus {
  border-color: #728359;
}
.rsvp-input[readonly] { opacity:0.7; cursor:default; }
.rsvp-textarea { resize:vertical; min-height:90px; }

/* Radio asistencia */
.rsvp-radios { display:flex; gap:12px; flex-wrap:wrap; }
.rsvp-radio-opt {
  flex:1; min-width:120px;
  display:flex; align-items:center; justify-content:center; gap:8px;
  padding:12px;
  border: 1.5px solid rgba(114,131,89,0.25);
  border-radius:8px; cursor:pointer;
  font-family:'Montserrat',sans-serif; font-weight:400; font-size:13px;
  color:#5F6F4A; transition:all 0.25s;
}
.rsvp-radio-opt input { display:none; }
.rsvp-radio-opt.selected { border-color:#728359; background:rgba(114,131,89,0.08); color:#728359; font-weight:500; }
.rsvp-radio-opt.selected-no { border-color:#9FAF7A; background:rgba(114,131,89,0.10); color:#9FAF7A; font-weight:500; }

/* Acompañantes */
#rsvp-acomp { margin-bottom:22px; }
.rsvp-acomp-item { margin-bottom:10px; }

/* Alergias checkboxes */
.rsvp-alergias { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.rsvp-check {
  display:flex; align-items:center; gap:8px;
  font-family:'Montserrat',sans-serif; font-weight:300; font-size:12px; color:#5F6F4A;
  cursor:pointer;
}
.rsvp-check input[type=checkbox] { display:none; }
.rsvp-checkmark {
  width:18px; height:18px; flex-shrink:0;
  border:1.5px solid rgba(114,131,89,0.35); border-radius:4px;
  display:flex; align-items:center; justify-content:center;
  transition:all 0.2s;
}
.rsvp-check input:checked + .rsvp-checkmark { background:#728359; border-color:#728359; }
.rsvp-check input:checked + .rsvp-checkmark::after { content:'✓'; font-size:11px; color:#fff; font-weight:700; }

/* Otras alergias */
.rsvp-otras { margin-top:10px; }

/* Submit */
.rsvp-btn {
  width:100%; padding:15px;
  background: linear-gradient(135deg, #2F3A23, #2F3A23);
  border:none; border-radius:8px; cursor:pointer;
  font-family:'Montserrat',sans-serif; font-weight:600; font-size:12px;
  letter-spacing:3px; text-transform:uppercase; color:#fff;
  transition:opacity 0.3s, transform 0.2s;
  margin-top:8px;
  display:flex; align-items:center; justify-content:center; gap:10px;
}
.rsvp-btn:hover { opacity:0.9; transform:translateY(-1px); }
.rsvp-btn svg { width:16px; height:16px; stroke:#fff; fill:none; stroke-width:2; stroke-linecap:round; }

/* Success */
#rsvp-success {
  display:none; text-align:center; padding:40px 20px;
}
.rsvp-success-icon { font-size:48px; margin-bottom:16px; }
.rsvp-success-title { font-family:'Montserrat',sans-serif; font-weight:700; font-size:18px; letter-spacing:2px; text-transform:uppercase; color:#9FAF7A; margin-bottom:10px; }
.rsvp-success-text { font-family:'Cormorant Garamond',serif; font-style:italic; font-size:20px; color:#5F6F4A; }

/* Disabled block */
.rsvp-blocked { opacity:0.4; pointer-events:none; }

/* ═══════════════════════
  ILUSTRACIÓN
═══════════════════════ */

/* Espacio ilustración */
#ilustracion {
  padding: 72px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.il-ilustracion {
  margin: 0 auto;
}

.il-ilustracion img {
  width: 100%;
  display: block;
}

.ilustracion-img {
  height: 200px;
  background: linear-gradient(270deg, #666, #666);
  -webkit-mask: url("img/mesa.svg") no-repeat center;
  mask: url("img/mesa.svg") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.ilustracion-img2 {
  height: 200px;
  background: linear-gradient(270deg, #728359, #A6B98B, #B5C99A, #9FAF7A, #9FAF7A);
  -webkit-mask: url("img/celebracion.svg") no-repeat center;
  mask: url("img/celebracion.svg") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

/* DECORACIÓN */

.seccion-relativa {
  position: relative;
}

.decoracion {
  position: absolute;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

/* Posiciones específicas */
.decoracion-gal {
  width: 80px;
  left: 40px;
  top: 190px;
}

@media (min-width: 768px) {
  .decoracion-gal {
    width: 100px;
    left: 25%;
    transform: translateX(-50%);
    top: 135px;
  }
}

.decoracion-hashtag {
  width: 150px;
  height: 150px;
  right: 10%;
  transform: translateX(-50%);
  bottom: 0;

  background-color: #ffffff4d; /* aquí cambias el color */

  -webkit-mask: url("img/pokemon_Mesa de trabajo 1.svg") no-repeat center;
  mask: url("img/pokemon_Mesa de trabajo 1.svg") no-repeat center;

  -webkit-mask-size: contain;
  mask-size: contain;
}

@media (max-width: 768px) {
  .decoracion-hashtag {
    width: 150px;
    right: -20%;
    top: 50%;
    transform: translateY(-50%);
  }
}

.decoracion-gallery {
  width: 350px;
  right: -230px;
  opacity: 0.1 !important;
  bottom: 20px;
  z-index: 0;
}

/* DECORACIÓN ENDS */

/* GALLERY */

.gallery {
  position: relative;
  background:
    linear-gradient(#2F3A23, #5F6F4A), url(img/lino_background.webp);
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
}

.gallery-inner {
  padding: 160px 20px 200px; /* más aire abajo */
}

.gallery-wrap {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 120px; /* aire abajo */
}

.gallery-wrap::after {
  content: "";
  display: block;
  padding-top: 65%; /* controla la altura total */
}

.gallery2 {
  position: relative;
  background:
    linear-gradient(#2F3A23, #5F6F4A), url(img/lino_background.webp);
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
}


.foto-card {
  position: absolute;
  background:
    linear-gradient(rgba(255,255,255,0.94), rgba(255,255,255,0.94)),
    url('img/lino_background.webp');
  background-size: cover;
  background-position: center;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  padding: 0.5rem;
  background-blend-mode: multiply;
  box-shadow: 9px 10px 7px rgb(0 0 0 / 25%);
}

.foto-card.recta {
  width: 420px;
  aspect-ratio: 3 / 4; /* vertical elegante */
  top: -40px;
  right: 20px;
  z-index: 1;
}

.foto-card.arco {
  width: 420px;
  aspect-ratio: 3 / 5;

  padding: 0.5rem; /* borde visible */

  background:
    linear-gradient(rgba(255,255,255,0.94), rgba(255,255,255,0.94)),
    url('img/lino_background.webp');

  background-size: cover;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);

  border-radius: 220px 220px 0 0;
  overflow: visible; /* 👈 importante */
  background-blend-mode: multiply;
  box-shadow: 9px 10px 7px rgb(0 0 0 / 25%);
  z-index: 2;
  top: 60px;
}


.foto-card {
  transition: transform 0.4s ease;
}

.foto-card.arco {
  transform: translateY(-10px);
}

.foto-inner,
.foto-inner img {
  width: 100%;
  height: 100%;
}

.foto-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.foto-inner img {
  object-fit: cover; /* no deformar */
}

.foto-card.arco .foto-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;

  border-radius: calc(220px - 0.5rem) calc(220px - 0.5rem) 0 0;
}

.recta .foto-inner {
  border-radius: 0;
}

.arco .foto-inner {
  border-radius: 50% 50% 0 0;
}

.foto-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 640px) {

  .gallery-inner {
    padding: 200px 20px 200px; /* más aire abajo */
  }

  .foto-card.recta,
  .foto-card.arco {
    width: 260px;
  }

  .foto-card.recta {
    aspect-ratio: 3 / 4;
    top: -100px;
    right: 0;
  }

  .foto-card.arco {
    width: 260px;
    border-radius: 140px 140px 0 0;
    padding: 0.5rem;
    top: 150px;
  }

  .foto-card.arco .foto-inner {
    border-radius: calc(140px - 0.5rem) calc(140px - 0.5rem) 0 0;
  }
}


@media (max-width: 768px) {
  .gallery-wrap::after {
    padding-top: 90%;
  }
}

/* GALLERY ENDS */

/* ═══════════════════════
   GALLERY + CONTENT (sin fotos, con sección encima)
═══════════════════════ */

/* Cuando la gallery tiene contenido en vez de fotos */
.gallery.gallery-with-content,
.gallery2.gallery-with-content {
  padding: 72px 0 88px;
}

/* El contenido ocupa todo el ancho, sin fotos flotantes */
.gallery-content-wrap {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

/* Título de Mesa de Regalos sobre fondo gallery (verde oscuro) */
.gallery.gallery-with-content .reg-title {
  color: #F2F4EE;
}
.gallery.gallery-with-content .reg-subtitle {
  color: rgba(242,244,238,0.70);
}
.gallery.gallery-with-content .reg-nota {
  color: rgba(242,244,238,0.80);
}

/* Cards de regalos sobre fondo oscuro — ajustar contraste */
.gallery.gallery-with-content .reg-card {
  background: rgba(242,244,238,0.10);
  border-color: rgba(242,244,238,0.20);
}
.gallery.gallery-with-content .reg-card:hover,
.gallery.gallery-with-content .reg-card.open {
  background: rgba(242,244,238,0.18);
}
.gallery.gallery-with-content .reg-logo-text,
.gallery.gallery-with-content .reg-chevron {
  color: #F2F4EE;
  stroke: #F2F4EE;
}
.gallery.gallery-with-content .reg-dato-label {
  color: rgba(242,244,238,0.60);
}
.gallery.gallery-with-content .reg-dato-valor {
  color: #F2F4EE;
}
.gallery.gallery-with-content .reg-link-btn {
  background: rgba(242,244,238,0.15);
  color: #F2F4EE;
  border-color: rgba(242,244,238,0.30);
}
.gallery.gallery-with-content .reg-link-btn:hover {
  background: rgba(242,244,238,0.28);
}
.gallery.gallery-with-content .reg-link-btn svg {
  stroke: #F2F4EE;
}

/* ── Título RECOMENDACIONES / de hospedaje ── */
.gallery-hosp-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 6vw, 34px);
  color: #FFF;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 12px;
  text-align: center;
}

/* "de hospedaje" en cursiva arriba */
.gallery-hosp-cursive {
  display: block;
  font-family: "Heart", cursive;
  font-size: clamp(28px, 7vw, 40px);
  font-weight: normal;
  text-transform: none;
  letter-spacing: normal;
  color: #FFF;
  line-height: 1.2;
  margin-bottom: 4px;
}

/* Items de hospedaje sobre fondo gallery2 (más claro) — mantener colores */
.gallery2.gallery-with-content .hospb-item {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.gallery2.gallery-with-content .hospb-item:first-child {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.gallery2.gallery-with-content .hospb-ver-mas {
  border-color: rgba(255, 255, 255, 0.35);
}

/* ANIMACIONES */

.typewriter-text {
  white-space: nowrap;
  border-right: none; /* No queremos línea */
  visibility: hidden;
  text-wrap: auto;
}

.typewriter-name {
  white-space: nowrap;
  border-right: none; /* No queremos línea */
  visibility: hidden;
  text-wrap: auto;
}

.fade-in {
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translate(0, 0);
}

/* Desde arriba */
.fade-in-top {
  transform: translateY(-30px);
}
.fade-in-top.show {
  transform: translateY(0);
}

/* Desde abajo */
.fade-in-bottom {
  transform: translateY(30px);
}
.fade-in-bottom.show {
  transform: translateY(0);
}

/* Desde la izquierda */
.fade-in-left {
  transform: translateX(-30px);
}
.fade-in-left.show {
  transform: translateX(0);
}

/* Desde la derecha */
.fade-in-right {
  transform: translateX(30px);
}
.fade-in-right.show {
  transform: translateX(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 1s ease, transform 1s ease;
  display: block; /* para que el picture se comporte como bloque */
  max-width: 100%; /* para que no se salga */
}

.slide-in-left.show {
  opacity: 1;
  transform: translateX(0);
}

/* Opcional: que la img interna ocupe todo el contenedor */
.slide-in-left img {
  width: 100%;
  height: auto;
  display: block;
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50%);
  transition: opacity 1s ease, transform 1s ease;
  display: block; /* para que el picture se comporte como bloque */
  max-width: 100%; /* para que no se salga */
}

.slide-in-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* Opcional: que la img interna ocupe todo el contenedor */
.slide-in-rigt img {
  width: 100%;
  height: auto;
  display: block;
}

/* ANIMACIONES ENDS */

/* AUDIOS */

/* 🔘 Botón flotante */
  .music-bubble {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.2s ease;
  }

  .music-bubble:hover {
    transform: scale(1.1);
  }

  /* Overlay inicial (transparente y centrado) */
.tap-overlay {
  position: fixed;
  inset: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 260ms ease, visibility 260ms ease;
  visibility: visible;
  opacity: 1;
}

.tap-overlay-inner{
  padding: 14px 20px;
  border-radius: 12px;
  text-align: center;
  color: #728359;
}

.tap-overlay p {
   margin:0; 
   font-weight:600; 
   font-size:1.1rem; }

.tap-overlay small { 
  display:block; 
  margin-top:6px; 
  font-size:0.85rem; 
  opacity:0.95; }

/* clase para ocultar */
.tap-overlay.hidden{ opacity:0; visibility:hidden; pointer-events:none; }


/* ═══════════════════════
    PADRES Y PADRINOS
═══════════════════════ */
#padres {
  background: #F2F4EE;
  padding: 72px 32px 0;
  text-align: center;
}

.pad-title {
  font-family: 'Montserrat', sans-serif;
  font-style: normal; font-weight: 700;
  font-size: clamp(28px, 6vw, 40px);
  color: #2F3A23;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-align: center;
}

.pad-subtitle {
  display: block;
  font-family: "Heart", cursive;
  font-size: clamp(30px, 5vw, 38px);
  font-weight: normal;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 6px;
}

.pad-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(16px, 4vw, 19px);
  color: #000;
  margin-bottom: 48px;
  letter-spacing: 0.3px;
}

.pad-grupo {
  margin-bottom: 36px;
}

.pad-grupo-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #5F6F4A;
  margin-bottom: 14px;
}

/* Two names side by side */
.pad-duo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pad-persona {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.pad-sep {
  font-family: "Cormorant Garamond", cursive;
  font-size: clamp(22px, 5vw, 28px);
  color: rgba(114,131,89,0.35);
  line-height: 1;
  margin-top: 4px;
}

.pad-nombre {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(17px, 4.5vw, 21px);
  color: #000;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

.pad-rol {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #5F6F4A;
}

.pad-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, #728359, transparent);
  margin: 0 auto 32px;
}

/* ═══════════════════════
    PRELOADER
═══════════════════════ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(141deg, #2F3A23 0%, #2F3A23 50%, #5F6F4A 100%),
    url(img/lino_background.webp);
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

#preloader-logo {
  position: relative;
  width: 120px;
  max-width: 50vw;
  opacity: 0;
  transform: scale(0.85);
  animation: preloader-in 0.7s ease 0.3s forwards;
}

@keyframes preloader-in {
  to { opacity: 1; transform: scale(1); }
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

/* ═══════════════════════
    AUDIO
═══════════════════════ */
/* 🔘 Botón flotante */
  .music-bubble {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.2s ease;
  }

  .music-bubble:hover {
    transform: scale(1.1);
  }

  /* Overlay inicial (transparente y centrado) */
.tap-overlay {
  position: fixed;
  inset: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 260ms ease, visibility 260ms ease;
  visibility: visible;
  opacity: 1;
}

.tap-overlay-inner{
  padding: 14px 20px;
  border-radius: 12px;
  text-align: center;
  color: #728359;
}

.tap-overlay p {
   margin:0; 
   font-weight:600; 
   font-size:1.1rem; }

.tap-overlay small { 
  display:block; 
  margin-top:6px; 
  font-size:0.85rem; 
  opacity:0.95; }

/* clase para ocultar */
.tap-overlay.hidden{ opacity:0; visibility:hidden; pointer-events:none; }

/* AUDIO ENDS */


/* ═══════════════════════
   INV-WRAPPER (max-width centrado)
═══════════════════════ */
.inv-wrapper {
  max-width: 1920px;
  margin: 0 auto;
  background: #F2F4EE;
  position: relative;
  overflow: hidden;
}

/* Body/html setup for centered wrapper */
html, body {
  background: #FFF;
}

/* Hero and full-width sections stay full width */

/* ═══════════════════════
   COUNTDOWN — SIN CARDS
═══════════════════════ */
.cd-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
  max-width: 420px;
  margin: 0 auto;
  flex-direction: row;
}

.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.cd-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(52px, 12vw, 72px);
  color: #000;
  line-height: 1;
  min-width: 2ch;
  text-align: center;
}

.cd-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #000;
  margin-top: 1rem;
}

/* (prog-icon styles defined above in PROGRAMA section) */

/* ═══════════════════════
   WIDE IMAGE SECTIONS
═══════════════════════ */
.wide-img-section {
  width: 100%;
  padding: 0 16px;
  box-sizing: border-box;
  margin: 32px 0;
}

.wide-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  max-width: 768px;
  margin: auto;
}

/* ═══════════════════════
   PADRES — COLORES VERDES
═══════════════════════ */
.pad-sep {
  color: rgba(114,131,89,0.35) !important;
}

/* ═══════════════════════
   MISC FIXES
═══════════════════════ */
.music-bubble {
  max-width: none !important;
  left: auto;
  right: 20px;
}



/* ═══════════════════════
   HOSPEDAJE OPCIÓN B — LISTA ELEGANTE
═══════════════════════ */
#hospedaje-b {
  background: #F2F4EE;
  padding: 72px 32px 88px;
  text-align: center;
}

.hospb-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(15px, 4vw, 18px);
  color: #FFF;
  max-width: 380px;
  margin: 0 auto 48px;
  line-height: 1.7;
  text-align: center;
  padding: 0 32px;
}

.hospb-list {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 0 32px;
}

.hospb-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(114,131,89,0.15);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, padding 0.2s;
  border-radius: 6px;
  padding-left: 8px;
  padding-right: 8px;
}
.hospb-item:first-child { border-top: 1px solid rgba(114,131,89,0.15); }
.hospb-item:hover {
  background: rgba(114,131,89,0.07);
  padding-left: 16px;
}

.hospb-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.45);
  min-width: 24px;
  flex-shrink: 0;
}

.hospb-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.hospb-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(17px, 4.5vw, 20px);
  color: #FFF;
  line-height: 1.2;
  text-align: left;
}

.hospb-tag {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #FFF;
}

.hospb-arrow {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s;
}
.hospb-arrow svg {
  width: 12px; height: 12px;
  stroke: #FFF; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.hospb-item:hover .hospb-arrow {
  background: #728359;
  border-color: #728359;
}
.hospb-item:hover .hospb-arrow svg {
  stroke: #fff;
}

/* ═══════════════════════
   HOSPEDAJE B — VER MÁS
═══════════════════════ */

/* Ítems ocultos: altura 0, overflow hidden, sin opacidad */
.hospb-hidden {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom-width: 0;
  pointer-events: none;
  /* Transición suave al revelar */
  transition:
    max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity    0.35s ease,
    padding    0.35s ease,
    border-bottom-width 0.35s ease;
}

/* El primer ítem oculto también tiene border-top colapsado */
.hospb-hidden:first-of-type {
  border-top-width: 0;
}

/* Cuando se revela */
.hospb-hidden.hospb-visible {
  max-height: 100px;
  opacity: 1;
  padding-top: 18px;
  padding-bottom: 18px;
  border-bottom-width: 1px;
  pointer-events: auto;
}

/* Botón Ver más */
.hospb-ver-mas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 28px auto 0;
  padding: 12px 28px;
  background: transparent;
  border: 1.5px solid rgba(114,131,89,0.40);
  border-radius: 30px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #FFF;
  transition: background 0.3s, color 0.3s, border-color 0.3s, opacity 0.4s;
}

.hospb-ver-mas:hover {
  background: #728359;
  color: #fff;
  border-color: #728359;
}

.hospb-ver-mas-icon {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round;
  transition: transform 0.3s ease;
}

/* Cuando ya no quedan más, ocultar el botón */
.hospb-ver-mas.hospb-agotado {
  opacity: 0;
  pointer-events: none;
}

* IMAGEN ANCHA */

.imagen-ancha {
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden; /* Asegura que el contenido no se salga si la imagen es más grande */
  margin: 2rem 0;
}

.imagen-ancha .img-ancha {
  width: 100%;
  height: auto; /* Mantiene las proporciones originales */
  object-fit: cover; /* Recorta la imagen para ajustarse si es necesario */
  display: block; /* Elimina espacios adicionales en imágenes inline */
}

.imagen-ancha video {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Corta o ajusta el video para cubrir toda la pantalla */
}

/* IMAGEN ANCHA ENDS */

/* IMAGEN MITAD */
.imagen-mitad-container {
  display: flex;
  gap: 0.5rem; /* separación entre las imágenes */
  margin: 0.5rem 0;
}

.imagen-mitad {
  flex: 1; /* Ocupa el mismo ancho que la otra imagen */
  overflow: hidden;
}

.imagen-mitad .img-mitad {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gal-header { 
  text-align: center;
  padding: 0 32px;
  margin-bottom: 5rem;
  display: flex;
  flex-direction: column;
  margin-top: 4rem;
  align-items: center;
}

.gal-title { 
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(32px, 7vw, 44px);
  color: #2F3A23;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.gal-subtitle {
  display: block;
  font-family: "Heart", cursive;
  font-size: clamp(20px, 4vw, 30px);
  font-weight: normal;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 6px;
}

/* IMAGEN MITAD ENDS */

/* NEW GALLERY */

.new-gal {
  max-width: 768px;
  margin: auto;
}

/* NEW GALLERY ENDS */

/* PC y Móvil */

.PC {

}

.movil {
  display: none;
}

@media (max-width: 768px) {
  .PC {
    display: none;
  }

  .movil {
    display: block;
  }
}