* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0b0b0b;
  color: #fff;
}

/* =====================
   HERO
===================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* ⬇️ HERO LEFT LIMPIO (SIN PARALLAX, SIN GRIS) */
.hero-left {
  position: relative;
  background-image: url("para.jpg"); /* 👈 TU IMAGEN SE VE */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* OVERLAY MUY SUAVE SOLO PARA CONTRASTE */
.hero-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25); /* 👈 NO TAPA LA FOTO */
  z-index: 1;
}

/* AURA DORADA */
.hero-left::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212,175,55,0.3),
    rgba(212,175,55,0.15),
    transparent 70%
  );
  animation: auraPulse 6s ease-in-out infinite;
  z-index: 2;
}

/* LOGO REDONDO */
.hero-logo-big {
  width: 260px;
  height: 260px;        /* 👈 CLAVE PARA CÍRCULO */
  border-radius: 50%;
  object-fit: cover;
  animation: pulseLuxury 5s ease-in-out infinite;
  box-shadow:
    0 0 0 6px rgba(212,175,55,0.18),
    0 30px 80px rgba(0,0,0,0.45);
  z-index: 3;
}

/* =====================
   HERO RIGHT
===================== */
.hero-right {
  background: #0b0b0b;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
}

.tagline {
  color: #d4af37;
  letter-spacing: 3px;
  font-size: 13px;
}

.hero-right p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 420px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid #d4af37;
  color: #d4af37;
  text-decoration: none;
  letter-spacing: 2px;
  width: fit-content;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #d4af37;
  color: #000;
}
/* =====================
   FORMULARIO RESERVA
===================== */

.reserva-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 420px;
}

.reserva-form label {
  font-size: 12px;
  letter-spacing: 1px;
  color: #d4af37;
}

.reserva-form input {
  background: transparent;
  border: 1px solid rgba(212,175,55,0.4);
  padding: 12px 14px;
  color: #fff;
  font-size: 14px;
  outline: none;
}

.reserva-form input::placeholder {
  color: rgba(255,255,255,0.6);
}

.reserva-form input:focus {
  border-color: #d4af37;
}

.reserva-form button {
  margin-top: 20px;
  cursor: pointer;
  background: transparent;
}

/* =====================
   RESPONSIVE TABLET
===================== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    min-height: 55vh;
  }

  .hero-right {
    padding: 60px 50px;
  }

  .hero-logo-big {
    width: 220px;
    height: 220px;
  }
}

/* =====================
   RESPONSIVE MOBILE
===================== */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-left {
    min-height: 45vh;
  }

  /* AURA MÁS PEQUEÑA */
  .hero-left::before {
    width: 360px;
    height: 360px;
  }

  .hero-logo-big {
    width: 180px;
    height: 180px;
  }

  .hero-right {
    padding: 40px 24px;
    align-items: center;
    text-align: center;
  }

  .tagline {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .hero-right p {
    font-size: 16px;
  }

  .reserva-form {
    width: 100%;
    max-width: 100%;
  }

  .reserva-form input {
    font-size: 15px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

/* =====================
   MOBILE PEQUEÑO
===================== */
@media (max-width: 480px) {
  .hero-left {
    min-height: 40vh;
  }

  .hero-logo-big {
    width: 150px;
    height: 150px;
  }

  .hero-right {
    padding: 30px 18px;
  }

  .reserva-form {
    gap: 12px;
  }

  .reserva-form input {
    padding: 11px 12px;
  }
}



/* =====================
   ABOUT
===================== */
.about {
  background: #fff;
  color: #111;
  padding: 100px 15%;
}

.about h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 30px;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  background: radial-gradient(circle at top, #141414, #000);
  padding: 90px 10%;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.feature {
  color: #e5e5e5;
}

.feature p {
  margin-top: 14px;
  font-size: 15px;
  letter-spacing: 0.3px;
}

/* icono */
.feature-icon {
  width: 70px;
  height: 70px;
  border: 1px solid rgba(212, 175, 55, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #d4af37;
  font-size: 26px;
  position: relative;
  transition: all 0.35s ease;
}

/* glow animal fino */
.feature-icon::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.35),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* pulso lento */
.feature-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(212, 175, 55, 0.4);
  animation: pulse 4s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.35);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

.feature:hover .feature-icon {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.35);
  border-color: #d4af37;
}

.feature:hover .feature-icon::before {
  opacity: 1;
}

/* responsive */
@media (max-width: 900px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .features {
    grid-template-columns: 1fr;
  }
}





/* =====================
   LEGAL
===================== */
.legal {
  background: #f5f5f5;
  color: #111;
  padding: 80px 15%;
}

.legal h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

.rnt {
  margin-top: 20px;
  font-size: 14px;
}

/* =====================
   FOOTER
===================== */
footer {
  background: #000;
  text-align: center;
  padding: 30px;
  font-size: 13px;
  color: #888;
}

/* =====================
   ANIMACIONES
===================== */
@keyframes pulseLuxury {
  0% { transform: scale(1); }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

@keyframes auraPulse {
  0% { transform: scale(0.95); opacity: 0.45; }
  50% { transform: scale(1.08); opacity: 0.8; }
  100% { transform: scale(0.95); opacity: 0.45; }
}


/* =====================
   MODAL RESERVA
===================== */
.modal-reserva {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
}

.modal-reserva.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #0b0b0b;
  border: 1px solid rgba(212,175,55,0.4);
  padding: 40px 30px;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.modal-box h2 {
  color: #d4af37;
  margin-bottom: 15px;
}

.modal-box p {
  line-height: 1.6;
  margin-bottom: 25px;
}
