@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;900&family=Noto+Sans+JP:wght@400;700&family=Merriweather:wght@400;700;900&display=swap');

:root {
  /* Colores base existentes */
  --bg-color: #fff8f3;
  --snd-bg-color: #ffffff;
  --accent-bg: #1a1a1a;
  --accent-alt: #a4161a;
  --text-color: #2c2c2c;
  --text-light: #ffffff;
  --btn-text: #ffffff;
  --hover-shadow: rgba(0, 0, 0, 0.1);
  --highlight: #F54A2F;

  /* Colores inspirados en la tarjeta */
  --card-bg: #F5E9D7;
  /* Fondo con ondas */
  --dragon-red: #C0392B;
  /* Ilustración del dragón */
  --card-text: #4A4A4A;
  /* Texto principal */
  --decorative-blue: #A3B1B8;
  /* Detalles decorativos */
}

/* ===== GENERAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', 'Noto Sans JP', sans-serif;
  text-decoration: none;
  list-style: none;
  scroll-behavior: smooth;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  background: var(--bg-color);
  color: var(--text-color);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--accent-bg);
  border-radius: 10px;
  border: 3px solid var(--bg-color);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--accent-alt);
}

/* ===== TITULOS DE SECCIÓN ===== */
.section__header {
  font-family: 'Merriweather', serif;
  font-size: 3.6rem;
  color: var(--accent-bg);
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  font-weight: 700;
  letter-spacing: 1px;
}

.section__header::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -0.2rem;
  transform: translateX(-50%);
  width: 6rem;
  height: 0.4rem;
  background: var(--accent-alt);
  border-radius: 1rem;
}

section[id] {
  scroll-margin-top: 120px;
}

/* ===== LOADER===== */
#loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--snd-bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease;
}

#loader-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.custom-loader {
  width: 120px;
  height: 22px;
  border-radius: 20px;
  color: var(--accent-bg);
  border: 2px solid currentColor;
  position: relative;
}

.custom-loader::before {
  content: "";
  position: absolute;
  margin: 2px;
  inset: 0 100% 0 0;
  border-radius: inherit;
  background: var(--highlight);
  animation: p6 2s infinite;
}

@keyframes p6 {
  100% {
    inset: 0;
  }
}


/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 12rem;
  padding: 0 6%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 2px solid #000;
}

/* LOGO*/
.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-img {
  width: 160px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  margin-right: 2rem;
}

.navbar a {
  font-family: 'Merriweather', serif;
  position: relative;
  font-size: 1.6rem;
  color: var(--text-color);
  padding: 0.5rem 0.8rem;
  border-radius: 0.4rem;
  transition: all 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.navbar a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background-color: var(--accent-alt);
  transition: width 0.3s ease-in-out;
}

.navbar a:hover::after,
.navbar a.active::after {
  width: 100%;
}

.navbar a:hover,
.navbar a.active {
  color: var(--accent-alt);
}

/*=======CARRITO======*/
.header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.cart-icon {
  position: relative;
  font-size: 2.4rem;
  color: var(--text-color);
  transition: color 0.3s ease, transform 0.3s ease;
}

.cart-icon:hover {
  color: var(--accent-alt);
  transform: scale(1.1);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background-color: var(--highlight);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50%;
  padding: 0.2rem 0.5rem;
}


/* ===== MENU ICON ===== */
.menu-icon {
  display: none;
  font-size: 3rem;
  color: var(--accent-bg);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 1.2rem;
}

.menu-icon:hover {
  color: var(--accent-alt);
  transform: scale(1.1);
}

/* ===== NAVBAR RESPONSIVE ===== */
@media (max-width: 992px) {
  .menu-icon {
    display: block;
  }

  .navbar {
    position: fixed;
    top: 7rem;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2.5rem;
    transition: all 0.5s ease;
    box-shadow: -6px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding-top: 3rem;
  }

  .navbar.active {
    right: 0;
  }

  .navbar a {
    font-size: 1.8rem;
    color: var(--accent-bg);
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.4s ease-out;
  }

  .navbar.active a {
    opacity: 1;
    transform: translateX(0);
  }

  .navbar a:hover {
    color: var(--accent-alt);
  }
}

/* ===== HOME ===== */
.home {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: url('/Img/Home.webp') center center/cover no-repeat;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.home .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(25, 25, 25, 0.55);
  backdrop-filter: blur(1px);
  z-index: 1;
}

.home-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 2rem;
}

.home-content h1 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  font-family: 'Merriweather', serif;
}

.home-content h1 .jp {
  color: #f4b321;
  font-weight: 800;
}

.home-content p {
  font-size: 1.8rem;
  margin-top: 1.5rem;
  color: #eaeaea;
  font-weight: 400;
  font-family: 'Merriweather', serif;
}

.btn-home {
  display: inline-block;
  margin-top: 3rem;
  padding: 1.3rem 3rem;
  background-color: var(--highlight);
  color: #fff;
  font-weight: 600;
  border-radius: 9999px;
  font-size: 1.6rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(255, 165, 0, 0.35);
  font-family: 'Merriweather', serif;
}

