@charset "UTF-8";
/*! MOD Creaciones — estilos.css | build: utilities → base → layout → components → pages → responsive */
/* =========================================================
   Utilities
   ========================================================= */
/* =========================================================
   MOD Creaciones — Variables globales (TOKENS)
   ========================================================= */
/* =========================
   1) Colores base (compat)
   ========================= */
/* =========================================================
   2) TOKENS
   ========================================================= */
/* -------------------------
   a) Neutros + superficies
   ------------------------- */
/* -------------------------
   b) Focus / accesibilidad
   ------------------------- */
/* -------------------------
   c) Radios
   ------------------------- */
/* -------------------------
   d) Tipografías
   ------------------------- */
/* -------------------------
   e) Sombras
   ------------------------- */
/* -------------------------
   f) Spacing (escala)
   ------------------------- */
/* -------------------------
   g) Tipografía (escala)
   ------------------------- */
/* -------------------------
   h) Motion
   ------------------------- */
/* -------------------------
   i) Breakpoints (Bootstrap)
   - Fuente única de verdad
   ------------------------- */
/* -------------------------
   j) Layout / container
   ------------------------- */
/* -------------------------
   k) Z-index (orden visual)
   ------------------------- */
/* -------------------------
   l) Component tokens
   ------------------------- */
/*! MOD Creaciones — estilos.css | build: utilities → base → layout → components → pages → responsive */
/* =========================================================
   Utilities
   ========================================================= */
/* =========================================================
   MIXINS — MOD
   Reutilizables y consistentes con tokens
   ========================================================= */
/* =========================
   Responsive: Media Queries
   ========================= */
/* =========================
   Accesibilidad: Focus ring
   ========================= */
/* =========================
   Motion: reduce motion
   ========================= */
/* =========================
   Botón base (MOD)
   ========================= */
/*! MOD Creaciones — estilos.css | build: utilities → base → layout → components → pages → responsive */
/* =========================================================
   Utilities
   ========================================================= */
/* =========================================================
   HELPERS — MOD
   Utilidades chicas y reutilizables
   ========================================================= */
/* =========================
   Imágenes (object-fit)
   ========================= */
.u-object-cover,
.object-fit-cover {
  object-fit: cover;
}

.u-object-contain,
.object-fit-contain {
  object-fit: contain;
}

.u-object-center,
.object-center {
  object-position: center;
}

/* =========================
   Bordes rápidos
   ========================= */
.u-rounded-sm,
.rounded-sm {
  border-radius: 12px;
}

.u-rounded-lg,
.rounded-lg {
  border-radius: 22px;
}

/* =========================
   Texto
   ========================= */
.u-text-center {
  text-align: center;
}

/* =========================
   Reset de botones (para cards clickeables)
   ========================= */
.btn-reset {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: inherit;
  display: block;
}
.btn-reset:focus {
  outline: none;
}
.btn-reset:focus-visible {
  outline: 2px solid #d16ba5;
  outline-offset: 0.28;
  border-radius: 12px;
  /* halo suave */
  box-shadow: 0 0 0 0.25rem rgba(209, 107, 165, 0.18);
}

/* =========================================================
   Base
   ========================================================= */
/* =========================================================
   RESET — MOD
   Reset suave + accesibilidad
   ========================================================= */
/* Box sizing global */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Heredan box-sizing */
*,
*::before,
*::after {
  box-sizing: inherit;
}

/* Reset de márgenes base */
body {
  margin: 0;
}

/* Media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Formularios heredan fuente */
input,
button,
textarea,
select {
  font: inherit;
}

/* Evita desbordes por palabras largas */
p,
h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* Accesibilidad: reduce motion */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
/*! MOD Creaciones — estilos.css | build: utilities → base → layout → components → pages → responsive */
/* =========================================================
   Utilities
   ========================================================= */
/* =========================================================
   TIPOGRAFÍA — MOD
   Utilidades + base global
   ========================================================= */
/* =========================
   Utilidades tipográficas
   ========================= */
/* Texto fino para navbar / etiquetas */
.nav-text-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  letter-spacing: 0.4px;
}

/* Títulos Bodoni italic (hero / títulos destacados) */
.text-bodoni-italic {
  font-family: "Libre Bodoni", serif;
  font-style: italic;
  line-height: 1.15;
}

