/* ============================================================
   Mr. Frías Food Truck — Brand override sobre Fresheat template
   Paleta y componentes propios. Cargado DESPUÉS de main.css.
============================================================ */

:root {
  --mf-rojo: #C31329;
  --mf-amarillo: #F9A600;
  --mf-amarillo-intenso: #F9C400;
  --mf-naranja: #EE6733;
  --mf-blanco: #FFFFFF;
  --mf-negro: #1E1713;
  --mf-gris: #6A625A;
  --mf-texto-secundario: #C9BFB5;
  --mf-fondos-suaves: #FFF6E8;

  --mf-font: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;

  /* OVERRIDE de variables del template Fresheat con paleta Mr. Frías
     Así el header, footer y todos los componentes del template usan los colores correctos
     SIN tener que pelear con !important en cada propiedad */
  --theme: #C31329;        /* Era #EB0029 — rojo Mr. Frías */
  --theme2: #F9A600;       /* Era #FC791A — amarillo Mr. Frías */
  --title: #1E1713;        /* Era #010F1C — negro marrón Mr. Frías */
  --bg: #1E1713;           /* Era #02142A — fondo oscuro Mr. Frías */
  --dark: #1E1713;
  --bg2: #FFF6E8;          /* Fondos suaves cremosos */
}

/* ---------- base ---------- */
.mrfrias-body {
  font-family: var(--mf-font);
  background: var(--mf-negro);
  color: var(--mf-blanco);
}

.mrfrias-body a {
  text-decoration: none;
}

.mrfrias-section {
  background: var(--mf-fondos-suaves);
  color: var(--mf-negro);
}

.mrfrias-section--dark {
  background: var(--mf-negro);
  color: var(--mf-blanco);
}

.mrfrias-section--dark > .container > .section-title .mrfrias-sub,
.mrfrias-section--dark > .container > .text-center > p,
.mrfrias-section--dark > .container > .section-title > p {
  color: var(--mf-texto-secundario);
}

.mrfrias-sucursal-card .mrfrias-sucursal-copy,
.mrfrias-sucursal-card .mrfrias-tel {
  color: #1E1713 !important;
}

.mrfrias-sucursal-card .mrfrias-tel {
  color: #4a423a !important;
  font-weight: 600;
}

/* ---------- tipografía: respetar la del template (Epilogue) ----------
   Solo apagamos capitalize en TITULOS específicos para que respeten mayúsculas/minúsculas naturales del español.
   El template usa capitalize que en inglés se ve bien pero en español le mete mayúsculas raras. */
.mrfrias-body .title,
.mrfrias-body .banner-content h1,
.mrfrias-body .banner-content h2,
.mrfrias-body .banner-content h3,
.mrfrias-body .single-food-items h3,
.mrfrias-body .dishes-card h3,
.mrfrias-body .about-content h2,
.mrfrias-body .cta-content h2,
.mrfrias-body .cta-content h3,
.mrfrias-body p,
.mrfrias-body .text,
.mrfrias-body .item-content .text {
  text-transform: none !important;
}

/* Sub-title del title-area: mantener capitalize del template (es decorativo, mayúscula al inicio de palabra está OK) */

.mrfrias-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--mf-amarillo);
  background: rgba(195, 19, 41, 0.08);
  border: 1px solid var(--mf-rojo);
  padding: 0.3rem 0.8rem;
  border-radius: 99px;
}

.mrfrias-lead {
  font-size: 1.125rem;
  line-height: 1.55;
  color: inherit;
}

.mrfrias-sub {
  font-size: 1rem;
  color: #4a423a;
  max-width: 640px;
  margin: 0 auto;
}

.mrfrias-microcopy {
  font-size: 0.9rem;
  color: #4a423a;
}

.mrfrias-section--dark .mrfrias-sub,
.mrfrias-section--dark .mrfrias-microcopy {
  color: var(--mf-texto-secundario);
}

/* ---------- botones (sobre escribe .theme-btn del template) ---------- */
.mrfrias-body .theme-btn,
.theme-btn,
.mrfrias-body a.theme-btn {
  background: var(--mf-amarillo) !important;
  color: #1E1713 !important;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  transition: background 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  text-decoration: none;
  overflow: hidden;
}

