:root {
  --rosa: #ff4fa3;
  --turquesa: #00d4c7;
  --lila: #c285ff;
  --negro: #0c0c12;
  --gris-oscuro: #151521;
  --blanco: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1f1630 0, #05050a 55%, #000 100%);
  color: var(--blanco);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ------- Layout base ------- */

.container {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0 16px;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(5, 5, 15, 0.9);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 54px;
  width: auto;
}

.brand-text {
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand-text span {
  display: block;
}

.brand-main {
  color: var(--rosa);
}

.brand-sub {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #e0e0ff;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
  align-items: center;
}

.nav-links a {
  position: relative;
  padding-bottom: 3px;
  color: #f5f5ff;
  opacity: 0.8;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rosa), var(--turquesa));
  border-radius: 999px;
  transition: width 0.25s;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: auto;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(5,5,15,0.95);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span + span {
  margin-top: 4px;
}

/* Animación a "X" cuando está abierto */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* BOTÓN DESTACADO EN NAV: PROMOS 2026 */
.nav-promo2026 {
  padding: 6px 14px;
  border-radius: 999px;
  background: radial-gradient(circle at top left, rgba(255,79,163,0.9), rgba(0,212,199,0.8));
  color: #05030a !important;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 0 14px rgba(255,79,163,0.7);
  border: 1px solid rgba(0,0,0,0.35);
}

.nav-promo2026::after {
  display: none;
}

.nav-promo2026:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(255,79,163,0.9);
}

.nav-precotizacion {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn {
  background: linear-gradient(135deg, var(--rosa), var(--turquesa));
  color: #05030a;
  box-shadow: 0 0 16px rgba(255, 79, 163, 0.4);
}

.btn:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 0 22px rgba(255, 79, 163, 0.6);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #f0f0ff;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

/* BOTÓN ESPECIAL PROMOS 2026 EN CONTENIDO */
.btn-promo2026 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  background: radial-gradient(circle at top left, rgba(255,79,163,1), rgba(0,212,199,0.9));
  border: 1px solid rgba(0,0,0,0.4);
  color: #05030a;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 0 20px rgba(255,79,163,0.9);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-promo2026 span.icon {
  font-size: 1.1rem;
}

.btn-promo2026:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 0 24px rgba(255,79,163,1);
}

/* Botón para cada paquete (base) */
.btn-paquete {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border 0.15s ease;
}

/* Colores por paquete */
.btn-paquete-esencial {
  background: radial-gradient(circle at top left, rgba(194,133,255,0.35), rgba(12,12,18,0.9));
  border: 1px solid var(--lila);
  color: #f7ecff;
  box-shadow: 0 0 14px rgba(194,133,255,0.35);
}

.btn-paquete-esencial:hover {
  background: radial-gradient(circle at top left, rgba(194,133,255,0.6), rgba(12,12,18,1));
  box-shadow: 0 0 18px rgba(194,133,255,0.6);
  transform: translateY(-1px);
}

.btn-paquete-estelar {
  background: radial-gradient(circle at top left, rgba(0,212,199,0.35), rgba(12,12,18,0.9));
  border: 1px solid var(--turquesa);
  color: #e6fffb;
  box-shadow: 0 0 14px rgba(0,212,199,0.35);
}

.btn-paquete-estelar:hover {
  background: radial-gradient(circle at top left, rgba(0,212,199,0.6), rgba(12,12,18,1));
  box-shadow: 0 0 18px rgba(0,212,199,0.6);
  transform: translateY(-1px);
}

.btn-paquete-total {
  background: radial-gradient(circle at top left, rgba(255,79,163,0.35), rgba(12,12,18,0.9));
  border: 1px solid var(--rosa);
  color: #ffe9f5;
  box-shadow: 0 0 14px rgba(255,79,163,0.45);
}

.btn-paquete-total:hover {
  background: radial-gradient(circle at top left, rgba(255,79,163,0.6), rgba(12,12,18,1));
  box-shadow: 0 0 18px rgba(255,79,163,0.7);
  transform: translateY(-1px);
}

.btn-paquete-vip {
  background: radial-gradient(circle at top left, rgba(255,79,163,0.45), rgba(0,212,199,0.25));
  border: 1px solid rgba(255,255,255,0.6);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(255,255,255,0.4);
}