.btn-home:hover {
  background-color: #d97706;
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(255, 140, 0, 0.45);
}



/* ===== SECCIÓN ABOUT ===== */
.about {
  position: relative;
  padding: 10rem 8% 8rem;
  color: var(--text-color);
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}


.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.background-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.2));
  z-index: 1;
}


.section__header_about {
  font-size: 3.4rem;
  color: #ffffff;
  margin-bottom: 5rem;
  position: relative;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: 'Merriweather', serif;
  text-align: center;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.section__header_about::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -0.5rem;
  transform: translateX(-50%);
  width: 6rem;
  height: 0.35rem;
  background: var(--highlight);
  border-radius: 1rem;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-video {
  margin-top: -10rem;
}


.about-video video {
  width: 100%;
  max-width: 300px;
  height: 500px;
  border-radius: 1.5rem;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  display: block;
  margin: 0 auto;
  background-color: transparent;
}


.about-text {
  flex: 1;
  font-size: 1.6rem;
  line-height: 1.9;
  color: #f8f8f8;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  margin-top: -15rem;
}

.about-text p {
  margin-bottom: 2rem;
  text-align: justify;
  text-justify: inter-word;
  font-family: 'Merriweather', serif;
}





/* ===== EVENTOS SECTION===== */
.events {
  padding: 4rem 8% 8rem;
  background: var(--bg-color);
  text-align: center;
  background: url("/Img/Fondo.jpg") center/cover no-repeat;
  overflow: hidden;
}


.section__header_events {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-bg);
  position: relative;
  display: inline-block;
  font-family: 'Merriweather', serif;
}

.section__header_events::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--highlight);
  border-radius: 2px;
}

.section__subtext_events {
  color: var(--card-text);
  font-size: 1.6rem;
  margin-top: 3rem;
  max-width: 650px;
  margin-inline: auto;
  line-height: 1.5;
  font-family: 'Merriweather', serif;
}

.events-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 5rem;
}

.event-card {
  background: var(--card-bg);
  border-radius: 2rem;
  padding: 3rem 2.2rem;
  width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.35s ease;
  border: 1px solid transparent;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--highlight);
}

.event-icon {
  font-size: 4.5rem;
  color: var(--highlight);
  margin-bottom: 1.2rem;
}

.event-card h4 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-bg);
  margin-bottom: 1.5rem;
  font-family: 'Merriweather', serif;
}

.event-features {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 2rem;
  font-size: 1.45rem;
  color: var(--card-text);
  flex-grow: 1;
}

.event-features p {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Merriweather', serif;
}

.event-features i {
  color: var(--highlight);
  font-size: 1.5rem;
}


.event-features-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  width: 100%;
  margin-bottom: 2rem;
}

.event-features,
.event-addons {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.event-features p,
.event-addons p {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  color: var(--card-text);
  font-family: 'Merriweather', serif;
  margin-bottom: 0.5rem;
}

.event-features i,
.event-addons i {
  color: var(--highlight);
  font-size: 1.5rem;
}

.event-addons h5 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--highlight);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Merriweather', serif;
}

.btn-event {
  background: var(--highlight);
  color: var(--btn-text);
  border: none;
  padding: 0.9rem 2.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Merriweather', serif;
}

.btn-event:hover {
  background: var(--accent-alt);
  transform: translateY(-2px);
}










/* ===== MENU SECTION ===== */
.menu {
  padding: 10rem 4% 10rem 2%;
  background: var(--snd-bg-color);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.menu-container {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  width: 100%;
  max-width: 1400px;
  margin-left: 0;
  justify-content: flex-start;
}

.menu-filters {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 5px 15px var(--hover-shadow);
  height: fit-content;
  margin-left: 0;
}

.menu-filters h3 {
  font-size: 2rem;
  color: var(--accent-bg);
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--highlight);
  display: inline-block;
  padding-bottom: 0.5rem;
  font-family: 'Merriweather', serif;
}

.filter-group {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.filter-group label {
  font-size: 1.5rem;
  color: var(--accent-bg);
  font-weight: 600;
  font-family: 'Merriweather', serif;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-left: 0.5rem;
  font-family: 'Merriweather', serif;
}

.checkbox-group label {
  font-weight: 500;
  color: #444;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.checkbox-group input[type="checkbox"] {
  appearance: none;
  width: 1.6rem;
  height: 1.6rem;
  border: 2px solid #ccc;
  border-radius: 0.3rem;
  display: inline-block;
  position: relative;
  transition: all 0.2s ease;
}

.checkbox-group input[type="checkbox"]:checked {
  border-color: var(--highlight);
  background-color: var(--highlight);
}

.checkbox-group input[type="checkbox"]:checked::after {
  content: "✔";
  position: absolute;
  top: 0rem;
  left: 0.25rem;
  font-size: 1.1rem;
  color: #fff;
}

.checkbox-group label:hover {
  color: var(--highlight);
}

.filter-group select {
  padding: 0.8rem 1rem;
  font-size: 1.4rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  outline: none;
  transition: border-color 0.3s;
  font-family: 'Merriweather', serif;
}

.filter-group select:focus {
  border-color: var(--highlight);
}

/* ===== BLOQUE DE ICONOS (NUEVO) ===== */
.menu-icons {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.menu-icons label {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-bg);
  font-family: 'Merriweather', serif;
}

.icon-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-left: 0.5rem;
}