/* Eliminar pseudo-elementos amarillos del template (::before y ::after de hover effect) */
.mrfrias-body .theme-btn::before,
.mrfrias-body .theme-btn::after,
.mrfrias-body a.theme-btn::before,
.mrfrias-body a.theme-btn::after {
  display: none !important;
}

/* Eliminar fondo blanco que el template pone en los iconos dentro de botones */
.mrfrias-body .theme-btn i,
.mrfrias-body a.theme-btn i {
  background: none !important;
  padding: 0 !important;
  color: inherit !important;
}

.mrfrias-body .theme-btn:hover,
.theme-btn:hover {
  background: var(--mf-naranja) !important;
  color: var(--mf-blanco) !important;
  transform: translateY(-2px);
}

.mrfrias-body .theme-btn.style3 {
  background: transparent;
  color: var(--mf-amarillo);
  border: 2px solid var(--mf-amarillo);
}

.mrfrias-body .theme-btn.style3:hover {
  background: var(--mf-amarillo);
  color: var(--mf-negro);
}

/* ---------- hero ---------- */
.mrfrias-hero {
  background: linear-gradient(180deg, var(--mf-negro) 0%, #2a1f1a 100%);
  color: var(--mf-blanco);
  padding: 8rem 0 5rem;
}

.mrfrias-hero .mrfrias-lead {
  color: var(--mf-texto-secundario);
}

.mrfrias-hero-img {
  max-width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* ---------- cards (especialidades) ---------- */
.mrfrias-card {
  background: var(--mf-blanco);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(30, 23, 19, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.mrfrias-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(30, 23, 19, 0.15);
}

.mrfrias-card .popular-dishes-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.mrfrias-card .popular-dishes-content {
  padding: 1.25rem 1.5rem 1.5rem;
}

.mrfrias-card-title {
  color: var(--mf-rojo);
  font-weight: 800;
  font-size: 1.25rem;
}

/* ---------- sucursales ---------- */
.mrfrias-sucursal-card {
  background: var(--mf-blanco);
  color: var(--mf-negro);
  border-radius: 1.25rem;
  padding: 1.75rem;
  height: 100%;
  border: 2px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.mrfrias-sucursal-card:hover {
  border-color: var(--mf-amarillo);
  transform: translateY(-4px);
}

.mrfrias-sucursal-card.is-pending {
  background: var(--mf-fondos-suaves);
  border-color: #e6d9c4;
}

.mrfrias-sucursal-card.is-pending .mrfrias-sucursal-copy {
  color: #1E1713;
}

.mrfrias-sucursal-head {
  margin-bottom: 0.75rem;
}

.mrfrias-sucursal-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--mf-rojo);
  margin: 0;
}

.mrfrias-sucursal-zona {
  display: block;
  font-size: 0.85rem;
  color: #3d3530;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.15rem;
  font-weight: 600;
}

.mrfrias-sucursal-copy {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #4a423a;
  margin: 0.75rem 0 1rem;
}

.mrfrias-wa-btn {
  width: 100%;
  justify-content: center;
  background: #25D366;
  color: var(--mf-blanco);
}

.mrfrias-wa-btn:hover {
  background: #128C7E;
  color: var(--mf-blanco);
}

.mrfrias-tel {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  color: var(--mf-gris);
}

.mrfrias-pending-badge {
  display: inline-block;
  background: var(--mf-negro);
  color: var(--mf-amarillo);
  padding: 0.5rem 1rem;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 700;
}

/* ---------- galería ---------- */
.mrfrias-gallery-item {
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.mrfrias-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.mrfrias-gallery-item:hover img {
  transform: scale(1.05);
}

/* ---------- about ---------- */
.mrfrias-about-img {
  border-radius: 1.25rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 480px;
}

/* ---------- CTA final ---------- */
.mrfrias-cta-final {
  background: linear-gradient(135deg, var(--mf-rojo) 0%, var(--mf-naranja) 100%);
  padding: 4rem 0;
}

.mrfrias-cta-final .text-white {
  color: var(--mf-blanco) !important;
}

/* ---------- contacto ---------- */
.mrfrias-contact-emails a {
  display: block;
  font-size: 1.1rem;
  color: var(--mf-rojo);
  font-weight: 600;
  margin: 0.4rem 0;
}

.mrfrias-contact-emails a:hover {
  color: var(--mf-naranja);
}

/* ---------- WhatsApp flotante ---------- */
.mrfrias-wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--mf-blanco);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.2s ease;
}

.mrfrias-wa-float:hover {
  transform: scale(1.1);
  color: var(--mf-blanco);
}

/* ---------- footer ---------- */
.mrfrias-footer {
  background: var(--mf-negro);
  color: var(--mf-texto-secundario);
  padding: 3rem 0 1.5rem;
  border-top: 2px solid var(--mf-rojo);
  position: relative;
  overflow: hidden;
}

.mrfrias-footer-shape {
  position: absolute;
  opacity: 0.08;
  pointer-events: none;
}
.mrfrias-footer-shape1 { top: 0; left: 0; max-width: 200px; }
.mrfrias-footer-shape2 { top: 0; right: 0; max-width: 200px; }
.mrfrias-footer-shape3 { bottom: 0; left: 0; max-width: 180px; }
.mrfrias-footer-shape4 { bottom: 0; right: 0; max-width: 180px; }

.mrfrias-footer-logo img {
  max-height: 60px;
}

.mrfrias-footer-title {
  color: var(--mf-amarillo);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.mrfrias-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mrfrias-footer-list a,
.mrfrias-footer-text a {
  color: var(--mf-texto-secundario);
  transition: color 0.2s ease;
}

.mrfrias-footer-list a:hover,
.mrfrias-footer-text a:hover {
  color: var(--mf-amarillo);
}

.mrfrias-footer-list li {
  margin: 0.4rem 0;
}

.mrfrias-footer-bottom {
  border-top: 1px solid #2a1f1a;
  padding-top: 1.25rem;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: #b8aea3;
}

.mrfrias-powered-by {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mf-amarillo);
  font-weight: 700;
}

/* ---------- HEADER — barra traslúcida negra ---------- */
.mrfrias-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(8, 4, 2, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.mrfrias-header.is-scrolled {
  background: rgba(6, 3, 1, 0.94);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.mrfrias-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0.6rem 2rem;
  position: relative;
}

/* Logo */
.mrfrias-header-logo img {
  height: 54px;
  width: auto;
  display: block;
}

/* Nav centrado */
.mrfrias-header-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.mrfrias-header-nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mrfrias-header-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}

.mrfrias-header-nav a:hover {
  color: var(--mf-amarillo);
}

/* Hamburger mobile */
.mrfrias-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10001;
}

