@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=Poppins:wght@300;400;700&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 & VARIABLES
  */
:root {
  --color-primary: #f7980b; /* amarillo cálido tipo fundación */
  --color-primary-dark: #f0b800;
  --color-secondary: #2f3c5d; /* azul marino */
  --color-accent: #f06292; /* rosa acento suave */
  --color-bg: #f6f7fb;
  --color-bg-alt: #ffffff;
  --color-border-soft: #e1e3ee;
  --color-text-main: #222533;
  --color-text-muted: #6c6f7f;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow-soft: 0 12px 24px rgba(18, 27, 53, 0.08);
  --container-width: 1120px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%; /* Evita desbordamientos horizontales */
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  word-break: break-word;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text-main);
  background: var(--color-bg);
}

body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.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%);
}

.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 {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Topbar */
.topbar {
  background: var(--color-secondary);
  color: #ffffff;
  font-size: 0.8rem;
}

.topbar__inner {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  padding: 0.4rem 0;
}

.topbar__link {
  color: inherit;
  text-decoration: none;
  opacity: 0.85;
}
.topbar__link:hover {
  opacity: 1;
  text-decoration: underline;
}

.topbar__divider {
  opacity: 0.6;
}

/* Navegación */
.main-nav {
  display: flex;
}

.main-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.main-nav__link {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--color-text-main);
  font-weight: 500;
}
.main-nav__link:hover {
  color: var(--color-secondary);
}

.main-nav__item--highlight .main-nav__link--cta {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-secondary);
  box-shadow: 0 8px 16px rgba(255, 213, 79, 0.5);
}
.main-nav__item--highlight .main-nav__link--cta:hover {
  background: var(--color-primary-dark);
}

/* Botón menú móvil */
.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  padding: 0.4rem;
  border-radius: 999px;
  cursor: pointer;
}

.nav-toggle__icon {
  font-size: 1.8rem;
  color: var(--color-secondary);
}

/* Hero */
.hero {
  padding: 3rem 0 3.5rem;
  background: radial-gradient(circle at top left, #fff8e1 0, #ffffff 40%, #f6f7fb 100%);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 2.5rem;
  align-items: center;
}

.hero__title {
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  margin: 0 0 0.8rem;
  color: var(--color-secondary);
}

.hero__lead {
  margin: 0 0 0.6rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--color-text-main);
}

.hero__lead--secondary {
  color: var(--color-text-muted);
}

/* --- ESTILOS ESPECÍFICOS VIDEO HERO --- */
/* Modificador para reducir margen en textos introductorios */
.hero__lead--compact {
  margin-bottom: 0.5rem;
}

/* Contenedor del video */
.hero-video {
  position: relative; /* Para posicionar el botón de mute */
  /* Selector de hermano adyacente: Aplica margen solo al segundo video */
}
.hero-video + .hero-video {
  margin-top: 1.5rem;
}

/* Elemento Video */
.hero-video__el {
  width: 100%;
  height: auto;
  border-radius: 8px; /* O usa var(--radius-sm) si prefieres 6px */
  display: block; /* Elimina el espacio fantasma inferior de los elementos inline */
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

/* Botón de sonido */
.unmute-button {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
  z-index: 10;
}
.unmute-button:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Imagen de logo dentro del texto del Hero */
.hero__logo-img {
  display: block;
  max-width: 100%;
  width: 280px; /* Tamaño controlado */
  height: auto;
  margin: 1rem 0 1.5rem 0; /* Espaciado vertical */
}
@media (max-width: 768px) {
  .hero__logo-img {
    margin: 0 auto 1.5rem auto; /* Centrado en móviles */
  }
}

.hero__actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* Botones */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.1s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.btn--primary {
  background: var(--color-primary) !important;
  color: var(--color-secondary) !important;
  box-shadow: 0 10px 18px rgba(255, 213, 79, 0.55);
}
.btn--primary:hover {
  background: var(--color-primary-dark) !important;
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--color-secondary);
  border: 1px solid rgba(47, 60, 93, 0.2);
}
.btn--ghost:hover {
  background: rgba(47, 60, 93, 0.04);
}

/* Tarjeta lateral hero */
.hero-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.6rem 1.7rem;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, #ffe082 0, transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

.hero-card__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.04);
  color: var(--color-secondary);
  margin-bottom: 0.9rem;
}

.hero-card__title {
  position: relative;
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  color: var(--color-secondary);
}

.hero-card__text {
  position: relative;
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.hero-card__list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  font-size: 0.9rem;
}
.hero-card__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-card__list ion-icon {
  font-size: 1rem;
  color: var(--color-secondary);
}

/* Secciones genéricas */
.section {
  padding: 3rem 0;
}

.section--alt {
  background: #ffffff;
}

.section__header {
  margin-bottom: 1.8rem;
}

.section__header--center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.2rem;
}

.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--color-accent);
  font-weight: 600;
  margin: 0 0 0.4rem;
}

.section__title {
  margin: 0;
  font-size: 1.4rem;
  color: var(--color-secondary);
}

