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

body {
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top, #3b0b63 0, #12031e 50%, #050109 100%);
  color: #f7f4ff;
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.main-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(6, 0, 20, 0.95), rgba(6, 0, 20, 0.75));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

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

.logo-img {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 2px solid #ffd76b;
  box-shadow: 0 0 18px rgba(255, 215, 107, 0.5);
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
}

.logo-name {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-city {
  font-size: 0.7rem;
  opacity: 0.8;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding-block: 0.25rem;
  letter-spacing: 0.08em;
}

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
}

/* HERO */

.hero {
  position: relative;
  min-height: 90vh;
  padding-top: 80px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: blur(3px);
  transform: scale(1.05);
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 96, 161, 0.35), transparent 55%),
              radial-gradient(circle at bottom, rgba(49, 9, 80, 0.9), rgba(4, 0, 19, 1));
  z-index: -1;
}

.hero-content {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 80px);
}

.hero-text {
  max-width: 560px;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: #ffd76b;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  margin-top: 0.9rem;
  font-size: 1rem;
  max-width: 32rem;
  opacity: 0.93;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-block: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #ffd76b, #ff9b2f);
  color: #3a043d;
  box-shadow: 0 0.4rem 1.5rem rgba(0, 0, 0, 0.4);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0.7rem 2rem rgba(0, 0, 0, 0.55);
}

.btn.outline {
  border-color: #ffd76b;
  background: transparent;
  color: #ffd76b;
}

.btn.outline:hover {
  background: rgba(10, 0, 32, 0.7);
}

.btn.full {
  width: 100%;
}

.hero-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.86rem;
  opacity: 0.85;
}

/* SECTIONS */

.section {
  padding-block: 4rem;
}

.section-dark {
  background: radial-gradient(circle at top, #2c084b 0, #0a0213 50%, #050109 100%);
}

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

.section-heading h2 {
  font-size: 1.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.7rem;
}

.section-heading p {
  max-width: 460px;
  margin-inline: auto;
  font-size: 0.98rem;
  opacity: 0.9;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.section-text h2 {
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.8rem;
}

.section-text p + p {
  margin-top: 0.7rem;
}

.features-list {
  list-style: none;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.features-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
  font-size: 0.96rem;
}

.features-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.6rem;
  color: #ffd76b;
}

.disclaimer {
  font-size: 0.75rem;
  opacity: 0.75;
  margin-top: 0.8rem;
}

.video-card {
  background: radial-gradient(circle at top left, rgba(255, 215, 107, 0.12), rgba(10, 0, 30, 0.95));
  border-radius: 1.3rem;
  padding: 1.1rem;
  border: 1px solid rgba(255, 215, 107, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 1rem;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-caption {
  font-size: 0.82rem;
  opacity: 0.88;
  margin-top: 0.75rem;
}

/* CARDS & GRIDS */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.card {
  background: radial-gradient(circle at top, rgba(255, 215, 107, 0.12), rgba(7, 0, 23, 0.98));
  border-radius: 1.3rem;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 107, 0.25);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.card-body {
  padding: 1rem 1.2rem 1.1rem;
  font-size: 0.9rem;
}

.card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* GALERÍA */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.9rem;
}

.gallery-item {
  border: none;
  padding: 0;
  background: transparent;
  border-radius: 0.9rem;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  isolation: isolate;
}

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

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.55));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
  opacity: 0.9;
}

.gallery-item:hover::after {
  opacity: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(3, 0, 10, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 1rem;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(900px, 100%);
  max-height: 90vh;
  border-radius: 1rem;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.85);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 2.1rem;
  color: #ffffff;
  cursor: pointer;
}

/* RESTAURANTE */

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

.food-grid img {
  border-radius: 1rem;
  height: 150px;
  object-fit: cover;
}

/* SOCIAL */

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.social-card {
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 215, 107, 0.4);
  background: radial-gradient(circle at top left, rgba(255, 215, 107, 0.15), rgba(7, 0, 20, 0.95));
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.9rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.social-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
  border-color: #ffd76b;
}

.social-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  opacity: 0.9;
}

.social-user {
  font-weight: 600;
}

/* CONTACTO */

.contact-grid {
  align-items: flex-start;
}

.contact-list {
  list-style: none;
  margin: 1rem 0 1.5rem;
  font-size: 0.9rem;
}

.contact-list li + li {
  margin-top: 0.3rem;
}

.contact-form {
  background: radial-gradient(circle at top, rgba(255, 215, 107, 0.16), rgba(6, 0, 20, 0.98));
  padding: 1.4rem 1.5rem 1.5rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 215, 107, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75);
  margin-top: 0.5rem;
}

.contact-form h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.85rem;
}

.form-field label {
  opacity: 0.9;
}

.form-field input,
.form-field textarea {
  background: rgba(4, 0, 15, 0.9);
  border-radius: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.55rem 0.85rem;
  color: #f8f4ff;
  font: inherit;
  outline: none;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #ffd76b;
  box-shadow: 0 0 0 1px rgba(255, 215, 107, 0.5);
}

.map-card {
  border-radius: 1.3rem;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 107, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  min-height: 260px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
}

/* FOOTER */

.main-footer {
  padding-block: 2.2rem 2.5rem;
  background: #050109;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.75rem;
  opacity: 0.9;
}

.footer-legal {
  max-width: 860px;
}

.footer-made a {
  color: #ffd76b;
}

/* WHATSAPP BUTTON */

.wa-button {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  background: #25d366;
  color: #061708;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.65);
}

.wa-button::before {
  content: "✆";
  font-size: 1.1rem;
}

/* RESPONSIVE */

@media (max-width: 880px) {
  .main-nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: radial-gradient(circle at top, rgba(21, 0, 60, 0.98), rgba(3, 0, 10, 0.98));
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1.5rem 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .main-nav.open {
    max-height: 280px;
  }

  .main-nav a {
    padding-block: 0.3rem;
  }

  .nav-toggle {
    display: flex;
  }

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

  .hero {
    text-align: left;
  }

  .hero-content {
    justify-content: flex-start;
    align-items: flex-end;
  }

  .hero-text {
    padding-bottom: 3.5rem;
  }

  .hero-ctas {
    justify-content: flex-start;
  }

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

  .wa-button span {
    display: none;
  }

  .wa-button {
    padding-inline: 0.7rem;
  }
}

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

  .section {
    padding-block: 3.2rem;
  }

  .card img {
    height: 160px;
  }

  .food-grid img {
    height: 130px;
  }

  .footer-inner {
    font-size: 0.72rem;
  }
}