.mrfrias-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.mrfrias-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mrfrias-hamburger.is-open span:nth-child(2) { opacity: 0; }
.mrfrias-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav desplegable */
.mrfrias-mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: rgba(6, 3, 1, 0.97);
  z-index: 9998;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(-10px);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}

.mrfrias-mobile-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mrfrias-mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.mrfrias-mobile-nav a {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mrfrias-mobile-nav a:hover { color: var(--mf-amarillo); }

/* Compensar el header fijo en el body */
body.mrfrias-body { padding-top: 70px; }

@media (max-width: 991px) {
  .mrfrias-header-nav { display: none; }
  .mrfrias-hamburger { display: flex; }
  .mrfrias-mobile-nav { display: block; }
}

.mrfrias-footer-logo img {
  display: block !important;
  max-height: 70px !important;
  width: auto !important;
}

/* ============================================================
   COMPONENTES FRESHEAT (overrides para Mr. Frías)
============================================================ */

/* ============================================================
   BANNER — RESPETAR la estructura del template
   Usa el bannerBG1_1.jpg del template (brick rojizo cálido con piso de madera)
============================================================ */
.banner-section {
  position: relative;
  overflow: hidden;
}

.banner-section .banner-wrapper.style1.bg-img {
  background-image: url('../img/bg/bannerBG1_1.jpg') !important;
  background-size: cover !important;
  background-position: center bottom !important;
  background-repeat: no-repeat !important;
  background-color: #1E1713;
  min-height: 780px;
}

/* Todos los slides la MISMA altura fija → fondo brick siempre al mismo tamaño */
.banner-section .swiper-slide,
.banner-section .swiper-slide .banner-wrapper {
  min-height: 780px;
  height: 780px !important;
}

.banner-section .banner-slider {
  width: 100%;
  overflow: hidden;
}

.banner-section .swiper-wrapper {
  display: flex;
}

.banner-section .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 780px !important;
}

