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

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

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

a {
  color: #f26c3b;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 43, 61, 0.96);
  backdrop-filter: blur(10px);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.navbar-logo img {
  width: 52px;
  border-radius: 999px;
}

.navbar-logo-text {
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #fefcf6;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  color: #fefcf6;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: #fddf9a;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #fefcf6;
}

/* Hero */

.hero {
  background: radial-gradient(circle at top left, #ffe9c4 0, #f5fbfd 40%, #e2f6ff 100%);
  padding: 4.5rem 1.5rem 3rem;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: #0a5f63;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.hero h1 {
  font-family: 'Pacifico', 'Segoe Script', system-ui;
  font-size: clamp(2.4rem, 3vw + 1rem, 3.4rem);
  margin: 0 0 1rem;
  color: #0b4b57;
}

.hero h1 span {
  color: #f26c3b;
}

.hero-subtitle {
  font-size: 1rem;
  max-width: 540px;
  color: #27414a;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.4rem 0;
}

.badge {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  border: 1px solid rgba(3, 60, 74, 0.18);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #f26c3b, #ff9b42);
  color: #fff;
  box-shadow: 0 14px 30px rgba(217, 84, 32, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(217, 84, 32, 0.5);
}

.btn-outline {
  background: transparent;
  color: #0b4b57;
  border: 1px solid rgba(9, 87, 107, 0.35);
}

.btn-outline:hover {
  background: rgba(9, 87, 107, 0.06);
}

.hero-contact-line {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #33515c;
}

.hero-contact-line strong {
  color: #f26c3b;
}

.hero-media {
  position: relative;
}

.hero-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 2rem;
  padding: 1.2rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.hero-card img {
  border-radius: 1.4rem;
}

.hero-tag {
  position: absolute;
  left: -10px;
  top: 12px;
  background: #0a5f63;
  color: #fff;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 10px 24px rgba(5, 50, 61, 0.45);
}

.hero-tag span {
  font-size: 1.1rem;
}

.hero-floating {
  position: absolute;
  right: -12px;
  bottom: 0;
  background: rgba(11, 75, 87, 0.97);
  color: #fff;
  padding: 0.9rem 1.1rem;
  border-radius: 1.4rem;
  font-size: 0.8rem;
  max-width: 200px;
  box-shadow: 0 16px 40px rgba(11, 75, 87, 0.7);
}

/* Sections */

section {
  padding: 3.5rem 1.5rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-kicker {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: #0a5f63;
  font-weight: 600;
}

.section-title {
  font-size: 1.9rem;
  margin: 0.4rem 0 0.7rem;
  color: #0b4b57;
}

.section-subtitle {
  max-width: 620px;
  margin: 0.3rem auto 0;
  color: #4a6672;
  font-size: 0.98rem;
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.about-box {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1.5rem 1.7rem;
  box-shadow: 0 14px 30px rgba(7, 66, 82, 0.08);
}

.about-box h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
  color: #0b4b57;
}

.about-box p {
  font-size: 0.96rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.chip {
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: #f2fafc;
  font-size: 0.78rem;
  color: #0a5f63;
}

/* Valores image */

.valores-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1rem;
  box-shadow: 0 14px 30px rgba(7, 66, 82, 0.08);
}

.valores-card img {
  border-radius: 1.2rem;
}

/* Promociones */

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

.promo-item {
  background: #ffffff;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.promo-item img {
  width: 100%;
}

.promo-caption {
  padding: 0.75rem 1rem 1rem;
  font-size: 0.9rem;
  color: #35515b;
}

/* Menú / Bar & Cenas */

.menu-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: start;
}

.menu-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

.menu-card img {
  border-radius: 1.2rem;
}

/* Galería */

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

.gallery-item {
  border-radius: 1.3rem;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  min-height: 160px;
  display: flex;
  align-items: stretch;
}

.gallery-item-placeholder {
  padding: 1.1rem;
  font-size: 0.9rem;
  color: #657f89;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Social embeds */

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

.social-embed {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1.1rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.social-embed h3 {
  margin-top: 0;
  font-size: 1.05rem;
}

.social-embed iframe {
  border: none;
  width: 100%;
}

/* Video */

.video-card {
  margin-top: 1.5rem;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

.video-card iframe {
  width: 100%;
  height: 315px;
}

/* Contacto */

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

.contact-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1.6rem 1.8rem;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.contact-card h3 {
  margin-top: 0;
  margin-bottom: 0.9rem;
}

.contact-details p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}

.contact-details strong {
  color: #0b4b57;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.contact-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #23424d;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border-radius: 0.75rem;
  border: 1px solid #c2d7df;
  font-family: inherit;
  font-size: 0.92rem;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #f26c3b;
  box-shadow: 0 0 0 2px rgba(242, 108, 59, 0.2);
}

/* Footer */

footer {
  padding: 2rem 1.5rem 2.2rem;
  background: #052b3d;
  color: #fefcf6;
  font-size: 0.85rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

footer a {
  color: #fddf9a;
}

footer a:hover {
  color: #ffffff;
}

/* WhatsApp floating */

.whatsapp-float {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 1100;
}

.whatsapp-float a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  color: #ffffff;
  font-size: 1.7rem;
  text-decoration: none;
}

.whatsapp-float a span {
  margin-top: 2px;
}

/* Lightbox */

.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 1.5rem;
}

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

.lightbox-backdrop img {
  max-height: 90vh;
  border-radius: 1rem;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner,
  .about-grid,
  .menu-layout,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media {
    order: -1;
  }

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 56px 0 auto 0;
    background: rgba(5, 43, 61, 0.98);
    flex-direction: column;
    padding: 0.75rem 1.5rem 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  section {
    padding-inline: 1.1rem;
  }

  .hero-inner {
    gap: 2rem;
  }

  .video-card iframe {
    height: 220px;
  }
}
