
/* ======================================== */
/* ============ RESET GLOBAL ============= */
/* ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* ======================================== */
/* ============ BASE GLOBAL ============== */
/* ======================================== */

body {
  font-family: 'Inter', sans-serif;
  background: #000;
  color: white;
  overflow-x: hidden;
}



/* ======================================== */
/* ============ TIPOGRAFÍA =============== */
/* ======================================== */

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
}

p {
  font-size: 16px;
  line-height: 1.8;
  color: #bbb;
}

section {
  padding-left: 20px;
  padding-right: 20px;
}

/* ======================================== */
/* ============ navbar =============== */
/* ======================================== */

.navbar {
  position: absolute;      /* 🔥 ahora es fijo en todas */
  top: 0;
  left: 0;
  right: 0;

  max-width: 1100px;
  margin: 0 auto;

  padding: 30px 20px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

    z-index: 1000;
}


/* IZQUIERDA */
.nav-left {
  display: flex;
  gap: 18px;
}

/* DERECHA */
.nav-right {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

/* LINKS */
.nav-left a,
.nav-right a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
}

.nav-left a:hover,
.nav-right a:hover {
  color: #ffcc00;
}

/* ===== CENTRO LOGO PREMIUM ===== */

.nav-center {
  position: relative;
  text-align: center;
}

.nav-center img {
  height: 115px;
  filter: drop-shadow(0 15px 35px rgba(0,0,0,0.6));
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

/* Halo suave dorado detrás */
.nav-center::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255,204,0,0.35), transparent 25%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(30px);
  z-index: 1;
  opacity: 0.6;
}

/* Hover elegante */
.nav-center img:hover {
  transform: scale(1.05);
}

/* ===== HERO PREMIUM ===== */

.hero {
  position: relative;
  height: 100vh;
  background: url("images/hero.jpeg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  
}
.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}


/* Oscurecido cinematográfico profundo */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;   /* 🔥 ESTO ES LO IMPORTANTE */

  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.95)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  padding: 0 40px;
}
.hero-divider {
  width: 80px;
  height: 2px;
  background: #ffcc00;
  margin: 25px auto 35px;
}

/* ===== HERO TITLE GLASS PREMIUM ===== */

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(4rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  text-shadow:
    0 0 10px rgba(255,255,255,0.2),
    0 10px 40px rgba(0,0,0,0.6);

  animation: fadeUp 1.2s ease forwards;
}


/* Subtítulo */
.subtitle {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #ddd;
  line-height: 1.6;
  animation: fadeUp 1.3s ease forwards;
}

/* ===== BOTÓN BASE ===== */

.btn {
  display: inline-block;
  padding: 14px 35px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
  cursor: pointer;
}

/* ===== BOTÓN PRINCIPAL ===== */

.btn.primary {
  position: relative;
  background: linear-gradient(45deg, #ff00c8, #ff8a00);
  color: white;
  box-shadow: 0 15px 40px rgba(255, 0, 200, 0.35);
  overflow: hidden;
}

.btn.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(255, 0, 200, 0.55);
}

/* ===== BOTÓN SECUNDARIO ===== */

.btn.secondary {
  position: relative;
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  background: transparent;
  overflow: hidden;
}
/* ===== EFECTO LUZ LED SUAVE ===== */

.btn.secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
  rgba(255,255,255,0.18)
    transparent
  );
  transition: all 0.8s ease;
}

.btn.secondary:hover::before {
  left: 120%;
}

.btn.secondary:hover {
  transform: translateY(-4px);
  border-color: #ffffff;
  box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}
/* ===== ANIMACIONES ===== */

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================= */
/* ===== LEGAL PREMIUM ===== */
/* ========================= */

.legal-page {
    background: linear-gradient(135deg, #0f172a, #111827);
    color: #e5e7eb;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
}

/* Contenedor principal */
.legal-container {
    max-width: 900px;
    margin: 140px auto 80px auto;
    padding: 0 20px;
}

/* Título */
.legal-container h1 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #ffffff, #facc15);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Intro */
.legal-intro {
    text-align: center;
    margin-bottom: 50px;
    color: #cbd5e1;
}

/* Card */
.legal-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* Hover premium */
.legal-card:hover {
    transform: translateY(-6px);
    border: 1px solid rgba(250,204,21,0.4);
    box-shadow: 0 15px 35px rgba(250,204,21,0.15);
}

/* Subtítulos */
.legal-card h2 {
    margin-bottom: 15px;
    color: #facc15;
}

/* Texto */
.legal-card p {
    color: #d1d5db;
    line-height: 1.7;
}

/* Botón volver */
.legal-back {
    text-align: center;
    margin-top: 40px;
}

.legal-back a {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    color: white;
    background: linear-gradient(90deg, #ff00cc, #ff7a00);
    transition: 0.4s;
    box-shadow: 0 8px 20px rgba(255,0,150,0.3);
}

.legal-back a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255,0,150,0.6);
}