/* Texto fino italic (descripciones / citas) */
.text-thin-italic {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
}

/* =========================
   Base tipográfica global
   ========================= */
body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-kerning: normal;
}

/* Headings: jerarquía limpia  */
:where(h1, h2, h3, h4, h5, h6) {
  line-height: 1.25;
  margin: 0;
}

h1 {
  font-family: "Libre Bodoni", serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.2px;
}

/* h2..h6 mantienen identidad con Montserrat  */
h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

/* Texto general */
p {
  margin: 0;
  line-height: 1.6;
}

li {
  line-height: 1.6;
}

small {
  line-height: 1.4;
}

/* Navegación / offcanvas con Poppins*/
.navbar,
.offcanvas,
.menu-label,
.offcanvas .nav-link,
.navbar .nav-link {
  font-family: "Poppins", sans-serif;
}

/*! MOD Creaciones — estilos.css | build: utilities → base → layout → components → pages → responsive */
/* =========================================================
   Utilities
   ========================================================= */
/* =========================================================
   BASE GLOBAL — MOD
   Reglas base compartidas por todo el sitio
   ========================================================= */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  color: #111111;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Contenido principal */
main {
  flex: 1;
}

/* Medios responsivos */
img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Evita selección accidental de imágenes */
img {
  user-select: none;
}

/* =========================
   Accesibilidad (focus)
   ========================= */
a:focus-visible,
button:focus-visible,
[role=button]:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #d16ba5;
  outline-offset: 3px;
}

/* =========================================================
   Layout
   ========================================================= */
/*! MOD Creaciones — estilos.css | build: utilities → base → layout → components → pages → responsive */
/* =========================================================
   Utilities
   ========================================================= */
/* =========================================================
   LAYOUT GENERAL — MOD
   Reglas globales de estructura del sitio
   ========================================================= */
/* Patrón reutilizable para cabeceras de página */
.page-hero {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.75rem 1rem 1rem;
}
.page-hero h1 {
  margin: 0;
  color: #111111;
  letter-spacing: 0.2px;
}
.page-hero p {
  margin: 0.35rem auto 0;
  max-width: 60ch;
  color: #6b5a6b;
}

/*! MOD Creaciones — estilos.css | build: utilities → base → layout → components → pages → responsive */
/* =========================================================
   Utilities
   ========================================================= */
/* =========================================================
   NAVIGATION / HEADER — MOD
   Navbar + íconos + botón hamburguesa
   ========================================================= */
.site-header {
  padding: 0;
  background: transparent;
}

/* Fondo navbar */
.navcolor-custom {
  background-color: #fffbef;
}

/* Logo */
.brand-logo {
  height: 48px; /* base */
  width: auto;
  display: block;
}