.section__subtitle {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.section__note {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.section__footer-note {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.1rem;
  color: var(--color-text-muted);
}

/* Cuadrícula de ventajas */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.benefit {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.1rem 1rem;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.benefit__percent {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.2rem;
}

.benefit__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.benefit--separator {
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit__line {
  width: 48px;
  height: 3px;
  border-radius: 999px;
  background: rgba(47, 60, 93, 0.18);
}

/* TARJETAS DE CONTENIDO / FISCALES 
  (Incluye adaptaciones para listas detalladas como en "Colegios")
*/
.fiscal-wrapper--center {
  display: flex;
  justify-content: center;
  width: 100%;
}

.fiscal-two-cols {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.fiscal-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem 1.4rem;
}
.fiscal-card--wide {
  width: 100%;
  max-width: 900px;
}

.fiscal-card__title {
  margin: 0 0 0.9rem;
  font-size: 1.05rem;
  color: var(--color-secondary);
}

.fiscal-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--color-text-muted);
}
.fiscal-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.fiscal-card__list ion-icon {
  font-size: 1rem;
  color: var(--color-secondary);
  margin-top: 0.12rem;
}
.fiscal-card__list--detailed li {
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.fiscal-card__list--detailed li:last-child {
  margin-bottom: 0;
}

.list-icon {
  font-size: 1.5rem !important;
  color: var(--color-primary) !important;
  margin-top: 4px;
  flex-shrink: 0;
}

.list-content {
  flex: 1;
}
.list-content strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--color-text-main);
}
.list-content p {
  margin: 0;
  line-height: 1.6;
}

.fiscal-sublist {
  list-style-type: disc;
  padding-left: 1.25rem;
  margin-top: 0.5rem;
  color: var(--color-text-muted);
}
.fiscal-sublist li {
  margin-bottom: 0.25rem;
  display: list-item;
  align-items: baseline;
}

.fiscal-card__percent-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.fiscal-card__percent {
  min-width: 72px;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: #e3f2fd;
  color: #0c4a6e;
  font-weight: 700;
  text-align: center;
}

.fiscal-card__percent--alt {
  background: #fff3e0;
  color: #e65100;
}

.fiscal-card__note {
  margin: 0.7rem 0 0;
  font-size: 0.86rem;
  color: var(--color-text-muted);
}

/* Formulario socio */
.member-form {
  max-width: 840px;
  margin: 0 auto;
  background: #f9fafc;
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.member-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem 1.2rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
}

.form-field--full {
  grid-column: 1/-1;
}

.form-field label {
  font-weight: 500;
  color: var(--color-secondary);
}

.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 0.55rem 0.9rem;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  background: #ffffff;
}

.form-field textarea {
  border-radius: var(--radius-md);
  min-height: 90px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 1px rgba(47, 60, 93, 0.12);
}

/* Checkboxes */
.member-form__checkboxes {
  margin-top: 1.3rem;
  display: grid;
  gap: 0.5rem;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: var(--color-text-muted);
}

.checkbox input[type=checkbox] {
  margin-top: 0.1rem;
}

.checkbox a {
  color: var(--color-secondary);
  text-decoration: underline;
}

.member-form__actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}

.member-form__small {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Responsividad */
@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.1fr);
  }
  .hero-card {
    margin-top: 1.5rem;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .fiscal-two-cols {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 768px) {
  .header__inner {
    min-height: 64px;
  }
  .main-nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
    display: none;
  }
  .main-nav__list {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.7rem 1.5rem 1rem;
    gap: 0.6rem;
  }
  .main-nav--open {
    display: block;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .hero {
    padding-top: 2.1rem;
  }
  .member-form {
    padding: 1.4rem 1.1rem;
  }
  .member-form__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 480px) {
  .topbar__inner {
    justify-content: center;
  }
  .hero__title {
    font-size: 2rem;
  }
  .benefits-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* --- GRID DE CARACTERÍSTICAS / SERVICIOS --- */
.features-grid {
  display: grid;
  /* Crea columnas automáticas de mínimo 300px */
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.feature-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(18, 27, 53, 0.12);
  border-color: rgba(47, 60, 93, 0.1);
}

.feature-card__icon {
  width: 50px;
  height: 50px;
  background: #fff8e1; /* Fondo suave amarillo (acorde a tu branding) */
  color: var(--color-secondary); /* Icono oscuro */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.feature-card__icon ion-icon {
  font-size: 1.6rem;
}

.feature-card__title {
  font-size: 1.1rem;
  color: var(--color-secondary);
  margin: 0 0 0.8rem 0;
  font-weight: 700;
}

.feature-card__text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* --- GRID DE PROYECTOS (Cards con Imagen) --- */
.projects-grid {
  display: grid;
  /* Grid responsivo automático: mínimo 300px por tarjeta */
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.project-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden; /* Para que la imagen no se salga al hacer zoom */
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%; /* Igualar alturas en la fila */
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.project-card:hover .project-card__media img {
  transform: scale(1.05); /* Efecto zoom suave */
}

.project-card__media {
  position: relative;
  height: 200px; /* Altura fija para uniformidad */
  overflow: hidden;
}
.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--color-primary); /* Amarillo */
  color: var(--color-secondary); /* Azul oscuro */
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  text-transform: uppercase;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.project-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Ocupa el espacio restante */
}

.project-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin: 0 0 0.8rem;
}

.project-card__excerpt {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1; /* Empuja el botón al final */
}

.project-card__footer {
  margin-top: auto; /* Asegura que el botón quede abajo */
}

/* Botón pequeño para las tarjetas */
.btn--small {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* --- ESTILOS PÁGINA CONTACTO --- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 3fr 2fr; /* Formulario más ancho, Info más estrecha */
  gap: 2rem;
  align-items: start;
}
.contact-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, #fff0c4 0, transparent 50%);
  opacity: 0.7;
  pointer-events: none;
}
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr; /* Columna única en tablet/móvil */
  }
}

