/* ===========================
   PALETA GENERAL
=========================== */
/*
Azul principal: #1f3a5f
Arena cálida: #c9a88d
Arena clara fondo: #f7f4ef
Verde natural suave: #8b9c7d
Negro editorial suave: #1c1b1a
*/

/* ===========================
   CONFIGURACIÓN GLOBAL
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #f7f4ef;
  color: #1c1b1a;
  line-height: 1.65;
}

::-webkit-scrollbar {
  display: none; /* Oculta la barra de desplazamiento */
}

/* ===========================
   CONTENEDOR GLOBAL
=========================== */

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px; /* margen elegante interno */
}

/* Centrar todos los títulos con barra decorativa */
.section h2,
.reto h2,
.amenidades h2,
.ubicacion h2 {
  text-align: center;
}

/* Centrar la barra decorativa para todos los títulos que la usan */
.barra-acento {
  position: relative;
  display: inline-block; /* permite centrar y que la línea se coloque justo debajo */
}

.link-texto {
  color: #2980b9;
  text-decoration: underline;
  font-weight: 500;
  transition: 0.25s ease;
}

.link-texto:hover {
  color: #1f3a5f;
}
.barra-acento::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #c9a88d;
  margin: 10px auto 0; /* ← auto centra el bloque */
  border-radius: 2px;
}

.titulo-centrado {
  text-align: center;
  width: 100%;
}

/* ===========================
   SECCIONES UNIFICADAS
=========================== */

section {
  padding: 60px 0; /* SOLO padding vertical */
}

.section h2 {
  margin-bottom: 22px;
}

.section .intro {
  margin-bottom: 35px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  text-align: center;
}

/* ===========================
   TIPOGRAFÍA
=========================== */

/* NUEVA TIPOGRAFÍA PARA TODOS LOS TÍTULOS */
.title-playfair {
  font-family: "Inter", sans-serif; /* Igual al HERO */
  font-weight: 700;
  font-size: 46px;
  letter-spacing: -0.5px;
  color: #1c1b1a;
  text-align: center;
}

/* Barra Acento */
.barra-acento::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #c9a88d;
  margin-top: 10px;
  border-radius: 2px;
}

.title-playfair-premio {
  font-family: "Inter", sans-serif; /* Igual al HERO */
  font-weight: 700;
  font-size: 46px;
  letter-spacing: -0.5px;
  color: #1c1b1a;
}

/* ===========================
   ANIMACIONES
=========================== */

.fade-in {
  opacity: 0;
  transform: translateY(35px);
  transition: all 1.3s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0px);
}

/* ===========================
   BOTÓN PRIMARIO
=========================== */

.btn-primario {
  display: inline-block;
  padding: 14px 28px;
  background-color: #1f3a5f;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.btn-primario:hover {
  background-color: #152a41;
  transform: translateY(-2px);
}

/* BOTÓN ENTREGA — MISMO ESTILO QUE HERO */
#entregaForm button {
  width: 100%;
  padding: 15px 34px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.6px;
  background: linear-gradient(135deg, #1f3a5f 0%, #25456f 100%);
  color: #fff;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  transition: 0.25s ease;
  margin-top: 20px;
}

#entregaForm button:hover {
  background: linear-gradient(135deg, #25456f 0%, #1f3a5f 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
}

/* ===========================
   HERO — VERSIÓN PREMIUM FINAL
=========================== */

.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding-top: 100px;
  padding-bottom: 80px;

  /* Mejora visual general */
  filter: saturate(1.12) contrast(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;

  /* Gradiente más suave y moderno */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.06),
    rgba(0, 0, 0, 0.28)
  );

  backdrop-filter: blur(2px);
}

/* ---------------------------
   TARJETA TRANSLÚCIDA PREMIUM
--------------------------- */

.hero-content {
  position: relative;
  text-align: center;
  padding: 45px 48px;
  max-width: 900px;
  margin-top: 30px;

  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  border-radius: 18px;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.4);

  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---------------------------
   TÍTULO (Inter Bold)
--------------------------- */

.hero-content h1 {
  font-family: "Inter", sans-serif;
  font-size: 60px;
  font-weight: 700; /* bold elegante moderno */
  margin-bottom: 22px;
  letter-spacing: -0.5px;

  /* sombra profesional */
  text-shadow: 0px 3px 12px rgba(0, 0, 0, 0.5), 0px 0px 18px rgba(0, 0, 0, 0.25);
}