.navbar {
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
  /* Links */
}
.navbar .nav-link {
  color: #d16ba5;
  transition: opacity 0.15s ease;
}
.navbar .nav-link:hover {
  opacity: 0.85;
}
.navbar .nav-link.active {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.navbar .nav-link:focus-visible {
  outline: 2px solid rgba(209, 107, 165, 0.35);
  outline-offset: 3px;
  border-radius: 12px;
}
.navbar {
  /* Íconos (derecha) */
}
.navbar .nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  color: #d16ba5;
  border-radius: 12px;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.navbar .nav-icon i,
.navbar .nav-icon .bi {
  color: inherit;
}
.navbar .nav-icon:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.navbar .nav-icon:focus-visible {
  outline: 2px solid rgba(209, 107, 165, 0.35);
  outline-offset: 3px;
}
.navbar {
  /* Por si Bootstrap aplica text-white en algo */
}
.navbar a.text-white,
.navbar i.text-white {
  color: #d16ba5;
}
.navbar {
  /* Toggler */
}
.navbar .navbar-toggler {
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #d16ba5;
  min-height: 44px;
  min-width: 44px;
}
.navbar .navbar-toggler:focus, .navbar .navbar-toggler:active {
  outline: none;
  box-shadow: none;
}
.navbar .navbar-toggler:focus-visible {
  outline: 2px solid rgba(209, 107, 165, 0.45);
  outline-offset: 4px;
  border-radius: 12px;
}
.navbar {
  /* Texto "Menú" */
}
.navbar .menu-label {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  color: #d16ba5;
}
.navbar {
  /* Icono hamburguesa (3 líneas custom) */
}
.navbar .navbar-toggler-icon {
  background-image: none;
  width: 1.6em;
  height: 1.6em;
  position: relative;
}
.navbar .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(#d16ba5, #d16ba5) 0 25%/100% 2px no-repeat, linear-gradient(#d16ba5, #d16ba5) 0 50%/100% 2px no-repeat, linear-gradient(#d16ba5, #d16ba5) 0 75%/100% 2px no-repeat;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .navbar .nav-link,
  .navbar .nav-icon {
    transition: none;
  }
  .navbar .nav-icon:hover {
    transform: none;
  }
}
/*! MOD Creaciones — estilos.css | build: utilities → base → layout → components → pages → responsive */
/* =========================================================
   Utilities
   ========================================================= */
/* =========================================================
   OFFCANVAS — MOD
   Menú lateral (Bootstrap Offcanvas)
   ========================================================= */
.offcanvas {
  background-color: #997da2;
  color: #fffbef;
  /* Header */
}
.offcanvas .offcanvas-header {
  border-bottom: 1px solid rgba(255, 251, 239, 0.12);
}
.offcanvas .offcanvas-title {
  color: #fffbef;
}
.offcanvas {
  /* Links */
}
.offcanvas .nav-link {
  color: #fffbef;
  font-weight: 600;
  /* Área táctil + look */
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0.6rem 0.85rem;
  border-radius: 12px;
  transition: background-color 0.15s ease, opacity 0.15s ease, transform 0.15s ease;
}
.offcanvas .nav-link:hover {
  background-color: rgba(255, 251, 239, 0.1);
  opacity: 0.95;
  transform: translateX(2px);
}
.offcanvas .nav-link.active {
  background-color: rgba(255, 251, 239, 0.14);
}
.offcanvas .nav-link:focus-visible {
  outline: 2px solid rgba(255, 251, 239, 0.6);
  outline-offset: 3px;
}
.offcanvas {
  /* Botón cerrar (visible en fondo oscuro) */
}
.offcanvas .btn-close {
  filter: invert(1) grayscale(100%);
  opacity: 0.9;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.offcanvas .btn-close:hover {
  opacity: 1;
  transform: rotate(2deg);
}
.offcanvas .btn-close:focus-visible {
  outline: 2px solid rgba(255, 251, 239, 0.6);
  outline-offset: 3px;
  border-radius: 12px;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .offcanvas .nav-link,
  .offcanvas .btn-close {
    transition: none;
  }
  .offcanvas .nav-link:hover {
    transform: none;
  }
  .offcanvas .btn-close:hover {
    transform: none;
  }
}
/*! MOD Creaciones — estilos.css | build: utilities → base → layout → components → pages → responsive */
/* =========================================================
   Utilities
   ========================================================= */
/* =========================================================
   LAYOUT / FOOTER — MOD
   - Layout + Social card + Tooltip
   ========================================================= */
footer {
  background-color: #fffbef;
  color: #d16ba5;
  padding: 0.7rem;
  text-align: center;
}
footer .footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
footer p {
  margin: 0;
  font-size: 0.85rem;
}
footer .footer-social {
  display: flex;
  justify-content: center;
}
footer .social-card {
  display: inline-flex;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 14px rgba(255, 255, 255, 0.22), 0 4px 10px rgba(0, 0, 0, 0.1);
}
@supports (backdrop-filter: blur(12px)) {
  footer .social-card {
    backdrop-filter: blur(12px);
  }
}
footer .social-card > ul {
  list-style: none;
  margin: 0;
  padding: 0.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}
footer .social-card > ul > li {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer .iso-pro {
  --size: 46px;
  position: relative;
  width: var(--size);
  height: var(--size);
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
footer .iso-pro > span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.22), 0 3px 6px rgba(0, 0, 0, 0.1);
}
footer .iso-pro:hover > span:nth-child(1) {
  opacity: 0.15;
}
footer .iso-pro:hover > span:nth-child(2) {
  opacity: 0.3;
  transform: translate(3px, -3px);
}
footer .iso-pro:hover > span:nth-child(3) {
  opacity: 0.45;
  transform: translate(6px, -6px);
}
footer .iso-pro:hover .social-link {
  transform: translate(5px, -5px);
}
footer .iso-pro:hover .social-text, footer .iso-pro:focus-within .social-text {
  opacity: 1;
  transform: translateX(-50%) translateY(-6px) skew(-5deg);
}
footer .social-link {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.18);
  color: #d16ba5;
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.25), 0 3px 6px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
footer .social-link:focus-visible {
  outline: 2px solid rgba(209, 107, 165, 0.45);
  outline-offset: 4px;
}
footer .social-icon {
  font-size: 1.2rem;
  line-height: 1;
}
footer .social-text {
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
  padding: 4px 8px;
  font-size: 0.75rem;
  border-radius: 8px;
  background-color: #fffbef;
  color: #d16ba5;
  opacity: 0;
  white-space: nowrap;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
  z-index: 5;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}
footer .social-ig {
  color: #d16ba5;
}
footer .social-wa {
  color: #25D366;
}
footer .social-mail {
  color: #d16ba5;
}
@media (prefers-reduced-motion: reduce) {
  footer .iso-pro,
  footer .iso-pro > span,
  footer .social-link,
  footer .social-text {
    transition: none !important;
  }
  footer .iso-pro:hover .social-link {
    transform: none;
  }
  footer .iso-pro:hover > span:nth-child(2),
  footer .iso-pro:hover > span:nth-child(3) {
    transform: none;
  }
  footer .iso-pro:hover .social-text,
  footer .iso-pro:focus-within .social-text {
    transform: translateX(-50%);
  }
}

/* =========================================================
   Components
   ========================================================= */
/*! MOD Creaciones — estilos.css | build: utilities → base → layout → components → pages → responsive */
/* =========================================================
   Utilities
   ========================================================= */
/* =========================================================
   COMPONENTS: Buttons — MOD
   Botón principal del sistema + tamaños + variantes
   ========================================================= */
.btn-mod {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  background-color: #fffbef;
  color: #d16ba5;
  border: 1px solid rgba(209, 107, 165, 0.45);
  transition: transform 150ms ease, box-shadow 150ms ease, opacity 150ms ease;
}
.btn-mod:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}
.btn-mod:focus {
  outline: none;
}
.btn-mod:focus-visible {
  outline: 2px solid rgba(209, 107, 165, 0.45);
  outline-offset: 3px;
  border-radius: 12px;
  /* halo suave */
  box-shadow: 0 0 0 0.25rem rgba(209, 107, 165, 0.18);
}
.btn-mod {
  /* Disabled: button o enlace */
}
.btn-mod[aria-disabled=true], .btn-mod:disabled, .btn-mod.disabled {
  opacity: 0.55;
  pointer-events: none;
  cursor: not-allowed;
}
@media (prefers-reduced-motion: reduce) {
  .btn-mod {
    transition: none !important;
    animation: none !important;
  }
  .btn-mod:hover {
    transform: none !important;
    box-shadow: none !important;
  }
}
.btn-mod {
  /* =========================
     Tamaños
     ========================= */
}
.btn-mod--sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}
.btn-mod--md {
  padding: 0.6rem 1.2rem;
}
.btn-mod--lg {
  padding: 0.75rem 1.6rem;
  font-size: 1rem;
}
.btn-mod {
  /* =========================
     Modificadores
     ========================= */
}
.btn-mod--block {
  width: 100%;
}
.btn-mod {
  /* =========================
     Variantes por canal
     - Se comunica por borde + focus ring
     ========================= */
}
.btn-mod--wa {
  border-color: rgba(37, 211, 102, 0.45);
}
.btn-mod--wa:hover {
  border-color: rgba(37, 211, 102, 0.75);
}
.btn-mod--wa:focus {
  outline: none;
}
.btn-mod--wa:focus-visible {
  outline: 2px solid #25d366;
  outline-offset: 0.3;
  border-radius: 12px;
  /* halo suave */
  box-shadow: 0 0 0 0.25rem rgba(37, 211, 102, 0.18);
}
.btn-mod--ig {
  border-color: rgba(209, 107, 165, 0.55);
}
.btn-mod--ig:hover {
  border-color: rgba(209, 107, 165, 0.85);
}
.btn-mod--ig:focus {
  outline: none;
}
.btn-mod--ig:focus-visible {
  outline: 2px solid #d16ba5;
  outline-offset: 0.3;
  border-radius: 12px;
  /* halo suave */
  box-shadow: 0 0 0 0.25rem rgba(209, 107, 165, 0.18);
}
.btn-mod--mail {
  border-color: rgba(153, 125, 162, 0.55);
}
.btn-mod--mail:hover {
  border-color: rgba(153, 125, 162, 0.85);
}
.btn-mod--mail:focus {
  outline: none;
}
.btn-mod--mail:focus-visible {
  outline: 2px solid #997da2;
  outline-offset: 0.3;
  border-radius: 12px;
  /* halo suave */
  box-shadow: 0 0 0 0.25rem rgba(153, 125, 162, 0.18);
}