.icon-list span {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  color: #444;
  cursor: default;
  transition: color 0.3s ease;
  font-family: 'Merriweather', serif;
}

.icon-list span i {
  font-size: 1.8rem;
}

/* Colores de los íconos */
.icon-list .bxs-star {
  color: #0a192f;
}

.icon-list .bxs-fish {
  color: #1EA7E1;
}

.icon-list .bxs-fire {
  color: #FF6B00;
}

.icon-list .bxs-prawn {
  color: #f57f82;
}

.icon-list .bxs-tree-alt {
  color: #025838;
}

.icon-list span:hover {
  color: var(--highlight);
}

.menu-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: stretch;
  justify-content: start;
  align-content: start;
  width: 100%;
}

.menu-item {
  background: var(--card-bg);
  border-radius: 1.5rem;
  box-shadow: 0 4px 12px var(--hover-shadow);
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  width: 100%;
  max-width: 320px;
  height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  justify-self: stretch;

}

.menu-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}

.menu-item h4 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent-bg);
  margin-bottom: 0.6rem;
  font-family: 'Merriweather', serif;
}

/* Estrella */
.menu-item h4 .bxs-star {
  color: #0a192f;
  font-size: 20px;
  margin-left: 4px;
}

/* Pez */
.menu-item h4 .bxs-fish {
  color: #1EA7E1;
  font-size: 20px;
  margin-left: 4px;
}

/* Fuego */
.menu-item h4 .bxs-fire {
  color: #FF6B00;
  font-size: 20px;
  margin-left: 4px;
}

/* Camaron */
.menu-item h4 .bxs-prawn {
  color: #f57f82;
  font-size: 20px;
  margin-left: 4px;
}

/* Lechuga */
.menu-item h4 .bxs-tree-alt {
  color: #025838;
  font-size: 20px;
  margin-left: 4px;
}


.menu-item .desc {
  font-size: 1.2rem;
  color: var(--accent-bg);
  margin-bottom: 0.6rem;
  font-family: 'Merriweather', serif;
}

.menu-item .price {
  font-size: 1.6rem;
  color: var(--highlight);
  font-weight: 600;
  font-family: 'Merriweather', serif;
}


.add-cart {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--highlight);
  color: #fff;
  border: none;
  border-radius: 1rem;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 0.5rem;
  transition: transform 0.3s ease, background 0.3s ease;
  font-size: 1.2rem;
  font-weight: 600;
  min-width: 100px;
}

.add-cart i {
  font-size: 1.6rem;
}

.add-cart:hover {
  background: #d97706;
  transform: scale(1.1);
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.menu-item.fade-in {
  animation: fadeInRight 0.5s ease forwards;
}









/* === CARRITO PRINCIPAL === */
.cart-panel {
  position: fixed;
  top: 80px;
  right: -400px;
  width: 380px;
  max-height: 75vh;
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  border-left: 4px solid var(--highlight);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  transition: right 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
  z-index: 9999;
  opacity: 0;
  transform: translateY(-15px);
  pointer-events: none;
}

.cart-panel.open {
  right: 1.5rem;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


.cart-panel h3 {
  font-size: 1.6rem;
  text-align: center;
  font-weight: 700;
  color: var(--accent-bg);
  border-bottom: 2px solid var(--highlight);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  font-family: 'Merriweather', serif;
}


.cart-container {
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-right: 0.3rem;
}

.cart-container::-webkit-scrollbar {
  width: 8px;
}

.cart-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.cart-container::-webkit-scrollbar-thumb {
  background: var(--highlight);
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: background 0.3s ease;
}

.cart-container::-webkit-scrollbar-thumb:hover {
  background: var(--accent-alt);
}


.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.6rem 0.4rem;
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
}



.cart-thumb {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cart-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cart-info h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-bg);
}

.cart-info p {
  margin: 0.2rem 0;
  font-size: 0.85rem;
  color: var(--text-color);
}


.qty-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.2rem;
}

.qty-btn {
  width: 28px;
  height: 28px;
  background: var(--highlight);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.qty-btn:hover {
  background: var(--accent-alt);
  transform: scale(1.1);
}

.qty-value {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent-bg);
  min-width: 20px;
  text-align: center;
}


.remove-item {
  background: transparent;
  border: none;
  color: var(--accent-alt);
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.2s ease;
}

.remove-item:hover {
  color: var(--dragon-red);
  transform: scale(1.2);
}