/* Ajuste específico para el formulario en esta página */
.contact-form-layout {
  margin: 0; /* Quitamos margin auto si lo tenía */
  max-width: 100%;
  border: 1px solid var(--color-border-soft);
}
.contact-form-layout::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom left, #fff0c4 0, transparent 50%);
  opacity: 0.7;
  pointer-events: none;
}

/* Tarjeta de Información Lateral */
.contact-info-card {
  background: var(--color-secondary); /* Fondo azul corporativo */
  color: #ffffff;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  /* Decoración de fondo sutil */
}
.contact-info-card::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  pointer-events: none;
}

.contact-info-card__title {
  font-size: 1.5rem;
  margin: 0 0 1rem;
  color: var(--color-primary); /* Amarillo */
}

.contact-info-card__text {
  color: #cbd5e1; /* Gris claro para texto sobre fondo oscuro */
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Lista de contacto con iconos */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-list a,
.contact-list span {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
}
.contact-list a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}
.contact-list strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.2rem;
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon ion-icon {
  font-size: 1.4rem;
  color: var(--color-primary);
}

/* Redes Sociales en la tarjeta */
.contact-socials {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-socials p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.social-icons {
  display: flex;
  gap: 1rem;
}
.social-icons a {
  font-size: 1.5rem;
  color: #ffffff;
  transition: transform 0.2s, color 0.2s;
}
.social-icons a:hover {
  color: var(--color-primary);
  transform: translateY(-3px);
}

/* --- ESTILOS MODAL --- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9999; /* Muy alto para tapar todo */
  display: flex;
  align-items: center;
  justify-content: center;
  /* ESTADO INICIAL (OCULTO) */
  opacity: 0;
  pointer-events: none; /* <--- ESTO ES EL CULPABLE DEL CURSOR */
  transition: opacity 0.3s ease;
  /* ESTADO VISIBLE (ACTIVO) */
  /* CAMBIO IMPORTANTE: Usamos .active para coincidir con tu JS */
}
.modal.active {
  opacity: 1;
  pointer-events: all; /* <--- ESTO REACTIVA EL RATÓN */
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: #ffffff;
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  border-radius: var(--radius-md);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  z-index: 10000; /* Por encima del overlay */
  /* Animación de entrada */
}
.modal.active .modal-content {
  transform: translateY(0);
}

/* Estilo para que el botón de cerrar tenga el cursor de mano */
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer; /* <--- Fuerza la manita */
  color: #64748b;
  z-index: 10; /* Asegura que esté encima del contenido */
}
.modal-close:hover {
  color: #0f172a;
}

/* --- MEJORA ESTILO MODAL CON LOGO --- */
.modal-header {
  display: flex;
  flex-direction: column; /* Apila los elementos verticalmente */
  align-items: center; /* Centra todo horizontalmente */
  justify-content: center;
  text-align: center;
  margin-bottom: 1rem;
  /* Estilo para el logo pequeño */
  /* Ajuste para el icono de estado (check/error) */
}
.modal-header .modal-logo {
  width: 60px; /* Tamaño "pequeñito" */
  height: auto;
  object-fit: contain;
  margin-bottom: 1rem; /* Separación con el icono de estado */
}
.modal-header .modal-icon {
  font-size: 2.5rem; /* Tamaño del icono */
  margin-bottom: 0.5rem;
}
.modal-header .modal-title {
  margin: 0;
}
.modal-header h3 {
  margin: 0 0 1rem;
  color: var(--color-secondary);
}