/* ---------------------------
   DESCRIPCIÓN
--------------------------- */

.hero-content p {
  font-size: 21px;
  line-height: 1.45;
  max-width: 650px;
  margin: 0 auto 40px;

  text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.35);
}

/* ---------------------------
   BOTÓN
--------------------------- */

.btn-primario {
  display: inline-block;
  padding: 15px 34px;
  background: linear-gradient(135deg, #1f3a5f 0%, #25456f 100%);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  transition: 0.25s ease;
  font-weight: 500;
  letter-spacing: 0.6px;
}

.btn-primario:hover {
  background: linear-gradient(135deg, #25456f 0%, #1f3a5f 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
}

/* ===========================
   LOGO DEL HERO — TAMAÑO AJUSTADO
=========================== */

.hero-logo {
  position: absolute;
  top: 30px; /* antes 60px — ahora más arriba */
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.hero-logo img {
  border-radius: 0;
}

.hero-logo img {
  width: 150px;
  height: auto;
  opacity: 0.92;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.35));
  transition: 0.25s ease;
  max-width: 90vw; /* ← Agregá esta línea */
}

.hero-logo img:hover {
  transform: scale(1.05);
  opacity: 1;
}

/* ===========================
   THE TOWN — MOSAICO
=========================== */

.thetown {
  text-align: center;
}

.town-mosaic {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 22px;
}

.town-mosaic img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.1);
}

.mosaic-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 22px;
}

.mosaic-big {
  height: 540px; /* Ajuste ideal */
}
.mosaic-side img {
  height: 259px; /* mitad aproximada */
}

.grid-diferenciadores {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.dif-item h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.espacio-abajo {
  margin-bottom: 70px;
}

.espacio-arriba {
  margin-top: 50px;
}

/* ===========================
   LOGO PRINCIPAL THE TOWN
=========================== */

.town-logo-wrapper {
  text-align: center;
  margin-bottom: 25px;
}

.town-logo {
  width: 360px; /* tamaño ideal en desktop */
  max-width: 90%; /* responsivo */
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.12)); /* efecto premium */
}

/* ===========================
   EL RETO — CARDS EDITORIALES
=========================== */

.reto {
  text-align: center;
}

.reto-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  width: 100%; /* 🔥 OCUPA EL 100% DEL CONTENEDOR */
  max-width: 100%; /* 🔥 SE ASEGURA QUE USE TODO EL ANCHO */
  margin-left: auto;
  margin-right: auto;
}

.reto-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.reto-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}

.reto-icon {
  font-size: 34px;
  margin-bottom: 10px;
  color: #1f3a5f;
}

.reto-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1f3a5f;
  margin-bottom: 6px;
}

.reto-card p {
  font-size: 15px;
  opacity: 0.8;
}

/* Imagen grande alineada al container */
.reto-imagen-full {
  margin-top: 30px;
  text-align: center;
}

.reto-imagen-full img {
  width: 100%;
  max-width: 1200px; /* igual al container */
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

/*----------------*/

.reto-grid-5 {
  grid-template-columns: repeat(6, 1fr);
}

.reto-grid-5 .reto-card:nth-child(1),
.reto-grid-5 .reto-card:nth-child(2) {
  grid-column: span 3;
}

.reto-grid-5 .reto-card:nth-child(3),
.reto-grid-5 .reto-card:nth-child(4),
.reto-grid-5 .reto-card:nth-child(5) {
  grid-column: span 2;
}

.reto-grid-6 {
  grid-template-columns: repeat(3, 1fr);
}

/* ===========================
   AMENIDADES — CARRUSEL
=========================== */

.amenidades {
  overflow: hidden;
}

.amenidades-carousel::-webkit-scrollbar {
  display: none;
}

.amenidades-carousel {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
}

.amenidad-card {
  position: relative;
  min-width: 520px;
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  scroll-snap-align: center;
  flex-shrink: 0;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.18);
  transition: 0.25s ease;
}

.amenidad-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenidad-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 1.7rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.amenidades-wrapper {
  width: 100%;
  position: relative;
}

/* ===========================
   FLECHAS DEL CARRUSEL
=========================== */

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 38px;
  padding: 5px 15px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
}

.arrow:hover {
  background: rgba(255, 255, 255, 1);
}

