:root {
  --turquoise: #1b9db3;      /* Color principal logo */
  --turquoise-light: #25bcd5;
  --deep-blue: #062434;      /* Azul elegante oscuro */
  --deep-blue-2: #0b3d5c;    /* Azul premium */
  --orange: #ff6b2d;         /* Coral del logo */
  --orange-soft: #ff8c5a;
  --white: #ffffff;

  --soft-white: rgba(255, 255, 255, 0.08);
  --soft-border: rgba(255, 255, 255, 0.12);
  --shadow: rgba(0, 0, 0, 0.45);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--deep-blue);
  font-family: "Montserrat", sans-serif;
  color: white;
  line-height: 1.6;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(6, 36, 52, 0.92);
  backdrop-filter: blur(12px);
  z-index: 999;
  border-bottom: 1px solid var(--soft-border);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 46px;
}

.brand-text {
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brand-accent {
  color: var(--orange);
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  font-weight: 700;
  opacity: 0.85;
  transition: 0.3s;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--turquoise-light);
}

.nav-links a.active {
  color: var(--orange);
  opacity: 1;
}

/* MOBILE */
.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(6, 36, 52, 0.98);
  padding: 14px;
}

.mobile-menu a {
  padding: 12px;
  font-weight: 700;
  border-radius: 12px;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* HERO */
.hero {
  height: 92vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(27, 157, 179, 0.35),
    rgba(6, 36, 52, 0.96)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 74px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.highlight {
  color: var(--orange);
}

.subtitle {
  font-size: 18px;
  opacity: 0.92;
  margin-top: 10px;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-badges {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 700;
  font-size: 13px;
  backdrop-filter: blur(10px);
}

/* BUTTONS */
.btn {
  padding: 14px 26px;
  border-radius: 16px;
  font-weight: 800;
  display: inline-block;
  transition: 0.3s;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: linear-gradient(90deg, var(--orange), var(--orange-soft));
  color: white;
  box-shadow: 0px 12px 35px rgba(255, 107, 45, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-secondary:hover {
  transform: translateY(-3px);
}

/* SECTIONS */
.section {
  padding: 85px 0;
}

.section-alt {
  background: linear-gradient(
    to bottom,
    rgba(27, 157, 179, 0.10),
    rgba(6, 36, 52, 0.95)
  );
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  opacity: 0.82;
  margin-top: 10px;
  margin-bottom: 45px;
}

/* GRIDS */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* CARDS */
.card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 12px 35px var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-7px);
  border: 1px solid rgba(255, 107, 45, 0.35);
}

.card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
}

.card-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.card-body p {
  font-size: 14px;
  opacity: 0.82;
}

.price {
  display: inline-block;
  margin-top: 12px;
  font-weight: 900;
  color: var(--orange);
}

/* CATEGORIES */
.categories {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cat-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 14px 18px;
  border-radius: 16px;
  font-weight: 800;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cat-item:hover {
  background: rgba(27, 157, 179, 0.22);
  border: 1px solid rgba(27, 157, 179, 0.45);
  transform: translateY(-4px);
}

/* MENU BANNER */
.menu-banner {
  margin-top: 45px;
  text-align: center;
  padding: 35px 25px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0px 10px 30px var(--shadow);
}

.menu-banner h3 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 900;
}

.menu-banner p {
  opacity: 0.85;
  margin-bottom: 18px;
}

/* LOCATION */
.location-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: center;
}

.location-info h3 {
  font-size: 30px;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

.location-info p {
  margin-bottom: 8px;
  opacity: 0.9;
}

.location-map iframe {
  width: 100%;
  height: 330px;
  border-radius: 20px;
  border: none;
  box-shadow: 0px 10px 30px var(--shadow);
}

/* MENU PAGE */
.menu-hero {
  padding: 95px 0 45px;
  text-align: center;
  background: linear-gradient(
    to bottom,
    rgba(27, 157, 179, 0.40),
    rgba(6, 36, 52, 0.96)
  );
}

.menu-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 54px;
}

.menu-hero p {
  opacity: 0.85;
  margin-top: 10px;
}

.search-bar {
  margin-top: 30px;
  padding: 16px;
  width: 100%;
  max-width: 620px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  outline: none;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.search-bar::placeholder {
  color: rgba(255, 255, 255, 0.70);
}

.menu-title {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  margin-top: 55px;
  margin-bottom: 22px;
  color: var(--turquoise-light);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.menu-item {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0px 10px 28px rgba(0, 0, 0, 0.30);
  transition: 0.25s;
}

.menu-item:hover {
  transform: translateY(-4px);
  border: 1px solid rgba(255, 107, 45, 0.35);
}

.menu-item h3 {
  font-size: 17px;
  margin-bottom: 8px;
  font-weight: 900;
}

.menu-item p {
  opacity: 0.82;
  font-size: 14px;
}

/* CONTACT */
.contact-box {
  max-width: 650px;
  margin: auto;
  background: rgba(255, 255, 255, 0.06);
  padding: 35px;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0px 12px 35px var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-box h2 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  margin-bottom: 16px;
  color: var(--turquoise-light);
}

.contact-box p {
  margin-bottom: 10px;
  opacity: 0.92;
}

.contact-buttons {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* FOOTER */
.footer {
  padding: 42px 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-mini {
  opacity: 0.7;
  margin-top: 8px;
  font-size: 13px;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.10);
  padding: 12px 18px;
  border-radius: 16px;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.35);
}

.whatsapp-float.disabled {
  opacity: 0.9;
}

/* RESPONSIVE */
@media(max-width: 980px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .location-box {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 48px;
  }

  .section-title {
    font-size: 34px;
  }
}