/* --- SECCIÓN DESTACADA (Highlight LUMINOSO) --- */
.section--highlight {
  /* Fondo Amarillo (Luminoso) */
  background-color: var(--color-primary);
  /* Si la variable falla, usa el código hex: #f8b400 */
  color: var(--color-secondary); /* Texto base oscuro (Azul marino) */
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0;
  /* Forzamos los colores de los textos hijos a OSCURO */
  /* Adaptación del botón dentro de esta sección */
  /* Si usas btn--primary (que es amarillo), aquí no se vería. */
  /* Lo forzamos a ser BLANCO o AZUL OSCURO */
  /* Decoración de fondo (ahora en blanco sutil para dar brillo) */
}
.section--highlight .section__header {
  margin-bottom: 0;
}
.section--highlight .section__eyebrow {
  color: #ffffff; /* Blanco para el texto pequeño queda elegante sobre amarillo */
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); /* Pequeña sombra para legibilidad */
  opacity: 1;
}
.section--highlight .section__title {
  color: var(--color-secondary); /* Azul oscuro para el título grande */
  margin-bottom: 2rem;
}
.section--highlight .btn {
  background-color: var(--color-secondary); /* Fondo Azul Oscuro */
  color: #ffffff; /* Texto Blanco */
  border: 2px solid var(--color-secondary);
}
.section--highlight .btn:hover {
  background-color: #ffffff; /* Fondo Blanco al pasar el mouse */
  color: var(--color-secondary); /* Texto Azul */
  border-color: #ffffff;
}
.section--highlight::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* --- PÁGINA DONACIONES --- */
/* --- PÁGINA DONACIONES --- */
.donation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 900px; /* Reducido un poco para que no se estiren tanto */
  margin: 0 auto;
}

.donation-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md, 12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%; /* Para igualar alturas */
  /* Estilos para los bloques de texto informativos */
}
.donation-card__header {
  margin-bottom: 1.5rem;
}
.donation-card__icon {
  font-size: 2.5rem; /* Icono un poco más contenido */
  color: var(--color-primary, #f8b400);
  margin-bottom: 0.75rem;
}
.donation-card--bizum .donation-card__icon {
  color: #00aebc;
}
.donation-card__title {
  font-size: 1.25rem; /* Tamaño de título estándar (H4) */
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--color-dark, #1f2937);
}
.donation-card__subtitle {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.donation-card__number {
  background: #f8f9fa;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-family: monospace; /* Fuente monoespaciada para números */
  font-size: 1.1rem; /* Tamaño legible pero no gigante */
  font-weight: 600;
  color: #111827;
  margin-bottom: 1.5rem;
  border: 1px solid #e5e7eb;
  letter-spacing: 0.5px;
}
.donation-card__body {
  font-size: 0.95rem; /* Texto base del cuerpo */
  color: #4b5563;
  line-height: 1.6;
  margin-top: auto; /* Empuja el contenido hacia abajo si hay espacio */
}
.donation-card__notice {
  margin-bottom: 1rem;
}
.donation-card__notice strong {
  display: block;
  color: #374151;
  margin-bottom: 0.25rem;
}
.donation-card__notice p {
  margin: 0;
  font-size: 0.9rem; /* Un pelín más pequeño para detalles */
}
.donation-card__divider {
  margin: 1.5rem 0;
  border: 0;
  border-top: 1px solid #e5e7eb;
}
.donation-card__label {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #374151;
}
.donation-card__steps {
  text-align: left;
  margin: 0;
  padding-left: 1.5rem;
}
.donation-card__steps li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.donation-card__steps li:last-child {
  margin-bottom: 0;
}

/* --- CLASES UTILITARIAS --- */
.hero-image-container {
  border-radius: var(--radius-md, 12px);
  overflow: hidden;
  height: 100%;
  min-height: 300px;
}

.hero-image-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-small {
  font-size: 0.85rem;
  color: #6b7280;
}

.mt-1 {
  margin-top: 1rem;
}

.fiscal-card--centered {
  text-align: center;
}

.fiscal-card__title--mb {
  margin-bottom: 1rem;
}

.icon-inline {
  vertical-align: middle;
  margin-right: 0.5rem;
  color: var(--color-primary, #f8b400);
}

.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, 1.5vw + 0.5rem, 2.5rem);
  font-family: "Lato", 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 {
  margin-bottom: 1.5rem;
}
.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: "Lato", sans-serif;
  font-size: 0.85rem !important;
  font-weight: 600;
  text-transform: uppercase;
  color: #343a40;
  background-color: rgb(145, 217, 255);
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  padding: 10px;
  border-radius: 5px;
  transform: skew(-20deg); /* inclinación “negativa” del contenedor */
}

.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: 0.7rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  box-shadow: 0 10px 18px rgba(255, 213, 79, 0.25);
  /* 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: #ffe100;
  color: #fff;
  border: none;
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  box-shadow: 0 10px 18px rgba(255, 213, 79, 0.25);
  /* 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: #fff9cc;
  transition: 0.5s ease;
  z-index: -1;
}
.btn-primary:hover {
  /* Ajuste sutil en hover, mezclando la base */
  background-color: rgba(255, 225, 0, 0.5);
}
.btn-primary:active {
  transform: scale(0.98);
}
.btn-primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 225, 0, 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: 0.7rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  box-shadow: 0 10px 18px rgba(255, 213, 79, 0.25);
  /* 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: 0.7rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  box-shadow: 0 10px 18px rgba(255, 213, 79, 0.25);
  /* 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: 0.7rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  box-shadow: 0 10px 18px rgba(255, 213, 79, 0.25);
  /* 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: 0.7rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  box-shadow: 0 10px 18px rgba(255, 213, 79, 0.25);
  /* 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: 0.7rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  box-shadow: 0 10px 18px rgba(255, 213, 79, 0.25);
  /* 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: 0.7rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  box-shadow: 0 10px 18px rgba(255, 213, 79, 0.25);
  /* 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: 0.7rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  box-shadow: 0 10px 18px rgba(255, 213, 79, 0.25);
  /* 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: #ffe100;
  font-size: 1rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
  max-width: max-content;
  border: 2px solid #ffe100;
  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;
}

.main-container {
  width: 100vw !important;
  min-width: 100vw !important;
  margin: 0 auto;
  padding: 0;
  border: 1px solid rgba(255, 0, 0, 0.105);
  padding-top: 7vh;
}
.main-container-sm {
  width: 100vw !important;
  min-width: 100vw !important;
  margin: 0 auto;
  padding: 0;
  border: 1px solid rgba(255, 0, 0, 0.105);
}
.main-container-md {
  width: 100vw !important;
  min-width: 100vw !important;
  margin: 0 auto;
  padding: 0;
  border: 1px solid rgba(255, 0, 0, 0.105);
}
.main-container-lg {
  width: 100vw !important;
  min-width: 100vw !important;
  margin: 0 auto;
  padding: 0;
  border: 1px solid rgba(255, 0, 0, 0.105);
}
.main-container-xl {
  width: 100vw !important;
  min-width: 100vw !important;
  margin: 0 auto;
  padding: 0;
  border: 1px solid rgba(255, 0, 0, 0.105);
}
.main-container-xxl {
  width: 100vw !important;
  min-width: 100vw !important;
  margin: 0 auto;
  padding: 0;
  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 #ffe100; /* 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 #ffe100; /* 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 #ffe100; /* 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 #ffe100; /* 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(222, 44%, 13%);
  z-index: 4;
  font-family: "Poppins", sans-serif;
}
.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 .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;
}

.ticker {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  width: 100%;
  background: #111827;
  color: #e8e8e8;
  font-size: clamp(0.85rem, 0.9vw, 1rem);
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  letter-spacing: 1px;
  line-height: 1;
  margin: 0;
  z-index: 1;
}
.ticker a {
  color: #e8e8e8;
  text-decoration: underline;
}
.ticker.scrolled {
  visibility: hidden;
}

.ticker__mask {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding: 0.5rem 1rem;
  will-change: transform;
  animation: ticker-scroll linear infinite;
}

.ticker__track:hover,
.ticker__track:focus-within {
  animation-play-state: paused;
}

.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.ticker__dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #ffd166;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* Accesibilidad: respeta usuarios con reduce motion */
@media (prefers-reduced-motion: reduce) {
  .ticker__track {
    animation: none !important;
  }
}
/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-mark {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-secondary);
  /* border: 1px solid var(--color-secondary); */
}

