* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: #333;
  overflow-x: hidden;
}

/* ===================== /
/ NAVBAR MODERNO /
/ ===================== */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 50px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* LOGO */
.logo {
  width: 85px;
  height: 85px;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.logo {
  transform: scale(1.05);
}

/* NAV LINKS */
nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  transition: all 0.3s ease;
}

/* Línea animada debajo */
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 3px;
  background: #ff5a1f;
  border-radius: 10px;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

nav a {
  color: #000000;
}

/* BOTÓN */
.btn-primary {
  background: linear-gradient(135deg, #ff5a1f, #d63b00);
  color: white;
  border: none;
  padding: 12px 22px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 90, 31, 0.3);
}

.btn-primary {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 20px rgba(255, 90, 31, 0.4);
}
.btn-primary:hover {
  background-color: #942402;
  transform: scale(1.05);
}

.btn-secondary {
  display: inline-block; /* 🔥 clave para que <a> se vea como botón */
  background: #ff3c00;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  margin-top: 15px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none; /* 🔥 quita subrayado del <a> */
}

.btn-secondary:hover {
  background: #cc3000;
  transform: scale(1.05);
}
/* HAMBURGUESA */
.hamburger span {
  background: #222;
}

/* ===================== */
/* HERO                 */
/* ===================== */
.hero {
  border-top: solid 2px red;
  height: 90vh;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("pollo.jpeg");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-text {
  max-width: 600px;
  padding: 0 20px;
}

.hero-text h1 {
  font-size: 60px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 20px;
  margin-top: 10px;
}

.hero-text span {
  color: #ffe135;
}

/* ===================== */
/* ESPECIALIDADES       */
/* ===================== */
.specials {
  padding: 60px 40px;
  text-align: center;
}

.specials h2 {
  margin-bottom: 30px;
  color: #1a1a1a;
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
}

.cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Estas son las cards de especialidades — NO del menú */
.specials .card {
  overflow: hidden;
  background: #f5f5f5;
  padding: 15px;
  width: 460px;
  border-radius: 15px;
  text-align: left;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.specials .card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: transform 0.4s ease;
}

.specials .card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.specials .card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1a1a1a;
}

.specials .card p {
  font-size: 14px;
  color: #666;
}

/* ===================== */
/* MENÚ MODERNO         */
/* ===================== */
.menu-moderno {
  padding: 70px 30px 80px;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(https://img.freepik.com/fotos-premium/bonito-fondo-minimalista-pared-textura-podio-gris-luces-neon-presentacion-producto_257123-37284.jpg?semt=ais_hybrid&w=740&q=80);
  background-size: cover;
  background-position: center;
  border-radius: 48px 48px 0 0;
}

.menu-moderno-header {
  text-align: center;
  margin-bottom: 50px;
}

.menu-badge {
  display: inline-block;
  background: #ff3c00;
  color: white;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.menu-moderno-header h2 {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
}

.menu-moderno-header .highlight {
  color: #ff3c00;
  position: relative;
  display: inline-block;
}

.menu-moderno-header .highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background: rgba(255, 60, 0, 0.25);
  z-index: -1;
  border-radius: 4px;
}

/* TABS */
.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 45px;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.tab-btn.active {
  background: #ff3c00;
  color: white;
  border-color: #ff3c00;
  box-shadow: 0 8px 20px rgba(255, 60, 0, 0.4);
}

/* Categorías */
.menu-category-group {
  display: none;
  animation: fadeIn 0.4s ease;
}

.menu-category-group.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Grid de tarjetas */
.menu-moderno-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

/* ===================== */
/* CARDS DEL MENÚ       */
/* ===================== */
.menu-moderno-card {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 20px;
  padding: 22px 22px 18px;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
  border: 1.5px solid rgba(255, 60, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-moderno-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(255, 60, 0, 0.18);
  border-color: #ff3c00;
}

.menu-moderno-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin-top: 6px;
}

.menu-moderno-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  flex: 1;
}

/* BADGES */
.card-badge {
  display: inline-block;
  width: fit-content;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.3px;
  /* Por defecto: dorado */
  background: #fff4cc;
  color: #7a5500;
}

