@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barrio&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&family=Poppins:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lexend+Tera:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Caveat+Brush&family=Outfit:wght@100..900&display=swap");
.achievements {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  padding: 4rem 2rem;
  background: #111;
  color: white;
}
.achievements .title {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}
.achievements .achievements-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 100%;
  overflow-x: hidden;
}
.achievements .achievement {
  flex: 1 1 calc(25% - 2rem);
  max-width: 250px;
  min-width: 150px;
  text-align: center;
  text-align: center;
  color: white;
}
.achievements .achievement .icon {
  font-size: 3rem;
  color: #909df2;
  margin-bottom: 1rem;
}
.achievements .achievement .number {
  font-size: 2rem;
  font-weight: bold;
}
.achievements .achievement .description {
  font-size: 0.9rem;
  text-transform: uppercase;
  opacity: 0.8;
}

@media (min-width: 768px) {
  .achievements-grid {
    align-items: center;
  }
}
/****
  RESET
  */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
}

html,
body {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #343a40;
  background-color: #f8f9fa;
  background: url("../assets/images/fondo.jpg") no-repeat top;
  background-size: cover;
  width: 100%;
  margin: auto;
  overflow-x: hidden;
  word-break: break-word;
}

.font-principal {
  font-family: "Inter", sans-serif !important;
}

.font-secundaria {
  font-family: "Poppins", sans-serif !important;
}

.font-titulares {
  font-family: "Lato", sans-serif !important;
}

.icon {
  width: 3rem;
  height: auto;
  margin: auto;
  transition: filter 0.3s;
}
.icon:hover {
  filter: grayscale(100%);
}

body {
  -webkit-user-select: none; /* Chrome, Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Estándar */
}

.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #ffc107;
  color: white;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 1300;
}

.separador-cabecera {
  height: 45px;
}
@media (max-width: 1280px) {
  .separador-cabecera {
    height: 45px;
  }
}
@media (max-width: 1024px) {
  .separador-cabecera {
    height: 45px;
  }
}

.container {
  background: url("../assets/images/fondo.jpg") no-repeat top;
  background-size: cover;
  max-width: 1400px;
}

/* CSS */
:root {
  --paper-w: 360px;
  --paper-h: auto;
  --rotate: -6deg; /* ajustar ángulo */
  --top-strip-h: 65px;
  --green: #2b8a18;
  --pin-color: #9f2db2;
}

.paper-wrap {
  width: var(--paper-w);
  margin: 40px auto;
  perspective: 800px;
  transform: rotate(var(--rotate));
  position: relative;
  -webkit-transform: rotate(var(--rotate));
}

/* PIN */
.pin {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(-12deg);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #00f5d4;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.35);
  z-index: 4;
}

.pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translateX(-50%) rotate(20deg);
  width: 6px;
  height: 12px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  filter: blur(0.2px);
}

/* PAPER */
.paper {
  position: relative;
  background: linear-gradient(#fff, #fff);
  min-height: 240px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  border-radius: 6px;
  overflow: visible;
  padding: calc(var(--top-strip-h) + 18px) 20px 20px;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background-image: repeating-linear-gradient(to bottom, rgba(67, 138, 199, 0.06) 0px, rgba(67, 138, 199, 0.06) 1px, transparent 1px, transparent 32px), linear-gradient(180deg, #fff 0%, #fbfbfb 100%);
}

/* top green strip with perforation */
.paper::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: var(--top-strip-h);
  background: #cf1db0;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  z-index: 1;
  background: url("../assets/images/fondo.jpg") no-repeat top;
}

/* perforación: agujeros repetidos a lo largo de la franja superior */
.paper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 10px; /* distancia desde el borde superior */
  height: 14px; /* alto de la franja de agujeros */
  z-index: 2;
  opacity: 0.98;
  /* dibuja un círculo blanco (agujero) y lo repite horizontalmente */
  background-image: radial-gradient(circle at 50% 50%, white 0 6px, transparent 6.5px);
  background-repeat: repeat-x;
  background-size: 28px 14px; /* <espacio entre centros> x <alto de la celda> */
  background-position: 14px 0; /* offset horizontal (centra el primer agujero) */
  pointer-events: none;
}

/* Title area */
.paper__head {
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  text-align: left;
  padding-left: 24px;
  z-index: 3;
}

.paper__title {
  margin: 0;
  font-family: "Caveat Brush", sans-serif;
  text-align: center;
  color: rgb(55, 55, 55);
  font-size: 28px;
  letter-spacing: 5px;
  transform: translateY(20px);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* body with content */
.paper__body {
  position: relative;
  z-index: 3;
  margin-top: 6px;
}

/* news items */
.news-item {
  padding: 8px 6px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
  line-height: 1.1;
}

.news-item:last-child {
  border-bottom: none;
}

.news-meta {
  font-size: 0.85rem;
  color: #525252;
}

.news-date {
  display: inline-block;
  font-weight: 700;
  margin-bottom: 6px;
}

.news-title {
  margin: 0 0 6px 0;
  font-size: 15px;
  color: #1a1a1a;
}

.news-description {
  margin: 0;
  font-size: 1rem;
  color: #1d1d1d;
}

/* pequeño recorte inferior para dar efecto de papel recortado */
.paper-wrap::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: -8px;
  height: 12px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), transparent);
  transform: rotate(var(--rotate));
  z-index: 0;
}

/* adaptaciones responsivas */
@media (max-width: 420px) {
  :root {
    --paper-w: 92vw;
    --top-strip-h: 40px;
  }
  .paper__title {
    font-size: 22px;
  }
}
/* LAYOUT RESPONSIVE: mobile-first */
.layout-two-col {
  display: flex;
  flex-direction: column;
  padding: 12px;
  box-sizing: border-box;
  align-items: stretch;
  flex: 1 1 0; /* grow, shrink, base 0 -> repartir por igual */
}

/* aseguramos imágenes responsivas dentro del hero */
.hero-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* override del margin centrado del paper cuando está dentro del layout */
.layout-two-col .paper-wrap {
  min-width: 40%;
  margin: 0; /* elimina el margin auto del paper-wrap original */
}

@media (min-width: 768px) {
  .layout-two-col {
    flex-direction: row;
    align-items: flex-start;
  }
  .layout-two-col > *:not(:last-child) {
    margin-right: 0; /* usamos gap, no márgenes */
  }
  /* forzar que el bloque pequeño quede alineado arriba */
  .layout-two-col .paper-wrap {
    margin-top: 0; /* evita márgenes que lo desplacen */
  }
}
/* asegurar que el hero superior ocupe espacio y no colapse */
section.hero-light:first-of-type {
  position: relative;
  z-index: 1;
  display: block;
}

section.hero-light:first-of-type .hero-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* separar el layout de dos columnas del hero superior */
.layout-two-col {
  clear: both;
  margin-top: 24px; /* ajusta separación */
}

/* prevenir solapamientos del papel girado */
.paper-wrap {
  transform-origin: top center;
  margin-top: 0; /* sin margen negativo */
  /* si la rotación hace que sobresalga hacia arriba aumente el espacio con padding */
}

/* en pantallas grandes mantener alineado arriba (ya aplicado antes) */
@media (min-width: 768px) {
  .layout-two-col {
    flex-direction: row;
    align-items: flex-start;
  }
  .layout-two-col .paper-wrap {
    align-self: flex-start;
  }
}
/* Contenedor y cabecera */
.calendario-meses {
  --max-w: 1200px; /* ancho máximo del bloque */
  --min-card: 260px; /* ancho mínimo por tarjeta */
  --gap: 1rem;
  margin: 0 auto;
  max-width: var(--max-w);
  padding: 1rem;
}