.brand-text__small {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.1;
}

.brand-text__main {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-secondary);
  line-height: 1.2;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  text-align: center;
  padding: 4rem 2rem;
}
.features .feature {
  flex: 1 1 300px;
  max-width: 400px;
}
.features .feature .title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #343a40;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 1rem;
}
.features .feature .text {
  font-size: 1rem;
  color: #6c757d;
}

@media (min-width: 768px) {
  .features {
    align-items: center;
  }
  .feature {
    max-width: 90%;
  }
}
.footer {
  background: #ffa600;
  color: #ffffff;
  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: #888;
}
.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);
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  background: #111827;
  color: #e5e7eb;
  font-size: 0.85rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  padding: 2.4rem 1.5rem 1.5rem;
}

.footer__main-title {
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #f9fafb;
  text-align: center;
}

.footer__main-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
.footer__main-logo img {
  height: 55px;
  transition: height 0.3s;
}

.footer__title {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #f9fafb;
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.3rem;
}

.footer__list a {
  color: #9ca3af;
  text-decoration: none;
}

.footer__list a:hover {
  color: #e5e7eb;
}

.footer__bottom {
  border-top: 1px solid #1f2937;
  padding: 0.8rem 0;
}

.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  align-items: center;
  justify-content: space-between;
}

.footer__legal {
  margin: 0;
  color: #9ca3af;
}

.footer__legal-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
}

.footer__legal-links a {
  color: #9ca3af;
  text-decoration: none;
}

.footer__legal-links a:hover {
  color: #e5e7eb;
}