.empty-cart {
  text-align: center;
  padding: 2rem 0;
  opacity: 0.7;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
}

.cart-footer {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 2px solid var(--highlight);
}

.cart-footer .cart-total {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent-bg);
  text-align: center;
}

.cart-footer .btn-checkout {
  background: var(--highlight);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.8rem 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  width: 100%;
}

.cart-footer .btn-checkout:hover {
  background: var(--accent-alt);
  transform: translateY(-2px);
}





/* PROMOS SECTION */
.promotions {
  padding: 10rem 8% 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url("/Img/Fondo.jpg") center/cover no-repeat;
  overflow: hidden;
}

.section__subtext_promotion {
  color: var(--card-text);
  font-size: 1.6rem;
  margin-top: 1rem;
  max-width: 650px;
  margin-inline: auto;
  line-height: 1.5;
  font-family: 'Merriweather', serif;

}

.promotions-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  width: 100%;
  max-width: 1000px;
  margin-top: 4rem;
  justify-content: center;
}

.promo-card {
  background: var(--card-bg);
  border-radius: 1.5rem;
  box-shadow: 0 6px 18px var(--hover-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.promo-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.promo-info {
  padding: 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  text-align: center;
}

.promo-info h4 {
  font-size: 1.8rem;
  color: var(--accent-bg);
  font-weight: 700;
}

.promo-desc {
  font-size: 1.4rem;
  color: var(--card-text);
}

.promo-price {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--highlight);
}

.btn-promo {
  background: var(--highlight);
  color: var(--text-light);
  font-weight: 600;
  font-size: 1.4rem;
  border: none;
  border-radius: 1rem;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.8rem;
}

.btn-promo:hover {
  background: var(--accent-alt);
  transform: translateY(-2px);
}





/* INFLUENCERS */

.influencers {
  padding: 3rem;
  background: var(--bg-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section__subtext_influencers {
  color: var(--card-text);
  font-size: 1.6rem;
  margin-top: 3rem;
  max-width: 650px;
  margin-inline: auto;
  line-height: 1.5;
  font-family: 'Merriweather', serif;
}

.video-slider {
  position: relative;
  margin-top: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
}

.video-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.video-card {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  scroll-snap-align: center;
}

.video-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 350px;
  height: 500px;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.8rem;
  object-position: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: block;
}


.overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent 60%);
  border-radius: 1.8rem;
  pointer-events: none;
}

.video-caption {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--highlight);
  font-family: "Merriweather", serif;
  text-transform: lowercase;
  letter-spacing: 0.6px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  color: var(--accent-bg);
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  z-index: 20;
}

.slider-btn:hover {
  background: var(--highlight);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.slider-btn i {
  font-size: 2.5rem;
}

.prev {
  left: 2rem;
}

.next {
  right: 2rem;
}





/* RESEÑAS SECTION */















/* POPUP CLASES */
.class-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 260px;
  background: var(--snd-bg-color);
  color: var(--text-color);
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  z-index: 9999;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.class-popup.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.class-popup-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.class-popup-header {
  background: var(--highlight);
  padding: 0.8rem 1rem;
  text-align: center;
}

.class-popup-header h4 {
  margin: 0;
  font-size: 1.4rem;
  color: var(--btn-text);
  font-family: "Merriweather", serif;
}

.class-popup-body p {
  padding: 1rem;
  font-size: 1.3rem;
  line-height: 1.4;
  color: #000000;
  text-align: center;
  font-family: "Merriweather", serif;
}





/* ===== FOOTER ===== */
.footer__container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem 8%;
  background: var(--accent-bg);
  color: #fff;
}

.footer__col {
  flex: 1 1 25rem;
}

.footer__logo img {
  width: 160px;
  margin-top: -10px;
}

.footer__col h4 {
  font-size: 2rem;
  margin-top: 1.5rem;
  color: var(--highlight);
  font-family: "Merriweather", serif;
}

.footer__col p,
.footer__col a {
  font-size: 1.6rem;
  color: #f1f1f1;
  margin: 0.5rem 0;
  transition: 0.3s;
  font-family: "Merriweather", serif;
}

.footer__socials {
  display: flex;
  gap: 2.5rem;
  margin-top: 1.5rem;
}

.Btn {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
}

.svgContainer i {
  font-size: 2.4rem;
  color: var(--btn-text);
  transition: 0.3s;
  font-family: "Merriweather", serif;
}

.Btn:hover i {
  transform: scale(1.2);
}


.Btn[href*="instagram"]:hover i {
  color: #E1306C;

}

.Btn[href*="wa.me"]:hover i {
  color: #25D366;
}

.Btn[href*="tiktok"]:hover i {
  color: #fff;
  transform: scale(1.2);

}

.Btn[href*="facebook"]:hover i {
  color: #1877F2;
}

.footer__col p i.bx {
  color: #fbc02d;
  margin-right: 0.4rem;
  vertical-align: middle;
}