/* =========================================================
   Pages
   ========================================================= */
/*! MOD Creaciones — estilos.css | build: utilities → base → layout → components → pages → responsive */
/* =========================================================
   Utilities
   ========================================================= */
/* =========================================================
   HOME — Carrusel categorías (BASE)
   - Carrusel home (slides clickeables)
   - Accesibilidad: focus visible
   - Motion: respeta prefers-reduced-motion
   ========================================================= */
/* Contenedor */
.categorias-home {
  max-width: 1100px;
  margin: 0 auto;
}

#carouselCategorias {
  background: transparent;
}
#carouselCategorias .carousel-inner,
#carouselCategorias .carousel-item {
  background: transparent;
}
#carouselCategorias {
  /* Click area: el slide entero es un link */
}
#carouselCategorias .carousel-item > a {
  display: block;
  text-decoration: none;
}
#carouselCategorias .carousel-item > a:focus-visible {
  outline: 2px solid rgba(209, 107, 165, 0.45);
  outline-offset: 6px;
  border-radius: 12px;
}
#carouselCategorias {
  /* Card limpia */
}
#carouselCategorias .card {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  overflow: hidden;
}
#carouselCategorias .card-body {
  padding: 0;
  background: transparent;
}
#carouselCategorias {
  /* Oculta textos si aparecieran */
}
#carouselCategorias .categoria-card__title,
#carouselCategorias .card-title,
#carouselCategorias .card-text {
  display: none;
  margin: 0;
}
#carouselCategorias {
  /* ===========================
     Imagen del carrusel (BASE)
     =========================== */
}
#carouselCategorias .categoria-card__img {
  width: 100%;
  height: 320px;
  display: block;
  object-fit: contain;
  object-position: center;
  background: transparent;
  user-select: none;
  transition: transform 250ms ease;
}
#carouselCategorias {
  /* Micro feedback en hover  */
}
#carouselCategorias:hover .categoria-card__img {
  transform: scale(1.01);
}
#carouselCategorias {
  /* ===========================
     Controles (flechas)
     =========================== */
}
#carouselCategorias .carousel-control-prev,
#carouselCategorias .carousel-control-next {
  width: 7%;
  opacity: 0.35;
  transition: opacity 150ms ease;
}
#carouselCategorias .carousel-control-prev:hover,
#carouselCategorias .carousel-control-next:hover {
  opacity: 0.7;
}
#carouselCategorias .carousel-control-prev:focus-visible,
#carouselCategorias .carousel-control-next:focus-visible {
  opacity: 0.9;
  outline: 2px solid rgba(209, 107, 165, 0.45);
  outline-offset: 3px;
  border-radius: 12px;
}
#carouselCategorias .carousel-control-prev-icon,
#carouselCategorias .carousel-control-next-icon {
  width: 1.8rem;
  height: 1.8rem;
  filter: invert(1);
  background-size: 60%;
}
#carouselCategorias {
  /* Respeta reduce motion */
}
@media (prefers-reduced-motion: reduce) {
  #carouselCategorias {
    transition: none !important;
    animation: none !important;
  }
  #carouselCategorias:hover {
    transform: none !important;
    box-shadow: none !important;
  }
}