/* Estilos para los iconos sociales del Footer */
.footer__socials {
  display: flex;
  gap: 1rem; /* Separación entre iconos */
  margin-top: 1.5rem; /* Separación con la lista de textos de arriba */
}
.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  /* Estilo base: círculo con fondo semitransparente */
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff !important;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  /* Efecto Hover */
}
.footer__socials a:hover {
  background: var(--color-primary, #ffd54f); /* Amarillo corporativo */
  color: #111827; /* Texto oscuro */
  transform: translateY(-3px); /* Pequeña elevación */
}

/* Ajuste Responsive opcional: Si en móvil centras el footer, centra los iconos */
@media (max-width: 768px) {
  .footer__col {
    /* Si tus columnas se centran en móvil, descomenta esto: */
    /* text-align: center; */
    /* align-items: center; */
  }
  .footer__socials {
    /* justify-content: center; */
  }
}
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 {
  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);
}
.mosaic .hero-title {
  font-size: 2rem;
  color: #221900;
}
.mosaic .hero-subtitle {
  text-transform: uppercase;
  color: #ffa600;
  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: 30px;
  left: 0;
  width: 100%;
  height: 90px;
  background: white;
  background: rgba(255, 255, 255, 0.95);
  color: #343a40;
  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);
  font-family: "Poppins", sans-serif;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  overflow: visible !important;
  z-index: 1100;
}
.navbar .logo img {
  height: 50px;
  width: auto;
  margin-bottom: 0;
}
.navbar.scrolled {
  box-sizing: border-box;
  position: fixed;
  top: 30px;
  left: 0;
  width: 100%;
  height: 70px;
  background: white;
  background: rgb(255, 255, 255);
  color: #343a40;
  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);
  font-family: "Poppins", sans-serif;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  top: 0;
}
.navbar.scrolled .logo img {
  height: 50px;
  width: auto;
  margin-bottom: 0;
}
.navbar.scrolled .header__brand img {
  height: 50px;
}
.navbar .header__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #343a40;
}
.navbar .header__brand .brand-mark img {
  width: 65px;
  height: auto;
  transition: height 0.3s;
}
.navbar .header__brand .brand-mark img img {
  width: 100%;
  height: auto;
}
.navbar .header__brand .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.navbar .header__brand .brand-text__small {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.navbar .header__brand .brand-text__main {
  font-weight: 700;
  font-size: 1.1rem;
}
.navbar.scrolled .header__brand .brand-mark img {
  height: 50px;
}
.navbar .nav-links {
  display: none !important;
}
.navbar .nav-links ul {
  display: flex;
  list-style: none !important;
  align-items: center;
  font-size: 0.95rem;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .navbar .nav-links {
    display: flex !important;
  }
  .navbar .nav-links a {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
    transition: color 0.3s;
  }
  .navbar .nav-links a:hover {
    color: var(--color-primary, #f8b400);
  }
}
.navbar .hamburger {
  font-size: 2rem;
  background: none;
  border: none;
  color: #343a40;
  cursor: pointer;
  display: block;
  position: relative;
  width: 30px;
  height: 24px;
  z-index: 1101;
  padding: 0;
}
.navbar .hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #343a40;
  border-radius: 3px;
  position: absolute;
  left: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.navbar .hamburger span:nth-child(1) {
  top: 0;
}
.navbar .hamburger span:nth-child(2) {
  top: 10px;
}
.navbar .hamburger span:nth-child(3) {
  top: 20px;
}
.navbar .hamburger.is-active {
  opacity: 0;
  pointer-events: none;
}

/* -------------------------------------------------------------------------- */
/* 📌 MEGA MENU OVERLAY (NUEVO ESTILO)                                       */
/* -------------------------------------------------------------------------- */
.menu-overlay {
  position: fixed;
  inset: 0; /* Top, Right, Bottom, Left: 0 */
  width: 100%;
  height: 100vh;
  background-color: #111827; /* Fondo oscuro igual al footer */
  color: #f9fafb;
  z-index: 2000; /* Por encima de la navbar */
  /* Estado inicial: Oculto */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  /* Scroll interno si la pantalla es pequeña */
  overflow-y: auto;
  padding: 0;
  /* Estado Activo (JS toggle class) */
  /* Contenedor interno */
  /* Botón Cerrar (X) */
  /* Cabecera del Menú (Logo) */
  /* Grid de Columnas */
  /* Estilos de Columna */
  /* Redes Sociales */
  /* Footer del Menú */
}
.menu-overlay.active, .menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.menu-overlay__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  position: relative;
}
.menu-overlay__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  transition: transform 0.2s, color 0.2s;
  z-index: 2010;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-overlay__close:hover {
  transform: rotate(90deg);
  color: var(--color-primary, #ffd54f);
}
.menu-overlay__header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.menu-overlay__header .menu-overlay__logo {
  height: 60px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}
.menu-overlay__header .menu-overlay__title {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #9ca3af;
  font-weight: 300;
  margin: 0;
}
.menu-overlay__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (max-width: 992px) {
  .menu-overlay__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
}
@media (max-width: 576px) {
  .menu-overlay__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
}
.menu-overlay .menu-col__title {
  font-size: 1rem;
  text-transform: uppercase;
  color: var(#ffd54f) !important; /* Amarillo corporativo */
  margin-bottom: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.menu-overlay .menu-col__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.menu-overlay .menu-col__list li a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}
.menu-overlay .menu-col__list li a:hover {
  color: #fff;
  padding-left: 5px;
}
.menu-overlay .menu-col__list li a.highlight {
  color: #ffd54f !important;
  font-weight: 600;
}
.menu-overlay .menu-socials {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}
@media (max-width: 576px) {
  .menu-overlay .menu-socials {
    justify-content: center;
  }
}
.menu-overlay .menu-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s;
}
.menu-overlay .menu-socials a:hover {
  background: var(--color-primary, #ffd54f);
  color: #111827;
  transform: translateY(-3px);
}
.menu-overlay__footer {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  color: #6b7280;
  font-size: 0.85rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.menu-overlay__footer a {
  color: inherit;
  text-decoration: none;
}
.menu-overlay__footer a:hover {
  color: #fff;
}

/* -------------------------------------------------------------------------- */
/* 📌 SUBMENÚS (DESKTOP HOVER)                                               */
/* -------------------------------------------------------------------------- */
.nav-links ul li {
  position: relative !important;
}

.nav-links .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  /* Estilo visual */
  background-color: #ffffff;
  border-top: 3px solid var(--color-primary, #f8b400);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 8px 8px;
  padding: 1rem 0;
  /* Animación */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 5000;
  /* Dimensiones */
  min-width: 240px;
  width: max-content;
}
.nav-links .submenu.active, .menu-item-has-submenu:hover .nav-links .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-links .submenu ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin: 0;
  list-style: none;
}
.nav-links .submenu ul li {
  width: 100%;
  padding: 0;
}
.nav-links .submenu ul li a {
  display: block;
  padding: 0.7rem 1.5rem;
  color: #343a40;
  font-size: 0.9rem;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border-radius: 999px;
  margin: 0 0.5rem;
}
.nav-links .submenu ul li a:hover {
  background-color: #ffd54f;
  padding-left: 1.8rem;
}

@media (max-width: 960px) {
  .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: #fff;
  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;
  line-height: 1.55;
}
.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;
  /* ---------- Markdown body ---------- */
}
.noticia-detalle .container {
  max-width: 800px;
  margin: 0 auto;
}
.noticia-detalle .noticia-titulo {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}
.noticia-detalle .noticia-meta {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.noticia-detalle .noticia-cuerpo {
  font-size: clamp(1rem, 1vw + 0.5rem, 1.35rem);
  line-height: 1.7;
  /* Párrafos */
  /* NEW — Encabezados generados por Markdown */
  /* NEW — Listas */
  /* NEW — Enlaces */
  /* NEW — Citas */
  /* NEW — Código inline y bloques */
  /* NEW — Imágenes incrustadas */
}
.noticia-detalle .noticia-cuerpo p {
  margin-bottom: 1.4em;
}
.noticia-detalle .noticia-cuerpo h2,
.noticia-detalle .noticia-cuerpo h3,
.noticia-detalle .noticia-cuerpo h4,
.noticia-detalle .noticia-cuerpo h5,
.noticia-detalle .noticia-cuerpo h6 {
  margin: 2.2rem 0 1rem;
  line-height: 1.3;
  font-weight: 700;
  color: #333;
}
.noticia-detalle .noticia-cuerpo h2 {
  font-size: clamp(1.6rem, 1.3vw + 1rem, 2rem);
}
.noticia-detalle .noticia-cuerpo h3 {
  font-size: clamp(1.4rem, 1vw + 0.8rem, 1.6rem);
}
.noticia-detalle .noticia-cuerpo h4 {
  font-size: clamp(1.2rem, 0.9vw + 0.6rem, 1.3rem);
}
.noticia-detalle .noticia-cuerpo ul,
.noticia-detalle .noticia-cuerpo ol {
  margin: 0 0 1.4em 1.4em;
  padding-left: 0;
}
.noticia-detalle .noticia-cuerpo ul li,
.noticia-detalle .noticia-cuerpo ol li {
  margin-bottom: 0.6em;
  line-height: 1.6;
}
.noticia-detalle .noticia-cuerpo a {
  color: #e53935;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
  margin-bottom: 1rem;
}
.noticia-detalle .noticia-cuerpo a:hover {
  color: rgb(204.6578947368, 30.3947368421, 26.3421052632);
}
.noticia-detalle .noticia-cuerpo blockquote {
  margin: 1.8rem 0;
  padding: 1rem 1.2rem;
  border-left: 4px solid #e53935;
  background: #fff6f6;
  font-style: italic;
  color: #555;
}
.noticia-detalle .noticia-cuerpo code {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
  background: #f3f3f3;
  padding: 0.15em 0.4em;
  border-radius: 4px;
  font-size: 0.95em;
}
.noticia-detalle .noticia-cuerpo pre {
  overflow-x: auto;
  padding: 1rem;
  background: #272822;
  color: #f8f8f2;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.5;
}
.noticia-detalle .noticia-cuerpo pre code {
  background: none;
  padding: 0;
  color: inherit;
}
.noticia-detalle .noticia-cuerpo img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 2rem auto;
  border-radius: 0.75rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}
.noticia-detalle .volver-noticias {
  display: inline-block;
  margin-top: 2rem;
  color: #e53935;
  font-weight: bold;
  text-decoration: none;
}
.noticia-detalle .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;
}

/* ---------- Formulario crear noticia ---------- */
.crear-noticia {
  padding: 2rem 0;
  background-color: #f9f9f9;
}
.crear-noticia .container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  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: #fff;
  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;
}