.btn-paquete-vip:hover {
  box-shadow: 0 0 22px rgba(255,255,255,0.7);
  transform: translateY(-1px);
}

.btn-paquete-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}

.btn-paquete-main {
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-paquete-sub {
  font-size: 0.7rem;
  opacity: 0.9;
}

main {
  padding-bottom: 60px;
}

section {
  padding: 48px 0;
}

h1, h2, h3 {
  font-family: "Poppins", system-ui, sans-serif;
}

h2.section-title {
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--turquesa);
  margin-bottom: 6px;
}

.section-subtitle {
  color: #cccaf6;
  font-size: 0.95rem;
  max-width: 600px;
}

/* ------- Cinta disponibilidad diciembre ------- */

.booking-ribbon {
  position: relative;
  z-index: 40;
  background: linear-gradient(90deg, var(--rosa), var(--turquesa));
  color: #05030a;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
}

.booking-ribbon-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  font-size: 0.8rem;
}

.booking-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
}

.booking-text {
  text-align: center;
}

.booking-text strong {
  font-weight: 700;
}

@media (max-width: 600px) {
  .booking-ribbon-inner {
    font-size: 0.75rem;
    padding: 7px 10px;
  }
}

/* ------- HERO ------- */

.hero {
  padding-top: 38px;
  padding-bottom: 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--turquesa);
  margin-bottom: 6px;
}

.hero-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.08;
  margin-bottom: 10px;
}

