
:root {
  --bg-dark: #050608;
  --bg-alt: #101218;
  --accent: #d63b71;
  --accent-soft: #f6d2df;
  --accent-gold: #d4af37;
  --text-main: #f5f5f5;
  --text-muted: #b3b3b3;
  --border-subtle: rgba(255,255,255,0.08);
  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow-soft: 0 18px 45px rgba(0,0,0,0.55);
  --shadow-subtle: 0 10px 30px rgba(0,0,0,0.35);
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top, #141927 0, #050608 52%, #020204 100%);
  color: var(--text-main);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(5,6,8,0.92), rgba(5,6,8,0.75), transparent);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem 0.5rem;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(212,175,55,0.6);
  box-shadow: 0 0 12px rgba(212,175,55,0.65);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.brand-tagline {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.85rem;
}

.main-nav a {
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 0.15rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent));
  transition: width 0.2s ease-out;
}

.main-nav a:hover {
  color: var(--text-main);
}

.main-nav a:hover::after {
  width: 100%;
}

.btn-header-call {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.9);
  background: radial-gradient(circle at top left, rgba(212,175,55,0.3), rgba(5,6,8,1));
  color: #fff;
  font-size: 0.83rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 0 18px rgba(212,175,55,0.25);
}

.btn-header-call::before {
  content: "✆";
  font-size: 0.85rem;
}

/* Hero */

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.2);
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(212,175,55,0.32), transparent 52%),
    radial-gradient(circle at bottom right, rgba(214,59,113,0.45), transparent 55%),
    linear-gradient(to bottom, rgba(5,6,8,0.72), rgba(5,6,8,0.96));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 6.5rem 1.25rem 4rem;
  max-width: 640px;
}

.hero h1 {
  font-size: clamp(2.3rem, 3vw + 1.4rem, 3rem);
  margin-bottom: 0.75rem;
}

.hero p {
  max-width: 36rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.btn-primary,
.btn-secondary {
  border-radius: 999px;
  padding: 0.8rem 1.7rem;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent));
  color: #050608;
  font-weight: 600;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.btn-secondary {
  background: rgba(5,6,8,0.7);
  color: var(--text-main);
  border: 1px solid rgba(255,255,255,0.18);
}

.btn-primary.full {
  width: 100%;
  justify-content: center;
}

.hero-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Sections */

.section {
  padding: 4rem 0;
}

.section-alt {
  background: radial-gradient(circle at top, #111522 0, #06070a 52%, #040406 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header.small {
  text-align: left;
  margin-bottom: 1.5rem;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.section-header p {
  color: var(--text-muted);
  max-width: 32rem;
  margin: 0.2rem auto 0;
  font-size: 0.95rem;
}

/* Cards */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.5rem;
}

.card {
  background: radial-gradient(circle at top, rgba(246,210,223,0.06), rgba(16,18,24,1));
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.card img {
  height: 210px;
  object-fit: cover;
}

.card-body {
  padding: 1.25rem 1.3rem 1.4rem;
}

.card-body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
}

.card-body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Experiencia */

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0,1.2fr) minmax(0,1.1fr);
  gap: 2.6rem;
  align-items: center;
}

.experience-text h2 {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.experience-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.experience-text p + p {
  margin-top: 0.6rem;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.checklist li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.checklist li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.7rem;
  color: var(--accent-gold);
}

.experience-images {
  display: grid;
  grid-template-columns: minmax(0,2fr) minmax(0,1.3fr);
  gap: 0.75rem;
}

.experience-main img {
  border-radius: var(--radius-xl);
  height: 280px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.experience-secondary {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
}

.experience-secondary img {
  border-radius: var(--radius-lg);
  height: 132px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-subtle);
}

/* Galería */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 0.75rem;
}

.gallery-item {
  border: none;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.3s ease-out, filter 0.3s ease-out;
}

.gallery-item::after {
  content: "Ver";
  position: absolute;
  right: 0.55rem;
  bottom: 0.45rem;
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(5,6,8,0.78);
  border: 1px solid rgba(255,255,255,0.28);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

/* Reservaciones */

.reservation-grid {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
  gap: 2.4rem;
  align-items: flex-start;
}

.contact-form {
  background: radial-gradient(circle at top, rgba(214,59,113,0.14), rgba(16,18,24,1));
  border-radius: var(--radius-xl);
  padding: 1.8rem 1.6rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.9rem;
}

label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

input,
textarea {
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(3,4,8,0.9);
  color: var(--text-main);
  padding: 0.65rem 0.75rem;
  font-family: inherit;
  font-size: 0.9rem;
}

input:focus,
textarea:focus {
  outline: 1px solid rgba(214,59,113,0.8);
  box-shadow: 0 0 0 1px rgba(214,59,113,0.5);
}

textarea {
  resize: vertical;
}

.video-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.video-embed iframe {
  width: 100%;
  min-height: 220px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
}

/* Social */

.social-embed h3 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
}

.social-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.85rem;
}

.social-card {
  background: rgba(5,6,8,0.9);
  border-radius: var(--radius-lg);
  padding: 0.9rem 0.9rem 1rem;
  border: 1px solid var(--border-subtle);
}

.social-card h4 {
  margin: 0 0 0.3rem;
  font-size: 0.95rem;
}

.social-card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.social-iframe iframe {
  width: 100%;
  height: 180px;
  border-radius: 12px;
}

.social-link {
  display: inline-flex;
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: var(--accent-soft);
  text-decoration: none;
}

/* Ubicación */

.location-grid {
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(0,1.1fr);
  gap: 2.1rem;
  align-items: center;
}

.map-wrapper iframe {
  width: 100%;
  min-height: 260px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.4rem 0 1.6rem;
  background: #050608;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-brand a {
  color: var(--accent-soft);
  text-decoration: none;
}

/* WhatsApp float */

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1.15rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: radial-gradient(circle at top, #25d366, #075e54);
  color: #fff;
  text-decoration: none;
  font-size: 0.86rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
}

.wa-icon {
  font-size: 1.1rem;
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.75), rgba(0,0,0,0.92));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-out;
  z-index: 60;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(90vw, 900px);
  max-height: 80vh;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.6rem;
  font-size: 2rem;
  background: transparent;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* Responsive */

@media (max-width: 980px) {
  .header-inner {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .main-nav {
    order: 2;
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn-header-call {
    order: 1;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .experience-grid,
  .reservation-grid,
  .location-grid {
    grid-template-columns: minmax(0,1fr);
  }

  .experience-images {
    max-width: 460px;
  }

  .social-grid {
    grid-template-columns: minmax(0,1fr);
  }
}

@media (max-width: 720px) {
  .hero-content {
    padding-top: 5.4rem;
  }

  .cards-grid {
    grid-template-columns: minmax(0,1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .experience-secondary img {
    height: 120px;
  }

  .whatsapp-float {
    right: 0.75rem;
    bottom: 0.85rem;
  }

  .header-inner {
    padding-inline: 0;
  }
}

@media (max-width: 540px) {
  .hero h1 {
    font-size: 1.9rem;
  }

  .hero-info {
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: minmax(0,1fr);
  }
}