.calendario-header {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.calendario-header h2 {
  font-size: clamp(1.125rem, 1vw + 1rem, 1.5rem);
  margin: 0;
}

.btn-descarga {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  border: 1px solid #0b6d2b;
  color: #0b6d2b;
  text-decoration: none;
  border-radius: 0.5rem;
}

/* Grid responsive */
.cal-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--min-card)), 1fr));
  gap: var(--gap);
}

/* Tarjeta de mes */
.cal-item figure {
  margin: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
}

.cal-item img {
  display: block;
  width: 100%;
  height: auto; /* mantiene proporciones */
  aspect-ratio: auto; /* por si el navegador lo usa */
}

.cal-item figcaption {
  padding: 0.5rem 0.75rem;
  font-weight: 600;
  text-align: center;
  background: #f7f7f7;
  font-size: 0.95rem;
}

/* Opcional: modo compacto en móviles muy estrechos */
@media (max-width: 380px) {
  .calendario-meses {
    --min-card: 200px;
  }
}
/* Ocupa 2 columnas solo cuando existan 2+ */
@media (min-width: 512px) {
  .cal-item--wide {
    grid-column: span 2;
  }
}
/* Mantener proporción y adaptación */
.cal-item--wide img {
  width: 100%;
  height: auto;
  display: block;
}