/* Animación entrada */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.legal-card {
    animation: fadeUp 0.6s ease forwards;
}
/* Quitar azul por defecto de enlaces */
a {
  text-decoration: none;
  color: inherit;
}

a:visited {
  color: inherit;
}

a:active {
  color: inherit;
}
/* ================= FOOTER PREMIUM ================= */

.footer {
  background: #0a0a0a;
  padding: 80px 40px 30px;
  color: #ccc;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 18px;
  letter-spacing: 1px;
}

.footer-col p {
  line-height: 1.6;
  font-size: 14px;
  color: #999;
}

.footer-item {
  display: block;
  margin-bottom: 12px;
  color: #aaa;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 14px;
}

.footer-item:hover {
  color: #f5c518;
  transform: translateX(5px);
}
.footer-bottom {
  position: relative;
  margin-top: 50px;
  padding-top: 35px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;

  border-top: none;
}
.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  width: 60%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 170, 0, 0.35),
    transparent
  );
}

.footer-bottom p {
  font-size: 13px;
  color: #777;
}


/* SOCIAL */

.social-icons {
  display: flex;
  gap: 18px;
  margin-top: 15px;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #ffffff;
  transition: all 0.35s ease;
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.social-icon:hover {
  background: linear-gradient(135deg, #ffb700, #ff7a00);
  color: #000;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255, 160, 0, 0.4);
}


/* PARTE INFERIOR */

.legal-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 12px;
}

.legal-links a {
  margin-left: 0;
  font-size: 12px;
  color: #aaa;
  opacity: 0.7;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  color: #f5c518;
  opacity: 1;
}

/* ================= FEATURES SECTION ================= */

.features {
  background: #0f0f0f;
  padding: 120px 40px;
}

.features-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px;
  border-radius: 18px;
  transition: 0.4s ease;
}

.feature-card h3 {
  margin-bottom: 20px;
  font-size: 20px;
  color: #ffffff;
}

.feature-card p {
  color: #999;
  line-height: 1.6;
  font-size: 15px;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: #f5c518;
  box-shadow: 0 15px 40px rgba(245,197,24,0.1);
}
.feature-card.active {
   transform: translateY(-8px);
   border-color: #f5c518;
   box-shadow: 0 15px 40px rgba(245,197,24,0.1);
}

/* ================= HOME GALLERY ================= */

.home-gallery {
  background: #0a0a0a;
  padding: 120px 40px;
  text-align: center;
}

.gallery-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: white;
}

.gallery-header p {
  color: #888;
  margin-bottom: 60px;
}

.gallery-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  transition: 0.4s ease;
}

.gallery-item:hover::after {
  background: rgba(0,0,0,0.4);
}

.gallery-button {
  margin-top: 60px;
}

/* ================= CTA PREMIUM 2026 ================= */

.cta-section {
  position: relative;
  padding: 140px 40px;
  text-align: center;
  background: radial-gradient(circle at center, rgba(255, 196, 0, 0.08), transparent 60%),
              linear-gradient(to bottom, #0b0b0f, #0a0a0a);
  overflow: hidden;
}

.cta-section h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  letter-spacing: -1px;
  animation: fadeUp 1s ease forwards;
}

.cta-section p {
  color: #a1a1a1;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 50px auto;
  animation: fadeUp 1.3s ease forwards;
}

/* Botones contenedor */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  animation: fadeUp 1.6s ease forwards;
}

/* BOTÓN PRINCIPAL */
.cta-primary {
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  background: linear-gradient(90deg, #ff00cc, #ff9900);
  box-shadow: 0 10px 35px rgba(255, 120, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.cta-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(255, 140, 0, 0.45);
}

/* Shine effect elegante */
.cta-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
}

.cta-primary:hover::before {
  animation: shine 1s ease;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/* BOTÓN SECUNDARIO */
.cta-secondary {
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  border: 1px solid rgba(255,255,255,0.4);
  transition: all 0.4s ease;
}

.cta-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: #ffc400;
  transform: translateY(-4px);
}

/* Animación elegante */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===================================== */
/* ========= GALERÍA DEFINITIVA ======== */
/* ===================================== */

.gallery-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 120px 20px 80px;
}
.gallery-page::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, 
              rgba(0,0,0,0.95),
              rgba(0,0,0,0.7),
              transparent);
  pointer-events: none;
  z-index: 0;
}