/*! MOD Creaciones — estilos.css | build: utilities → base → layout → components → pages → responsive */
/* =========================================================
   Utilities
   ========================================================= */
/* =========================================================
   PRODUCTOS — Cards / Categorías (BASE)
   ========================================================= */
/* ===========================
   Categorías (grilla)
   =========================== */
.categoria-card__img {
  width: 100%;
  height: 240px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  user-select: none;
}

.categoria-card__title {
  color: #d16ba5;
  font-weight: 600;
  text-align: center;
}

/* ===========================
   Card de producto
   =========================== */
.producto {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  /* sombra leve por defecto + hover más lindo */
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.producto:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
}
.producto:focus-within {
  outline: 2px solid rgba(209, 107, 165, 0.35);
  outline-offset: 4px;
}

.producto__img {
  width: 100%;
  height: 260px;
  display: block;
  object-fit: cover;
  object-position: center;
  user-select: none;
}

/* ===========================
   Estado “próximamente”
   =========================== */
.producto--proximamente .producto__img {
  filter: saturate(0.85);
}
.producto--proximamente::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.04);
  pointer-events: none;
}

/* Badge “Próximamente” */
.producto__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: #d16ba5;
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  line-height: 1;
  letter-spacing: 0.2px;
  /*sombra mínima para legibilidad sobre imagen */
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