.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;
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0; /* ocupa toda la ventana */
  background: rgba(0, 0, 0, 0.8); /* fondo oscuro */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
  backdrop-filter: blur(2px); /* opcional, efecto de desenfoque */
}

.lightbox[hidden] {
  display: none;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain; /* nunca recorta */
  border-radius: 0.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  user-select: none;
}

/* --------------------------------------------------
   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;
}

.cart,
.checkout,
.thanks {
  padding: clamp(0.75rem, 1.2vw + 0.75rem, 2rem);
}

.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  background: #0d6efd;
  color: #fff;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}
.btn--ghost {
  background: #eef3ff;
  color: #0d6efd;
}
.btn--primary {
  background: #0d6efd;
}

.ta-right {
  text-align: right;
}

.ta-center {
  text-align: center;
}

.cart__title {
  margin-bottom: 1rem;
}

.cart__empty {
  margin: 1rem 0;
}

.cart__table {
  display: grid;
  gap: 0.75rem;
}

.cart__row {
  display: grid;
  grid-template-columns: 1fr 120px 120px 120px 40px;
  gap: 0.5rem;
  align-items: center;
}

.cart__row--head {
  font-weight: 600;
}

.cart__prod {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  min-width: 0;
} /* <- permite wrap */
.cart__prod img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.cart__name {
  font-weight: 600;
  white-space: normal;
  word-break: break-word;
}