.card-badge--blue {
  background: #deeeff;
  color: #0d4f8a;
}

.card-badge--green {
  background: #d6f5e0;
  color: #1a6633;
}

/* FOOTER DE CARD */
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #f0ebe3;
  margin-top: 4px;
}

.price {
  font-size: 22px;
  font-weight: 800;
  color: #ff3c00;
}

.order-btn {
  background: transparent;
  border: 2px solid #ff3c00;
  padding: 7px 20px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 700;
  color: #ff3c00;
  cursor: pointer;
  transition: all 0.25s ease;
}

.order-btn:hover {
  background: #ff3c00;
  color: white;
  transform: scale(1.04);
}

/* EXTRAS */
.extras-moderno {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.extra-card {
  text-align: center;
  padding: 20px 16px;
  flex-direction: column;
  align-items: center;
}

.extra-card h3 {
  font-size: 15px;
  margin-bottom: 10px;
}

.extra-card .price {
  font-size: 18px;
  background: #ffefe8;
  padding: 4px 16px;
  border-radius: 40px;
  display: inline-block;
}

/* BEBIDAS */
.bebidas-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

/* ===================== */
/* CANALES              */
/* ===================== */
.canales {
  background: url("https://images.unsplash.com/photo-1600891964599-f61ba0e24092")
    center / cover no-repeat;
  position: relative;
}

.overlay {
  background: rgba(0, 0, 0, 0.65);
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.overlay h2 {
  color: white;
  text-align: center;
  font-size: 32px;
}

.btn-web {
  background: #b22222;
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
}

.btn-web:hover {
  background: #8b0000;
  transform: scale(1.04);
}

.canales-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.canal-card {
  background: white;
  width: 160px;
  height: 100px;
  border-radius: 15px;

  display: flex;
  flex-direction: column; /* 🔥 permite texto debajo */
  align-items: center;
  justify-content: center;
  gap: 6px;

  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 600;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.canal-card span {
  font-size: 28px;
}
.canal-card:first-child {
  border: 2px solid #ff3c00;
}
.canal-card img {
  width: 80px;
  object-fit: contain;
}

.canal-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ===================== */
/* PROMO                */
/* ===================== */

/* ===================== */
/* CTA                  */
/* ===================== */
.cta {
  text-align: center;
  padding: 60px 20px;
  background: #fff8f5;
}

.cta h2 {
  font-size: 36px;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.cta p {
  font-size: 20px;
  color: #555;
}

/* ===================== */
/* MAPA                 */
/* ===================== */
.map-wrapper {
  padding: 80px 0 100px;
  background: linear-gradient(to bottom, #000, #111);
}

.map-wrapper h1 {
  color: white;
  text-align: center;
  font-size: 28px;
  padding-bottom: 12px;
}

.map-wrapper h3 {
  color: #ccc;
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
}

.map-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.box {
  height: 480px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(255, 60, 0, 0.35);
}

.box iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===================== */
/* FOOTER               */
/* ===================== */
.footer {
  background: #000;
  color: #fff;
  padding: 60px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-brand img {
  width: 130px;
  border-radius: 8px;
  object-fit: contain;
}

.footer-brand p {
  color: #aaa;
  font-size: 15px;
  margin-top: 12px;
  max-width: 220px;
  line-height: 1.5;
}

.footer h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff;
}

.footer a {
  display: block;
  color: #aaa;
  text-decoration: none;
  margin: 6px 0;
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #ff3c00;
}

.social-icons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #aaa;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.social-icons a:hover {
  color: #ff3c00;
  transform: scale(1.2);
}

.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 20px;
  padding-top: 16px;
  text-align: center;
  font-size: 13px;
  color: #666;
}

/* ===================== */
/* MENÚ HAMBURGUESA     */
/* ===================== */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
  position: relative;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s ease;
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ===================== */
/* TABLET (<=768px)     */
/* ===================== */
@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }

  .logo {
    margin-left: 0;
    width: 80px;
    height: auto;
  }

  .hamburger {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #ff3c00, #ff7a00);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    gap: 20px;
    display: flex;
  }

  nav.active {
    right: 0;
  }

  nav a {
    margin: 10px 0;
    font-size: 18px;
    display: block;
    padding: 10px 20px;
    width: 100%;
    text-align: center;
  }

  nav a:hover {
    background-color: rgba(0, 0, 0, 0.15);
    color: #fff;
  }

  .btn-primary {
    z-index: 1001;
    position: relative;
  }

  .hero {
    height: 70vh;
    padding: 0 20px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .specials {
    padding: 40px 20px;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .specials .card {
    width: 100%;
    max-width: 380px;
  }

  .specials .card img {
    height: 250px;
  }

  .canales {
    padding: 40px 20px;
  }

  .overlay h2 {
    font-size: 26px;
  }

  .map-content {
    grid-template-columns: 1fr;
  }

  .box {
    height: 300px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-brand img {
    width: 110px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .social-icons {
    justify-content: center;
  }

  .menu-moderno {
    padding: 50px 20px 60px;
    border-radius: 32px 32px 0 0;
  }

  .menu-moderno-header h2 {
    font-size: 34px;
  }

  .menu-tabs {
    gap: 8px;
  }

  .tab-btn {
    padding: 9px 18px;
    font-size: 14px;
  }

  .menu-moderno-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
  }
}

/* ===================== */
/* CELULAR (<=480px)    */
/* ===================== */
@media (max-width: 480px) {
  .navbar {
    padding: 10px 15px;
  }

  .hamburger span {
    width: 22px;
    height: 2.5px;
  }

  nav {
    width: 85%;
    max-width: 280px;
  }

  nav a {
    font-size: 16px;
  }

  .btn-primary {
    padding: 6px 12px;
    font-size: 12px;
  }

  .logo {
    width: 60px;
  }

  .hero {
    height: 60vh;
  }

  .hero-text h1 {
    font-size: 26px;
  }

  .hero-text p {
    font-size: 13px;
  }

  .btn-secondary {
    padding: 10px 18px;
    font-size: 14px;
  }

  .specials h2 {
    font-size: 26px;
  }

  .specials .card {
    max-width: 100%;
  }

  .specials .card img {
    height: 200px;
  }

  .overlay h2 {
    font-size: 20px;
  }

  .btn-web {
    font-size: 13px;
    padding: 10px 16px;
  }

  .canal-card {
    width: 80px;
    height: 75px;
  }

  .canal-card img {
    width: 55px;
  }

  .box {
    height: 240px;
  }

  .map-wrapper h1 {
    font-size: 22px;
  }

  .footer {
    padding: 40px 15px 16px;
  }

  .footer h3 {
    font-size: 16px;
  }

  .footer a {
    font-size: 14px;
  }

  .promo h2 {
    font-size: 28px;
  }

  .promo .price {
    font-size: 38px;
  }

  .cta h2 {
    font-size: 26px;
  }

  .cta p {
    font-size: 17px;
  }

  .menu-moderno {
    padding: 40px 16px 50px;
    border-radius: 24px 24px 0 0;
  }

  .menu-moderno-header h2 {
    font-size: 26px;
  }

  .tab-btn {
    padding: 7px 14px;
    font-size: 12px;
  }

  .menu-moderno-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .menu-moderno-card {
    padding: 16px;
  }

  .menu-moderno-card h3 {
    font-size: 17px;
  }

  .price {
    font-size: 20px;
  }

  .order-btn {
    padding: 6px 16px;
    font-size: 13px;
  }

  .extras-moderno {
    grid-template-columns: repeat(2, 1fr);
  }
  .social-icons a {
    font-size: 34px;
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
.highlight-product {
  animation: glow 1s ease-in-out 2;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 0px rgba(255, 60, 0, 0);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 60, 0, 0.8);
  }
  100% {
    box-shadow: 0 0 0px rgba(255, 60, 0, 0);
  }
}
.highlight-product {
  animation: highlightPulse 2s ease;
  border: 2px solid #ff6600;
  box-shadow: 0 0 20px rgba(255, 102, 0, 0.7);
}

@keyframes highlightPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