.arrow.left {
  left: 10px;
}
.arrow.right {
  right: 10px;
}

/* ===========================
   PREMIO + CALENDARIO
=========================== */

.pc-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.pc-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.pc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.09);
}

.premio-card {
  background: #1f3a5f;
  color: white;
}

.premio-card h2 {
  color: white !important;
}

/* LÍNEA DECORATIVA ALINEADA A LA IZQUIERDA SOLO PARA PREMIO Y CALENDARIO */
.premio-card .barra-acento::after,
.calendario-card .barra-acento::after {
  margin-left: 0;
  margin-right: 0;
}

.premio-monto {
  font-size: 36px;
  margin: 20px 0;
}

.pc-list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.pc-list li {
  margin-bottom: 15px;
  font-size: 18px;
}

/* Subtítulos dentro del acordeón */
.subtitulo-acordeon {
  margin-top: 30px;
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 700;
  color: #1f3a5f;
}

/* ============================================================================  
   ACORDEÓN PREMIUM — Estilo unificado para registro A/B  
============================================================================ */
.accordion-group {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.accordion-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.accordion-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.accordion-header {
  width: 100%;
  background: #ffffff;
  border: none;
  padding: 22px 32px;
  font-size: 22px;
  font-weight: 600;
  color: #1c1b1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-header span {
  display: flex;
  align-items: center;
  gap: 12px;
}

.accordion-header:hover {
  background: #f8f6f2;
}

.accordion-arrow {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.accordion-card.active .accordion-arrow {
  transform: rotate(45deg);
}

.accordion-body {
  padding: 0 32px 28px;
  display: none;
  font-size: 18px;
  animation: fadeAccordion 0.3s ease;
}

@keyframes fadeAccordion {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Listas */
.lista-detalles {
  list-style: disc;
  margin-left: 25px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.lista-detalles li {
  margin-bottom: 8px;
}

/* Para aire entre categorías */
.criterios-list,
.premios-list,
.cal-list {
  padding-left: 20px;
}

/* Espaciado general de la sección */
.criterios {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

/* ===========================
   UBICACIÓN
=========================== */

.ubicacion-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ubicacion-grid img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  height: 260px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13);
}

/* ===========================
   REGISTRO
=========================== */

/* Contenedor general */
.section.registro-info {
  text-align: center; /* Centra TÍTULO, BARRA y P */
}

/* Título y barra acento */
.section.registro-info .barra-acento {
  display: inline-block; /* Necesario para centrar la barra */
}

.section.registro-info .barra-acento::after {
  margin-left: auto;
  margin-right: auto;
}

/* Párrafo descriptivo */
.section.registro-info p {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 18px;
  opacity: 0.9;
}

/* FORMULARIO */
#registroForm {
  max-width: 600px;
  margin: 40px auto 0;
}

/* Campos */
#registroForm input,
#registroForm select {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: white;
  font-size: 16px;
}

/* BOTÓN REGISTRO — MISMO ESTILO QUE HERO */
#registroForm button {
  width: 100%;
  padding: 15px 34px;

  font-family: "Inter", sans-serif; /* 🔥 igual al hero */
  font-size: 18px;
  font-weight: 500; /* 🔥 igual al hero */
  letter-spacing: 0.6px;

  background: linear-gradient(135deg, #1f3a5f 0%, #25456f 100%); /* igual */
  color: #fff;
  border-radius: 10px;

  border: none;
  cursor: pointer;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22); /* igual */
  transition: 0.25s ease;

  margin-top: 20px;
}

/* HOVER — igual al Hero */
#registroForm button:hover {
  background: linear-gradient(135deg, #25456f 0%, #1f3a5f 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
}

/* ==========================
   REGISTRO PREMIUM (CARD)
========================== */

.registro-card {
  background: #ffffff;
  padding: 50px 45px;
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
  max-width: 900px;
  margin: 0 auto;
}

/* Subtitulo */
.form-subtitle {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  font-family: "Playfair Display", serif;
  margin-bottom: 25px;
}

/* División premium */
.division-line {
  margin: 40px auto;
  width: 60%;
  border: none;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
}

/* ===========================
   ACORDEÓN REGISTRO (Estilo unificado)
=========================== */