.hero-title-highlight {
  background: linear-gradient(135deg, var(--rosa), var(--turquesa));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text {
  font-size: 0.98rem;
  color: #e2e2ff;
  max-width: 520px;
  margin-bottom: 14px;
}

/* BLOQUE PROMO 2026 EN HERO */
.hero-promo {
  font-size: 0.82rem;
  background: rgba(255,79,163,0.14);
  border-radius: 16px;
  padding: 8px 10px;
  border: 1px dashed rgba(255,79,163,0.7);
  margin-bottom: 14px;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  max-width: 520px;
}

.hero-promo-text {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.hero-promo-text strong {
  font-weight: 600;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.78rem;
}

.hero-badge {
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(10,10,22,0.7);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hero-note {
  font-size: 0.8rem;
  color: #cfcffb;
}

.hero-note strong {
  color: var(--rosa);
}

/* HERO – ATAJOS RÁPIDOS */
.hero-shortcuts {
  margin-top: 14px;
  font-size: 0.86rem;
  color: #e6e4ff;
}

.hero-shortcuts-text {
  margin-bottom: 6px;
}

.hero-shortcuts-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-card {
  background: radial-gradient(circle at top, #29263c 0, #151521 55%, #090910 100%);
  border-radius: 22px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0 0, rgba(255,79,163,0.18), transparent 60%),
    radial-gradient(circle at 100% 0, rgba(0,212,199,0.22), transparent 60%);
  opacity: 0.8;
  pointer-events: none;
}

.hero-card-inner {
  position: relative;
  z-index: 1;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.hero-card-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-card-tag {
  font-size: 0.7rem;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-stats {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  margin-bottom: 16px;
  color: #eeecff;
}

.hero-stat span {
  display: block;
}

.hero-stat-label {
  opacity: 0.7;
}

.hero-stat-value {
  font-weight: 600;
}

.hero-img-wrapper {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  background: #050506;
}

.hero-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* ------- Experiencia ------- */

.experience-strip {
  background: radial-gradient(circle at top, #1d182e 0, #080810 60%);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.experience-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #f1efff;
}

.experience-main {
  font-weight: 600;
}

.experience-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
}

.experience-chip {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(10,10,24,0.85);
}

/* ------- BENEFICIOS CLAVE ------- */

.benefits-key {
  padding: 40px 0 30px;
}

.benefits-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.benefit-item {
  background: linear-gradient(145deg, #151521, #090910);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.16);
  padding: 12px 14px;
  font-size: 0.86rem;
  color: #e6e4ff;
  box-shadow: 0 14px 32px rgba(0,0,0,0.6);
}

.benefit-item h3 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

/* ------- TIPOS DE EVENTOS ------- */

.events-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
}

.event-pill {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: radial-gradient(circle at left, rgba(0,212,199,0.25), rgba(12,12,18,0.9));
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.85rem;
  color: #e0e0ff;
}

.event-icon {
  font-size: 1.15rem;
  margin-top: 1px;
}

.event-name {
  font-weight: 600;
}

.event-note {
  font-size: 0.78rem;
  color: #cccaf6;
}

/* ------- Paquetes teaser ------- */

.section-paquetes-teaser {
  padding-top: 32px;
  padding-bottom: 32px;
}

/* ------- Paquetes (cards generales, compartido con otras páginas) ------- */

.cards-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.card {
  background: linear-gradient(145deg, #151521, #090910);
  border-radius: 18px;
  padding: 16px 16px 15px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 14px 26px rgba(0,0,0,0.65);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,79,163,0.18), transparent 55%);
  opacity: 0.8;
  pointer-events: none;
}

.card-inner {
  position: relative;
  z-index: 1;
}

.card-tag {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--turquesa);
  margin-bottom: 4px;
}

.card-title {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #fff5ff;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 0.75rem;
}

.chip {
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(7,7,20,0.7);
}

.card ul {
  list-style: none;
  font-size: 0.85rem;
  color: #dedcff;
  margin-bottom: 6px;
}

.card ul li::before {
  content: "★";
  color: var(--rosa);
  margin-right: 6px;
  font-size: 0.7rem;
}

.card-footer {
  font-size: 0.8rem;
  margin-top: 8px;
  color: #bfbff8;
}

/* ------- BLOQUE DESTACADO PROMO 2026 DENTRO DEL CONTENIDO ------- */

.promo2026-section {
  padding-top: 20px;
  padding-bottom: 10px;
}

.promo2026-box {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  background: radial-gradient(circle at top left, rgba(255,79,163,0.28), rgba(0,0,0,0.9));
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 18px 36px rgba(0,0,0,0.7);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.promo2026-text {
  max-width: 620px;
  font-size: 0.92rem;
  color: #f0eaff;
}

.promo2026-text strong {
  color: #ffe9f8;
}

.promo2026-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--turquesa);
  margin-bottom: 4px;
}

/* ------- Servicios Extra (usado en otras páginas) ------- */

.extras-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.extra-card {
  background: linear-gradient(145deg, #151521, #090910);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.16);
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.extra-left {
  max-width: 70%;
}

.extra-name {
  font-weight: 600;
  margin-bottom: 3px;
  color: #f6f4ff;
}

.extra-detail {
  font-size: 0.8rem;
  color: #d0cff6;
  opacity: 0.9;
}

.extra-price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--turquesa);
  white-space: nowrap;
}

.extra-tag {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  color: #f5f5ff;
  opacity: 0.8;
}

/* ------- Galería ------- */

.gallery-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  background: #050506;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-label {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(5,5,15,0.8);
  backdrop-filter: blur(8px);
  font-size: 0.75rem;
  border: 1px solid rgba(255,255,255,0.25);
}

/* ------- Cobertura (mapa) ------- */

.coverage-grid {
  margin-top: 20px;
}

.map-wrapper {
  position: relative;
}

#map-coverage {
  width: 100%;
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  background: #050506;
}

.map-promo-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(5,5,15,0.85);
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 0.75rem;
  color: #f5f5ff;
}

.coverage-legend {
  margin-top: 10px;
  font-size: 0.8rem;
  color: #d4d4ff;
  max-width: 720px;
}

/* ------- Opiniones (general, para otras páginas) ------- */

.testimonials-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.testimonial {
  background: linear-gradient(145deg, #151521, #090910);
  border-radius: 18px;
  padding: 14px 16px 14px;
  border: 1px solid rgba(255,255,255,0.16);
  position: relative;
  overflow: hidden;
  font-size: 0.86rem;
  color: #f5f4ff;
}

.testimonial::before {
  content: "“";
  position: absolute;
  font-size: 3.5rem;
  opacity: 0.08;
  right: 14px;
  top: -6px;
}

.testimonial-name {
  margin-top: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--turquesa);
}

.review-stars {
  color: #ffd769;
  font-size: 0.8rem;
  margin-bottom: 6px;
}

.maps-cta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 0.8rem;
  color: #d4d4ff;
}

