/* ============================================================
   Diseños KM — style.css
   Diseño y decoración hechas a mano · Monterrey, MX
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* Marca — tonos pastel de papelería, ajustados para buen contraste */
  --pink: #FADCE3;
  --pink-soft: #FBE7EC;
  --lavender: #8C6FC0;
  /* CTA / interactivo — más profundo que el pastel original para legibilidad */
  --lavender-soft: #B19CD9;
  /* fondos y acentos suaves */
  --sky: #4FA3B8;
  /* íconos / acentos secundarios, contraste mejorado */
  --sky-soft: #A2D2DF;
  --butter: #FCF5C7;
  --plum: #4a3b52;
  /* texto principal / footer */
  --plum-soft: #6b5a63;
  /* texto secundario */
  --cream: #FFFDF9;
  --white: #ffffff;
  --success: #3f8f5f;

  --font-display: "Fredoka", sans-serif;
  --font-body: "Inter", sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(74, 59, 82, 0.08);
  --shadow-md: 0 8px 24px rgba(74, 59, 82, 0.14);
  --shadow-lg: 0 16px 40px rgba(74, 59, 82, 0.18);

  --container: 1180px;
  --header-h: 104px;
  --header-h-mobile: 76px;
}

/* ---------- Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  background-color: var(--pink);
  color: var(--plum);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.5;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
}

.section-title {
  font-family: var(--font-display);
  color: var(--plum);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 600;
  text-align: center;
}

.section-subtitle {
  color: var(--plum-soft);
  text-align: center;
  max-width: 46ch;
  margin: 10px auto 0;
  font-size: 1rem;
}

.btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  padding: 15px 32px;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  min-height: 48px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--lavender);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: #7a5cb0;
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: var(--white);
  color: var(--lavender);
  border: 2px solid var(--lavender);
}

.btn-outline:hover {
  background-color: var(--pink-soft);
}

/* ============================================================
   HEADER
   ============================================================ */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
  background-color: var(--pink);
  box-shadow: var(--shadow-sm);
  height: var(--header-h);
  position: sticky;
  top: 0;
  z-index: 120;
}

.nav-links {
  display: flex;
  gap: 1rem;
  flex: 1;
  align-items: center;
}

.left-nav {
  justify-content: flex-start;
}

.right-nav {
  justify-content: flex-end;
}

.logo {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  box-shadow: var(--shadow-sm);
  background-color: var(--white);
}

.nav-links button.catalogo {
  font-family: var(--font-display);
  background-color: var(--lavender);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 26px;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.nav-links button.catalogo:hover {
  background-color: #7a5cb0;
  transform: translateY(-2px);
}

.nav-links button.whatsapp,
.nav-links button.facebook,
.nav-links button.instagram {
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: var(--shadow-sm);
}

.nav-links button.whatsapp {
  background-color: #4ec166;
}

.nav-links button.facebook {
  background-color: #4b6ea8;
}

.nav-links button.instagram {
  background: radial-gradient(circle at 30% 110%, #fdf497, #fd5949 45%, #d6249f 75%, #285AEB);
}

.nav-links button.whatsapp:hover,
.nav-links button.facebook:hover,
.nav-links button.instagram:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.nav-links button img {
  width: 24px;
  height: 24px;
}

.nav-links a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Hamburguesa (oculta en escritorio) ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  background-color: var(--lavender);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 200;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 3px;
  background-color: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Menú móvil ---------- */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(30, 20, 35, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 150;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: min(300px, 84vw);
  height: 100vh;
  background-color: var(--pink);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.4rem;
  padding: 5.5rem 2rem 2rem;
  transition: right 0.3s ease;
  z-index: 200;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  color: var(--lavender);
  cursor: pointer;
  width: 44px;
  height: 44px;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--plum);
  text-decoration: none;
  width: 100%;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid rgba(140, 111, 192, 0.25);
}

.mobile-menu-social {
  display: flex;
  gap: 0.9rem;
  margin-top: auto;
  padding-top: 1rem;
}

.mobile-menu-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.6);
}

.mobile-menu-social img {
  width: 26px;
  height: 26px;
}