.cart__stock {
  color: #666;
}
.cart__stock--out {
  color: #b00020;
}

.cart__qty {
  width: 80px;
  text-align: center;
}

.cart__qtyctrl {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.cart__btnqty {
  min-width: 2rem;
  height: 2rem;
  border: 1px solid #cfd6e4;
  border-radius: 0.5rem;
  background: #fff;
  cursor: pointer;
  line-height: 1;
  font-size: 1rem;
  padding: 0 0.25rem;
}

.cart__qtyval {
  min-width: 2ch;
  text-align: center;
  font-weight: 600;
  display: inline-block;
}

.cart__remove {
  background: none;
  border: 0;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.cart__actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
}

.cart__summary {
  margin-top: 1.5rem;
  max-width: 420px;
  margin-left: auto;
  display: grid;
  gap: 0.5rem;
}
.cart__summary .cart__line,
.cart__summary .cart__total {
  display: flex;
  justify-content: space-between;
}
.cart__summary .cart__total {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 0.5rem;
}
.cart__summary .cart__checkout {
  margin-top: 0.75rem;
  text-align: center;
}
.cart__summary .cart__back-float {
  position: fixed;
  left: clamp(0.5rem, 2vw, 1rem);
  bottom: clamp(0.5rem, 2vw, 1rem);
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.checkout__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
}

.field {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}
.field input,
.field select {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
}

.field--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.checkout__summary {
  border: 1px solid #eee;
  padding: 1rem;
  border-radius: 0.75rem;
}
.checkout__summary .summary__list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem 0;
  display: grid;
  gap: 0.25rem;
}
.checkout__summary .summary__item,
.checkout__summary .summary__line,
.checkout__summary .summary__total {
  display: flex;
  justify-content: space-between;
}
.checkout__summary .summary__total {
  font-weight: 700;
  margin-top: 0.25rem;
}
.checkout__summary .summary__edit {
  display: inline-block;
  margin-top: 0.75rem;
}

.alert {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: #fff4f4;
  color: #a40000;
  border: 1px solid #ffdede;
}

@media (max-width: 860px) {
  .cart__row {
    grid-template-columns: 1fr 90px 100px 100px 32px;
  }
  .checkout__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .cart__back-float {
    left: 0.5rem;
    bottom: 0.5rem;
  }
}
@media (max-width: 680px) {
  .cart__row--head {
    display: none;
  }
  .cart__row {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
    align-items: start;
    padding: 0.5rem 0.25rem;
    border-radius: 0.5rem;
    background: #f8f9fb;
  }
  /* 1) Producto a ancho completo */
  .cart__row > :nth-child(1) {
    grid-column: 1/-1;
  }
  /* 2) Precio y cantidad en la fila 2 */
  .cart__row > :nth-child(2) {
    grid-column: 1;
  }
  .cart__row > :nth-child(3) {
    grid-column: 2;
    justify-self: end;
  }
  /* 3) Subtotal y eliminar en la fila 3 */
  .cart__row > :nth-child(4) {
    grid-column: 1;
    font-weight: 600;
  }
  .cart__row > :nth-child(5) {
    grid-column: 2;
    justify-self: end;
  }
  .cart__prod img {
    width: 56px;
    height: 56px;
  }
  .cart__qty {
    width: 72px;
  }
  .cart__btnqty {
    min-width: 2.25rem;
    height: 2.25rem;
  }
}
.payinfo {
  margin-top: 0.75rem;
}

.payinfo__box {
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  border-radius: 0.75rem;
  padding: 1rem;
}

.payinfo__title {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.payinfo__line {
  color: #666;
  margin-bottom: 0.25rem;
}

.payinfo__iban {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  letter-spacing: 0.06em;
  font-weight: 700;
  user-select: all;
}

.payinfo__small {
  font-size: 0.875rem;
  color: #555;
  margin-top: 0.25rem;
}

.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: cover;
  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;
  border-radius: 15px;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  border: 1px solid #ffcc00;
  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;
  }
}
.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=style.css.map */