.footer__map-link {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

.footer__map-link p {
  margin: 0;
  transition: color 0.3s;
  cursor: pointer;
}

.footer__map-link p:hover {
  color: var(--accent-alt);
}

.footer__map iframe {
  width: 100%;
  max-width: 300px;
  height: 200px;
  border: 0;
  border-radius: 10px;
  margin-top: 0.5rem;
  transition: transform 0.3s;
}


#tip-footer i {
  font-size: 2rem;
  color: var(--highlight);
  padding: 0.4rem;
  margin-right: 0.5rem;
  vertical-align: middle;
  font-family: "Merriweather", serif;
}


.footer__email {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #ecf0f1;
  font-size: 1.4rem;
  transition: color 0.3s;
  font-family: "Merriweather", serif;
}

.footer__email i {
  font-size: 2rem;
  color: var(--highlight);
  font-family: "Merriweather", serif;
}

.footer__email span {
  font-size: 1.8rem;
  color: var(--snd-bg-color);
  font-family: 'Merriweather', serif;
}

.footer__didi {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #ecf0f1;
  font-size: 1.4rem;
  transition: color 0.3s;
  font-family: "Merriweather", serif;
  margin-top: 0.5rem;
}

.footer__didi i {
  font-size: 2rem;
  color: var(--highlight);
}

.footer__didi span {
  font-size: 1.8rem;
  color: var(--snd-bg-color);
}

#tip-footer {
  font-size: 1.6rem;
  color: #ecf0f1;
  line-height: 1.6;
  margin-top: 0.5rem;
  font-family: "Merriweather", serif;
}

.footer__copyright {
  width: 100%;
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 1.6rem;
  color: #ccc;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-family: "Merriweather", serif;
}

.footer__copyright span#currentYear {
  font-weight: bold;
  color: var(--accent-alt);
}

.footer__brand {
  color: #ffffff;
  font-weight: bold;
}





/* ============================= */
/* 📱 RESPONSIVE MEDIA QUERIES */
/* ============================= */

/* === ≤ 480px (≈30% de pantallas grandes) - Móviles pequeños === */
@media (max-width: 480px) {
  html {
    font-size: clamp(45%, 2vw, 50%);
  }

  .section__header {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }


}

/* === ≤ 768px - Tablets y móviles grandes === */
@media (max-width: 768px) {
  html {
    font-size: clamp(52%, 2.5vw, 56.25%);
  }

  .section__header {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
  }

}

/* === ≤ 1024px - Laptops pequeños === */
@media (max-width: 1024px) {
  html {
    font-size: clamp(58%, 2.8vw, 60%);
  }

  .section__header {
    font-size: 3rem;
  }
}


/* === ≤ 1280px (≈85% de pantallas grandes) - Escritorios medianos === */
@media (max-width: 1280px) {
  html {
    font-size: 62.5%;
  }

  .section__header {
    font-size: 3.4rem;
  }

}

/* === ≥ 1440px (100%) - Escritorios grandes === */
@media (min-width: 1440px) {
  html {
    font-size: 65%;
  }

  .section__header {
    font-size: 3.6rem;
  }

}



/* === ≤ 480px (≈30% de pantallas grandes) - Móviles pequeños === */
@media (max-width: 480px) {
  .header {
    height: 9rem;
    padding: 0 4%;
  }

  .logo-img {
    width: 120px;
  }

  .navbar {
    width: 220px;
    gap: 2rem;
  }

  .navbar a {
    font-size: 1.6rem;
  }

  .cart-icon {
    font-size: 2rem;
  }

  .cart-count {
    font-size: 1rem;
    padding: 0.1rem 0.4rem;
  }

  .home-content h1 {
    font-size: 3.2rem;
  }

  .home-content p {
    font-size: 1.5rem;
  }

  .btn-home {
    font-size: 1.4rem;
    padding: 1rem 2.2rem;
  }
}

/* === ≤ 768px (≈50% de pantallas grandes) - Tablets y móviles grandes === */
@media (max-width: 768px) {
  .header {
    height: 10rem;
    padding: 0 5%;
  }

  .logo-img {
    width: 140px;
  }

  .navbar {
    width: 240px;
    gap: 2.2rem;
  }

  .navbar a {
    font-size: 1.7rem;
  }

  .cart-icon {
    font-size: 2.2rem;
  }

  .home-content h1 {
    font-size: 4rem;
  }

  .home-content p {
    font-size: 1.6rem;
  }

  .btn-home {
    font-size: 1.5rem;
    padding: 1.2rem 2.6rem;
  }
}

/* === ≤ 1024px (≈70% de pantallas grandes) - Laptops pequeños === */
@media (max-width: 1024px) {
  .header {
    height: 11rem;
    padding: 0 5.5%;
  }

  .logo-img {
    width: 150px;
  }

  .navbar {
    gap: 2.5rem;
  }

  .navbar a {
    font-size: 1.6rem;
  }

  .home-content h1 {
    font-size: 4.5rem;
  }

  .home-content p {
    font-size: 1.7rem;
  }
}

