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

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1f2933;
  background-color: #faf7f2;
  line-height: 1.6;
}

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

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

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

.brand img {
  height: 56px;
}

.main-nav {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.main-nav a {
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
  background: rgba(16, 185, 129, 0.08);
  color: #047857;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #10b981, #0f766e);
  color: #fff;
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(16, 185, 129, 0.45);
}

.btn-outline {
  border: 1px solid rgba(15, 23, 42, 0.15);
  background: rgba(255, 255, 255, 0.9);
  color: #111827;
}

.btn-outline:hover {
  background: #111827;
  color: #f9fafb;
}

.btn-call {
  background: #f59e0b;
  color: #111827;
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.35);
}

.btn-call:hover {
  background: #d97706;
}

.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: brightness(0.75);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(16, 185, 129, 0.4), transparent 55%),
              linear-gradient(to bottom, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.9));
}

.hero-content {
  position: relative;
  padding: 5rem 1.25rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 640px;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  background: rgba(15, 23, 42, 0.7);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}

.hero h1 span {
  display: block;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  font-weight: 300;
  opacity: 0.9;
  margin-top: 0.35rem;
}

.hero-text {
  max-width: 34rem;
  font-size: 0.98rem;
  opacity: 0.96;
}

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

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.65);
  font-size: 0.82rem;
}

.hero-pill .pill-label {
  opacity: 0.8;
}

.hero-pill .pill-value {
  background: #10b981;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-weight: 600;
}

.section {
  padding: 4rem 0;
}

.section-light {
  background: #fdfaf5;
}

.section-dark {
  background: #111827;
  color: #e5e7eb;
}

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

.section-header.left {
  text-align: left;
}

.section-header h2 {
  font-size: 1.8rem;
  margin: 0 0 0.5rem;
}

.section-header p {
  margin: 0;
  color: #6b7280;
}

.section-dark .section-header p {
  color: #9ca3af;
}

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

.promo-card {
  background: #ffffff;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
}

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

.promo-body {
  padding: 1rem 1.1rem 1.2rem;
}

.promo-body h3 {
  margin: 0 0 0.3rem;
  font-size: 1.1rem;
}

.promo-body p {
  margin: 0;
  font-size: 0.9rem;
  color: #6b7280;
}

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

.menu-photo img {
  border-radius: 1.5rem;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.22);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 2rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 0.4rem;
}

.feature-list span {
  font-size: 1.15rem;
}

.video-section .video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(156, 163, 175, 0.25);
}

.video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  cursor: zoom-in;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-item::after {
  content: "Ver más";
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  text-align: right;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.68), transparent);
  color: #f9fafb;
}

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

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  z-index: 60;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 92vw;
  max-height: 92vh;
  border-radius: 1rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
}

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

.reserve-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.reserve-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.reserve-copy {
  color: #4b5563;
}

.reserve-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

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

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  color: #4b5563;
  font-size: 0.95rem;
}

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

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-btn {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  font-size: 0.9rem;
  background: #fff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.07);
}

.contact-form-wrapper {
  background: #ffffff;
  padding: 1.75rem 1.5rem 1.8rem;
  border-radius: 1.5rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.contact-form-wrapper h3 {
  margin: 0 0 1rem;
}

.contact-form .form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.8rem;
}

.contact-form label {
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
  color: #4b5563;
}

.contact-form input,
.contact-form textarea {
  border-radius: 0.85rem;
  border: 1px solid rgba(148, 163, 184, 0.75);
  padding: 0.55rem 0.8rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border 0.15s ease, box-shadow 0.15s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.45);
}

.section-map {
  background: #020617;
  color: #e5e7eb;
  padding-bottom: 0;
}

.map-embed iframe {
  width: 100%;
  height: 360px;
  border: 0;
  margin-top: 1.5rem;
}

.site-footer {
  background: #020617;
  color: #9ca3af;
  padding: 1.8rem 0 1.6rem;
}

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

.footer-made a {
  color: #e5e7eb;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.4rem;
  box-shadow: 0 16px 40px rgba(34, 197, 94, 0.65);
  z-index: 55;
}

.whatsapp-float:hover {
  transform: translateY(-1px);
}

/* Responsive */

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .header-inner {
    padding: 0.55rem 0;
  }

  .menu-layout,
  .reserve-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .menu-photo,
  .reserve-embed {
    order: -1;
  }

  .hero {
    min-height: 80vh;
  }

  .hero-content {
    padding-top: 4rem;
  }
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .gallery-item.wide {
    grid-column: span 1;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