.contact-section {
  padding: 4rem 2rem;
  background: #ffffff;
  text-align: center;
  font-family: "Lato", sans-serif !important;
  font-weight: 400 !important;
  /* Ajustes específicos para el wizard de donaciones */
}
.contact-section .contact-title {
  font-size: clamp(1.3rem, 2.5vw + 1rem, 4.5rem);
  font-family: "Caveat Brush", sans-serif;
  font-weight: 400;
  color: #221900;
  margin-bottom: 1rem;
  line-height: normal;
}
.contact-section .contact-subtitle {
  font-size: 1.6rem;
  font-family: "Lato", sans-serif;
  text-align: left;
  font-weight: 300;
  color: #343a40;
  margin-bottom: 3rem;
}
.contact-section .contact-text {
  font-size: 1.2rem;
  font-family: "Lato", sans-serif;
  text-align: left;
  font-weight: 400;
  color: #343a40;
  margin-bottom: 3rem;
}
.contact-section .contact-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-content: flex-start;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  /* Eliminamos color: white; aquí.
     Cada subsección decidirá su color. 
     > * { color: white; }  <-- QUITAR O COMENTAR
  */
}
@media (min-width: 992px) {
  .contact-section .contact-container {
    flex-direction: row;
    justify-content: space-between;
  }
}
.contact-section .contact-container .form-contacto {
  background-color: #ffffff;
  color: #343a40;
  border-radius: 8px;
  height: auto;
  width: 100%;
  max-width: 800px;
  padding: 1rem;
}
.contact-section .contact-container .form-contacto h3 {
  margin-bottom: 1.5rem;
}
.contact-section .contact-container .form-contacto .input-group {
  margin-bottom: 1rem;
  text-align: left;
  width: 100%;
}
.contact-section .contact-container .form-contacto .input-group label {
  display: block;
  margin-bottom: 0.5rem;
}
.contact-section .contact-container .form-contacto .input-group input,
.contact-section .contact-container .form-contacto .input-group textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  color: #333;
  background-color: #f8f8f8;
  border: 1px solid #ccc;
}
.contact-section .contact-container .form-contacto .input-group textarea {
  resize: vertical;
}
.contact-section .contact-container .form-contacto .input-group.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-section .contact-container .form-contacto .input-group.checkbox-group label {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.contact-section .contact-container .form-contacto .input-group.checkbox-group input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin: 0;
}
.contact-section .contact-container .form-contacto .btn-enviar {
  margin-top: 1rem;
  padding: 10px 20px;
  background: transparent;
  color: #343a40;
  border: 2px solid #ffc107;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  letter-spacing: 2px;
  transition: all 0.3s ease-in-out;
}
.contact-section .contact-container .form-contacto .btn-enviar:hover {
  background-color: #ffc107;
  color: #221900;
}
.contact-section .contact-container .info-contacto {
  background-color: #ffffff;
  color: #343a40;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  font-size: 1rem;
  gap: 1rem;
  border-radius: 8px;
  padding: 1rem;
}
.contact-section .contact-container .info-contacto h3,
.contact-section .contact-container .info-contacto h4 {
  text-align: left;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #00f5d4;
}
.contact-section .contact-container .info-contacto p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.contact-section .contact-container .info-contacto p i {
  font-size: 1.2rem;
}
.contact-section .contact-container .info-contacto .telefono {
  font-size: 1.5rem;
  font-weight: bold;
}
.contact-section.donations-wizard .wizard-container {
  /* Para el wizard, queremos fondo claro y texto oscuro */
  background-color: #fff; /* o transparent, si tu .contact-section ya es #fff */
  color: #333;
  display: flex;
  flex-direction: column;
  /* Ocultamos color: white que heredarían de .contact-container > * si existiera */
}
@media (min-width: 768px) {
  .contact-section.donations-wizard .wizard-container {
    flex-direction: row;
  }
}
.contact-section.donations-wizard .wizard-container > * {
  background: none;
  color: inherit;
  padding: 0;
}
.contact-section.donations-wizard .wizard-container .wizard-steps {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  /* Botones */
}
.contact-section.donations-wizard .wizard-container .wizard-steps .wizard-step {
  display: none;
}
.contact-section.donations-wizard .wizard-container .wizard-steps .wizard-step.active {
  display: block;
}
.contact-section.donations-wizard .wizard-container .wizard-steps .input-group input,
.contact-section.donations-wizard .wizard-container .wizard-steps .input-group textarea {
  color: #333;
  background-color: #f8f8f8;
  border: 1px solid #ccc;
}
.contact-section.donations-wizard .wizard-container .wizard-steps .btn-enviar {
  margin-top: 1rem;
  padding: 10px 20px;
  background: #005a87; /* un color de tu preferencia */
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  letter-spacing: 1px;
  transition: background 0.3s ease-in-out;
}
.contact-section.donations-wizard .wizard-container .wizard-steps .btn-enviar:hover {
  background-color: #003f60;
}
.contact-section.donations-wizard .wizard-container .info-contacto {
  width: 100%;
  max-width: 450px;
  padding: 2rem;
  border-radius: 8px;
  background-color: #ffffff;
  color: white;
}
.contact-section.donations-wizard .payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
}
.contact-section.donations-wizard .payment-methods .method-card {
  border: 2px solid #eee;
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  min-width: 120px;
  transition: background 0.3s;
  /* Resaltado cuando el radio está seleccionado */
}
.contact-section.donations-wizard .payment-methods .method-card input[type=radio] {
  display: none;
}
.contact-section.donations-wizard .payment-methods .method-card span[class^=icon-] {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-bottom: 0.5rem;
  /* background-color: #ccc; // ahora no hace falta, ya que metes un <i> dentro. */
}
.contact-section.donations-wizard .payment-methods .method-card span[class^=icon-] i {
  font-size: 2rem;
  color: #333; /* Cambia al color que quieras */
  /* Ajusta margin si lo deseas */
}
.contact-section.donations-wizard .payment-methods .method-card:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.contact-section.donations-wizard .payment-methods .method-card input[type=radio]:checked + span,
.contact-section.donations-wizard .payment-methods .method-card input[type=radio]:checked ~ p {
  font-weight: bold;
  color: #005a87;
}
.contact-section.donations-wizard .donation-amounts {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.contact-section.donations-wizard .donation-amounts label {
  border: 2px solid #eee;
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  min-width: 120px;
  transition: background 0.3s;
}
.contact-section.donations-wizard .donation-amounts label input {
  display: none;
}
.contact-section.donations-wizard .donation-amounts label p,
.contact-section.donations-wizard .donation-amounts label span {
  margin: 0;
  font-size: 1rem;
  color: #333;
}
.contact-section.donations-wizard .donation-amounts label:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.contact-section.donations-wizard .donation-amounts label input:checked + * {
  font-weight: bold;
  color: #005a87;
}
.contact-section.donations-wizard .donacion-tipo {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.contact-section.donations-wizard .donacion-tipo label {
  background-color: rgba(0, 0, 0, 0.05);
  border: 2px solid #eee;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  /* Cuando se seleccione el radio, se resalta el texto */
}
.contact-section.donations-wizard .donacion-tipo label:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.contact-section.donations-wizard .donacion-tipo label input {
  display: none;
}
.contact-section.donations-wizard .donacion-tipo label input:checked + span {
  font-weight: bold;
  color: #005a87;
}

.form-contacto--socio {
  background-color: #ffffff;
  color: white;
}
.form-contacto--socio .form-block {
  margin-bottom: 2.5rem;
  text-align: left;
}
.form-contacto--socio .input-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .form-contacto--socio .input-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
.form-contacto--socio .input-grid .input-group {
  margin-bottom: 1rem;
}
.form-contacto--socio .btn-enviar {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}
.form-contacto--socio .btn-enviar:hover {
  background-color: white;
  color: #221900;
}

/* Ajusta títulos, ahora con color oscuro */
.contact-subtitle {
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem !important;
  text-transform: uppercase;
  background-color: #cf1db0;
  color: #fee440 !important;
  letter-spacing: 0.5px;
  padding: 10px;
  border-radius: 5px;
}

.captcha {
  border: 1px solid rgba(199, 0, 0, 0.633);
  padding: 1rem;
  font-size: 1.3em;
}

.btn {
  background-color: #f8f9fa;
  color: #343a40;
  border: none;
  padding: 1rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  /* Para que los pseudo-elementos se sitúen correctamente */
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin: 1rem;
}
.btn::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 300%;
  background-color: white;
  transition: 0.5s ease;
  z-index: -1;
}
.btn:hover {
  /* Ajuste sutil en hover, mezclando la base */
  background-color: rgba(248, 249, 250, 0.5);
}
.btn:active {
  transform: scale(0.98);
}
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(248, 249, 250, 0.5);
}
.btn .text-1 {
  transition: 0.25s ease;
}
.btn .text-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  /* Ajusta color, tamaño, etc. */
  min-width: max-content;
  transition: 0.25s ease;
}
.btn:is(:hover, :focus-visible)::before {
  bottom: -50%;
}
.btn:is(:hover, :focus-visible) .text-1 {
  transform: translateY(-40px);
}
.btn:is(:hover, :focus-visible) .text-2 {
  top: 50%;
  transform: translate(-50%, -50%);
}
.btn-primary {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 1rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  /* Para que los pseudo-elementos se sitúen correctamente */
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-primary::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 300%;
  background-color: rgb(204, 228.6, 255);
  transition: 0.5s ease;
  z-index: -1;
}
.btn-primary:hover {
  /* Ajuste sutil en hover, mezclando la base */
  background-color: rgba(0, 123, 255, 0.5);
}
.btn-primary:active {
  transform: scale(0.98);
}
.btn-primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5);
}
.btn-primary .text-1 {
  transition: 0.25s ease;
}
.btn-primary .text-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  /* Ajusta color, tamaño, etc. */
  min-width: max-content;
  transition: 0.25s ease;
}
.btn-primary:is(:hover, :focus-visible)::before {
  bottom: -50%;
}
.btn-primary:is(:hover, :focus-visible) .text-1 {
  transform: translateY(-40px);
}
.btn-primary:is(:hover, :focus-visible) .text-2 {
  top: 50%;
  transform: translate(-50%, -50%);
}
.btn-secondary {
  background-color: #6c757d;
  color: #fff;
  border: none;
  padding: 1rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  /* Para que los pseudo-elementos se sitúen correctamente */
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-secondary::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 300%;
  background-color: rgb(215.8369098712, 218.6566523605, 221.1630901288);
  transition: 0.5s ease;
  z-index: -1;
}
.btn-secondary:hover {
  /* Ajuste sutil en hover, mezclando la base */
  background-color: rgba(108, 117, 125, 0.5);
}
.btn-secondary:active {
  transform: scale(0.98);
}
.btn-secondary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(108, 117, 125, 0.5);
}
.btn-secondary .text-1 {
  transition: 0.25s ease;
}
.btn-secondary .text-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  /* Ajusta color, tamaño, etc. */
  min-width: max-content;
  transition: 0.25s ease;
}
.btn-secondary:is(:hover, :focus-visible)::before {
  bottom: -50%;
}
.btn-secondary:is(:hover, :focus-visible) .text-1 {
  transform: translateY(-40px);
}
.btn-secondary:is(:hover, :focus-visible) .text-2 {
  top: 50%;
  transform: translate(-50%, -50%);
}
.btn-success {
  background-color: #28a745;
  color: #fff;
  border: none;
  padding: 1rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  /* Para que los pseudo-elementos se sitúen correctamente */
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-success::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 300%;
  background-color: rgb(175.1304347826, 235.8695652174, 189);
  transition: 0.5s ease;
  z-index: -1;
}
.btn-success:hover {
  /* Ajuste sutil en hover, mezclando la base */
  background-color: rgba(40, 167, 69, 0.5);
}
.btn-success:active {
  transform: scale(0.98);
}
.btn-success:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.5);
}
.btn-success .text-1 {
  transition: 0.25s ease;
}
.btn-success .text-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  /* Ajusta color, tamaño, etc. */
  min-width: max-content;
  transition: 0.25s ease;
}
.btn-success:is(:hover, :focus-visible)::before {
  bottom: -50%;
}
.btn-success:is(:hover, :focus-visible) .text-1 {
  transform: translateY(-40px);
}
.btn-success:is(:hover, :focus-visible) .text-2 {
  top: 50%;
  transform: translate(-50%, -50%);
}
.btn-danger {
  background-color: #dc3545;
  color: #fff;
  border: none;
  padding: 1rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  /* Para que los pseudo-elementos se sitúen correctamente */
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-danger::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 300%;
  background-color: rgb(250.1265822785, 226.8734177215, 229.1012658228);
  transition: 0.5s ease;
  z-index: -1;
}
.btn-danger:hover {
  /* Ajuste sutil en hover, mezclando la base */
  background-color: rgba(220, 53, 69, 0.5);
}
.btn-danger:active {
  transform: scale(0.98);
}
.btn-danger:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.5);
}
.btn-danger .text-1 {
  transition: 0.25s ease;
}
.btn-danger .text-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  /* Ajusta color, tamaño, etc. */
  min-width: max-content;
  transition: 0.25s ease;
}
.btn-danger:is(:hover, :focus-visible)::before {
  bottom: -50%;
}
.btn-danger:is(:hover, :focus-visible) .text-1 {
  transform: translateY(-40px);
}
.btn-danger:is(:hover, :focus-visible) .text-2 {
  top: 50%;
  transform: translate(-50%, -50%);
}
.btn-warning {
  background-color: #ffc107;
  color: #212529;
  border: none;
  padding: 1rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  /* Para que los pseudo-elementos se sitúen correctamente */
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-warning::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 300%;
  background-color: #fff4d3;
  transition: 0.5s ease;
  z-index: -1;
}
.btn-warning:hover {
  /* Ajuste sutil en hover, mezclando la base */
  background-color: rgba(255, 193, 7, 0.5);
}
.btn-warning:active {
  transform: scale(0.98);
}
.btn-warning:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.5);
}
.btn-warning .text-1 {
  transition: 0.25s ease;
}
.btn-warning .text-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  /* Ajusta color, tamaño, etc. */
  min-width: max-content;
  transition: 0.25s ease;
}
.btn-warning:is(:hover, :focus-visible)::before {
  bottom: -50%;
}
.btn-warning:is(:hover, :focus-visible) .text-1 {
  transform: translateY(-40px);
}
.btn-warning:is(:hover, :focus-visible) .text-2 {
  top: 50%;
  transform: translate(-50%, -50%);
}
.btn-info {
  background-color: #17a2b8;
  color: #fff;
  border: none;
  padding: 1rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  /* Para que los pseudo-elementos se sitúen correctamente */
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-info::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 300%;
  background-color: rgb(167, 233.4782608696, 244);
  transition: 0.5s ease;
  z-index: -1;
}
.btn-info:hover {
  /* Ajuste sutil en hover, mezclando la base */
  background-color: rgba(23, 162, 184, 0.5);
}
.btn-info:active {
  transform: scale(0.98);
}
.btn-info:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.5);
}
.btn-info .text-1 {
  transition: 0.25s ease;
}
.btn-info .text-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  /* Ajusta color, tamaño, etc. */
  min-width: max-content;
  transition: 0.25s ease;
}
.btn-info:is(:hover, :focus-visible)::before {
  bottom: -50%;
}
.btn-info:is(:hover, :focus-visible) .text-1 {
  transform: translateY(-40px);
}
.btn-info:is(:hover, :focus-visible) .text-2 {
  top: 50%;
  transform: translate(-50%, -50%);
}
.btn-light {
  background-color: #f8f9fa;
  color: #212529;
  border: none;
  padding: 1rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  /* Para que los pseudo-elementos se sitúen correctamente */
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-light::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 300%;
  background-color: white;
  transition: 0.5s ease;
  z-index: -1;
}
.btn-light:hover {
  /* Ajuste sutil en hover, mezclando la base */
  background-color: rgba(248, 249, 250, 0.5);
}
.btn-light:active {
  transform: scale(0.98);
}
.btn-light:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(248, 249, 250, 0.5);
}
.btn-light .text-1 {
  transition: 0.25s ease;
}
.btn-light .text-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  /* Ajusta color, tamaño, etc. */
  min-width: max-content;
  transition: 0.25s ease;
}
.btn-light:is(:hover, :focus-visible)::before {
  bottom: -50%;
}
.btn-light:is(:hover, :focus-visible) .text-1 {
  transform: translateY(-40px);
}
.btn-light:is(:hover, :focus-visible) .text-2 {
  top: 50%;
  transform: translate(-50%, -50%);
}
.btn-dark {
  background-color: #343a40;
  color: #fff;
  border: none;
  padding: 1rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  /* Para que los pseudo-elementos se sitúen correctamente */
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-dark::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 300%;
  background-color: rgb(150.1724137931, 160, 169.8275862069);
  transition: 0.5s ease;
  z-index: -1;
}
.btn-dark:hover {
  /* Ajuste sutil en hover, mezclando la base */
  background-color: rgba(52, 58, 64, 0.5);
}
.btn-dark:active {
  transform: scale(0.98);
}
.btn-dark:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(52, 58, 64, 0.5);
}
.btn-dark .text-1 {
  transition: 0.25s ease;
}
.btn-dark .text-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  /* Ajusta color, tamaño, etc. */
  min-width: max-content;
  transition: 0.25s ease;
}
.btn-dark:is(:hover, :focus-visible)::before {
  bottom: -50%;
}
.btn-dark:is(:hover, :focus-visible) .text-1 {
  transform: translateY(-40px);
}
.btn-dark:is(:hover, :focus-visible) .text-2 {
  top: 50%;
  transform: translate(-50%, -50%);
}