body.menu-open {
  overflow: hidden;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  min-height: 88vh;
  padding: 2rem 1.5rem;
  background-image: linear-gradient(180deg, rgba(40, 28, 46, 0.55), rgba(40, 28, 46, 0.6)), url("contenido/media/hero3.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#hero h1 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
  color: var(--pink-soft);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 44ch;
  margin: 18px auto 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}

.hero-cta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-cta .btn-outline {
  background-color: rgba(255, 255, 255, 0.92);
}

/* ---------- Franja de confianza ---------- */
.trust-strip {
  background-color: var(--white);
  padding: 26px 1.5rem;
}

.trust-strip .container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  text-align: left;
}

.trust-item .icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--pink-soft);
  color: var(--lavender);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-item .icon svg {
  width: 22px;
  height: 22px;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14.5px;
  color: var(--plum);
}

.trust-item span {
  display: block;
  font-size: 12.5px;
  color: var(--plum-soft);
}

/* ============================================================
   CATALOGO-ELEGIR (elige tu catálogo)
   ============================================================ */
#catalogo-elegir {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 5.5rem 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}

.botones-catalogo {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 26px;
}

.botones-catalogo button {
  background-color: var(--white);
}

/* ============================================================
   CÓMO FUNCIONA
   ============================================================ */
.how-it-works {
  padding: 4.5rem 1.5rem 5.5rem;
  background-color: var(--pink-soft);
}

.how-steps {
  max-width: var(--container);
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.how-step {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.how-step .step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--lavender);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.how-step h3 {
  font-family: var(--font-display);
  color: var(--plum);
  font-size: 18px;
  margin-bottom: 8px;
}

.how-step p {
  color: var(--plum-soft);
  font-size: 14.5px;
}

/* ============================================================
   MENÚ / CATÁLOGO con filtro
   ============================================================ */
#menu {
  padding: 4.5rem 1.5rem 5.5rem;
  text-align: center;
}

#menu h1 {
  font-family: var(--font-display);
  color: var(--plum);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
}

.menu-subtitle {
  color: var(--plum-soft);
  margin-top: 8px;
  font-size: 15px;
}

.menu-audience-chip {
  display: none;
  align-items: center;
  gap: 10px;
  background-color: var(--plum);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 10px 8px 18px;
  border-radius: var(--radius-pill);
  margin: 24px auto 0;
  width: fit-content;
}

.menu-audience-chip.visible {
  display: flex;
}

.menu-audience-chip button {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-audience-chip button:hover {
  background-color: rgba(255, 255, 255, 0.35);
}

.menu-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 30px 0 44px;
}

.filter-btn {
  font-family: var(--font-display);
  background-color: var(--white);
  color: var(--lavender);
  border: 2px solid var(--lavender);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  min-height: 44px;
}

.filter-btn:hover {
  background-color: var(--pink-soft);
}

.filter-btn.active {
  background-color: var(--lavender);
  color: var(--white);
  border-color: var(--lavender);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  max-width: var(--container);
  margin: 0 auto;
}

.menu-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.menu-card.hidden {
  display: none;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.menu-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: var(--pink-soft);
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--sky);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  z-index: 4;
}

.menu-card h3 {
  font-family: var(--font-display);
  color: var(--plum);
  font-size: 17px;
  line-height: 1.3;
  margin: 16px 16px 4px;
}

.menu-card p {
  color: var(--plum-soft);
  font-size: 13.5px;
  margin: 0 16px;
  flex-grow: 1;
}

.menu-card-nodesc {
  margin: 0 !important;
}

.menu-empty {
  display: none;
  color: var(--plum-soft);
  font-size: 15px;
  margin-top: 30px;
  grid-column: 1 / -1;
}

.menu-empty.visible {
  display: block;
}

/* ---------- Carrusel dentro de cada tarjeta ---------- */
.card-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: var(--plum);
}

.card-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease-in-out;
}

.card-slide {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-slide--placeholder {
  background: linear-gradient(135deg, var(--pink-soft), var(--sky-soft));
}

.card-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.85);
  color: var(--plum);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease, background-color 0.2s ease;
  z-index: 5;
}

.card-carousel:hover .card-arrow,
.card-carousel:focus-within .card-arrow {
  opacity: 1;
}

.card-arrow:hover {
  background-color: var(--white);
}

.card-prev {
  left: 8px;
}

.card-next {
  right: 8px;
}

.menu-prices-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 16px 16px;
  margin-top: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--lavender) transparent;
}

.menu-prices-scroll::-webkit-scrollbar {
  height: 4px;
}

.menu-prices-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.menu-prices-scroll::-webkit-scrollbar-thumb {
  background-color: var(--lavender);
  border-radius: 4px;
}