/* === ≤ 1280px (≈85% de pantallas grandes) - Escritorios medianos === */
@media (max-width: 1280px) {
  .header {
    height: 11.5rem;
    padding: 0 6%;
  }

  .logo-img {
    width: 160px;
  }

  .navbar a {
    font-size: 1.6rem;
  }

  .home-content h1 {
    font-size: 4.8rem;
  }
}

/* === ≥ 1440px (100%) - Escritorios grandes === */
@media (min-width: 1440px) {
  .header {
    height: 12rem;
    padding: 0 8%;
  }

  .logo-img {
    width: 180px;
  }

  .navbar a {
    font-size: 1.8rem;
  }

  .home-content h1 {
    font-size: 5.2rem;
  }

  .home-content p {
    font-size: 2rem;
  }

  .btn-home {
    font-size: 1.8rem;
    padding: 1.5rem 3.5rem;
  }
}

/* === ≤ 480px (≈30%) - Móviles pequeños === */
@media (max-width: 480px) {
  .about {
    padding: 6rem 5% 6rem;
    flex-direction: column;
  }

  .section__header_about {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }

  .about-content {
    flex-direction: column;
    gap: 3rem;
  }

  .about-video video {
    max-width: 260px;
    height: 360px;
  }

  .about-text {
    font-size: 1.4rem;
    margin-top: -5rem;
  }

  .events {
    padding: 3rem 5% 6rem;
  }

  .section__header_events {
    font-size: 2.4rem;
  }

  .section__subtext_events {
    font-size: 1.4rem;
  }

  .event-card {
    width: 100%;
    padding: 2rem 1.5rem;
  }

  .event-card h4 {
    font-size: 1.8rem;
  }

  .event-icon {
    font-size: 3.8rem;
  }

  .btn-event {
    font-size: 1.4rem;
    padding: 0.8rem 2rem;
  }
}

/* === ≤ 768px (≈50%) - Tablets y móviles grandes === */
@media (max-width: 768px) {
  .about {
    padding: 8rem 6% 7rem;
  }

  .section__header_about {
    font-size: 2.8rem;
  }

  .about-content {
    flex-direction: column;
    gap: 4rem;
  }

  .about-video video {
    max-width: 280px;
    height: 400px;
  }

  .about-text {
    font-size: 1.5rem;
    margin-top: -8rem;
  }

  .events {
    padding: 4rem 6% 7rem;
  }

  .section__header_events {
    font-size: 2.6rem;
  }

  .section__subtext_events {
    font-size: 1.5rem;
  }

  .event-card {
    width: 280px;
  }

  .event-icon {
    font-size: 4rem;
  }

  .btn-event {
    font-size: 1.45rem;
  }
}

/* === ≤ 1024px (≈70%) - Laptops pequeños === */
@media (max-width: 1024px) {
  .about {
    padding: 9rem 7% 8rem;
  }

  .section__header_about {
    font-size: 3rem;
  }

  .about-content {
    gap: 4.5rem;
  }

  .about-video video {
    max-width: 300px;
    height: 450px;
  }

  .about-text {
    font-size: 1.6rem;
    margin-top: -10rem;
  }

  .events {
    padding: 4rem 7% 8rem;
  }

  .section__header_events {
    font-size: 2.8rem;
  }

  .event-card {
    width: 300px;
  }
}

@media (max-width: 1003px),
(max-height: 925px) {
  .about-content {
    flex-direction: column;
    align-items: center;
    gap: 3.5rem;
    padding-inline: 2rem;
  }

  .about-video {
    margin-top: 0;
  }

  .about-video video {
    max-width: 280px;
    height: auto;
  }

  .about-text {
    margin-top: 0;
    font-size: 1.5rem;
    text-align: justify;
    width: 100%;
  }

  .section__header_about {
    font-size: 2.8rem;
    margin-bottom: 4rem;
  }
}

/* === ≤ 1280px (≈85%) - Escritorios medianos === */
@media (max-width: 1280px) {
  .about {
    padding: 10rem 8% 8rem;
  }

  .section__header_about {
    font-size: 3.2rem;
  }

  .about-video video {
    height: 480px;
  }

  .events {
    padding: 4rem 8% 8rem;
  }

  .section__header_events {
    font-size: 2.9rem;
  }
}

/* === ≥ 1440px (100%) - Escritorios grandes === */
@media (min-width: 1440px) {
  .about {
    padding: 12rem 10% 10rem;
  }

  .section__header_about {
    font-size: 3.6rem;
  }

  .about-video video {
    max-width: 320px;
    height: 520px;
  }

  .about-text {
    font-size: 1.7rem;
  }

  .events {
    padding: 5rem 10% 10rem;
  }

  .section__header_events {
    font-size: 3.2rem;
  }

  .event-card {
    width: 340px;
  }

  .btn-event {
    font-size: 1.6rem;
    padding: 1rem 2.8rem;
  }
}