.btn2 {
  position: relative;
  color: #007bff;
  font-size: 1rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
  max-width: max-content;
  border: 2px solid #007bff;
  border-radius: 5px;
  padding: 12px 45px;
  overflow: hidden !important;
  z-index: 1;
}

.btn2::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 200%;
  background-color: #6c757d;
  transition: 0.5s ease;
  z-index: -1;
}

.button .text {
  transition: 0.25s ease;
}

.btn2 .text-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: max-content;
  color: #6c757d;
}

.btn2:is(:hover, :focus-visible)::before {
  bottom: -50%;
}

.btn2:is(:hover, :focus-visible) .text-1 {
  transform: translateY(-40px);
}

.btn2:is(:hover, :focus-visible) .text-2 {
  top: 50%;
  transform: translate(-50%, -50%);
}

.btn2-secondary::before {
  background-color: #6c757d;
}

.btn2-secondary .text-2 {
  color: hsl(0, 0%, 100%);
}

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

.hero .slider-item.active .slider-reveal {
  animation: sliderReveal 1s ease forwards;
}

@keyframes sliderReveal {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  border-radius: 0.25rem;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}

.container {
  margin: 0 auto;
  padding-top: 7vh;
}
.container-sm {
  width: 100vw !important;
  min-width: 100vw !important;
  margin: 0 auto;
  padding: 0 1rem;
  border: 1px solid rgba(255, 0, 0, 0.105);
}
.container-md {
  width: 100vw !important;
  min-width: 100vw !important;
  margin: 0 auto;
  padding: 0 1rem;
  border: 1px solid rgba(255, 0, 0, 0.105);
}
.container-lg {
  width: 100vw !important;
  min-width: 100vw !important;
  margin: 0 auto;
  padding: 0 1rem;
  border: 1px solid rgba(255, 0, 0, 0.105);
}
.container-xl {
  width: 100vw !important;
  min-width: 100vw !important;
  margin: 0 auto;
  padding: 0 1rem;
  border: 1px solid rgba(255, 0, 0, 0.105);
}
.container-xxl {
  width: 100vw !important;
  min-width: 100vw !important;
  margin: 0 auto;
  padding: 0 1rem;
  border: 1px solid rgba(255, 0, 0, 0.105);
}

.separator {
  width: 100%;
  height: 2px;
  background: #ddd;
  margin: 2rem 0;
  border-radius: 1px;
}

.separator-dark {
  width: 100%;
  height: 2px;
  background: #333;
  margin: 2rem 0;
  border-radius: 1px;
}

.separator-light {
  width: 100%;
  height: 2px;
  background: #eee;
  margin: 2rem 0;
  border-radius: 1px;
}

.separator-dashed {
  width: 100%;
  height: 2px;
  background: #bbb;
  margin: 2rem 0;
  border-radius: 1px;
  background: none;
  border-top: 2px "dashed" #bbb;
  height: 0;
}

.separator-double {
  width: 100%;
  height: 4px;
  background: #999;
  margin: 2rem 0;
  border-radius: 1px;
  background: none;
  border-top: 4px "double" #999;
  height: 0;
}