.price-chip {
  flex: 0 0 auto;
  background-color: var(--pink-soft);
  border: 1px solid rgba(140, 111, 192, 0.35);
  padding: 6px 12px;
  border-radius: 10px;
  text-align: center;
  min-width: 74px;
}

.price-chip .p-qty {
  display: block;
  font-size: 11px;
  color: var(--plum-soft);
  font-weight: 600;
  white-space: nowrap;
}

.price-chip .p-val {
  display: block;
  font-family: var(--font-display);
  font-size: 13.5px;
  color: var(--plum);
  font-weight: 700;
}

.cta-block {
  max-width: var(--container);
  margin: 4rem auto 0;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.cta-block h2 {
  font-family: var(--font-display);
  color: var(--plum);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.cta-block p {
  color: var(--plum-soft);
  margin-bottom: 22px;
}

.section-pad {
  padding: 4.5rem 1.5rem;
}

/* ============================================================
   GALERÍA — carrusel de fotos + videos
   ============================================================ */
.categories-section .container {
  background-color: var(--lavender-soft);
  padding: 10px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  max-width: var(--container);
  margin: 0 auto;
}

@media (min-width: 769px) {
  .categories-section .container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .categories-section .container .video-frame {
    flex: 1 1 320px;
    max-width: 380px;
    margin: 0;
  }

  .categories-section .container .carousel {
    flex: 1 1 100%;
    max-width: 900px;
    margin: 0 auto;
  }
}

.image-wrapper {
  background-color: var(--white);
  padding: 10px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.category-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.carousel {
  position: relative;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel-slide {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 0 10px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--lavender);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.carousel-arrow:hover {
  background-color: var(--pink);
  transform: translateY(-50%) scale(1.08);
}

.carousel-prev {
  left: 4px;
}

.carousel-next {
  right: 4px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.carousel-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.carousel-dots button.active {
  background-color: var(--white);
  transform: scale(1.2);
}


/* ============================================================
   RESEÑAS
   ============================================================ */
.comentarios-comentarios {
  background-color: var(--lavender-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
  padding: 4.5rem 1.5rem;
}

.resena {
  text-align: center;
}

.resena h1 {
  font-family: var(--font-display);
  color: var(--white);
  margin-top: 0;
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin-bottom: 10px;
}

.resena p {
  color: var(--pink-soft);
  font-size: 1rem;
}

.comentarios-contenedor {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: var(--container);
}

.comentario {
  width: 280px;
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 22px;
  box-sizing: border-box;
  box-shadow: var(--shadow-sm);
}

.comentario .stars {
  color: #f5b301;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.comentario h3 {
  margin-top: 0;
  color: var(--plum);
  font-size: 1rem;
  font-family: var(--font-display);
}

.comentario p {
  color: var(--plum-soft);
  font-size: 0.92rem;
  line-height: 1.5;
  margin-top: 6px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer {
  background-color: var(--plum);
  color: #f4e9ee;
  padding: 4rem 1.5rem 0;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: var(--container);
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-col {
  flex: 1;
  min-width: 180px;
}

.footer-brand {
  flex: 1.6;
  min-width: 240px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--white);
}

.footer-logo span {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--pink);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: #d9c8d3;
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  background-color: var(--lavender);
  transform: translateY(-3px);
}

.footer-social img {
  width: 20px;
  height: 20px;
}

.footer-col h3 {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--pink);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.7rem;
}

.footer-col a {
  color: #d9c8d3;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--pink);
}

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #b8a3ae;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .trust-strip .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-steps {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

@media (max-width: 900px) {
  .main-header {
    height: var(--header-h-mobile);
    padding: 0.8rem 1rem;
  }

  .nav-links.left-nav,
  .nav-links.right-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .logo {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }

  #catalogo-elegir {
    padding: 4rem 1.25rem;
  }

  #menu {
    padding: 3.5rem 1.25rem 4.5rem;
  }

  .menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
  }

  .menu-card h3 {
    font-size: 15.5px;
  }

  .categories-section .container {
    padding: 30px 15px;
  }

  .carousel {
    max-width: 100%;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  #hero {
    min-height: 80vh;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .trust-strip .container {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .trust-item {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  .botones-catalogo {
    flex-direction: column;
    width: 100%;
  }

  .botones-catalogo button,
  .botones-catalogo .btn {
    width: 100%;
  }

  .comentario {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .menu-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .menu-filters {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 13.5px;
  }

  #hero h1 {
    font-size: 2rem;
  }
}