.gallery-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: -1.5px;
  font-weight: 700;
  margin-bottom: 25px;
  text-shadow: 0 10px 40px rgba(0,0,0,0.6);
}
.gallery-hero h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #ffcc00;
  margin: 25px auto 0;
  opacity: 0.8;
}


.gallery-hero p {
  font-size: 18px;
  line-height: 1.8;
  color: #cfcfcf;
  max-width: 750px;
  margin: 0 auto;
}

/* GRID */

.gallery-container {
  max-width: 1200px;
  margin: 0 auto 120px auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 45px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  cursor: pointer;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.gallery-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

/* HOVER PREMIUM */

.gallery-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* GLOW SUAVE */

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: radial-gradient(circle at center,
              rgba(255, 204, 0, 0.15),
              transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
}

.gallery-item:hover::before {
  opacity: 1;
}
/* ============================= */
/* ===== PREMIUM LIGHTBOX ====== */
/* ============================= */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  z-index: 9999;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 20px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  transform: scale(0.9);
  transition: 0.4s ease;
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.6);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    background: #ffcc00;
    color: #000;
}


/* ===================================== */
/* ========== BOOKING PREMIUM ========== */
/* ===================================== */

.booking-page {
    background: linear-gradient(145deg,#0b0f19,#111827);
    min-height: 100vh;
}

.booking-section {
    padding: 120px 20px 100px;
    text-align: center;
}

.booking-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;

    background: linear-gradient(90deg, #ffcc70, #ff7a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.booking-sub {
    color: #9ca3af;
    margin-bottom: 60px;
}

/* WRAPPER */

.booking-wrapper {
    max-width: 950px;
    margin: auto;
    background: linear-gradient(
        160deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.02)
    );

    padding: 60px;
    border-radius: 40px;

    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow: 0 60px 180px rgba(0,0,0,0.7);
}

/* ================= CALENDAR ================= */

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header button {
    background: none;
    border: none;
    font-size: 22px;
    color: #f5c518;
    cursor: pointer;
}

.calendar-weekdays,
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 10px;
}

.calendar-weekdays div {
    font-weight: 600;
    color: #ffffff;
    opacity: 0.7;
    padding: 8px 0;
}

.calendar-grid div {
  padding: 14px;
  border-radius: 14px;

  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.02)
  );

  border: 1px solid rgba(255,255,255,0.06);

  backdrop-filter: blur(6px);

  transition: all 0.25s ease;
}

.calendar-grid .disabled {
  background: rgba(255,255,255,0.05);
  color: #555;
  pointer-events: none;
  opacity: 0.4;
}

.calendar-grid div:hover {
  transform: translateY(-3px);

  background: linear-gradient(
    135deg,
    #ffb700,
    #ff7a00
  );

  color: #000;

  box-shadow: 0 15px 30px rgba(255,122,0,0.4);
}

.day {
  cursor: pointer;
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s ease;
}

.day:hover {
  background: rgba(255,255,255,0.08);
  transform: scale(1.05);
}

.day.active {
  background: linear-gradient(
    135deg,
    #ffb700,
    #ff7a00
  );

  color: #000;
  font-weight: 600;

  box-shadow: 0 0 25px rgba(255,122,0,0.6);
}

.day.disabled {
  opacity: 0.25;
  pointer-events: none;
}



/* ================= HOURS ================= */

.hour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(100px,1fr));
    gap: 15px;
}

.hour-btn {
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    transition: 0.3s ease;
}

.hour-btn:hover {
    border-color: #f5c518;
}