/* Sub-title del banner: texto plano naranja como el template (sin pill ni border) */
.banner-style1 .section-title .sub-title.mrfrias-banner-sub,
.banner-style1 .section-title .sub-title {
  color: var(--mf-naranja) !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 1rem;
  display: block;
  margin-bottom: 1.25rem;
}

/* Title del banner: TODO MAYÚSCULAS como el template */
.banner-style1 .section-title .title,
.banner-style1 .section-title .title.mrfrias-banner-title {
  color: var(--mf-blanco) !important;
  text-transform: uppercase !important;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.25rem) !important;
  line-height: 1.15 !important;
}

/* Botón del hero — rojo rectangular como el template (no pill amarillo) */
.banner-style1 .section-title > .theme-btn,
.banner-style1 a.theme-btn {
  background: var(--mf-rojo) !important;
  color: var(--mf-blanco) !important;
  border-radius: 4px !important;
  padding: 0.9rem 2rem !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.banner-style1 a.theme-btn:hover {
  background: var(--mf-amarillo) !important;
  color: var(--mf-negro) !important;
}

.mrfrias-body .mrfrias-banner-text {
  color: var(--mf-texto-secundario) !important;
  font-size: 1.2rem !important;
  line-height: 1.55;
  margin-bottom: 2rem;
  max-width: 540px;
}

.mrfrias-banner-img {
  max-width: 100%;
  border-radius: 2rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6),
              0 0 0 8px rgba(249, 166, 0, 0.15),
              0 0 0 16px rgba(195, 19, 41, 0.1);
}

.mrfrias-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(249, 166, 0, 0.9);
  color: var(--mf-negro);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease;
}

.mrfrias-arrow:hover {
  background: var(--mf-amarillo);
}

.banner-slider .arrow-prev { left: 2rem; }
.banner-slider .arrow-next { right: 2rem; }

.swiper-pagination-bullet {
  background: var(--mf-amarillo) !important;
  opacity: 0.4 !important;
}

.swiper-pagination-bullet-active {
  opacity: 1 !important;
  background: var(--mf-amarillo) !important;
}

/* Sub para descripciones (NO sobrescribe .sub-title del template) */
.mrfrias-section-sub {
  color: #4a423a;
  max-width: 640px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
  text-align: center;
}

/* Override del color de sub-title del template (#fc791a era muy claro) → rojo Mr. Frías para mejor contraste */
.mrfrias-body .title-area .sub-title {
  color: var(--mf-rojo) !important;
  font-weight: 800;
}

/* En secciones dark, el sub-title debe ser amarillo */
.mrfrias-sucursales-section .title-area .sub-title,
.gallery-section .title-area .sub-title {
  color: var(--mf-amarillo) !important;
}

/* Title (h2) — forzar blanco en sucursales (sección dark) */
.mrfrias-sucursales-section .title-area .title,
.gallery-section .title-area .title {
  color: var(--mf-blanco) !important;
}

/* Best Food Items section — adaptar a fotos cuadradas (JPEG) en lugar de PNG transparentes */
.best-food-items-section .single-food-items {
  text-align: center;
  padding: 1rem;
}

.best-food-items-section .single-food-items .item-thumb {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 1.5rem;
  border-radius: 50% !important;
  overflow: hidden;
  border: 6px solid var(--mf-fondos-suaves);
  box-shadow: 0 15px 35px rgba(195, 19, 41, 0.18);
  transition: transform 0.4s ease;
}

.best-food-items-section .single-food-items:hover .item-thumb {
  transform: scale(1.05) rotate(-3deg);
}

.best-food-items-section .single-food-items .item-thumb > img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  display: block;
  position: relative;
  z-index: 1;
}

/* El círculo rojo girando — overlay sobre el contenedor del item */
.best-food-items-section .single-food-items {
  position: relative;
}