.text-start {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-end {
  text-align: right !important;
}

.display-1 {
  font-size: 5rem;
  font-weight: 300;
}

.display-2 {
  font-size: 4.5rem;
  font-weight: 300;
}

.display-3 {
  font-size: 4rem;
  font-weight: 300;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.carousel {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
}
.carousel .carousel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.carousel .carousel-item {
  min-width: 100%;
  transition: opacity 0.5s ease-in-out;
}
.carousel .carousel-item img {
  width: 100%;
  display: block;
}
.carousel .carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 1.5rem;
  transition: background 0.3s;
}
.carousel .carousel-control:hover {
  background: rgba(0, 0, 0, 0.8);
}
.carousel .carousel-control-prev {
  left: 10px;
}
.carousel .carousel-control-next {
  right: 10px;
}
.carousel .carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.carousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}
.carousel .carousel-indicators button.active {
  background: red;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal .modal-content {
  background: white;
  padding: 3rem;
  border-radius: 10px;
  outline: 1px solid #007bff; /* Se ve como un borde interno */
  outline-offset: -15px; /* Lo desplaza hacia dentro */
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
}
.modal .modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 40px;
  height: 40px;
  background-color: #6c757d;
  border-radius: 50%;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.modal .modal-icon {
  position: absolute;
  top: 30px;
  left: 30px;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-logo {
  width: 50%;
  max-width: 400px;
  margin: 1rem auto;
}
.modal-logo img {
  width: 100%;
}

.modal-dark {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(208, 208, 208, 0.8);
  color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.modal-dark.active {
  opacity: 1;
  visibility: visible;
}
.modal-dark .modal-content {
  background: #333;
  padding: 3rem;
  border-radius: 10px;
  outline: 1px solid #007bff; /* Se ve como un borde interno */
  outline-offset: -15px; /* Lo desplaza hacia dentro */
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
}
.modal-dark .modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 40px;
  height: 40px;
  background-color: #6c757d;
  border-radius: 50%;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.modal-dark .modal-icon {
  position: absolute;
  top: 30px;
  left: 30px;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-light {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.modal-light.active {
  opacity: 1;
  visibility: visible;
}
.modal-light .modal-content {
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 10px;
  outline: 1px solid #007bff; /* Se ve como un borde interno */
  outline-offset: -15px; /* Lo desplaza hacia dentro */
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
}
.modal-light .modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 40px;
  height: 40px;
  background-color: #6c757d;
  border-radius: 50%;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.modal-light .modal-icon {
  position: absolute;
  top: 30px;
  left: 30px;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-lg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.modal-lg.active {
  opacity: 1;
  visibility: visible;
}
.modal-lg .modal-content {
  background: white;
  padding: 3rem;
  border-radius: 10px;
  outline: 1px solid #007bff; /* Se ve como un borde interno */
  outline-offset: -15px; /* Lo desplaza hacia dentro */
  width: 95%;
  max-width: 800px;
  text-align: center;
  position: relative;
}
.modal-lg .modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 40px;
  height: 40px;
  background-color: #6c757d;
  border-radius: 50%;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.modal-lg .modal-icon {
  position: absolute;
  top: 30px;
  left: 30px;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.cta {
  background: #111;
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}
.cta .cta-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 1.5rem;
  letter-spacing: 1px;
}
.cta .cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: 2px solid white;
  background: transparent;
  color: white;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin: 1rem;
  border-radius: 5px;
}
.cta .cta-button:hover {
  background: rgba(25.5, 25.5, 25.5, 0);
  color: rgb(229.5, 229.5, 229.5);
}
.cta a {
  text-decoration: none;
  color: #f8f9fa;
}

.cta-primary {
  background: #d0e7ff;
  color: rgb(73, 73, 73);
  text-align: center;
  padding: 4rem 2rem;
}
.cta-primary .cta-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 1.5rem;
  letter-spacing: 1px;
}
.cta-primary .cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: 2px solid rgb(148, 79, 79);
  background: white;
  color: #46698e;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin: 1rem;
  border-radius: 5px;
}
.cta-primary .cta-button:hover {
  background: white;
  color: rgb(53.1603773585, 79.7405660377, 107.8396226415);
}
.cta-primary a {
  text-decoration: none;
  color: #f8f9fa;
}

.cta-secondary {
  background: #f8f9fa;
  color: #333;
  text-align: center;
  padding: 4rem 2rem;
}
.cta-secondary .cta-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 1.5rem;
  letter-spacing: 1px;
}
.cta-secondary .cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: 2px solid #007bff;
  background: #007bff;
  color: white;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin: 1rem;
  border-radius: 5px;
}
.cta-secondary .cta-button:hover {
  background: rgb(51, 149.4, 255);
  color: rgb(229.5, 229.5, 229.5);
}
.cta-secondary a {
  text-decoration: none;
  color: #f8f9fa;
}

.cta-danger {
  background: #dc3545;
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}
.cta-danger .cta-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 1.5rem;
  letter-spacing: 1px;
}
.cta-danger .cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: 2px solid white;
  background: white;
  color: #dc3545;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin: 1rem;
  border-radius: 5px;
}
.cta-danger .cta-button:hover {
  background: white;
  color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}
.cta-danger a {
  text-decoration: none;
  color: #f8f9fa;
}

.cta-success {
  background: #28a745;
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}
.cta-success .cta-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 1.5rem;
  letter-spacing: 1px;
}
.cta-success .cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: 2px solid white;
  background: white;
  color: #28a745;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin: 1rem;
  border-radius: 5px;
}
.cta-success .cta-button:hover {
  background: white;
  color: rgb(30.1449275362, 125.8550724638, 52);
}
.cta-success a {
  text-decoration: none;
  color: #f8f9fa;
}

@media (min-width: 768px) {
  .cta {
    padding: 3rem 1.5rem;
  }
}
.cta {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}
.cta.visible {
  opacity: 1;
  transform: translateY(0);
}

.header .btn {
  display: block;
  margin-inline-start: auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  height: 10vh;
  width: 100%;
  display: flex;
  flex-direction: row;
  vertical-align: middle;
  align-content: center;
  align-items: center;
  background-color: hsl(211, 90%, 75%);
  z-index: 4;
}
.header .menu-hamburguesa {
  width: 40px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 10;
  margin: 0 5px;
}
.header .b1 {
  width: 10%;
  height: 100%;
  padding-left: 1em;
  justify-content: center;
  align-content: center;
}
.header .b2 {
  width: 80%;
  height: 100%;
  justify-content: center;
  align-content: center;
}
.header .b3 {
  width: 10%;
  height: 100%;
  justify-content: center !important;
  align-content: center !important;
}
.header .b3 ion-icon {
  width: 48px !important;
  height: 48px !important;
}
.header .logo {
  width: 10%;
  height: 100%;
  justify-content: center;
  align-content: center;
  padding: 1em;
}
.header .nav-open-btn {
  position: fixed;
  top: 0;
  right: 0;
  width: 10%;
  align-content: center;
  vertical-align: middle;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px;
}

.header .container .logo {
  outline: none;
}

/* ╭─────────── VARIABLES CSS (opcionales) ──────────╮
   │ Si quieres poder personalizar rápido, déjalas.  │
   ╰─────────────────────────────────────────────────╯ */
:root {
  --icon-size: 3rem;
  --icon-bg: transparent;
  --icon-color: #000;
  --dark: #212529;
}