/* ===========================
   Textos
   =========================== */
.producto__title {
  color: #d16ba5;
  font-weight: 700;
  margin-bottom: 0.25rem; /* jerarquía visual */
}

.producto__desc {
  color: #6b5a6b;
  margin: 0;
}

/* ===========================
   Acciones dentro de productos
   =========================== */
.producto-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.producto .btn-mod--block {
  position: relative;
  z-index: 3;
}

/*! MOD Creaciones — estilos.css | build: utilities → base → layout → components → pages → responsive */
/* =========================================================
   Utilities
   ========================================================= */
/* =========================================================
   VELAS — SHARED
   Base compartida para Recipientes y Moldes
   ========================================================= */
/* =========================
   Layout contenedor
   ========================= */
.velas-grid {
  max-width: 1100px;
  margin: 0 auto;
}

/* =========================================================
   superficie MOD reutilizable
   ========================================================= */
.mod-modal, .velas-card {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(209, 107, 165, 0.18);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* =========================
   CARD clickeable
   ========================= */
.velas-card {
  transition: transform 150ms ease, box-shadow 150ms ease;
  will-change: transform;
}
.velas-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.18);
}
.velas-card .card-img-top,
.velas-card img {
  width: 100%;
  height: clamp(240px, 32vw, 320px);
  display: block;
  object-fit: cover;
  object-position: center;
  user-select: none;
}
.velas-card .card-body {
  background: #fffbef;
}
.velas-card h2 {
  color: #111111;
  margin-bottom: 0.25rem;
}
.velas-card p {
  color: #6b5a6b;
  margin: 0;
}
@media (prefers-reduced-motion: reduce) {
  .velas-card {
    transition: none !important;
    animation: none !important;
  }
  .velas-card:hover {
    transform: none !important;
    box-shadow: none !important;
  }
}

/* Focus visible real para la card */
.btn-reset:focus-visible .velas-card {
  border-color: rgba(209, 107, 165, 0.28);
  box-shadow: 0 0 0 0.25rem rgba(209, 107, 165, 0.18);
}

/* =========================
   MODAL
   ========================= */