.best-food-items-section .single-food-items .circle-shape {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 260px;
  z-index: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.best-food-items-section .single-food-items .circle-shape img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Forzar que el item-thumb quede arriba del circle-shape */
.best-food-items-section .single-food-items .item-thumb {
  position: relative;
  z-index: 1;
}

/* Texto debajo del thumb */
.best-food-items-section .single-food-items .item-content h3 {
  color: var(--mf-rojo) !important;
  text-transform: none !important;
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.best-food-items-section .single-food-items .item-content a:hover h3 {
  color: var(--mf-naranja) !important;
}

.best-food-items-section .single-food-items .item-content .text {
  color: #4a423a;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 280px;
  margin: 0 auto;
}

/* Espaciar los slides en el carrusel */
.bestFoodItems-slider .swiper-slide {
  padding: 2rem 0.5rem;
}

/* Pagination dots del carrusel */
.bestFoodItems-pagination {
  text-align: center;
  margin-top: 2rem;
}

.bestFoodItems-pagination .swiper-pagination-bullet {
  background: var(--mf-amarillo) !important;
  width: 12px;
  height: 12px;
  margin: 0 4px !important;
}

/* Fondo de la seccion (override el bg-color2 del template) */
.best-food-items-section.bg-color2 {
  background: var(--mf-fondos-suaves) !important;
}

/* Sucursales section */
.mrfrias-sucursales-section {
  background: var(--mf-negro);
  color: var(--mf-blanco);
  position: relative;
  overflow: hidden;
}

.mrfrias-sucursales-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(249, 166, 0, 0.15) 0%, transparent 70%);
  filter: blur(40px);
}

.mrfrias-sucursales-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(195, 19, 41, 0.15) 0%, transparent 70%);
  filter: blur(40px);
}

.mrfrias-sucursales-section .title-area {
  text-align: center;
  margin-bottom: 2rem;
}

.mrfrias-sucursales-section .mrfrias-section-sub {
  color: var(--mf-texto-secundario);
}

/* Sub-title en secciones dark debe ser amarillo (contraste WCAG) */
.mrfrias-sucursales-section .title-area .sub-title,
.gallery-section .title-area .sub-title {
  color: var(--mf-amarillo) !important;
}

/* About section */
.about-us-section {
  background: var(--mf-fondos-suaves);
}

/* Ocultar shapes del template (son samples grises 381x358 que no aplican a nuestra paleta) */
.about-wrapper.style1 > .shape1,
.about-wrapper.style1 > .shape2,
.about-wrapper.style1 > .shape3,
.about-wrapper.style1 > .shape4,
.about-wrapper.style1 > .shape5,
.about-wrapper.style1 > .shape6 {
  display: none !important;
}

.mrfrias-about-img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.about-us-section .text {
  color: #4a423a;
  font-size: 1.1rem;
  line-height: 1.65;
  margin-top: 1.5rem;
}

/* Gallery slider */
.gallery-section {
  background: var(--mf-negro);
  padding: 5rem 0;
  overflow: hidden;
}

