/* ══════════ Página de invitaciones · complementa estilos.css ══════════ */

.hero-boda::before { background: rgba(110, 31, 51, .1); }
.hero-boda::after { background: rgba(26, 165, 167, .13); }

.nota-precio {
  margin-top: 1.6rem;
  font-size: .93rem;
  color: var(--gris);
}
.nota-precio strong { color: var(--azul); font-weight: 700; }

/* ── Maqueta con la invitación real ── */
.telefono-real { display: block; text-decoration: none; transition: transform .3s; }
.telefono-real:hover { transform: translateY(-6px); }
.telefono-real .telefono-pantalla { padding: 0; display: block; }

.tel-foto {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
}
.tel-velo {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(74,20,34,.15) 0%, rgba(250,245,236,0) 40%, #FAF5EC 88%);
}
.tel-contenido {
  position: absolute;
  left: 0; right: 0; bottom: 8%;
  text-align: center;
  padding: 0 .9rem;
}
.telefono-real .tel-nombres { font-size: 1.5rem; }
.tel-pie {
  display: block;
  text-align: center;
  font-size: .8rem;
  color: var(--gris-claro);
  margin-top: .9rem;
}

/* ── Planes (cuatro en una fila en escritorio) ── */
.planes {
  align-items: stretch;
  grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
  gap: 1rem;
}
.plan {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 1.8rem 1.3rem;
}
.plan h3 { font-size: 1.1rem; }
.plan .lista-check li { font-size: .88rem; }
.plan .lista-check { flex: 1 1 auto; margin-bottom: 1.6rem; }
.plan .btn { justify-content: center; }

.plan.destacado {
  border-color: var(--turquesa);
  box-shadow: var(--sombra-alta);
}
.cinta {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--degradado);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 20px;
  white-space: nowrap;
}

/* .tarjeta p tiene más especificidad, por eso van calificados con .plan */
.plan .precio {
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -.03em;
  margin-top: .4rem;
  color: var(--tinta);
}
.plan .precio-nota {
  font-size: .88rem;
  color: var(--gris-claro);
  margin-bottom: .4rem;
}

/* ── Preguntas frecuentes ── */
.pregunta {
  border-bottom: 1px solid var(--linea);
  padding: 1.1rem 0;
}
.pregunta summary {
  font-weight: 600;
  font-size: 1.02rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.pregunta summary::-webkit-details-marker { display: none; }
.pregunta summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--turquesa);
  transition: transform .25s;
  flex: 0 0 auto;
}
.pregunta[open] summary::after { transform: rotate(45deg); }
.pregunta p {
  color: var(--gris);
  font-size: .97rem;
  margin-top: .7rem;
  max-width: 60ch;
}

/* ── Tono editorial para los títulos ── */
.titulo-editorial {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -.01em;
  font-size: clamp(1.9rem, 4.2vw, 2.9rem);
  line-height: 1.15;
}
.titulo-editorial em { font-style: italic; font-weight: 500; }
h1.titulo-editorial { font-size: clamp(2.3rem, 5.6vw, 3.7rem); }

/* ── Bodas de destino ── */
.destino {
  background: linear-gradient(150deg, #06304F, #0B4C6B 55%, #14707A);
  color: #fff;
}
.destino-rejilla { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.tarjeta-destino {
  background: rgba(255, 255, 255, .07);
  border-radius: 14px;
  padding: 1.7rem 1.5rem;
  backdrop-filter: blur(6px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14);
}
.tarjeta-destino h3 { color: #fff; margin-bottom: .5rem; }
.tarjeta-destino p { color: rgba(255, 255, 255, .8); font-size: .97rem; }

/* ── Cierre ── */
.cierre {
  background: var(--degradado);
  color: #fff;
}
.btn-blanco-borde {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .55);
}
.btn-blanco-borde:hover { background: rgba(255, 255, 255, .12); }
.btn-blanco {
  background: #fff;
  color: var(--azul);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .18);
  border: none;
}
.btn-blanco:hover { transform: translateY(-2px); }