.hour-btn.active {
    background: linear-gradient(45deg,#ff00cc,#f5c518);
    color: #000;
}

/* ================= FORM ================= */

.form-box {
    display: grid;
    gap: 18px;
}

.form-box input,
.form-box select,
.form-box textarea {
    padding: 16px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.form-box input::placeholder,
.form-box textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.form-box input:focus,
.form-box select:focus,
.form-box textarea:focus {
    border: 1px solid #ff7a00;
    box-shadow: 0 0 15px rgba(255,122,0,0.3);
}

.form-box textarea {
    min-height: 120px;
    resize: none;
}

/* SELECT FLECHA PERSONALIZADA */
.form-box select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    padding: 16px 45px 16px 16px;
    cursor: pointer;

    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.form-box select option {
    background: #111827;
    color: #ffffff;
}

/* ================= BUTTON ================= */

.whatsapp-btn {
    width: 100%;
    display: block;

    padding: 22px 40px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;

    border-radius: 60px;
    border: none;
    cursor: pointer;

    background: linear-gradient(
        90deg,
        #ff00aa 0%,
        #ff4d6d 40%,
        #ff7a00 100%
    );

    background-size: 200% 200%;
    background-position: center;

    box-shadow: 0 25px 80px rgba(255,0,150,0.35);

    transition: all 0.4s ease;
}

.whatsapp-btn:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 35px 100px rgba(255,0,150,0.55);
}


@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 rgba(255, 0, 200, 0.6);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 0, 200, 0.9);
  }
  100% {
    box-shadow: 0 0 0 rgba(255, 0, 200, 0.6);
  }
}.secure-note {
    margin-top: 20px;
    font-size: 14px;
    color: #aaa;
    text-align: center;
    line-height: 1.6;
}


.whatsapp-btn {
  animation: pulseGlow 4s infinite;
}


/* consentimiento obligatorio */
.consent-check {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #aaa;
    text-align: center;
}

/* FIX AUTOFILL + PLACEHOLDER */

.form-box input::placeholder,
.form-box textarea::placeholder {
color: rgba(255,255,255,0.6);
}

.form-box input:focus,
.form-box textarea:focus,
.form-box select:focus {
outline: none;
border-color: #f5c518;
box-shadow: 0 0 15px rgba(245,197,24,0.3);
}

/* Chrome autofill fix */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
-webkit-text-fill-color: #ffffff;
transition: background-color 5000s ease-in-out 0s;
}

.age-check {
    margin-top: 25px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;

    font-size: 14px;
    color: #ccc;

    text-align: center;
}

.age-check input {
    width: 18px;
    height: 18px;
    accent-color: #ff7a00;
    cursor: pointer;
}


/* ================= PRECIOS ================= */

.prices-container {
    max-width: 1200px;
    margin: 120px auto 160px auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.prices-container::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,0,204,0.08), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.price-card {
    position: relative;
    z-index: 1;
}
.prices-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 80px 20px;
    flex-wrap: wrap;
}

.price-card {
    position: relative;
    background: linear-gradient(145deg, #0d0d0d, #151515);
    border-radius: 30px;
    padding: 50px 40px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 30px 90px rgba(0,0,0,0.7);
    transition: all 0.4s ease;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 50px 140px rgba(0,0,0,0.85);
}

.price-card.featured {
    transform: scale(1.05);
    border: 1px solid rgba(255, 0, 150, 0.6);
    box-shadow:
        0 50px 160px rgba(0,0,0,0.9),
        0 0 60px rgba(255, 0, 150, 0.25);
}

.price-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.price-amount {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.price-features li {
    margin-bottom: 12px;
    color: #bbb;
    font-size: 15px;
}

.price-features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-size: 13px;
}


.price-btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    background: linear-gradient(90deg, #ff00aa, #ff7a00);
    color: white;
    box-shadow: 0 15px 40px rgba(255, 0, 150, 0.4);
    transition: all 0.3s ease;
}

.price-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(255, 0, 150, 0.6);
}

.badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: linear-gradient(90deg, #ff00aa, #ff7a00);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* ============================= */
/*      PRICING NOTICE PRO      */
/* ============================= */

.pricing-notice {
    display: flex;
    justify-content: center;
    padding: 80px 20px 40px;
}

.notice-box {
    max-width: 800px;
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 40px 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.notice-box h3 {
    font-size: 22px;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #ffffff, #f5c518);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.notice-box ul {
    list-style: none;
    padding: 0;
}

.notice-box li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #cbd5e1;
    font-size: 15px;
}

.notice-box li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff00cc;
    font-size: 18px;
}

/* ============================= */
/*      PRICING NOTE             */
/* ============================= */

.pricing-note {
    max-width: 900px;
    margin: 80px auto;
    text-align: center;
    padding: 0 20px;
}

.pricing-note h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.pricing-note p {
    color: #aaa;
    line-height: 1.8;
}



/* ============================= */
/*   PROFESSIONAL TERMS PRO     */
/* ============================= */

.professional-terms {
    padding: 100px 20px 60px;
    position: relative;
}

.terms-container {
    max-width: 1100px;
    margin: auto;
}

