:root {
  --red: #e82127;
  --dark-red: #9f151a;
  --orange: #ff5a1f;
  --yellow: #ffd21f;
  --cream: #fff3c4;
  --dark: #160909;
  --text: #ffffff;
  --muted: #ffd9c9;
  --card: rgba(255, 255, 255, 0.1);
  --glass: rgba(255, 255, 255, 0.14);
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, #ff6a1a, transparent 35%),
    linear-gradient(180deg, #e82127 0%, #801014 100%);
  color: var(--text);
  min-height: 100vh;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* HERO */

.hero {
  min-height: 100vh;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: var(--yellow);
  border-radius: 50%;
  top: -180px;
  right: -130px;
  opacity: 0.18;
}

.hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background: #000;
  border-radius: 50%;
  bottom: -180px;
  left: -150px;
  opacity: 0.18;
}

.navbar {
  max-width: 1150px;
  margin: 0 auto;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 52px;
  height: 52px;
  background: var(--cream);
  color: var(--red);
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-size: 1.6rem;
  box-shadow: var(--shadow);
}

.brand h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 1px;
  line-height: 1;
}

.brand p {
  color: var(--yellow);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 1.6px;
}

.call-btn {
  background: var(--cream);
  color: var(--dark-red);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.hero-content {
  max-width: 1150px;
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 45px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.tag {
  display: inline-flex;
  background: rgba(255, 210, 31, 0.18);
  border: 1px solid rgba(255, 210, 31, 0.55);
  color: var(--yellow);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

.hero-text h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 8vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: 1.5px;
  max-width: 720px;
}

.hero-text p {
  margin-top: 24px;
  max-width: 560px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--yellow);
  color: var(--dark);
  box-shadow: 0 18px 40px rgba(255, 210, 31, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
}

.hero-card {
  position: relative;
  background: var(--glass);
  padding: 14px;
  border-radius: 36px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.22);
  transform: rotate(2deg);
}

.hero-card img {
  height: 470px;
  object-fit: cover;
  border-radius: 28px;
}

.promo-box {
  position: absolute;
  left: -18px;
  bottom: 35px;
  background: var(--cream);
  color: var(--dark);
  padding: 18px 24px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.promo-box span {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.promo-box strong {
  display: block;
  font-size: 1.1rem;
  margin: 3px 0;
}

.promo-box b {
  font-size: 2rem;
}

/* QUICK INFO */

main {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 35px;
  position: relative;
  z-index: 5;
}

.quick-info div {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  padding: 24px;
  border-radius: 26px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 14px;
  align-items: center;
}

.quick-info span {
  font-size: 1.9rem;
}

.quick-info p {
  font-weight: 900;
}

/* FEATURED */

.featured {
  margin-top: 55px;
  background:
    linear-gradient(135deg, rgba(255, 210, 31, 0.96), rgba(255, 243, 196, 0.95));
  color: var(--dark);
  padding: 34px;
  border-radius: 36px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.featured span {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.featured h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.2rem;
  line-height: 1;
}

.featured p {
  max-width: 580px;
  font-weight: 600;
}

.featured-price {
  font-size: 3.4rem;
  font-weight: 950;
  background: #fff;
  padding: 18px 26px;
  border-radius: 26px;
}

/* MENU */

.menu-section {
  padding-top: 70px;
}

.section-title {
  text-align: center;
  margin-bottom: 26px;
}

.section-title span {
  color: var(--yellow);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 2px;
}

.section-title h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4.5rem;
  letter-spacing: 1px;
}

.tabs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 8px 0 20px;
  margin-bottom: 20px;
}

.tabs::-webkit-scrollbar {
  height: 0;
}

.tab {
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.tab.active {
  background: var(--yellow);
  color: var(--dark);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.menu-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  min-height: 170px;
  animation: fadeUp 0.35s ease;
  position: relative;
  overflow: hidden;
}

.menu-card::after {
  content: "🔥";

  position: absolute;

  right: -10px;
  bottom: -20px;

  font-size: 7rem;

  opacity: 0.1;

  transform: rotate(-15deg);

  pointer-events: none;
}

.menu-card::before {
  content: "";
  position: absolute;
  width: 95px;
  height: 95px;
  background: var(--yellow);
  border-radius: 50%;
  right: -38px;
  top: -38px;
  opacity: 0.14;
}

.menu-card .label {
  display: inline-flex;
  color: var(--yellow);
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 12px;
}

.menu-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.menu-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.93rem;
  margin-bottom: 22px;
}

.price {
  display: inline-flex;
  background: #fff;
  color: var(--dark);
  padding: 9px 15px;
  border-radius: 14px;
  font-weight: 950;
  font-size: 1.15rem;
}

/* EVENTS */

.events {
  margin-top: 70px;
  background:
    linear-gradient(135deg, rgba(22, 9, 9, 0.92), rgba(159, 21, 26, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 36px;
  padding: 36px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
}

.events span {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.events h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.2rem;
  line-height: 1;
  margin: 8px 0;
}

.events p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 620px;
}

/* CONTACT */

.contact {
  margin-top: 40px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact h2 {
  font-size: 1.8rem;
}

.contact p {
  color: var(--muted);
  margin: 10px 0 24px;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-buttons a {
  background: #fff;
  color: var(--dark);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
}

/* FOOTER */

footer {
  text-align: center;
  padding: 35px 24px 90px;
}

footer p {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
}

footer small {
  color: var(--muted);
}

footer strong {
  color: var(--yellow);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: white;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1.6rem;
  box-shadow: var(--shadow);
  z-index: 20;
}

/* ANIMATIONS */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .hero-card {
    transform: none;
  }

  .hero-card img {
    height: 340px;
  }

  .quick-info {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .events,
  .featured {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 18px;
    min-height: auto;
    padding-bottom: 40px;
  }

  .navbar {
    align-items: flex-start;
  }

  .brand h1 {
    font-size: 2rem;
  }

  .call-btn {
    padding: 10px 15px;
  }

  .hero-text h2 {
    font-size: 4.1rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-actions a {
    width: 100%;
  }

  .promo-box {
    left: 16px;
    bottom: 16px;
  }

  main {
    padding: 0 18px 50px;
  }

  .section-title h2 {
    font-size: 3.4rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .featured,
  .events,
  .contact {
    padding: 26px;
    border-radius: 28px;
  }

  .featured h2,
  .events h2 {
    font-size: 2.5rem;
  }

  .featured-price {
    font-size: 2.5rem;
  }
}
/* QUITAR SELECCIÓN Y CURSOR DE TEXTO */

* {
  -webkit-tap-highlight-color: transparent;
}

body {
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

button,
a,
img,
div,
section,
article {
  outline: none;
}

:focus {
  outline: none;
}

::selection {
  background: transparent;
}