.mod-modal {
  border-color: rgba(209, 107, 165, 0.2);
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.18);
}
.mod-modal .modal-header {
  background: #fffbef;
  border-bottom: 1px solid rgba(209, 107, 165, 0.18);
}
.mod-modal .modal-header .modal-title {
  color: #111111;
}
.mod-modal .modal-header .btn-close {
  opacity: 0.6;
}
.mod-modal .modal-header .btn-close:hover {
  opacity: 0.9;
}
.mod-modal .modal-body {
  background: #ffffff;
}
.mod-modal .modal-body .mod-desc,
.mod-modal .modal-body .mod-hint {
  color: #6b5a6b;
  margin-bottom: 0.75rem;
}
.mod-modal .modal-body .mod-hint {
  margin-bottom: 0;
}
.mod-modal {
  /* Carrusel */
}
.mod-modal .carousel {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(209, 107, 165, 0.18);
  background: #fffbef;
}
.mod-modal .carousel-item img {
  width: 100%;
  height: clamp(280px, 40vw, 360px);
  display: block;
  object-fit: cover;
  object-position: center;
  user-select: none;
}
.mod-modal .carousel-control-prev,
.mod-modal .carousel-control-next {
  width: 14%;
  opacity: 0.55;
  transition: opacity 250ms ease;
}
.mod-modal .carousel-control-prev:hover,
.mod-modal .carousel-control-next:hover {
  opacity: 0.95;
}
.mod-modal .carousel-control-prev-icon,
.mod-modal .carousel-control-next-icon {
  width: 2rem;
  height: 2rem;
  background-size: 65%;
  filter: invert(1) grayscale(1);
}
.mod-modal {
  /* Select / Accordion */
}
.mod-modal .form-select {
  border-radius: 12px;
  border: 1px solid rgba(209, 107, 165, 0.25);
  color: #111111;
}
.mod-modal .form-select:focus {
  outline: none;
}
.mod-modal .form-select:focus-visible {
  outline: 2px solid rgba(209, 107, 165, 0.45);
  outline-offset: 3px;
  border-radius: 12px;
  /* halo suave */
  box-shadow: 0 0 0 0.25rem rgba(209, 107, 165, 0.18);
}
.mod-modal .form-select:focus {
  border-color: rgba(209, 107, 165, 0.55);
  box-shadow: 0 0 0 0.2rem rgba(209, 107, 165, 0.15);
}
.mod-modal .accordion-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(209, 107, 165, 0.18);
}
.mod-modal .accordion-button {
  background: #fffbef;
  color: #111111;
  font-weight: 600;
}
.mod-modal .accordion-button:focus {
  outline: none;
}
.mod-modal .accordion-button:focus-visible {
  outline: 2px solid rgba(209, 107, 165, 0.45);
  outline-offset: 3px;
  border-radius: 12px;
  /* halo suave */
  box-shadow: 0 0 0 0.25rem rgba(209, 107, 165, 0.18);
}
.mod-modal .accordion-body {
  background: #ffffff;
}
.mod-modal .accordion-body ul {
  padding-left: 1.2rem;
  margin: 0;
}
.mod-modal .accordion-body li {
  margin-bottom: 0.35rem;
}
.mod-modal .accordion-body li:last-child {
  margin-bottom: 0;
}
@media (prefers-reduced-motion: reduce) {
  .mod-modal {
    transition: none !important;
    animation: none !important;
  }
  .mod-modal:hover {
    transform: none !important;
    box-shadow: none !important;
  }
}

/*! MOD Creaciones — estilos.css | build: utilities → base → layout → components → pages → responsive */
/* =========================================================
   Utilities
   ========================================================= */
/* =========================================================
   CONTACTO — Página
   - Card centrada y con jerarquía prolija
   - Grid consistente + responsive
   ========================================================= */
/* =========================
   Layout general
   ========================= */
.contact-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
}

/* =========================
   Hero
   ========================= */
.contact-hero {
  text-align: center;
  margin-bottom: 1.5rem;
}
.contact-hero h1 {
  margin: 0;
  padding: 0.5rem 0;
  color: #111111;
}
.contact-hero p {
  margin: 0.25rem 0 0;
  color: #6b5a6b;
}

/* Fix: el subtítulo del hero se rompía en algunos layouts */
.page-hero.contact-hero > p {
  width: 100%;
  max-width: none !important;
  margin: 0.25rem auto 0;
  text-align: center !important;
}

/* =========================
   Card principal (desktop)
   ========================= */
.contact-card {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-template-areas: "media  title" "media  content";
  /* Clave: separaciones coherentes */
  column-gap: 1.5rem; /* entre imagen y columna derecha */
  row-gap: 0.75rem; /* entre title y content */
  align-items: center;
}

/* Áreas del grid */
.contact-card__title {
  grid-area: title;
}

.contact-card__media {
  grid-area: media;
}

.contact-card__content {
  grid-area: content;
}

/* =========================
   Media (imagen)
   ========================= */
.contact-card__media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-card__img {
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  object-fit: cover;
  user-select: none;
}

/* =========================
   Columna derecha (centrada)
   ========================= */
