
:root {
  --primary: #0b2046;
  --primary-light: #213a68;
  --accent: #f6b93b;
  --background: #f5f6fa;
  --text-main: #222222;
  --text-light: #f9f9f9;
  --border-soft: #dde1eb;
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--background);
  color: var(--text-main);
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 94%);
  margin: 0 auto;
}

/* Header */

header {
  background: radial-gradient(circle at top left, #1c3b7a, #050b1a);
  color: var(--text-light);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  overflow: hidden;
  background: #0b2046;
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  flex-shrink: 0;
}

.brand-text h1 {
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}

.brand-text span {
  font-size: 0.8rem;
  opacity: 0.85;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

nav a {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

nav a:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-1px);
}

/* Hero */

.hero {
  background: linear-gradient(145deg, #020617 0%, #0b2046 45%, #1b335f 100%);
  color: var(--text-light);
  padding: 3.2rem 0 2.8rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 10%, rgba(246,185,59,0.16), transparent 60%),
              radial-gradient(circle at 90% 80%, rgba(56,189,248,0.12), transparent 60%);
  opacity: 0.95;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 2.6rem;
  align-items: center;
  z-index: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.6rem 0.25rem 0.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(15,23,42,0.7);
  font-size: 0.72rem;
  margin-bottom: 0.75rem;
}

.badge-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fde68a, #f59e0b);
  display: grid;
  place-items: center;
  color: #111827;
  font-size: 0.7rem;
}

.hero h2 {
  font-size: clamp(1.9rem, 2.5vw + 1.4rem, 2.7rem);
  margin: 0 0 0.5rem;
}

.hero h2 span {
  color: var(--accent);
}

.hero-sub {
  font-size: 0.98rem;
  opacity: 0.9;
  max-width: 32rem;
}

.hero-bullets {
  display: grid;
  gap: 0.4rem;
  margin: 1.2rem 0 1.4rem;
  font-size: 0.9rem;
}

.hero-bullets span::before {
  content: "• ";
  color: var(--accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn-primary,
.btn-ghost {
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, border 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: #111827;
  box-shadow: 0 12px 30px rgba(234,179,8,0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(234,179,8,0.45);
}

.btn-ghost {
  border-color: rgba(248,250,252,0.35);
  background: rgba(15,23,42,0.4);
  color: #e5e7eb;
}

.btn-ghost:hover {
  background: rgba(15,23,42,0.8);
}

.hero-note {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Hero media */

.hero-media {
  position: relative;
}

.hero-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15,23,42,0.85);
  border: 1px solid rgba(148,163,184,0.35);
  background: radial-gradient(circle at top, rgba(15,118,255,0.1), rgba(15,23,42,1));
}

.hero-card img {
  max-height: 320px;
  width: 100%;
  object-fit: cover;
}

.hero-tag {
  position: absolute;
  bottom: 10px;
  left: 14px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.88);
  border: 1px solid rgba(148,163,184,0.4);
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}

/* Section generic */

.section {
  padding: 3rem 0 2.5rem;
}

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

.section-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.45rem;
}

.section-title {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  font-size: 0.9rem;
  color: #4b5563;
}

/* Amenities */

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

.amenity {
  background: #ffffff;
  border-radius: 18px;
  padding: 1rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 25px rgba(15,23,42,0.03);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.amenity-title {
  font-weight: 600;
  font-size: 0.95rem;
}

.amenity-tagline {
  font-size: 0.8rem;
  color: #6b7280;
}

/* Gallery */

.gallery-wrapper {
  background: radial-gradient(circle at top, #eff6ff, #e5e7eb);
  padding: 2.6rem 0 2.4rem;
}

.gallery-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 1.4rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 14px 35px rgba(15,23,42,0.06);
}

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

.gallery-grid figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}

.gallery-grid img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.gallery-grid figure::after {
  content: "Ver más";
  position: absolute;
  inset: auto 6px 6px auto;
  font-size: 0.7rem;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.65);
  color: #f9fafb;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s;
}

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

.gallery-grid figure:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.86);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 90;
  padding: 1.5rem;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-inner {
  max-width: 960px;
  width: 100%;
}

.lightbox-inner img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 18px;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 1.4rem;
  color: #e5e7eb;
  cursor: pointer;
}

/* Video + Location */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 1.3rem;
  align-items: stretch;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.2rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 26px rgba(15,23,42,0.04);
}

.card h3 {
  margin-top: 0;
  font-size: 1rem;
}

.responsive-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 14px;
}

.responsive-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.4rem;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0.2rem 0 0;
  font-size: 0.92rem;
}

.contact-info-list li {
  margin-bottom: 0.35rem;
}

.contact-highlight {
  margin-top: 0.7rem;
  font-size: 0.86rem;
  color: #4b5563;
}

.contact-form label {
  display: block;
  font-size: 0.83rem;
  margin-bottom: 0.2rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s, background 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(59,130,246,0.35);
  background: #f9fafb;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  margin-top: 0.6rem;
}

/* Social embeds */

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.4rem;
}

.social-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 0.7rem;
  border: 1px solid var(--border-soft);
  font-size: 0.8rem;
}

.social-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  background: transparent;
}

.social-name {
  font-weight: 600;
  font-size: 0.8rem;
}

.social-handle {
  font-size: 0.75rem;
  color: #6b7280;
}

.social-card a.btn-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  font-size: 0.75rem;
  font-weight: 500;
  background: #f9fafb;
}

.social-preview {
  margin-top: 0.45rem;
  border-radius: 10px;
  overflow: hidden;
  background: #f3f4f6;
  font-size: 0.74rem;
  padding: 0.45rem;
  color: #4b5563;
}

/* Floating WhatsApp */

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #22c55e;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 40px rgba(22,163,74,0.75);
  z-index: 60;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

/* Footer */

footer {
  background: #020617;
  color: #9ca3af;
  padding: 1.4rem 0 1.6rem;
  font-size: 0.8rem;
  margin-top: 1.5rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

footer a {
  color: #e5e7eb;
  text-decoration: underline;
  text-decoration-color: rgba(148,163,184,0.7);
}

/* Responsive */

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media {
    order: -1;
  }

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

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

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

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  nav ul {
    flex-wrap: wrap;
    gap: 0.35rem;
  }

  .hero {
    padding-top: 2.4rem;
  }

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

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

  .hero-card img {
    max-height: 260px;
  }
}