/* === ≤ 480px (≈30%) - Móviles pequeños === */
@media (max-width: 480px) {
  .menu {
    padding: 6rem 5% 6rem;
  }

  .menu-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  .menu-filters {
    padding: 1.5rem;
  }

  .menu-filters h3 {
    font-size: 1.8rem;
  }

  .filter-group label,
  .checkbox-group label {
    font-size: 1.3rem;
  }

  .menu-content {
    grid-template-columns: 1fr;
  }

  .menu-item {
    max-width: 100%;
    height: auto;
    padding: 1.5rem;
  }

  .menu-item img {
    height: 160px;
  }

  .menu-item h4 {
    font-size: 1.6rem;
  }

  .menu-item .desc {
    font-size: 1.1rem;
  }

  .menu-item .price {
    font-size: 1.4rem;
  }

  .add-cart {
    font-size: 1rem;
    padding: 0.5rem 0.8rem;
    min-width: 90px;
  }

  .cart-panel {
    width: 100%;
    right: -100%;
  }

  .cart-panel.open {
    right: 0;
  }

  .menu-icons {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #eee;
    gap: 1rem;
  }

  .menu-icons label {
    font-size: 1.4rem;
  }

  .icon-list {
    gap: 0.6rem;
    padding-left: 0.5rem;
  }

  .icon-list span {
    font-size: 1.3rem;
  }

  .icon-list span i {
    font-size: 1.6rem;
  }
}