.maps-cta span {
  opacity: 0.85;
}

/* ------- Proceso (“Así trabajamos”) – usado en otras páginas ------- */

.process-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.process-step {
  background: linear-gradient(145deg, #151521, #090910);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 12px;
  font-size: 0.88rem;
  color: #f1f0ff;
}

.process-step strong {
  color: var(--turquesa);
  display: block;
  margin-bottom: 4px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ------- Checklist ------- */

.checklist-section {
  margin-top: 32px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(145deg, #151521, #090910);
  border: 1px solid rgba(255,255,255,0.16);
}

.checklist-title {
  font-size: 1rem;
  margin-bottom: 8px;
}

.checklist-grid {
  margin-top: 6px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px;
}

.checklist-item {
  font-size: 0.85rem;
  color: #e0e0ff;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.checklist-item span:first-child {
  font-size: 1rem;
  line-height: 1.3;
}

/* ------- Contacto / Footer ------- */

.contact-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.contact-info {
  font-size: 0.9rem;
  color: #e0e0ff;
}

.contact-row {
  margin-top: 8px;
}

.contact-row strong {
  color: var(--turquesa);
  margin-right: 4px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.social-block {
  margin-top: 16px;
}

.social-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.social-subtitle {
  font-size: 0.82rem;
  color: #cccaf6;
}

.social-links {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  font-size: 0.85rem;
}

.social-links a {
  padding: 8px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.22);
  background: radial-gradient(circle at top left, rgba(255,79,163,0.2), rgba(10,10,22,0.9));
  box-shadow: 0 8px 18px rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.social-main {
  font-weight: 600;
}

.social-tagline {
  font-size: 0.78rem;
  opacity: 0.9;
}

.contact-image {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  background: #050506;
}

footer {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 14px 0 22px;
  font-size: 0.78rem;
  color: #b7b7df;
  text-align: center;
}

footer a {
  color: var(--turquesa);
}

/* ------- SOBRE MÍ / QUIÉN ESTÁ DETRÁS ------- */

#sobre-mi {
  padding: 40px 0 30px;
}

.about-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 18px;
  font-size: 0.9rem;
  color: #e6e4ff;
}

.about-text p + p {
  margin-top: 8px;
}

.about-highlight {
  background: linear-gradient(145deg, #151521, #090910);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.16);
  padding: 14px 14px 12px;
  box-shadow: 0 16px 34px rgba(0,0,0,0.7);
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
}

.about-tagline {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  background: linear-gradient(135deg, var(--rosa), var(--turquesa));
  -webkit-background-clip: text;
  color: transparent;
}

/* ------- TIRA DESCUENTO 10% SIGUIENTE EVENTO ------- */

.discount-strip {
  padding: 18px 0 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  background: radial-gradient(circle at left, rgba(194,133,255,0.16), rgba(5,5,15,0.9));
}

.discount-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #e4e2ff;
}

.discount-btn {
  white-space: nowrap;
}

/* ------- Botón flotante WhatsApp ------- */

.wa-floating {
  position: fixed;
  right: 18px;
  bottom: 70px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0,0,0,0.6);
  z-index: 80;
}

.wa-floating:hover {
  transform: translateY(-1px) scale(1.05);
}

/* Botón fijo extra para la promo + pre-cotización (solo móvil) */
.promo-floating {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, var(--rosa), var(--turquesa));
  color: #05030a;
  padding: 8px 14px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.83rem;
  font-weight: 600;
  z-index: 75;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.6);
  flex-wrap: wrap;
}

.promo-floating a {
  color: inherit;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

@media (max-width: 800px) {
  .nav {
    position: relative;
  }

  /* Menú móvil: oculto por defecto */
  .nav-links {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    margin-top: 8px;
    flex-direction: column;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(5,5,15,0.96);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 18px 36px rgba(0,0,0,0.8);
    display: none;
    z-index: 60;
  }

  .nav-links a {
    padding: 6px 4px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-card {
    order: -1;
  }

  header {
    position: static;
  }

  .experience-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  #map-coverage {
    height: 260px;
  }

  .promo-floating {
    display: flex;
  }

  .promo2026-box {
    align-items: flex-start;
  }

  .discount-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}