/* ─────────────── ICONO + TEXTO ─────────────── */
.feature-icon {
  font-size: var(--icon-size);
  background: var(--icon-bg);
  color: var(--icon-color);
  padding: 15px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

/* Efecto “levantar” al pasar el ratón */
.feature-icon:hover {
  transform: translateY(-5px);
}

/* Elementos internos */
.feature-icon .icon {
  font-size: var(--icon-size);
  color: inherit;
  margin-bottom: 1rem;
}

.feature-icon .title {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.feature-icon .description {
  font-size: 1rem;
  color: #6c757d;
}

/* ───────────── SECCIÓN DE FEATURES ───────────── */
.features {
  display: flex;
  flex-wrap: wrap; /* permite saltar a nueva fila */
  justify-content: center; /* centra columnas cuando sobra espacio */
  align-items: stretch;
  gap: 1rem; /* separación uniforme */
  background-color: #fff;
  padding: 0.5rem;
  /* debug */
}

.feature {
  flex: 1 1 400px; /* crece, encoge y mínimo 400px */
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem;
  padding: 1rem;
  background-color: #fee440;
  border: 1px solid rgb(156, 212, 255);
  border-radius: 10px;
}

.feature h5 {
  padding: 1rem 0;
  border-top: 1px solid #cf1db0;
  border-bottom: 1px solid #cf1db0;
  text-align: center;
}

.feature .title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #343a40;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 1rem;
}

.feature .text {
  font-size: 1rem;
  color: #6c757d;
}

/* ─────────────── BREAKPOINT md (≥ 768 px) ─────────────── */
@media (min-width: 768px) {
  .features {
    grid-template-columns: 1fr 1fr;
  }
}
/* ─────────────── BREAKPOINT lg (≥ 1024 px) ────────────── */
@media (min-width: 1024px) {
  .features {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.footer {
  background: #eef51b;
  color: #003dc1;
  text-align: center;
  padding: 2rem 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  border-top: 1px solid rgba(255, 0, 0, 0.2);
}
.footer .footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer .footer-logo img {
  height: 55px;
  transition: height 0.3s;
}
.footer .footer-columns {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
  align-items: center;
}
.footer .footer-columns .footer-direccion,
.footer .footer-columns .footer-social {
  width: 100%;
}
.footer .footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.footer .footer-social a {
  font-size: 1.5rem;
  color: #333;
  transition: color 0.3s ease-in-out;
}
.footer .footer-social a:hover {
  color: #007bff;
}
.footer .footer-text {
  font-size: 0.9rem;
  color: #da1a1a;
}
.footer .footer-copy {
  font-size: 0.65rem;
  color: #001249;
}
@media (min-width: 768px) {
  .footer .footer-columns {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer .footer-columns .footer-direccion,
  .footer .footer-columns .footer-social {
    width: 45%;
    text-align: left;
  }
}
@media (min-width: 992px) {
  .footer .footer-columns .footer-direccion,
  .footer .footer-columns .footer-social {
    width: 30%;
  }
}
.footer.visible {
  opacity: 1;
  transform: translateY(0);
}

main {
  padding: 20px;
  color: #343a40;
  min-height: calc(100vh - 120px);
}

main h1 {
  font-size: calc(2rem + 1vw);
  color: hsl(199, 69%, 84%);
}

main h2 {
  font-size: calc(1.4rem + 0.8vw);
  color: hsl(199, 69%, 84%);
}

main h3 {
  font-size: calc(1.2rem + 0.6vw);
  color: hsl(199, 69%, 84%);
}

main p {
  font-size: calc(1.1rem + 0.8vw);
  font-weight: 500;
  font-family: "Roboto", serif;
  line-height: 1.5;
  letter-spacing: 0.5px;
  margin-block-end: 0.5em;
}

main a {
  border: 1px solid red;
  display: contents;
  font-size: calc(1rem + 0.4vw);
  color: hsl(217, 24%, 59%);
  text-decoration: underline;
  transition: color 0.25s ease;
}

main a:hover {
  color: hsl(199, 69%, 84%);
}

main img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

main ul {
  padding-left: 20px;
  list-style: disc;
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .mosaic {
    grid-template-columns: 1fr;
  }
}
.mosaic .mosaic-item {
  background: rgba(255, 255, 255, 0.168627451);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  color: #333;
}
.mosaic .mosaic-item strong {
  display: block;
  font-weight: bold;
  color: #221900;
  margin-bottom: 0.5rem;
}
.mosaic .mosaic-item p {
  margin: 0;
  line-height: 1.6;
}
.mosaic .hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 1px solid red;
}
.mosaic .hero-title {
  font-size: 2rem;
  color: #221900;
}
.mosaic .hero-subtitle {
  text-transform: uppercase;
  color: #ff6200;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.grid-tienda {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.tarjeta-producto {
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.2s ease-in-out;
}

.tarjeta-producto:hover {
  transform: translateY(-5px);
}

.tarjeta-producto img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.tarjeta-producto h2 {
  font-size: 1.2rem;
  margin: 1rem 0 0.5rem;
}

.tarjeta-producto .precio {
  color: #2a9d8f;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.tarjeta-producto .etiqueta {
  display: inline-block;
  background-color: #ff9743;
  color: white;
  padding: 0.3rem 0.6rem;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.tarjeta-producto button {
  background-color: #264653;
  color: white;
  border: none;
  padding: 0.75rem;
  margin: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.tarjeta-producto button:hover {
  background-color: #1b2e3c;
}

.navbar {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: transparent;
  color: #cf1db0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  transition: all 0.3s ease-in-out;
  z-index: 100;
  backdrop-filter: blur(5px);
  overflow: visible !important;
}
.navbar.scrolled {
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}
.navbar .logo img {
  height: 100px;
  transition: height 0.3s;
  margin-top: 0.5rem;
  z-index: 1102;
}
.navbar .nav-links {
  display: none !important;
}
.navbar .nav-links ul {
  display: flex;
  list-style: none !important;
  align-items: center;
  font-size: clamp(0.85rem, 1.1vw + 0.25rem, 1rem);
  gap: 0.25rem;
}
@media (min-width: 768px) {
  .navbar .nav-links {
    display: flex !important;
    gap: 1.5rem;
  }
  .navbar .nav-links a {
    text-decoration: none;
    transition: background-color 0.3s;
    background-color: #cf1db0;
    color: #fee440;
    padding: 0.5rem 1rem;
    margin: 1rem;
    min-width: 220px !important;
    border-radius: 10px;
  }
  .navbar .nav-links a:hover {
    background-color: #fee440;
    color: #cf1db0;
  }
}
.navbar .hamburger {
  font-size: 2rem;
  background: none;
  border: none;
  color: #343a40;
  cursor: pointer;
  display: block;
  position: relative;
  width: 40px;
  height: 40px;
  z-index: 1001;
}
.navbar .hamburger span {
  display: block;
  width: 35px;
  height: 5px;
  background-color: #343a40;
  border-radius: 5px;
  position: absolute;
  left: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.navbar .hamburger span:nth-child(1) {
  top: 8px;
}
.navbar .hamburger span:nth-child(2) {
  top: 18px;
}
.navbar .hamburger span:nth-child(3) {
  top: 28px;
}
.navbar .hamburger.scrolled {
  color: rgba(151, 15, 242, 0.7);
}
.navbar .hamburger.scrolled span {
  background-color: rgba(151, 15, 242, 0.7);
}
.navbar .hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.navbar .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.navbar .hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #07bff2;
  color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
  z-index: 100 !important;
}
.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.menu-overlay .logo img {
  height: 125px;
  transition: height 0.3s;
  margin-bottom: 2rem;
}
.menu-overlay .overlay-menu {
  list-style: none;
  text-align: left;
  border-top: 1px solid #cf1db0;
  border-bottom: 1px solid #cf1db0;
  width: 100%;
  padding: 1rem;
  max-width: 400px;
}
.menu-overlay .overlay-menu li {
  width: 100%;
  display: flex;
}
.menu-overlay .overlay-menu li a {
  width: 100%;
  min-width: 100%;
  text-decoration: none;
  color: #fee440;
  background-color: #cf1db0;
  margin-bottom: clamp(0.5rem, 0.1vw + 0.1rem, 0.5rem);
  font-size: clamp(1rem, 0.75vw + 0.5rem, 2rem);
  transition: background-color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  padding: 0.25rem 1rem;
  border-radius: 10px;
}
.menu-overlay .overlay-menu li a:hover {
  background-color: #fee440;
  color: #cf1db0;
}

.nav-links ul li {
  position: relative !important;
}

.nav-links .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  /* Fondo, borde, sombra, etc. */
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  padding: 2rem 2rem;
  /* Oculto inicialmente */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  z-index: 5000;
  /*
   * Este "truco" hace que el submenú sea
   * mínimo tan ancho como su elemento padre,
   * pero se expanda si hay más contenido.
   */
  display: block; /* o inline-block, ver nota abajo */
  min-width: 300px;
  width: auto; /* fallback */
  width: fit-content; /* para navegadores modernos */
  /* width: -moz-fit-content;  si necesitas compatibilidad Firefox antiguo */
}

.nav-links .submenu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-links .submenu ul {
  display: flex; /* usas flex-direction: column para línea vertical */
  flex-direction: column; /* Si quieres un enlace debajo de otro */
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links .submenu ul li {
  /* cualquier estilo base */
  width: 100%;
  border-radius: 5px;
}

.nav-links .submenu ul li:hover {
  background-color: transparent;
  color: #fee440;
  transition: color 0.3s, transform 0.3s, visibility 0.3s;
}

.nav-links .submenu ul li a {
  width: 100%;
  display: block;
  padding: 0.5rem;
  margin: 0;
  white-space: nowrap; /* si no quieres que el texto parta línea */
  text-decoration: none;
  color: #fee440;
}
.nav-links .submenu ul li a:hover {
  color: #cf1db0;
}

@media (max-width: 768px) {
  .nav-links .submenu {
    display: none !important;
  }
}
.news-section {
  padding: 1rem;
  background-color: #fafafa;
}
.news-section .section-title {
  font-size: clamp(2rem, 2vw + 0.5rem, 4rem);
  text-align: center;
  margin-bottom: 0.5rem;
}
.news-section .section-subtitle {
  text-align: center;
  color: #666;
  font-size: clamp(0.85rem, 1.8vw + 0.5rem, 2rem);
}
.news-section .news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.news-section .news-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}
.news-section .news-card:hover {
  transform: translateY(-5px);
}
.news-section .news-card .news-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.news-section .news-card .news-meta {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 1rem;
}
.news-section .news-card .news-description {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1rem;
}
.news-section .news-card .news-link {
  font-weight: bold;
  color: #e53935;
  text-decoration: none;
}
.news-section .news-card .news-link:hover {
  text-decoration: underline;
}

.noticia-detalle {
  padding: 1rem;
}
.noticia-detalle .container-noticia {
  max-width: 800px;
  margin: 0 auto;
}
.noticia-detalle .container-noticia .noticia-titulo {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}
.noticia-detalle .container-noticia .noticia-cuerpo {
  font-size: clamp(0.85rem, 1.2vw + 0.5rem, 1.5rem);
  line-height: clamp(1.3rem, 1.5vw + 0.5rem, 2.5rem);
}
.noticia-detalle .container-noticia .noticia-cuerpo p {
  margin-bottom: 1.5rem;
}
.noticia-detalle .container-noticia .noticia-cuerpo a {
  color: rgb(129, 16, 16);
  text-decoration: none;
}
.noticia-detalle .noticia-meta {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.volver-noticias {
  display: inline-block;
  margin-top: 2rem;
  color: #e53935;
  font-weight: bold;
  text-decoration: none;
}
.volver-noticias:hover {
  text-decoration: underline;
}

.noticia-imagen {
  margin: 2rem 0;
}
.noticia-imagen img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.news-thumb {
  width: 100%;
  height: auto;
  max-width: 400px;
  max-height: 300px;
  overflow: hidden;
  margin: 0 auto 1rem;
  border-radius: 8px;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.crear-noticia {
  padding: 2rem 0;
  background-color: #f9f9f9;
}
.crear-noticia .container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.crear-noticia h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  color: #333;
}
.crear-noticia form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.crear-noticia form label {
  font-weight: 600;
  color: #555;
  display: block;
  margin-bottom: 0.5rem;
}
.crear-noticia form input[type=text],
.crear-noticia form input[type=file],
.crear-noticia form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}
.crear-noticia form input[type=text]:focus,
.crear-noticia form input[type=file]:focus,
.crear-noticia form textarea:focus {
  border-color: #5b9bd5;
  outline: none;
  box-shadow: 0 0 0 2px rgba(91, 155, 213, 0.2);
}
.crear-noticia form textarea {
  min-height: 150px;
  resize: vertical;
}
.crear-noticia form button[type=submit] {
  align-self: flex-start;
  background-color: #5b9bd5;
  color: white;
  font-weight: bold;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.crear-noticia form button[type=submit]:hover {
  background-color: #407fc4;
}

.hero-light {
  background: #ffffff;
  padding: 1rem 0.5rem;
}
.hero-light .hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Centra en ejes cross en móvil */
  align-content: flex-start;
  justify-content: flex-start;
  justify-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 0;
}
.hero-light .hero-content .hero-text {
  width: 100%;
  text-align: left;
  padding: 0.5rem;
}
.hero-light .hero-content .hero-title {
  font-family: "Caveat Brush", sans-serif;
  font-size: clamp(2.2rem, 2.5vw + 1.5rem, 2.5rem);
  font-weight: 400;
  color: #221900;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  margin-top: 1rem;
  line-height: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #00f5d4;
}
.hero-light .hero-content .hero-subtitle {
  font-family: "Caveat Brush", sans-serif;
  font-size: clamp(1.1rem, 1.5vw + 1rem, 2rem);
  font-weight: 400;
  color: #ff6200;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}
.hero-light .hero-content ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.hero-light .hero-content ul li {
  margin-bottom: 1rem;
}
.hero-light .hero-content .hero-image {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
}
.hero-light .hero-content .hero-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.hero-light .hero-content .hero-video {
  margin: 2rem 0;
  width: 100%;
}
.hero-light .hero-content .hero-video .video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.hero-light .hero-content .hero-video .video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.hero-light .hero-content .hero-media {
  width: 100%;
}

.hero-dark {
  background: #dce6e8;
  padding: 1rem 0.5rem;
}
.hero-dark .hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Centra en ejes cross en móvil */
  align-content: flex-start;
  justify-content: flex-start;
  justify-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 0;
}
.hero-dark .hero-content .hero-text {
  width: 100%;
  text-align: left;
  padding: 0.5rem;
}
.hero-dark .hero-content .hero-title {
  font-family: "Caveat Brush", sans-serif;
  font-size: clamp(2.2rem, 2.5vw + 1.5rem, 2.5rem);
  font-weight: 400;
  color: #221900;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  margin-top: 1rem;
  line-height: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #00f5d4;
}
.hero-dark .hero-content .hero-subtitle {
  font-family: "Caveat Brush", sans-serif;
  font-size: clamp(1.1rem, 1.5vw + 1rem, 2rem);
  font-weight: 400;
  color: #ff6200;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}
.hero-dark .hero-content ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.hero-dark .hero-content ul li {
  margin-bottom: 1rem;
}
.hero-dark .hero-content .hero-image {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
}
.hero-dark .hero-content .hero-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.hero-dark .hero-content .hero-video {
  margin: 2rem 0;
  width: 100%;
}
.hero-dark .hero-content .hero-video .video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.hero-dark .hero-content .hero-video .video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.hero-dark .hero-content .hero-media {
  width: 100%;
}

.hero-primary {
  background: #badbff;
  padding: 1rem 0.5rem;
}
.hero-primary .hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Centra en ejes cross en móvil */
  align-content: flex-start;
  justify-content: flex-start;
  justify-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 0;
}
.hero-primary .hero-content .hero-text {
  width: 100%;
  text-align: center;
  padding: 0.5rem;
}
.hero-primary .hero-content .hero-title {
  font-family: "Caveat Brush", sans-serif;
  font-size: clamp(2.2rem, 2.5vw + 1.5rem, 2.5rem);
  font-weight: 400;
  color: #221900;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  margin-top: 1rem;
  line-height: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #00f5d4;
}
.hero-primary .hero-content .hero-subtitle {
  font-family: "Caveat Brush", sans-serif;
  font-size: clamp(1.1rem, 1.5vw + 1rem, 2rem);
  font-weight: 400;
  color: #ff6200;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}
.hero-primary .hero-content ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.hero-primary .hero-content ul li {
  margin-bottom: 1rem;
}
.hero-primary .hero-content .hero-image {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
}
.hero-primary .hero-content .hero-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.hero-primary .hero-content .hero-video {
  margin: 2rem 0;
  width: 100%;
}
.hero-primary .hero-content .hero-video .video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.hero-primary .hero-content .hero-video .video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.hero-primary .hero-content .hero-media {
  width: 100%;
}

.unmute-button {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

.hero-titulo-descripcion {
  font-family: "Caveat Brush", sans-serif;
  font-size: clamp(0.95rem, 1.5vw + 1rem, 3.5rem);
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  background-color: #ff6200;
  letter-spacing: 0.5px;
  margin: 1rem;
  padding: 5px;
  border-radius: 5px;
}

.hero-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: 2px solid black;
  text-transform: uppercase;
  background: none;
  cursor: pointer;
  transition: all 0.3s;
  margin: 1rem 0;
}
.hero-button:hover {
  background: black;
  color: white;
}

.hero-description {
  font-size: 1rem;
  color: #6c757d;
  margin: 0.5rem 0;
  padding: 1rem 0;
  line-height: 1.5;
  text-align: justify;
  text-indent: 1.5rem; /* solo la primera línea */
}

.fondo1 {
  margin-top: 170px;
  background: url("public/assets/images/IMG-20171114-WA0024.jpg") no-repeat top center;
  background-size: cover;
  width: 100%;
  height: auto;
  min-height: 400px;
  max-height: 700px;
}

.video-container {
  position: relative;
  width: 100% !important;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-background {
  width: 100% !important;
  height: auto;
}

.audio-button {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 10px 15px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
}

.audio-button:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

/* --------------------------------------------------
   Galería de fotos (gallery.scss)
   -------------------------------------------------- */
.gallery {
  padding: 1rem 0;
  /* ----- Filtros ----- */
  /* ----- Grid / tarjetas ----- */
  /* ----- Etiquetas bajo la imagen ----- */
  /* ----- Cuerpo con título/desc ----- */
}
.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.gallery__btn {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  font-size: 0.875rem;
  border: 1px solid #0d6efd;
  background: #fff;
  color: #0d6efd;
  border-radius: 2rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
}
.gallery__btn:hover, .gallery__btn.is-active {
  background: #0d6efd;
  color: #fff;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
.gallery__item {
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  background: #fff;
  display: flex;
  flex-direction: column;
}
.gallery__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.gallery__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin: 0.5rem 0.75rem 0;
}
.gallery__tag {
  font-size: 0.75rem; /* más pequeño */
  color: #629def;
  padding: 0.125rem 0.5rem;
  line-height: 1.2;
  white-space: nowrap;
}
.gallery__body {
  padding: 0.75rem;
}
.gallery__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gallery__desc {
  font-size: 0.875rem;
  color: #555;
  margin: 0;
}

/* Utilidades -------------------------------------- */
.text-capitalize {
  text-transform: capitalize;
}

.gallery__tag.is-linked {
  background: #0d6efd;
  color: #fff;
  font-weight: 600;
}

/* --------------------------------------------------
   Tienda solidaria (shop.scss)
   -------------------------------------------------- */
.shop {
  padding: clamp(0.5rem, 1.5vw + 0.5rem, 2.5rem);
  /* ----- Filtros ----- */
  /* ----- Grid / tarjetas ----- */
  /* ----- Categorías bajo la imagen ----- */
  /* ----- Cuerpo con título/desc/precio y botón ----- */
}
.shop__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.shop__btn {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  font-size: 0.875rem;
  border: 1px solid #0d6efd;
  background: #fff;
  color: #0d6efd;
  border-radius: 2rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
}
.shop__btn:hover, .shop__btn.is-active {
  background: #0d6efd;
  color: #fff;
}
.shop__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
.shop__item {
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  background: #fff;
  display: flex;
  flex-direction: column;
}
.shop__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.shop__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin: 0.5rem 0.75rem 0;
}
.shop__cat {
  font-size: 0.75rem;
  color: #629def;
  padding: 0.125rem 0.5rem;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
}
.shop__cat:hover {
  background: #0d6efd;
  color: #fff;
  border-radius: 1rem;
}
.shop__body {
  padding: 0.75rem;
}
.shop__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.shop__desc {
  font-size: 0.875rem;
  color: #555;
  margin: 0 0 0.5rem 0;
  min-height: 38px;
}
.shop__price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #1556ac;
  margin-bottom: 0.75rem;
}
.shop__btn-add {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: #0d6efd;
  color: #fff;
  border-radius: 2rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
}
.shop__btn-add:hover:not(.is-disabled) {
  background: rgb(1.762295082, 87.2336065574, 213.237704918);
}
.shop__btn-add.is-disabled {
  background: #ccc;
  color: #888;
  cursor: not-allowed;
  pointer-events: none;
}

/* Utilidades */
.text-capitalize {
  text-transform: capitalize;
}

.slider {
  position: relative;
  width: 100vw;
  min-height: 60vh;
  max-height: 80vh;
  overflow: hidden;
}
.slider .slider-container {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 1s ease-in-out;
}
.slider .slide {
  flex: 0 0 100%;
  width: 100%;
  min-height: 60vh;
  max-height: 80vh;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.slider .slide-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 10vh;
  left: 50%;
  transform: translateX(-50%) translateY(250px);
  text-align: center;
  color: #970ff2;
  font-family: "Lato", sans-serif;
  font-weight: 200;
  width: 90%;
  max-width: 800px;
  padding: 1rem 2rem;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  z-index: 100;
  background: transparent;
}
.slider .slide.active .slide-content {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.slider .slide-video {
  position: relative;
  width: auto;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: 1;
}
.slider .slide-subtitle {
  font-size: 1.1rem;
  letter-spacing: 2px;
  font-weight: 300;
  color: #f8f9fa;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}
.slider .slide-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 10px 0;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.6), 0 0 15px rgba(255, 255, 255, 0.4);
}
.slider img {
  width: 20%;
  margin-bottom: 2rem;
}
.slider .slide-buttons .btn-outline {
  z-index: 20;
  position: relative;
}
.slider .slide-buttons {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.slider .or {
  font-size: 1rem;
  color: #aaa;
}
.slider .btn-outline {
  padding: 10px 20px;
  border: 2px solid #f8f9fa;
  background: transparent;
  color: #f8f9fa;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  color: #f8f9fa;
}
.slider .btn-outline:hover {
  background: black;
  color: white;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
.scroll-indicator {
  position: absolute;
  bottom: 1vh;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  animation: bounce 1.5s infinite ease-in-out;
}

@media (max-width: 768px) {
  .slider {
    height: 85vh;
  }
  .slider .slide {
    width: 100vw;
    height: 100%;
    background-size: cover;
    background-position: center;
  }
  .slider .slide-video {
    position: relative;
    width: auto;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 1;
  }
}
.separador-imagen {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.separador-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.separador-imagen .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}
.separador-imagen .mensaje-central {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}
.separador-imagen .mensaje-central h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
}

.testimonial {
  text-align: center;
  color: #333;
  padding: 4rem 2rem;
  border: 1px solid;
}
.testimonial .testimonial-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}
.testimonial .testimonial-avatars {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.testimonial .testimonial-avatars img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.testimonial .testimonial-avatars img:hover {
  transform: scale(1.1);
}
.testimonial .testimonial-text {
  font-size: 1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}
.testimonial .testimonial-author {
  font-weight: bold;
  margin-top: 1rem;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.testimonial .testimonial-company {
  font-size: 0.8rem;
  color: #888;
}

@media (min-width: 768px) {
  .testimonial-avatars {
    flex-wrap: wrap;
    border: 1px solid red;
  }
}
.testimonial {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}
.testimonial.visible {
  opacity: 1;
  transform: translateY(0);
}

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