.gallery-section .title-area {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-section .mrfrias-section-title {
  color: var(--mf-blanco) !important;
}

.gallery-section .mrfrias-section-sub {
  color: var(--mf-texto-secundario);
}

.mrfrias-gallery-thumb {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

.mrfrias-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mrfrias-gallery-thumb:hover img {
  transform: scale(1.1);
}

.mrfrias-gallery-thumb .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--mf-blanco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.mrfrias-gallery-thumb:hover .icon {
  transform: translate(-50%, -50%) scale(1);
}

/* CTA Final */
.cta-section {
  background: var(--mf-negro);
}

.cta-section .cta-wrapper.style1,
.cta-section .cta-wrapper {
  background-image: none !important;
}

.mrfrias-cta-final {
  background: linear-gradient(135deg, var(--mf-rojo) 0%, var(--mf-naranja) 100%) !important;
  background-image: linear-gradient(135deg, var(--mf-rojo) 0%, var(--mf-naranja) 100%) !important;
  border-radius: 2rem;
  margin: 3rem auto;
  max-width: 1200px;
  padding: 4rem 3rem !important;
  position: relative;
  overflow: hidden;
}

.mrfrias-cta-final .cta-content .mrfrias-cta-eyebrow,
.mrfrias-cta-final .cta-content h6 {
  display: inline-block;
  color: var(--mf-amarillo);
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.mrfrias-cta-final .cta-content .mrfrias-cta-title,
.mrfrias-cta-final .cta-content h3 {
  color: var(--mf-blanco) !important;
  font-size: clamp(1.75rem, 3vw, 2.5rem) !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  margin-bottom: 1rem;
}

.mrfrias-cta-final .cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.mrfrias-cta-final .cta-content .theme-btn {
  background: var(--mf-blanco) !important;
  color: var(--mf-rojo) !important;
}

.mrfrias-cta-img {
  max-width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* ---------- responsive ---------- */
@media (max-width: 768px) {
  .mrfrias-hero {
    padding: 5rem 0 3rem;
  }
  .mrfrias-hero-img {
    margin-top: 2rem;
  }
  .mrfrias-wa-float {
    width: 52px;
    height: 52px;
    font-size: 1.7rem;
    bottom: 1rem;
    right: 1rem;
  }
}
/* ============================================================
   v3 — Brick backgrounds, chef-card sucursales, marquee, hero with floating ingredients
============================================================ */

/* ---------- HERO ----------
   Para PNG transparentes (burger flotando), no aplicar fondo.
   Para JPG sólidas, aplicar marco redondeado con borde amarillo. */
.mrfrias-banner-img {
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
  width: auto;
  margin: 0 auto;
  display: block;
}

/* Banner thumb: altura fija igual al slide. Imagen con object-fit:contain dentro. */
.banner-thumb-area,
.banner-thumb-area.is-transparent,
.mrfrias-banner-slide .banner-thumb-area {
  background: none !important;
  background-image: none !important;
  background-color: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 780px;
  width: 100%;
}

.banner-thumb-area .mrfrias-banner-img,
.mrfrias-banner-slide .mrfrias-banner-img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 35px 60px rgba(0, 0, 0, 0.7));
  border: none !important;
  outline: none !important;
  border-radius: 0 !important;
  background: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

@media (max-width: 991px) {
  .banner-section .swiper-slide,
  .banner-section .swiper-slide .banner-wrapper {
    height: auto !important;
    min-height: 0 !important;
  }
  .banner-thumb-area,
  .banner-thumb-area.is-transparent,
  .mrfrias-banner-slide .banner-thumb-area {
    height: 320px;
    margin-bottom: 1rem;
  }
  .banner-thumb-area .mrfrias-banner-img,
  .mrfrias-banner-slide .mrfrias-banner-img {
    max-height: 300px !important;
  }
}

/* El banner-wrapper.style1 del template puede traer padding/border. Eliminarlos. */
.mrfrias-banner-slide.banner-wrapper.style1 {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Ingredientes flotando alrededor del hero (decoración) */
.mrfrias-banner-slide::before,
.mrfrias-banner-slide::after {
  content: '';
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

/* ---------- Antojos: circle-shape DENTRO de .item-thumb (estructura template original) ---------- */

/* Reducir margin-top:140px del template a 80px para compactar la sección */
.best-food-items-section .single-food-items {
  position: relative;
  text-align: center;
  margin-top: 50px !important;
}

.best-food-items-section .single-food-items .item-thumb {
  margin-top: -40px !important;
}

/* circle-shape dentro de item-thumb — centrado, gira en loop */
.best-food-items-section .single-food-items .item-thumb .circle-shape {
  position: absolute !important;
  top: -5px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 1 !important;
  pointer-events: none;
}

.best-food-items-section .single-food-items .item-thumb .circle-shape img {
  animation: cir36 20s linear infinite;
}

/* Botón rojo central 'Pídelo Ahora' — el template aplica max-width:200px al .btn-wrapper */
.best-food-items-section .btn-wrapper {
  text-align: center !important;
  width: 100% !important;
  max-width: none !important;
  display: block !important;
  margin: 3rem auto 0 !important;
}

.mrfrias-body .mrfrias-btn-red,
.mrfrias-body a.mrfrias-btn-red {
  background: var(--mf-rojo) !important;
  color: var(--mf-blanco) !important;
  font-weight: 800;
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(195, 19, 41, 0.35);
}

.mrfrias-body .mrfrias-btn-red:hover {
  background: var(--mf-amarillo) !important;
  color: var(--mf-negro) !important;
  transform: translateY(-2px);
}

/* ---------- SUCURSALES — grid fondo brick rojo oscuro, pills horizontales ---------- */
.mrfrias-sucursales-brick {
  background-image:
    linear-gradient(rgba(15, 8, 5, 0.82), rgba(15, 8, 5, 0.82)),
    url('../img/mrfrias/nuevas/bg-brick-wall 1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 5rem 0 4rem;
}

.mrfrias-sucursales-brick .title-area {
  text-align: center;
  margin-bottom: 3rem;
}

.mrfrias-sub-light {
  color: var(--mf-texto-secundario) !important;
}

/* Grid de 3 columnas en desktop */
.mrfrias-suc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 991px) { .mrfrias-suc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .mrfrias-suc-grid { grid-template-columns: 1fr; } }

/* Card blanca limpia */
.mrfrias-suc-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.mrfrias-suc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 55px rgba(195,19,41,0.3);
}

/* Pill pequeño horizontal con location pin */
.mrfrias-suc-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #f3f3f3;
  border-radius: 999px;
  padding: 0.35rem 1.1rem;
  margin-bottom: 1.1rem;
  font-size: 1.1rem;
  color: var(--mf-rojo);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.mrfrias-suc-nombre {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--mf-rojo);
  margin: 0 0 0.3rem;
  text-transform: none !important;
}

.mrfrias-suc-zona {
  color: #888;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.mrfrias-suc-tel {
  color: #222;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 1.25rem;
}
.mrfrias-suc-tel .fa-whatsapp { color: #25d366; margin-right: 0.3rem; }

.mrfrias-suc-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--mf-rojo);
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.mrfrias-suc-btn:hover {
  background: var(--mf-amarillo);
  color: var(--mf-negro);
}

/* ======================== SUCURSALES NEON — bricks + glow amarillo ======================== */
.branches-neon-section {
  position: relative;
  padding: 90px 0 80px;
  background:
    linear-gradient(rgba(8, 4, 2, 0.90), rgba(8, 4, 2, 0.90)),
    url('../img/mrfrias/nuevas/brick-wall4.jpg') center/cover no-repeat;
  overflow: hidden;
}

.branches-heading {
  text-align: center;
  margin-bottom: 55px;
}

.branches-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #EE6733;
}

.branches-title {
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.95;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0,0,0,0.7);
}

.branches-heading-line {
  width: 120px;
  height: 3px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, transparent, #F9A600, #C31329, #F9A600, transparent);
  box-shadow: 0 0 14px rgba(249, 166, 0, 0.7);
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 991px) {
  .branches-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .branches-neon-section { padding: 70px 0 60px; }
  .branches-grid { grid-template-columns: 1fr; gap: 22px; }
}

.branch-card {
  position: relative;
  padding: 36px 26px 28px;
  text-align: center;
  border-radius: 20px;
  background: rgba(10, 8, 6, 0.90);
  border: 2.5px solid #F9C400;
  box-shadow:
    0 0 18px rgba(249, 196, 0, 0.80),
    0 0 40px rgba(249, 196, 0, 0.30),
    inset 0 0 30px rgba(249, 196, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.branch-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 28px rgba(249, 196, 0, 1),
    0 0 60px rgba(249, 196, 0, 0.45),
    inset 0 0 30px rgba(249, 196, 0, 0.10);
}

.branch-pin {
  font-size: 38px;
  color: #C31329;
  margin-bottom: 14px;
  line-height: 1;
  text-shadow:
    0 0 10px rgba(195, 19, 41, 0.85),
    0 0 22px rgba(238, 103, 51, 0.55);
}

.branch-name {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  text-shadow: 0 3px 12px rgba(0,0,0,0.6);
  text-transform: none;
}

.branch-area {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
  color: #EE6733;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.branch-phone {
  margin: 0 0 22px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
}

.branch-phone .fa-phone {
  font-size: 15px;
  color: #bbb;
  margin-right: 4px;
}

.branch-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  border-radius: 12px;
  background: linear-gradient(180deg, #E5262E 0%, #C31329 100%);
  color: #fff !important;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.06em;
  box-shadow:
    0 0 12px rgba(195, 19, 41, 0.75),
    0 6px 18px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.branch-button:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow:
    0 0 20px rgba(195, 19, 41, 1),
    0 10px 28px rgba(0,0,0,0.45);
}

.branch-button .fab {
  font-size: 17px;
}

.branches-microcopy {
  text-align: center;
  margin-top: 36px;
  font-size: 13px;
  color: rgba(255,255,255,0.40);
}

/* ---------- ACERCA DE NOSOTROS — 2 col foto rectangular + texto bold + marquee ghost ---------- */
.mrfrias-acerca-section {
  background: var(--mf-negro);
  color: var(--mf-blanco);
  padding: 6rem 0 0;
  position: relative;
  overflow: hidden;
}

.mrfrias-acerca-img {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.mrfrias-acerca-title {
  color: var(--mf-naranja);
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.mrfrias-acerca-body p {
  color: var(--mf-blanco);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.mrfrias-acerca-body strong {
  color: var(--mf-blanco);
  font-weight: 700;
}

/* Marquee fantasma — texto enorme semi-transparente abajo */
.mrfrias-marquee-ghost {
  margin-top: 4rem;
  padding: 2.5rem 0;
  overflow: hidden;
  width: 100%;
  background: transparent;
}

.mrfrias-marquee-ghost-inner {
  display: inline-flex;
  white-space: nowrap;
  gap: 2rem;
  animation: mrfrias-ghost-scroll 60s linear infinite;
  will-change: transform;
}

.mrfrias-marquee-ghost-inner span {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
  user-select: none;
}

@keyframes mrfrias-ghost-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- ABOUT — shape decorativo semi-transparente ---------- */
.mrfrias-about-shape1 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
  max-width: 340px;
}

/* ---------- BLOQUE RESPIRO — fondo oscuro como la referencia neon ---------- */
.mrfrias-respiro-section {
  background: #06040200;
  background: linear-gradient(180deg, #0a0603 0%, #0d0704 100%);
  padding: 0 0;
  overflow: hidden;
}

.mrfrias-respiro-section .container {
  padding-top: 0;
  padding-bottom: 0;
}

.mrfrias-respiro-section .row {
  min-height: 480px;
  align-items: center;
}

.mrfrias-respiro-img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  display: block;
}

.mrfrias-respiro-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: var(--mf-blanco);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  line-height: 1.05;
}

.mrfrias-respiro-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

@media (max-width: 991px) {
  .mrfrias-respiro-title { text-align: center; }
  .mrfrias-respiro-sub { text-align: center; }
  .mrfrias-respiro-section .row { min-height: auto; padding: 2rem 0; }
}

/* Marquee derecha → izquierda con platos en MAYÚSCULAS */
.mrfrias-marquee {
  background: var(--mf-rojo);
  padding: 1.5rem 0 !important;
  overflow: hidden;
  border-top: 4px solid var(--mf-amarillo);
  border-bottom: 4px solid var(--mf-amarillo);
}

.mrfrias-marquee .marquee-inner {
  display: flex;
  animation: mrfrias-scroll-left 40s linear infinite;
  white-space: nowrap;
}

.mrfrias-marquee .marqee-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0;
}

.mrfrias-marquee .marquee-item {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.mrfrias-marquee .text-slider.text-style {
  color: var(--mf-blanco);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 1.5rem;
  white-space: nowrap;
}

.mrfrias-marquee .text-slider:not(.text-style) {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--mf-amarillo);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes mrfrias-scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- GALERÍA con fondo brick ---------- */
.mrfrias-gallery-brick {
  background-image:
    linear-gradient(rgba(30, 23, 19, 0.7), rgba(30, 23, 19, 0.7)),
    url('../img/mrfrias/nuevas/bg-brick-floor.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
}

/* ---------- CTA Final v2 — fondo negro puro, imagen grande sin movimiento ---------- */
.mrfrias-cta-final-v2 {
  background: #080503;
  padding: 3rem 0;
  overflow: hidden;
}

.mrfrias-cta-v2-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  color: var(--mf-blanco);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.mrfrias-cta-v2-img {
  width: 100%;
  max-width: 580px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 15px 35px rgba(0,0,0,0.6));
}

@media (max-width: 991px) {
  .mrfrias-cta-v2-title { text-align: center; margin-top: 1.5rem; }
  .mrfrias-cta-v2-img { max-width: 380px; }
}

/* ---------- Antojos compacto — reducir altura de sección ---------- */
.mrfrias-antojos-compact {
  padding: 3rem 0 2rem !important;
}

.mrfrias-antojos-compact .title-area {
  margin-bottom: 1.5rem !important;
}

.mrfrias-antojos-compact .title-area .title {
  margin-bottom: 0.4rem !important;
}

.mrfrias-antojos-compact .btn-wrapper {
  margin-top: 1.5rem !important;
}