.professional-terms h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 60px;
    background: linear-gradient(90deg, #ffffff, #f5c518);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.term-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 35px;
    transition: 0.4s ease;
    backdrop-filter: blur(6px);
}

.term-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 0, 204, 0.6);
    box-shadow: 0 15px 40px rgba(255, 0, 204, 0.15);
}

.term-item h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

.term-item p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
}
/* ============================= */
/*   PREMIUM BACKGROUND LAYER   */
/* ============================= */

.professional-terms {
    padding: 120px 20px 100px;
    position: relative;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0) 0%,
        rgba(255,0,204,0.03) 40%,
        rgba(0,0,0,0) 100%
    );
}

/* Línea superior elegante */
.professional-terms::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff00cc, transparent);
    opacity: 0.6;
}
.premium-closing {
    margin-top: 70px;
    text-align: center;
    font-size: 15px;
    color: #9ca3af;
    letter-spacing: 0.5px;
}
/* ================= INCLUYE PROYECTO PREMIUM ================= */

/* ================= GLASS PREMIUM – INCLUYE PROYECTO ================= */

.project-includes {
   .project-includes {
    will-change: transform;
    position: relative;
    overflow: hidden;
}
    max-width: 1100px;
    margin: 140px auto;
    padding: 80px 60px;

    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);

    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 40px 120px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);

    transition: all 0.4s ease;
}
.project-includes:hover {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);

    box-shadow:
        0 70px 200px rgba(0,0,0,0.95),
        inset 0 1px 0 rgba(255,255,255,0.12);
}
.project-includes::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 40px;
    pointer-events: none;

    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.05) 0%,
        rgba(255,255,255,0.02) 40%,
        transparent 60%
    );

    opacity: 0.7;
}

.project-includes h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
    background: linear-gradient(90deg, #ffcc70, #ff7a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.include-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 22px 25px;

    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);

    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.05);

    transition: all 0.3s ease;
}

.include-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-6px);
}

.include-item span {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.include-item p {
    color: #cfcfcf;
    line-height: 1.6;
}
/* ============================= */
/*        CTA PREMIUM 2026       */
/* ============================= */

.final-cta-pro {
    padding: 160px 20px;
    display: flex;
    justify-content: center;
}

.cta-wrapper {
    text-align: center;
    max-width: 700px;
    position: relative;
}

.cta-line {
    display: block;
    width: 60px;
    height: 3px;
    margin: 0 auto 40px;
    border-radius: 3px;
    background: linear-gradient(90deg, #ff00cc, #f5c518);
    opacity: 0.8;
}

.final-cta-pro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #ffffff, #f5c518);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.final-cta-pro p {
    font-size: 18px;
    color: #aab4c4;
    line-height: 1.7;
    margin-bottom: 50px;
}

.cta-premium-btn {
    display: inline-block;
    padding: 16px 48px;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff00cc, #f5c518);
    color: white;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
}

.cta-premium-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(255, 0, 204, 0.4);
}

/* ============================= */
/*        LIGHTBOX PREMIUM       */
/* ============================= */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

/* ================================= */
/* CONTACTO PREMIUM LIMPIO */
/* ================================= */
/* HERO CONTACTO ELEGANTE */

.contact-hero {
  text-align: center;
  padding: 200px 20px 100px;
  position: relative;
}

.contact-hero h1 {
  font-size: 44px;
  margin-bottom: 15px;
  position: relative;
}

.contact-hero h1::after {
  content: "";
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #ff00c8, #ffcc00);
  display: block;
  margin: 20px auto 0;
  border-radius: 2px;
}

.contact-hero p {
  color: #aaa;
  font-size: 17px;
}

/* =============================== */
/* CONTACTO GRID PREMIUM */
/* =============================== */

.contact-top {
  max-width: 1200px;
  margin: 40px auto 100px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* INFO */

.contact-info {
    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.06),
        rgba(255,255,255,0.02)
    );

    padding: 60px;
    border-radius: 30px;

    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 40px 120px rgba(0,0,0,0.6),
        inset 0 1px 0 rgba(255,255,255,0.06);

    transition: all 0.4s ease;
}