/* === ≤ 768px (≈50%) - Tablets y móviles grandes === */
@media (max-width: 768px) {
  .menu {
    padding: 8rem 6% 8rem;
  }

  .menu-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .menu-content {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

  .menu-item {
    max-width: 100%;
    height: auto;
  }

  .menu-item img {
    height: 170px;
  }

  .menu-item h4 {
    font-size: 1.7rem;
  }

  .cart-panel {
    width: 320px;
  }

  .menu-icons label {
    font-size: 1.5rem;
  }

  .icon-list span {
    font-size: 1.4rem;
  }

  .icon-list span i {
    font-size: 1.8rem;
  }
}

/* === ≤ 1024px (≈70%) - Laptops pequeños === */
@media (max-width: 1024px) {
  .menu {
    padding: 9rem 7% 9rem;
  }

  .menu-container {
    grid-template-columns: 220px 1fr;
    gap: 3rem;
  }

  .menu-content {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }

  .menu-item {
    height: 360px;
  }

  .cart-panel {
    width: 340px;
  }

  .menu-icons label {
    font-size: 1.5rem;
  }

  .icon-list span {
    font-size: 1.4rem;
  }

  .icon-list span i {
    font-size: 1.8rem;
  }
}

/* === ≤ 1280px (≈85%) - Escritorios medianos === */
@media (max-width: 1280px) {
  .menu-container {
    grid-template-columns: 240px 1fr;
  }

  .menu-content {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .menu-item {
    height: 380px;
  }

  .cart-panel {
    width: 360px;
  }

  .menu-icons label {
    font-size: 1.5rem;
  }

  .icon-list span {
    font-size: 1.4rem;
  }

  .icon-list span i {
    font-size: 1.8rem;
  }
}

/* === ≥ 1440px (100%) - Escritorios grandes === */
@media (min-width: 1440px) {
  .menu {
    padding: 10rem 8% 10rem;
  }

  .menu-container {
    grid-template-columns: 260px 1fr;
  }

  .menu-content {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .menu-item {
    max-width: 320px;
    height: 400px;
  }

  .cart-panel {
    width: 380px;
  }

  .menu-icons label {
    font-size: 1.6rem;
  }

  .icon-list span {
    font-size: 1.5rem;
  }

  .icon-list span i {
    font-size: 2rem;
  }
}




/* === ≤ 480px (≈30%) - Móviles pequeños === */
@media (max-width: 480px) {
  .promotions {
    padding: 6rem 5% 6rem;
  }

  .section__subtext_promotion {
    font-size: 1.4rem;
  }

  .promotions-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .promo-card img {
    height: 160px;
  }

  .promo-info h4 {
    font-size: 1.6rem;
  }

  .promo-desc {
    font-size: 1.3rem;
  }

  .promo-price {
    font-size: 1.4rem;
  }

  .btn-promo {
    font-size: 1.3rem;
    padding: 0.6rem 1.2rem;
  }

  .influencers {
    padding: 2rem;
  }

  .section__subtext_influencers {
    font-size: 1.4rem;
  }

  .video-wrapper {
    width: 280px;
    height: 400px;
  }

  .video-caption {
    font-size: 1.4rem;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
  }

  .slider-btn i {
    font-size: 2rem;
  }
}

/* === ≤ 768px (≈50%) - Tablets y móviles grandes === */
@media (max-width: 768px) {
  .promotions {
    padding: 8rem 6% 7rem;
  }

  .section__subtext_promotion {
    font-size: 1.5rem;
  }

  .promotions-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .promo-card img {
    height: 170px;
  }

  .promo-info h4 {
    font-size: 1.7rem;
  }

  .promo-desc {
    font-size: 1.35rem;
  }

  .promo-price {
    font-size: 1.5rem;
  }

  .btn-promo {
    font-size: 1.35rem;
  }

  .influencers {
    padding: 2.5rem;
  }

  .video-wrapper {
    width: 320px;
    height: 450px;
  }

  .video-caption {
    font-size: 1.5rem;
  }
}

/* === ≤ 1024px (≈70%) - Laptops pequeños === */
@media (max-width: 1024px) {
  .promotions {
    padding: 9rem 7% 8rem;
  }

  .promotions-container {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3.5rem;
  }

  .promo-card img {
    height: 180px;
  }

  .promo-info h4 {
    font-size: 1.8rem;
  }

  .influencers {
    padding: 3rem;
  }

  .video-wrapper {
    width: 340px;
    height: 480px;
  }
}

/* === ≤ 1280px (≈85%) - Escritorios medianos === */
@media (max-width: 1280px) {
  .promotions-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }

  .video-wrapper {
    width: 350px;
    height: 500px;
  }
}

/* === ≥ 1440px (100%) - Escritorios grandes === */
@media (min-width: 1440px) {
  .promotions {
    padding: 10rem 10% 8rem;
  }

  .promotions-container {
    max-width: 1100px;
    gap: 4.5rem;
  }

  .promo-card img {
    height: 200px;
  }

  .promo-info h4 {
    font-size: 2rem;
  }

  .promo-desc {
    font-size: 1.5rem;
  }

  .promo-price {
    font-size: 1.7rem;
  }

  .btn-promo {
    font-size: 1.5rem;
    padding: 1rem 1.8rem;
  }

  .video-wrapper {
    width: 380px;
    height: 520px;
  }

  .video-caption {
    font-size: 1.7rem;
  }
}




/* === ≤ 480px (≈30%) - Móviles pequeños === */
@media (max-width: 480px) {
  .class-popup {
    width: 220px;
    bottom: 15px;
    right: 15px;
  }

  .class-popup-header h4 {
    font-size: 1.3rem;
  }

  .class-popup-body p {
    font-size: 1.2rem;
    padding: 0.8rem;
  }

  .footer__container {
    flex-direction: column;
    padding: 2.5rem 5%;
    gap: 1.5rem;
  }

  .footer__col h4 {
    font-size: 1.8rem;
  }

  .footer__col p,
  .footer__col a {
    font-size: 1.4rem;
  }

  .footer__email,
  .footer__didi {
    font-size: 1.3rem;
  }

  .footer__email span,
  .footer__didi span {
    font-size: 1.6rem;
  }

  .footer__map iframe {
    max-width: 100%;
    height: 180px;
  }

  .footer__copyright {
    font-size: 1.4rem;
  }
}

/* === ≤ 768px (≈50%) - Tablets y móviles grandes === */
@media (max-width: 768px) {
  .class-popup {
    width: 240px;
    bottom: 18px;
    right: 18px;
  }

  .footer__container {
    padding: 3rem 6%;
    gap: 2rem;
  }

  .footer__col h4 {
    font-size: 1.9rem;
  }

  .footer__col p,
  .footer__col a {
    font-size: 1.5rem;
  }

  .footer__email span,
  .footer__didi span {
    font-size: 1.7rem;
  }

  .footer__map iframe {
    max-width: 280px;
    height: 190px;
  }

  .footer__copyright {
    font-size: 1.5rem;
  }
}

/* === ≤ 1024px (≈70%) - Laptops pequeños === */
@media (max-width: 1024px) {
  .class-popup {
    width: 260px;
  }

  .footer__container {
    padding: 3rem 7%;
  }

  .footer__map iframe {
    max-width: 300px;
    height: 200px;
  }
}

/* === ≤ 1280px (≈85%) - Escritorios medianos === */
@media (max-width: 1280px) {
  .footer__container {
    padding: 3rem 8%;
  }

  .footer__col h4 {
    font-size: 2rem;
  }

  .footer__col p,
  .footer__col a {
    font-size: 1.6rem;
  }

  .footer__copyright {
    font-size: 1.6rem;
  }
}

/* === ≥ 1440px (100%) - Escritorios grandes === */
@media (min-width: 1440px) {
  .class-popup {
    width: 280px;
    bottom: 24px;
    right: 24px;
  }

  .class-popup-header h4 {
    font-size: 1.5rem;
  }

  .class-popup-body p {
    font-size: 1.4rem;
  }

  .footer__container {
    padding: 4rem 10%;
    gap: 2.5rem;
  }

  .footer__col h4 {
    font-size: 2.2rem;
  }

  .footer__col p,
  .footer__col a {
    font-size: 1.7rem;
  }

  .footer__email span,
  .footer__didi span {
    font-size: 1.9rem;
  }

  .footer__map iframe {
    max-width: 320px;
    height: 220px;
  }

  .footer__copyright {
    font-size: 1.7rem;
  }
}