.contact-card__title {
  justify-self: center;
  text-align: center;
  margin: 0;
  line-height: 1.1;
}

.contact-card__content {
  justify-self: center;
  text-align: center;
  max-width: 520px; /* evita líneas larguísimas */
}

/* Texto principal */
.contact-card__text {
  margin: 0 0 0.75rem;
  color: #111111;
  opacity: 0.9;
}

/* Label */
.contact-card__label {
  margin: 0 0 0.5rem;
  font-weight: 700;
  color: #111111;
}

/* Botonera */
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 0.5rem 0 1.25rem;
}

/* Info zona/pedidos */
.contact-info {
  text-align: center;
}
.contact-info p {
  margin: 0 0 0.5rem;
  color: #111111;
  opacity: 0.9;
}
.contact-info p:last-child {
  margin-bottom: 0;
}
.contact-info strong {
  color: #111111;
  font-weight: 700;
}

/* =========================
   Responsive (mobile/tablet)
   ========================= */
@media (max-width: 767.98px) {
  .contact-card {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "media" "content";
    padding: 1.25rem;
    row-gap: 1rem;
    column-gap: 0;
  }
  .contact-card__img {
    max-width: 100%;
  }
}
/* =========================================================
   Responsive
   ========================================================= */
/*! MOD Creaciones — estilos.css | build: utilities → base → layout → components → pages → responsive */
/* =========================================================
   Utilities
   ========================================================= */
/* =========================================================
   LAYOUT — DESKTOP
   Breakpoint: >= v.$bp-lg
   ========================================================= */
@media (min-width: 992px) {
  #carouselCategorias .categoria-card__img {
    height: 380px;
  }
  #carouselCategorias .carousel-control-prev,
  #carouselCategorias .carousel-control-next {
    width: 6%;
  }
  .brand-logo {
    height: 44px;
  }
  .footer-inner {
    gap: 1.25rem;
  }
}
/* Desktop grande (>= v.$bp-xl) */
@media (min-width: 1200px) {
  #carouselCategorias .categoria-card__img {
    height: 420px;
  }
  #carouselCategorias .carousel-control-prev,
  #carouselCategorias .carousel-control-next {
    width: 5.5%;
  }
}
/*! MOD Creaciones — estilos.css | build: utilities → base → layout → components → pages → responsive */
/* =========================================================
   Utilities
   ========================================================= */
@media (max-width: 991.98px) {
  #carouselCategorias .categoria-card__img {
    height: 280px;
  }
  #carouselCategorias .carousel-control-prev,
  #carouselCategorias .carousel-control-next {
    width: 10%;
  }
  .contact-card {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "media" "content";
    text-align: center;
  }
  .contact-actions {
    justify-content: center;
  }
  .offcanvas.offcanvas-start {
    width: 40vw;
    min-width: 260px;
  }
  .velas-card img,
  .velas-card .card-img-top {
    height: 280px;
  }
  .mod-modal .carousel img {
    height: 300px;
  }
  .mod-modal .carousel-control-prev,
  .mod-modal .carousel-control-next {
    width: 18%;
  }
}
/*! MOD Creaciones — estilos.css | build: utilities → base → layout → components → pages → responsive */
/* =========================================================
   Utilities
   ========================================================= */
@media (max-width: calc(576px - 0.02px)) {
  .btn-mod {
    width: 100%;
  }
  #carouselCategorias .categoria-card__img {
    height: 220px;
  }
  #carouselCategorias .carousel-control-prev,
  #carouselCategorias .carousel-control-next {
    width: 14%;
    opacity: 0.55;
  }
  #carouselCategorias .carousel-control-prev:hover,
  #carouselCategorias .carousel-control-next:hover {
    opacity: 0.8;
  }
  .brand-logo {
    height: 42px;
  }
  .offcanvas.offcanvas-start {
    width: 80vw;
  }
  .velas-card img,
  .velas-card .card-img-top {
    height: 240px;
  }
  .mod-modal .carousel img {
    height: 240px;
  }
  .mod-modal .carousel-control-prev,
  .mod-modal .carousel-control-next {
    width: 22%;
    opacity: 0.8;
  }
}

/*# sourceMappingURL=estilos.css.map */