.contact-info:hover {
    transform: translateY(-6px);
    box-shadow:
        0 60px 160px rgba(0,0,0,0.8),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

.contact-info h2 {
    margin-bottom: 25px;
}

/* MAPA */

.map-container {
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.map-container iframe {
    filter: grayscale(90%) contrast(1.1) brightness(0.85);
    transition: all 0.4s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%) contrast(1.1) brightness(1);
}

/* FORM */

.contact-booking {
    max-width: 700px;
    margin: 0 auto 160px;
    text-align: center;
}
.contact-booking h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 60px;

    background: linear-gradient(90deg, #ffcc70, #ff7a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-form {
    background: rgba(255,255,255,0.03);
    padding: 50px;
    border-radius: 30px;

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow: 0 40px 120px rgba(0,0,0,0.7);

    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 22px;

    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;

    color: #fff;
    font-size: 16px;

    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border: 1px solid rgba(255,122,0,0.8);
    box-shadow: 0 0 30px rgba(255,122,0,0.25);
    outline: none;
}
.contact-form button {
    margin: 40px auto 0;
    display: block;
}
.contact-professional-note {
    margin-top: 25px;
    font-size: 16px;
    color: #aaa;
    line-height: 1.6;
}

/* ============================= */
/* ACERCA */
/* ============================= */


.about-hero {
  text-align: center;
  padding: 200px 20px 100px;
}

.about-hero h1 {
    font-size: 42px;
    background: linear-gradient(90deg, #ffffff, #ffae00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero h1::after {
  content: "";
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #ff00c8, #ffcc00);
  display: block;
  margin: 20px auto 0;
  border-radius: 2px;
}

.about-hero p {
  color: #aaa;
}

/* MAIN */

.about-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.about-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    display: block;
}

.about-text {
    max-width: 500px;
}

.about-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.about-text p {
  color: #bbb;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* VALUES */

.about-values {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.value {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value::before {
    content: "";
    position: absolute;
    top: -60%;
    left: -60%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,0,200,0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value:hover {
    transform: translateY(-8px);
    border: 1px solid rgba(255,0,200,0.35);
    box-shadow: 0 30px 80px rgba(255,0,200,0.2);
}
.value h3 {
    transition: color 0.3s ease;
}

.value:hover h3 {
    color: #ff00c8;
}

.value:hover::before {
    opacity: 1;
}

.value h3 {
  margin-bottom: 15px;
}

.about-values {
    grid-template-columns: 1fr;
  }

  .about-seo-text {
  max-width: 900px;
  margin: 40px auto 0;
  padding: 0 20px;
  text-align: center;
  color: #888;
  font-size: 14px;
}
.about-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    display: block;
    transition: all 0.4s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 0, 200, 0.25);
}

.about-cta {
    width: 100%;
    max-width: 1100px;
    margin: 160px auto 140px auto;
    padding: 0 20px;
    text-align: center;
    display: block;
}

.about-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.about-cta p {
    color: #bbb;
    margin-bottom: 30px;
}


/* ============================= */
/* ===== GALERÍA SEO ULTRA ===== */
/* ============================= */

.gallery-seo {
    position: relative;
    max-width: 900px;
    margin: 160px auto 120px auto;
    padding: 70px 60px;
    text-align: center;

    background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.05);

    box-shadow:
        0 60px 160px rgba(0,0,0,0.7),
        inset 0 1px 0 rgba(255,255,255,0.06);

    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-seo h2 {
    font-size: 34px;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #ffcc70, #ff7ad9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    letter-spacing: 1px;
}
.gallery-seo h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    margin: 18px auto 0 auto;
    background: linear-gradient(90deg, #ffcc70, #ff7ad9);
    border-radius: 2px;
}

.gallery-seo p {
    color: #bbb;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 18px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}


/* ===== HOVER GLOW IMÁGENES ===== */

.gallery-item {
    position: relative;
    transition: transform 0.4s ease;
}

.gallery-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(circle at center, rgba(255,122,217,0.25), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.gallery-item:hover {
    transform: translateY(-8px);
}

.gallery-item:hover::before {
    opacity: 1;
}
/* ===== HOVER SEO BLOQUE ===== */

.gallery-seo {
    transition: all 0.4s ease;
}

.gallery-seo:hover {
    box-shadow:
        0 60px 160px rgba(0,0,0,0.7),
        0 0 60px rgba(255,122,217,0.15),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

/* ===== BLOQUE CONVERSIÓN GALERÍA ===== */

.gallery-conversion {
    text-align: center;
    padding: 140px 20px;
}

.gallery-conversion h2 {
    font-size: 34px;
    margin-bottom: 20px;
    font-weight: 600;
}

.gallery-conversion p {
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #bbb;
    line-height: 1.7;
}

.gallery-conversion .btn.primary {
    padding: 14px 36px;
    border-radius: 40px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.gallery-conversion .btn.primary:hover {
    transform: translateY(-4px);
}
/* ===== micro trigger psicologico ===== */
.conversion-note {
    margin-top: 20px;
    font-size: 13px;
    color: #888;
    letter-spacing: 1px;
}
.success-message {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    animation: fadeIn 0.6s ease-in-out;
}

.success-message h3 {
    font-size: 24px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #ff00c8, #ffcc00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.success-message p {
    color: #aaa;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.form-success {
    background: rgba(0, 255, 150, 0.08);
    border: 1px solid rgba(0, 255, 150, 0.3);
    padding: 20px;
    border-radius: 14px;
    margin-bottom: 20px;
    animation: fadeSlide 0.4s ease;
}

.success-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.success-icon {
    font-size: 22px;
    color: #00ff99;
}

.form-success strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.form-success p {
    font-size: 14px;
    color: #aaa;
    margin: 0;
}

.form-error {
    background: rgba(255, 0, 0, 0.08);
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: 20px;
    border-radius: 14px;
    margin-bottom: 20px;
    animation: fadeSlide 0.4s ease;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ===== TESTIMONIOS PREMIUM ===== */

.testimonials {
  padding: 120px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 36px;
  margin-bottom: 60px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(255, 0, 200, 0.2);
}

.stars {
  color: #ffcc00;
  font-size: 18px;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 20px;
  color: #ccc;
}

.testimonial-card span {
  font-weight: 600;
  color: #fff;
}
.testimonial-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.rating {
  font-weight: 600;
  color: #ffcc00;
}

.client-info span {
  display: block;
  font-size: 13px;
  color: #888;
  margin-top: 5px;
}


/* ================= MOBILE PREMIUM ================= */
@media (max-width: 768px) {
  .about-main {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
      }
}

@media (max-width: 768px) {
  /* ===== RESET GENERAL ===== */


  
  body {
    overflow-x: hidden;
  }

  section {
    width: 100%;
    padding: 70px 20px;
    box-sizing: border-box;
  }
  /* ===== LOGO movil ===== */ 
 
  .nav-center img {
  height: 42px;
  } 


  /* ===== NAVBAR ===== */

  .nav-left {
    display: none;
  }


.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  background: transparent !important;
}

.header.navbar {
  background: transparent !important;
}

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2001;
    cursor: pointer;
  }

  .hamburger span {
    width: 30px;
    height: 3px;
    background: white;
    transition: 0.3s ease;
  }

  /* Animación */
  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  

  /* Menú lateral */
  .nav-right {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100%;

  background: #0b0b0b;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 120px 40px 40px;

  transition: right 0.4s ease;
  z-index: 2000;
}

  .nav-right.active {
    right: 0;
  }

.nav-right a {
  font-size: 20px;
  font-weight: 500;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  width: 100%;
}

  .nav-right.active a {
    opacity: 1;
    transform: translateX(0);
  }
  .nav-right::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 40px;
  width: 40px;
  height: 2px;
  background: #ff8c00;
}

 
  /* ===== HERO ===== */

 .hero {
  min-height: 110vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 20px 80px;
}

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .subtitle {
    font-size: 15px;
    max-width: 90%;
    margin: 0 auto 10px;
  }

  .buttons {
  flex-direction: column;
  align-items: center;
  gap: 30px;
}


  /* ===== FEATURES ===== */

  .features,
  .home-gallery,
  .testimonials,
  .cta-section,
  .footer {
    text-align: center;
  }

  .feature-card {
    padding: 30px 25px;
  }

  /* ===== GALERÍA ===== */

  .gallery-hero {
  min-height: 110vh;
  padding: 120px 20px 80px;
  }
  .gallery-grid {
    gap: 20px;
  }

  .gallery-item img {
    border-radius: 16px;
  }

  /* ===== TESTIMONIOS ===== */

  .testimonial-card {
    padding: 25px;
  }

  /* ===== CTA ===== */

  .cta-section h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .cta-buttons {
    align-items: center;
    flex-direction: column;
    gap: 15px;
  }

  /* ===== FOOTER ===== */

  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .footer-col {
    width: 100%;
  }

/* ===== precios ===== */

 .price-card.featured {
    transform: none;
  }
  .prices-page .price-grid {
    align-items: center;
    gap: 30px;
  }

  .prices-page .price-card,
  .prices-page .card {
    max-width: 100%;
    padding: 25px 20px;
  }

  .prices-page section {
    padding: 70px 20px;
  }
.prices-page .price-card h3,
.prices-page .card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.prices-page .price-card h2,
.prices-page .card h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

.prices-page .price-card ul,
.prices-page .card ul {
  font-size: 14px;
  margin-bottom: 20px;
}

.prices-page .price-card button,
.prices-page .card button {
  width: 100%;
  padding: 14px;
  border-radius: 18px;
  font-size: 14px;
}

.prices-page .conditions {
  padding-top: 80px;
}

.prices-page .project-includes {
  padding-top: 80px;
}

.prices-page .cta-section {
  padding: 100px 20px;
}
.prices-page section {
  padding-top: 70px;
  padding-bottom: 70px;
}
  /* Footer ajuste */
  .prices-page footer {
    padding-top: 60px;
  }


  /* ===== CONTACTO (IMPORTANTE) ===== */

  .contact-top {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }

  .contact-section,
  .contact-container {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
  

  .contact-info {
    padding: 40px 25px;
    border-radius: 30px;
  }

  /* MAPA */
  .map-container {
    width: 100%;
    height: 280px;
    margin-top: 20px;
  }

  .map-container iframe {
    width: 100%;
    height: 100%;
  }

 /* ===== RESET GENERAL ===== */
body {
  overflow-x: hidden;
}

.booking-section {
  padding: 60px 15px;
  box-sizing: border-box;
}

/* ===== TÍTULO ===== */

.booking-section h1 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.booking-sub {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 30px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/* ===== WRAPPER ===== */
.booking-wrapper {
  width: 100%;
  max-width: 100%;
}

/* =========================================
   CALENDARIO PREMIUM
========================================= */

.calendar-box {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.calendar-header h3 {
  font-size: 16px;
}

.calendar-header button {
  background: none;
  border: none;
  font-size: 18px;
  color: #f7b731;
  cursor: pointer;
}

/* DÍAS SEMANA */
.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  font-size: 12px;
  opacity: 0.6;
  margin-bottom: 10px;
}

/* GRID DÍAS */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 5px;
}

.calendar-grid div {
  height: 38px;
  border-radius: 12px;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
}

/* DÍA ACTIVO */
.calendar-grid .active {
  background: linear-gradient(45deg, #ff3c6f, #ff8a00);
  color: white;
  font-weight: 600;
}

/* =========================================
   HORAS
========================================= */

.hours-box {
  margin-top: 10px;
}

.hours-box h3 {
  font-size: 15px;
  margin-bottom: 15px;
}

.hour-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hour-btn {
  padding: 12px;
  border-radius: 14px;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hour-btn:hover {
  background: rgba(255,255,255,0.1);
}

/* =========================================
   FORMULARIO
========================================= */

.form-box {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-box input,
.form-box select,
.form-box textarea {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: white;
  font-size: 16px;
}

.form-box textarea {
  min-height: 90px;
  resize: none;
}

/* BOTÓN WHATSAPP PREMIUM */
.whatsapp-btn {
  padding: 16px;
  border-radius: 18px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(45deg, #ff3c6f, #ff8a00);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(255,60,111,0.4);
}

/* CHECKS */
.age-check,
.consent-check {
  font-size: 12px;
  opacity: 0.7;
  text-align: left;
}


  /* Centrar iconos footer en móvil */
.social-icons {
  justify-content: center;
  align-items: center;
   margin-top: 20px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

 .legal-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
  }

  .legal-links a {
    margin-left: 0;
  }
/* ===== FORMULARIO PREMIUM ===== */

.cta-premium-btn {
  display: block;
  width: 100%;
  min-height: 54px;
  max-width: 320px;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-premium-btn.loading {
  opacity: 0.7;
  pointer-events: none;
}

.cta-premium-btn.success {
  background: #00c37a !important;
}

.form-message {
  margin-top: 18px;
  font-size: 16px;
  font-weight: 500;
  height: 60px;   /* 👈 ESTA LÍNEA ES LA CLAVE */
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-message.show {
  opacity: 1;
}
}

/* ===== BASE RESPONSIVE GLOBAL ===== */

* {
  box-sizing: border-box;
}
body {
  overflow-x: hidden;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}
/* FIX MOVIMIENTO LATERAL PRECIOS */
.prices-page {
  overflow-x: hidden;
}
.status.confirmada {
    background:#0f2d1f;
    color:#00ff88;
    border:1px solid #00ff88;
}

.status.cancelada {
    background:#2d0f0f;
    color:#ff4c4c;
    border:1px solid #ff4c4c;
}

.status.pendiente {
    background:#2d240f;
    color:#ffc107;
    border:1px solid #ffc107;
}

.status.invalida {
    background:#222;
    color:#aaa;
    border:1px solid #444;
}