.accordion-group {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.accordion-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.accordion-header {
  width: 100%;
  background: #ffffff;
  border: none;
  padding: 22px 32px;
  font-size: 22px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #1c1b1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-header:hover {
  background: #f8f6f2;
}

.accordion-arrow {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.accordion-card.active .accordion-arrow {
  transform: rotate(45deg);
}

.accordion-body {
  padding: 0 32px 28px;
  font-size: 18px;
  color: #1c1b1a;
  display: none;
}

.accordion-card.active .accordion-body {
  display: block;
}

.texto-intro {
  margin: 15px 0 20px;
  font-size: 18px;
  opacity: 0.9;
}

.lista-detalles {
  list-style: disc;
  margin-left: 25px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.lista-detalles li {
  margin-bottom: 8px;
}

.nota-final {
  font-size: 16px;
  opacity: 0.8;
  margin-top: 30px;
}

/* ===========================
   FOOTER
=========================== */

.footer {
  background: #1f3a5f;
  color: white;
  padding: 70px 0 40px;
}

.footer-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 50px;

  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  align-items: flex-start;
}

.footer-col:nth-child(2) {
  border-left: 1px solid rgba(201, 168, 141, 0.4);
  border-right: 1px solid rgba(201, 168, 141, 0.4);
  padding: 0 60px;
}

.footer-col:nth-child(3) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 60px;
}

.footer-social {
  display: flex;
  justify-content: flex-start;
  gap: 18px;
  margin-top: 10px;
}

/* Columna */
.footer-col h4 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-desc {
  margin-top: 12px;
  opacity: 0.85;
  font-size: 15px;
}

/* Logo */
.footer-logo {
  width: 140px;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.35));
  margin-bottom: 10px;
}

/* Redes sociales */
.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}

.footer-social img {
  width: 28px;
  height: 28px;
  opacity: 0.85;
  transition: 0.25s ease;
}

.footer-social img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Parte inferior */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 25px;
  font-size: 14px;
  opacity: 0.75;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-col:nth-child(2) h4 {
  margin-bottom: 40px;
}

.footer-col:nth-child(3) h4 {
  margin-bottom: 56px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

/* FOOTER LEGAL LINKS */
.footer-legal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  transition: 0.25s ease;
}

.footer-legal a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-legal span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

/* ============================================================
   PÁGINAS LEGALES — Privacidad y Términos
============================================================ */

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-block {
  margin-bottom: 40px;
}

.legal-block h2 {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #1f3a5f;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #c9a88d;
}

.legal-block p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 12px;
}

.legal-block ul {
  margin: 15px 0 15px 25px;
  line-height: 1.8;
}

.legal-block li {
  margin-bottom: 8px;
  color: #444;
}

/* Ajuste de ancho de textos en diferenciadores */
.grid-diferenciadores .dif-item p {
  max-width: 320px; /* 👈 Ajustá para que todos queden en 2 líneas */
  margin: 0 auto; /* Centra el bloque */
  text-align: center; /* Bonito y limpio */
  line-height: 1.55;
}

/* ===============================
   IMÁGENES UNIFICADAS PREMIUM
=============================== */
section img {
  border-radius: 14px;
}

.entrega-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.entrega-item {
  background: white;
  padding: 16px 18px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  font-size: 16px;
}

/* HERO reducido entrega */
.entrega-hero {
  position: relative;
  background-color: #1c1b1a;
  color: #fff;
}

/* ============================================
   CENTRAR TODOS LOS TÍTULOS EN entrega.html
============================================ */
.entrega-hero h1,
.entrega-instrucciones h2,
.entrega-form h2,
section .title-playfair {
  text-align: center !important;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* Acordeón reutilizado correctamente */
.accordion-card .accordion-body {
  padding-top: 10px;
}

/* ============================================================
   ACORDEÓN 2 COLUMNAS — Mapa de Fraccionamiento
============================================================ */

.acordeon-dos-columnas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch; /* Ambas columnas misma altura */
}

.acordeon-dos-columnas .col-texto {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centra verticalmente el contenido */
}

.acordeon-dos-columnas .col-texto .subtitulo-acordeon {
  margin-top: 0;
  margin-bottom: 18px;
}

.acordeon-dos-columnas .col-texto .criterios-list {
  margin: 0;
  padding-left: 20px;
}

.acordeon-dos-columnas .col-imagen {
  display: flex;
  align-items: center; /* Centra la imagen verticalmente */
}

.acordeon-dos-columnas .col-imagen img {
  width: 100%;
  aspect-ratio: 16 / 9; /* ← Fuerza proporción horizontal */
  object-fit: cover; /* ← Recorta arriba/abajo para ajustar */
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.margin-top-30px {
  margin-top: 30px;
}

/* RESPONSIVE: En móvil se apilan */
@media (max-width: 768px) {
  .acordeon-dos-columnas {
    grid-template-columns: 1fr;
  }

  .acordeon-dos-columnas .col-imagen {
    order: -1; /* Imagen arriba en móvil */
  }
}

----------
/* ============================================================
   HERO REDUCIDO PARA LA PÁGINA DE ENTREGA
============================================================ */

.entrega-hero {
  height: 45vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content-mini {
  position: relative;
  background: rgba(0, 0, 0, 0.35);
  padding: 35px 45px;
  border-radius: 16px;
  backdrop-filter: blur(4px);
  color: white;
  max-width: 850px;
}

.hero-content-mini .intro {
  margin-top: 18px;
  font-size: 18px;
  color: #fff;
}

/* FORMULARIO SUBIR PROPUESTA—MISMO ESTILO QUE FORM PRINCIPAL */

.form-entrega input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: white;
  font-size: 16px;
}

.form-entrega button {
  width: 100%;
  padding: 15px 34px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.6px;
}

/* Ajustar ancho del formulario de entrega */
.form-entrega {
  max-width: 700px;
  margin: 0 auto;
}

/* Ancho uniforme para el acordeón de pasos */
.accordion-entrega {
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================================
   ACORDEÓN — PASOS PARA PARTICIPAR (AISLADO)
============================================================ */

.accordion-entrega-wrapper {
  text-align: center;
}

.entrega-container {
  max-width: 900px; /* MISMO ANCHO QUE EL FORMULARIO */
  margin: 0 auto;
}

.accordion-entrega {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.entrega-header {
  width: 100%;
  background: #ffffff;
  border: none;
  padding: 22px 32px;
  font-size: 22px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: "Inter", sans-serif;
}

.entrega-header:hover {
  background: #f8f6f2;
}

.entrega-arrow {
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.entrega-body {
  display: none;
  padding: 0 32px 28px;
  text-align: left;
  font-size: 18px;
}
.entrega-body.entrega-open {
  display: block;
}

/* ============================================================
   RESPONSIVE DESIGN — SISTEMA PROFESIONAL
============================================================ */

/* ---------------------------------------------------------
   DESKTOP PEQUEÑO (1200px)
--------------------------------------------------------- */
@media (max-width: 1200px) {
  .container {
    padding: 0 40px;
  }

  .footer-container {
    padding: 0 40px;
  }

  .title-playfair {
    font-size: 40px;
  }

  .hero-content h1 {
    font-size: 52px;
  }

  .hero-content p {
    font-size: 19px;
  }

  .pc-container {
    gap: 30px;
  }

  .grid-diferenciadores {
    gap: 30px;
  }
}

/* ---------------------------------------------------------
   TABLET LANDSCAPE (1024px)
--------------------------------------------------------- */
@media (max-width: 1024px) {
  .container {
    padding: 0 35px;
  }

  section {
    padding: 50px 0;
  }

  .title-playfair {
    font-size: 36px;
  }

  .hero {
    height: 90vh;
    padding-top: 80px;
  }

  .hero-content {
    padding: 35px 40px;
    max-width: 750px;
  }

  .hero-content h1 {
    font-size: 46px;
  }

  .hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .hero-logo img {
    width: 130px;
  }

  /* The Town */
  .town-mosaic {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mosaic-big {
    height: 400px;
  }

  .mosaic-side {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .mosaic-side img {
    height: 200px;
  }

  /* Logo hero - más espacio */
  .hero-logo {
    padding: 0 20px;
  }

  .hero-logo img {
    width: 140px;
    max-width: 100%;
  }

  .town-logo {
    width: 300px;
  }

  /* Grid diferenciadores */
  .grid-diferenciadores {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .dif-item h3 {
    font-size: 20px;
  }

  /* El Reto */
  .reto-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .reto-grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Amenidades */
  .amenidad-card {
    min-width: 420px;
    height: 320px;
  }

  /* Premio + Calendario */
  .pc-container {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .pc-card {
    padding: 30px;
  }

  .premio-monto {
    font-size: 30px;
  }

  /* Ubicación */
  .ubicacion-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .ubicacion-grid img {
    height: 220px;
  }

  /* Footer */
  .footer-container {
    padding: 0 35px;
  }

  .footer-col:nth-child(2) {
    padding: 0 40px;
  }

  .footer-col:nth-child(3) {
    padding-left: 40px;
  }
}

/* ---------------------------------------------------------
   TABLET PORTRAIT (768px)
--------------------------------------------------------- */
@media (max-width: 768px) {
  .container {
    padding: 0 25px;
  }

  section {
    padding: 40px 0;
  }

  .title-playfair {
    font-size: 32px;
  }

  .section .intro {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .barra-acento::after {
    width: 50px;
  }

  /* Hero */
  .hero {
    height: 85vh;
    padding-top: 70px;
    padding-bottom: 60px;
  }

  .hero-content {
    padding: 30px 28px;
    max-width: 90%;
    margin: 0 20px;
  }

  .hero-content h1 {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .hero-content p {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .btn-primario {
    padding: 12px 26px;
    font-size: 15px;
  }

  .hero {
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero-logo {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
  }

  .hero-logo img {
    width: 110px;
  }

  /* The Town */
  .town-logo {
    width: 260px;
  }

  .mosaic-big {
    height: 300px;
  }

  .mosaic-side {
    grid-template-columns: 1fr;
  }

  .mosaic-side img {
    height: 200px;
  }

  /* Grid diferenciadores */
  .grid-diferenciadores {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .dif-item h3 {
    font-size: 22px;
  }

  .grid-diferenciadores .dif-item p {
    max-width: 100%;
  }

  /* El Reto */
  .reto-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .reto-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .reto-card {
    padding: 22px 20px;
  }

  .reto-card h3 {
    font-size: 18px;
  }

  .reto-card p {
    font-size: 14px;
  }

  /* Amenidades */
  .amenidad-card {
    min-width: 85%;
    height: 280px;
  }

  .amenidad-overlay {
    font-size: 1.4rem;
  }

  .arrow {
    font-size: 28px;
    padding: 4px 12px;
  }

  /* Premio + Calendario */
  .pc-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pc-card {
    padding: 28px 24px;
  }

  .title-playfair-premio {
    font-size: 32px;
  }

  .premio-monto {
    font-size: 28px;
  }

  .pc-list li {
    font-size: 16px;
  }

  /* Acordeones */
  .accordion-header {
    padding: 18px 24px;
    font-size: 18px;
  }

  .accordion-body {
    padding: 0 24px 24px;
    font-size: 16px;
  }

  .accordion-arrow {
    font-size: 20px;
  }

  .subtitulo-acordeon {
    font-size: 18px;
  }

  /* Acordeón dos columnas */
  .acordeon-dos-columnas {
    grid-template-columns: 1fr;
  }

  .acordeon-dos-columnas .col-imagen {
    order: -1;
  }

  /* Ubicación */
  .ubicacion-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ubicacion-grid img {
    height: 240px;
  }

  /* Registro */
  .registro-card {
    padding: 35px 28px;
  }

  .form-subtitle {
    font-size: 24px;
  }

  #registroForm input,
  #registroForm select {
    padding: 12px;
    font-size: 15px;
  }

  #registroForm button,
  #entregaForm button {
    padding: 14px 28px;
    font-size: 16px;
  }

  /* Entrega */
  .entrega-header {
    padding: 18px 24px;
    font-size: 18px;
  }

  .entrega-body {
    padding: 0 24px 24px;
    font-size: 16px;
  }

  .form-entrega input {
    padding: 12px;
    font-size: 15px;
  }

  /* Footer */
  .footer {
    padding: 50px 0 30px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 35px;
    padding: 0 25px;
  }

  .footer-col:nth-child(2) {
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(201, 168, 141, 0.4);
    border-bottom: 1px solid rgba(201, 168, 141, 0.4);
    padding: 35px 0;
  }

  .footer-col:nth-child(2) h4,
  .footer-col:nth-child(3) h4 {
    margin-bottom: 15px;
  }

  .footer-col:nth-child(3) {
    padding-left: 0;
    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-logo {
    margin: 0 auto 10px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }

  .hero-content h1 {
    line-height: 1.1;
  }

  /* Legal */
  .legal-content {
    padding: 0 10px;
  }

  .legal-block h2 {
    font-size: 20px;
  }

  .legal-block p {
    font-size: 15px;
  }
  /* Footer contacto - alinear izquierda con bullets */
  .footer-col:nth-child(2) p {
    text-align: left !important;
    position: relative;
    padding-left: 15px;
    display: inline-block;
  }

  .footer-col:nth-child(2) p::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #c9a88d;
  }
  .footer-col:nth-child(2) {
    text-align: left !important;
  }
  .footer-col:nth-child(2) h4 {
    text-align: center !important;
  }
}

/* ---------------------------------------------------------
   MOBILE GRANDE (480px)
--------------------------------------------------------- */
@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  section {
    padding: 35px 0;
  }

  .title-playfair {
    font-size: 28px;
  }

  .section .intro {
    font-size: 15px;
  }

  /* Reducir espacio antes del acordeón Criterios */
  .accordion-group {
    margin-top: 20px;
  }

  .pc-container {
    margin-bottom: 20px;
  }

  /* Hero */
  .hero {
    height: 100vh;
    min-height: 600px;
  }

  .hero-content {
    padding: 25px 22px;
    margin: 0 15px;
    border-radius: 14px;
  }

  .hero-content h1 {
    font-size: 30px;
    margin-bottom: 14px;
  }

  .hero-content p {
    font-size: 15px;
    margin-bottom: 22px;
    line-height: 1.5;
  }

  .btn-primario {
    padding: 12px 22px;
    font-size: 14px;
    width: 100%;
    text-align: center;
  }

  .hero-logo img {
    width: 100px;
  }

  /* The Town */
  .town-logo {
    width: 220px;
  }

  .mosaic-big {
    height: 250px;
  }

  .mosaic-side img {
    height: 180px;
  }

  .dif-item h3 {
    font-size: 20px;
  }

  .dif-item p {
    font-size: 15px;
  }

  .espacio-abajo {
    margin-bottom: 40px;
  }

  /* El Reto */
  .reto-card {
    padding: 20px 18px;
  }

  .reto-grid-6 {
    grid-template-columns: 1fr;
  }

  .reto-icon {
    font-size: 28px;
  }

  .reto-card h3 {
    font-size: 17px;
  }

  /* Amenidades */
  .amenidad-card {
    min-width: 90%;
    height: 240px;
  }

  .amenidad-overlay {
    font-size: 1.2rem;
  }

  .arrow {
    font-size: 24px;
    padding: 3px 10px;
  }

  .arrow.left {
    left: 5px;
  }

  .arrow.right {
    right: 5px;
  }

  /* Premio */
  .pc-card {
    padding: 24px 20px;
  }

  .title-playfair-premio {
    font-size: 28px;
  }

  .premio-monto {
    font-size: 24px;
    margin: 15px 0;
  }

  .pc-list li {
    font-size: 15px;
    margin-bottom: 12px;
  }

  /* Acordeones */
  .accordion-header {
    padding: 16px 20px;
    font-size: 16px;
  }

  .accordion-body {
    padding: 0 20px 20px;
    font-size: 15px;
  }

  .lista-detalles {
    margin-left: 20px;
    font-size: 15px;
  }

  .subtitulo-acordeon {
    font-size: 17px;
  }

  /* Ubicación */
  .ubicacion-grid img {
    height: 200px;
  }

  /* Registro */
  .registro-card {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .form-subtitle {
    font-size: 22px;
  }

  .section.registro-info p {
    font-size: 16px;
  }

  #registroForm {
    margin-top: 25px;
  }

  #registroForm input,
  #registroForm select {
    padding: 12px;
    font-size: 14px;
    margin-bottom: 12px;
  }

  #registroForm button,
  #entregaForm button {
    padding: 14px 24px;
    font-size: 15px;
    margin-top: 15px;
  }

  /* Amenidades - carrusel móvil corregido */
  .amenidades-wrapper {
    position: relative;
    overflow: hidden;
  }

  .amenidades-carousel {
    display: flex;
    gap: 12px;
    padding: 0 15px 15px;
    scroll-snap-type: x mandatory;
  }

  .amenidad-card {
    min-width: 85%;
    max-width: 85%;
    height: 240px;
    border-radius: 14px;
    scroll-snap-align: center;
    flex-shrink: 0;
  }

  .amenidad-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .amenidad-overlay {
    font-size: 1.1rem;
  }

  /* Ocultar flechas en móvil */
  .arrow {
    display: none;
  }

  /* Entrega */
  .entrega-container {
    padding: 0 5px;
  }

  .entrega-header {
    padding: 16px 20px;
    font-size: 16px;
  }

  .entrega-body {
    padding: 0 20px 20px;
    font-size: 15px;
  }

  .form-entrega {
    padding: 0 5px;
  }

  .form-entrega input {
    padding: 12px;
    font-size: 14px;
  }

  /* Footer */
  .footer {
    padding: 40px 0 25px;
  }

  .footer-container {
    gap: 30px;
    padding: 0 20px;
  }

  .footer-col h4 {
    font-size: 18px;
  }

  .footer-desc {
    font-size: 14px;
  }

  .footer-logo {
    width: 120px;
  }

  .footer-social img {
    width: 26px;
    height: 26px;
  }

  .footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    font-size: 13px;
  }

  .footer-legal a,
  .footer-legal span {
    font-size: 13px;
  }

  /* Legal */
  .legal-block {
    margin-bottom: 30px;
  }

  .legal-block h2 {
    font-size: 18px;
  }

  .legal-block p {
    font-size: 14px;
  }

  .legal-block ul {
    margin-left: 20px;
  }
  /* 1) Footer - texto contacto más pequeño */
  .footer-col p {
    font-size: 13px;
  }

  /* 2) Subtítulos acordeón fase A/B más pequeños */
  .texto-intro {
    font-size: 14px;
  }

  /* 3) Hero título - menos interlineado */
  .hero-content h1 {
    line-height: 1.15;
  }

  /* 4) Campos registro más pequeños */
  #registroForm input,
  #registroForm select {
    padding: 10px;
    font-size: 13px;
  }
  .nota-final {
    font-size: 13px;
  }
}

/* ---------------------------------------------------------
   MOBILE PEQUEÑO (375px)
--------------------------------------------------------- */
@media (max-width: 375px) {
  .container {
    padding: 0 16px;
  }

  .title-playfair {
    font-size: 26px;
  }

  .hero-content {
    padding: 22px 18px;
    margin: 0 12px;
  }

  /* Amenidades móvil pequeño - una sola imagen */
  .amenidades-carousel {
    padding: 0 0 15px;
    gap: 15px;
  }

  .amenidad-card {
    min-width: 100%;
    max-width: 100%;
    height: 230px;
    border-radius: 0;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-logo img {
    width: 90px;
  }

  .town-logo {
    width: 200px;
  }

  .mosaic-big {
    height: 220px;
  }

  .mosaic-side img {
    height: 160px;
  }

  .amenidad-card {
    height: 220px;
  }

  .title-playfair-premio {
    font-size: 26px;
  }

  .premio-monto {
    font-size: 22px;
  }

  .accordion-header {
    padding: 14px 16px;
    font-size: 15px;
  }

  .accordion-body {
    padding: 0 16px 18px;
    font-size: 14px;
  }

  .entrega-header {
    padding: 14px 16px;
    font-size: 15px;
  }

  .footer-container {
    padding: 0 16px;
  }

  .footer-col:nth-child(2) {
    padding: 28px 0;
  }

  .footer-logo {
    width: 110px;
  }
  /* 1) Footer - texto contacto */
  .footer-col p {
    font-size: 12px;
  }

  /* 3) Hero título - interlineado */
  .hero-content h1 {
    line-height: 1.1;
  }

  /* 4) Campos registro */
  #registroForm input,
  #registroForm select {
    padding: 9px;
    font-size: 12px;
  }
  .nota-final {
    font-size: 12px;
  }
}

/* ---------------------------------------------------------
   AJUSTES DE ALTURA HERO EN LANDSCAPE MOBILE
--------------------------------------------------------- */
@media (max-width: 900px) and (orientation: landscape) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 100px 20px 60px;
  }

  .hero-content {
    margin-top: 20px;
  }
}

/* ---------------------------------------------------------
   MEJORAS DE ACCESIBILIDAD Y UX TÁCTIL
--------------------------------------------------------- */
@media (max-width: 768px) {
  /* Áreas táctiles más grandes */
  .btn-primario,
  #registroForm button,
  #entregaForm button,
  .accordion-header,
  .entrega-header {
    min-height: 48px;
  }

  /* Mejor legibilidad */
  body {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
  }

  /* Evitar zoom en inputs en iOS */
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
}
