/* Importar Google Font */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;800&display=swap");

/* Variables de color */
:root {
  --coopes-light-green: #8bc53f;
  --coopes-dark-green: #056839;
  --coopes-dark-grey: #545454;
  --coopes-light-grey: #f8f9fa;
  --coopes-text: #333;
  --coopes-nav-link: #444;
  --coopes-indicator-inactive: #e0e0e0;
  --coopes-indicator-active: #5b2c84;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--coopes-text);
  line-height: 1.6;
}

/* ============================================= */
/* =========      ESTILOS NAVBAR       ========= */
/* ============================================= */
.navbar {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  transition: box-shadow 0.3s ease; /* Añadido para scroll */
}
.navbar-brand img {
  max-height: 50px;
}
.navbar .nav-link {
  color: var(--coopes-nav-link);
  font-weight: 500;
  margin: 0 0.75rem;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 5px;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--coopes-light-green);
  transition: width 0.3s ease;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--coopes-light-green);
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 70%;
}
.navbar .dropdown-menu {
  border: none;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  font-size: 0.95rem;
}
.navbar .dropdown-item {
  padding: 0.5rem 1rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background-color: var(--coopes-light-green);
  color: white;
}
.nav-actions .calculator-icon {
  color: var(--coopes-dark-green);
  font-size: 1.3rem;
  transition: color 0.3s ease;
}
.nav-actions .calculator-icon:hover {
  color: var(--coopes-light-green);
}
.btn-associate {
  background-color: var(--coopes-light-green);
  border-color: var(--coopes-light-green);
  color: white;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.btn-associate:hover {
  background-color: #7ab430;
  border-color: #7ab430;
  color: white;
}
.btn-loan {
  background-color: var(--coopes-dark-green);
  border-color: var(--coopes-dark-green);
  color: white;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.btn-loan:hover {
  background-color: #115730;
  border-color: #115730;
  color: white;
}

/* Efecto Navbar Scrolled */
.navbar-scrolled {
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1) !important; /* Sobreescribir shadow inicial */
}

/* ============================================= */
/* =========     ESTILOS HERO SLIDER   ========= */
/* ============================================= */
.hero-slider-section {
  background-color: white;
  overflow: hidden;
  min-height: calc(80vh - 80px);
  display: flex;
  align-items: center;
}
.text-primary-green {
  color: var(--coopes-light-green) !important;
} /* Importante para sobrescribir Bootstrap */
.hero-text-content,
.hero-image-content {
  min-height: 300px;
}
.hero-slide-text,
.hero-slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-slide-image {
  align-items: center;
}
.hero-slide-text.active,
.hero-slide-image.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}
.hero-slide-text.active .animate-text {
  animation: fadeInSlideUp 0.9s ease-out forwards;
  opacity: 0;
}
.hero-slide-text.active h1.animate-text {
  animation-delay: 0.2s;
}
.hero-slide-text.active p.animate-text {
  animation-delay: 0.4s;
}
.hero-slide-text.active a.animate-text {
  animation-delay: 0.6s;
}
@keyframes fadeInSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#slider-indicators .indicator {
  height: 4px;
  width: 50px;
  background-color: var(--coopes-indicator-inactive);
  margin-right: 8px;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.4s ease;
}
#slider-indicators .indicator.active {
  background-color: var(--coopes-indicator-active);
}

/* ============================================= */
/* ========= ESTILOS "SOBRE NOSOTROS"  ========= */
/* ============================================= */
.about-us-section {
  background-color: white;
}
.about-us-section h2.display-6 {
  line-height: 1.4;
}
.about-us-section h3 {
  font-size: 1.6rem;
  line-height: 1.5;
}
.about-us-section .text-secondary {
  color: #6c757d !important;
  font-size: 0.95rem;
  line-height: 1.7;
}
.about-image-wrapper {
  position: relative;
  padding: 12px;
}
.about-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border: 6px solid var(--coopes-light-green);
  border-radius: 10px;
  z-index: 0;
}
.about-image-wrapper img {
  position: relative;
  z-index: 1;
  border-radius: 6px;
}

/* ============================================= */
/* =========   ESTILOS SECCIÓN SERVICIOS ========= */
/* ============================================= */
/* ============================================= */
/* =========   ESTILOS SECCIÓN SERVICIOS ========= */
/* ============================================= */
.services-section {
  background-color: var(--coopes-dark-green);
  color: white; /* Color de texto por defecto para la sección */
}

.services-section .section-title {
  font-size: 2.5rem;
}

.services-section .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
}

/* Contenedor base para cada item (imagen o tarjeta) */
.service-item {
  border-radius: 8px;
  overflow: hidden; /* Asegura bordes redondeados en imagen */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: white; /* Fondo blanco base AHORA para todos los items */
  /* Necesario para que la imagen tenga fondo blanco si no carga */
}

/* Efecto hover general (lift y sombra) para TODOS los items */
.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Contenedor específico de la imagen (si necesitas estilos únicos) */
.service-image-container {
  padding: 0; /* Remover padding si se aplica a service-item */
  /* La imagen usará object-fit: cover */
}
.service-image-container img {
  display: block; /* Evita espacio extra debajo de la imagen */
}

/* Estilos específicos para las TARJETAS de servicio */
.service-card {
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--coopes-light-green); /* Borde verde claro */
  color: var(--coopes-text); /* Texto oscuro por defecto */
  background-color: white; /* Fondo blanco explícito para tarjeta */
  height: 100%; /* Para igualar alturas */
  /* Transiciones para el cambio de color */
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Iconos dentro de las tarjetas */
.service-card .service-icon {
  color: var(--coopes-light-green); /* Verde claro por defecto */
  font-size: 2.8rem;
  margin-bottom: 1rem;
  line-height: 1;
  transition: color 0.3s ease; /* Transición solo para el color */
}

/* Títulos dentro de las tarjetas */
.service-card .service-title {
  color: var(--coopes-light-green); /* Verde claro por defecto */
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 0;
  transition: color 0.3s ease; /* Transición solo para el color */
}

/* --- EFECTO HOVER ESPECÍFICO PARA LAS TARJETAS --- */
.service-card:hover {
  background-color: var(--coopes-dark-green); /* Cambia a verde oscuro */
  border-color: var(--coopes-dark-green); /* Borde coincide con fondo */
  color: white; /* Color de texto general cambia a blanco */
}

/* Cambiar color de icono y título explícitamente a blanco en hover */
.service-card:hover .service-icon,
.service-card:hover .service-title {
  color: white;
}

/* ============================================= */
/* ========= ESTILOS BOTÓN WHATSAPP    ========= */
/* ============================================= */
.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 25px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease-in-out;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}

/* ============================================= */
/* =========    AJUSTES RESPONSIVE     ========= */
/* ============================================= */
@media (max-width: 991.98px) {
  .navbar-nav {
    margin-top: 1rem;
    align-items: center;
  }
  .nav-actions {
    margin-top: 1rem;
    justify-content: center;
  }
  .hero-slider-section {
    text-align: center;
  }
  .text-column {
    order: 2;
    margin-top: 2rem;
  }
  .image-column {
    order: 1;
  }
  #slider-indicators {
    justify-content: center;
  }
  .hero-slide-text {
    justify-content: flex-start;
    text-align: center;
  }
  .hero-slide-text h1 {
    font-size: 2.8rem;
  }
  /* Responsive About Us */
  .about-us-section {
    text-align: center;
  }
  .about-us-section .row.align-items-center > div {
    text-align: center;
  }
  .about-image-wrapper {
    margin-top: 2rem;
    display: inline-block;
    max-width: 80%;
  }
  /* Responsive Services */
  .services-section .row.g-4 > div {
    /* Asegurar que en md las columnas mantengan algo de altura mínima si es necesario */
  }
  .service-card {
    padding: 1.5rem 1rem;
  } /* Menos padding en pantallas medianas */
}
/* --- Estilos para el H1 del Hero Slider --- */
.hero-slide-text h1.hero-main-title {
  /* O usa: .hero-slide-text h1 */
  font-weight: 800; /* Asegurar grosor si display-2 no lo da */

  /* >>> TAMAÑO BASE (MÓVIL) <<< - Ajusta este valor como necesites */
  font-size: 3.5rem; /* Un tamaño grande pero razonable para móvil */
  line-height: 1.1; /* Ajustar interlineado para móvil */
  margin-bottom: 1rem; /* Espacio debajo */
}

/* Animación (ya la tenías, asegúrate que sigue aplicando) */
.hero-slide-text.active .animate-text {
  /* ... */
}
.hero-slide-text.active h1.animate-text {
  /* ... */
}
/* ... etc ... */

/* Indicadores (sin cambios) */
#slider-indicators .indicator {
  /* ... */
}
#slider-indicators .indicator.active {
  /* ... */
}

/* >>> MEDIA QUERY PARA PANTALLAS GRANDES (lg y mayores) <<< */
@media (min-width: 992px) {
  .hero-slide-text h1.hero-main-title {
    /* O usa: .hero-slide-text h1 */
    /* >>> TAMAÑO PARA DESKTOP <<< */
    font-size: 200px; /* O 200px si realmente lo quieres así de grande */
    /* IMPORTANTE: Ajustar interlineado para fuentes muy grandes */
    line-height: 0.9; /* Menor que 1 para juntar líneas */
    margin-bottom: 1.5rem; /* Más espacio debajo en desktop */
    z-index: 1000;
  }

  /* Opcional: Aumentar tamaño de lead text en desktop */
  .hero-slide-text .lead {
    font-size: 1.25rem; /* Tamaño estándar de lead */
  }
}

@media (max-width: 767.98px) {
  .hero-slide-text h1 {
    font-size: 2.2rem;
  }
  .hero-slide-text .lead {
    font-size: 1rem;
  }
  .hero-slide-text .btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  .whatsapp-float {
    width: 45px;
    height: 45px;
    font-size: 22px;
    bottom: 15px;
    right: 15px;
  }
  #slider-indicators .indicator {
    width: 40px;
    margin-right: 5px;
  }
  /* Responsive About Us */
  .about-us-section h2.display-6 {
    font-size: 1.8rem;
  }
  .about-us-section h3 {
    font-size: 1.4rem;
  }
  .about-image-wrapper {
    max-width: 90%;
  }
  /* Responsive Services */
  .services-section .section-title {
    font-size: 2rem;
  }
  .services-section .section-subtitle {
    font-size: 1rem;
  }
  .service-card i {
    font-size: 2.5rem;
  }
  .service-card h5 {
    font-size: 0.9rem;
  }
}

/* ======================================================= */
/* ========= ESTILOS SECCIÓN BLOG/PARTNERS/PROMO ========= */
/* ======================================================= */
.blog-partners-promo-section {
  background-color: var(--coopes-light-grey); /* Fondo gris claro */
}

/* Estilos generales para títulos dentro de esta sección */
.section-title-dark {
  /* Para el título "Blog" */
  font-size: 2.5rem; /* Ajusta tamaño */
}
.section-subtitle-dark {
  /* Para el subtítulo del blog */
  color: var(--coopes-dark-grey);
  font-size: 1.1rem;
}
.section-subtitle-light {
  /* Para "Socios Comerciales" (más claro) */
  color: #a0a0a0; /* Un gris más claro */
  font-weight: 500 !important;
  font-size: 1.3rem;
}
.section-subtitle-medium {
  /* Para "Promociones" */
  font-size: 1.5rem;
}

/* --- Slider Socios Comerciales --- */
.partners-swiper {
  padding-bottom: 50px; /* Espacio para la paginación */
}

.partners-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.7; /* Ligeramente opaco por defecto */
  transition: opacity 0.3s ease;
}

.partners-swiper .swiper-slide:hover {
  opacity: 1; /* Opacidad completa al pasar el mouse */
}

.partners-swiper .swiper-slide img {
  max-height: 80px; /* Ajusta altura máxima de logos */
  width: auto;
  max-width: 100%;
  filter: grayscale(80%); /* Escala de grises por defecto */
  transition: filter 0.3s ease;
}

.partners-swiper .swiper-slide:hover img {
  filter: grayscale(0%); /* Color completo al pasar el mouse */
}

/* --- Slider Promociones --- */
.promotions-swiper {
  padding-bottom: 50px; /* Espacio para la paginación */
}

.promotions-swiper .swiper-slide {
  /* La imagen debe tener borde redondeado y quizás sombra */
}

.promotions-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.promotions-swiper .swiper-slide a:hover img {
  transform: scale(1.03);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* --- Estilos Comunes para Paginación y Navegación Swiper --- */

/* Sobreescribir variables de Swiper (opcional, pero recomendado para consistencia) */
:root {
  --swiper-theme-color: var(
    --coopes-dark-green
  ); /* Color principal para paginación activa/navegación */
  --swiper-navigation-color: #888; /* Color de flechas (gris) */
  --swiper-navigation-size: 28px; /* Tamaño de flechas */
  --swiper-pagination-color: var(
    --coopes-dark-green
  ); /* Color de paginación activa */
  --swiper-pagination-bullet-inactive-color: #ccc; /* Color de paginación inactiva */
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-horizontal-gap: 4px;
}

/* Posicionar paginación */
.swiper-pagination {
  bottom: 10px !important; /* Ajusta la posición vertical */
}

/* Estilos específicos si las variables no son suficientes */
.swiper-button-next,
.swiper-button-prev {
  /* Puedes añadir más estilos aquí si es necesario */
  /* Ejemplo: background-color: rgba(255,255,255,0.7); border-radius: 50%; padding: 5px; */
}
.swiper-button-next::after,
.swiper-button-prev::after {
  /* Asegura que el tamaño de la fuente controle el icono */
  font-size: var(--swiper-navigation-size) !important;
  font-weight: 900; /* Hacer flechas más gruesas si es necesario */
}

/* Ajustes específicos para cada slider si tienen botones/paginación diferentes */
.partners-pagination,
.promotions-pagination {
  /* Estilos compartidos o específicos */
}
.partners-button-next,
.partners-button-prev,
.promotions-button-next,
.promotions-button-prev {
  /* Estilos compartidos o específicos */
}

/* ======================================================= */
/* =========        FIN ESTILOS BLOG/ETC         ========= */
/* ======================================================= */

/* ======================================================= */
/* ========= ESTILOS SECCIÓN BLOG/PARTNERS/PROMO ========= */
/* ======================================================= */

/* ... (Estilos de títulos, etc. sin cambios) ... */

/* --- Slider Socios Comerciales --- */
.partners-swiper {
  padding-bottom: 50px; /* Espacio para paginación */
  overflow: hidden;
  position: relative; /* Necesario para posicionar bien los botones */
}

.partners-swiper .swiper-wrapper {
  /* REMOVE linear timing function */
  /* transition-timing-function: linear !important; */
  align-items: center;
}

.partners-swiper .swiper-slide {
  /* REMOVE width: auto; */
  /* width: auto; */
  height: auto; /* Permitir altura automática */
  display: flex;
  justify-content: center;
  align-items: center;
  /* Re-aplicar opacidad/hover si se desea */
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.partners-swiper .swiper-slide:hover {
  opacity: 1;
}

.partners-swiper .swiper-slide img {
  max-height: 70px;
  width: auto;
  max-width: 100%; /* Limitar ancho dentro del slide */
  filter: grayscale(80%);
  transition: filter 0.3s ease;
  /* margin: 0 10px; */ /* Probablemente no necesario con spaceBetween */
}

.partners-swiper .swiper-slide:hover img {
  filter: grayscale(0%);
}

/* --- Slider Promociones --- */
.promotions-swiper {
  padding-bottom: 50px; /* Espacio para paginación */
  overflow: hidden;
  position: relative; /* Necesario para posicionar bien los botones */
}

.promotions-swiper .swiper-wrapper {
  /* REMOVE linear timing function */
  /* transition-timing-function: linear !important; */
  align-items: stretch; /* Estirar slides para igualar altura si es necesario */
}

.promotions-swiper .swiper-slide {
  /* REMOVE width: auto; */
  /* width: auto; */
  height: auto; /* Altura automática para el slide */
  display: flex; /* Para que el 'a' llene el slide */
}
.promotions-swiper .swiper-slide a {
  display: block;
  width: 100%;
}

.promotions-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto; /* Altura automática de la imagen */
  /* max-height: 280px; */ /* Puedes limitar la altura si quieres */
  object-fit: cover; /* O 'contain' */
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* margin: 0 15px; */ /* Probablemente no necesario */
}
.promotions-swiper .swiper-slide a:hover img {
  transform: scale(1.03);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* --- Estilos Comunes/Visibilidad para Paginación y Navegación --- */

/* Re-establecer o usar variables Swiper */
:root {
  --swiper-theme-color: var(--coopes-dark-green);
  --swiper-navigation-color: #555; /* Un gris más oscuro para mejor visibilidad */
  --swiper-navigation-size: 25px;
  --swiper-pagination-color: var(--coopes-dark-green);
  --swiper-pagination-bullet-inactive-color: #ccc;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-horizontal-gap: 4px;
}

/* Posición paginación */
.swiper-pagination {
  bottom: 10px !important;
  position: absolute; /* Asegurar posición */
  width: 100%;
  left: 0;
}

/* Estilo/Posición botones */
.swiper-button-next,
.swiper-button-prev {
  /* REMOVE display: none !important; */
  top: 50%; /* Centrar verticalmente */
  transform: translateY(-50%);
  /* Ajustar color si es necesario */
  /* color: var(--swiper-navigation-color); */
  /* Añadir un fondo sutil para contraste? */
  /* background-color: rgba(255, 255, 255, 0.6); */
  /* padding: 5px; */
  /* border-radius: 50%; */
  width: calc(
    var(--swiper-navigation-size) * 1.5
  ); /* Hacer área clickeable un poco más grande */
  height: calc(var(--swiper-navigation-size) * 1.5);
  /* &::after { font-size: var(--swiper-navigation-size); } */ /* No necesita !important usualmente */
}
/* Ajustar posición horizontal */
.swiper-button-prev {
  left: 5px;
}
.swiper-button-next {
  right: 5px;
}

/* Ocultar botones en pantallas MUY pequeñas si es necesario */
/* @media (max-width: 575px) {
     .swiper-button-next, .swiper-button-prev {
         display: none;
     }
 } */

/* ============================================= */
/* =========        ESTILOS FOOTER       ========= */
/* ============================================= */
.site-footer {
  background-color: #f8f9fa; /* Un gris muy claro como base */
  color: var(--coopes-dark-grey); /* Color de texto por defecto */
  position: relative; /* Para el pseudo-elemento de fondo */
  overflow: hidden; /* Evitar desbordes del fondo */
  font-size: 0.9rem; /* Tamaño de fuente base para el footer */
}

/* Fondo punteado (Requiere una imagen .png o .svg) */
.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* REEMPLAZA 'path/to/your/dotted-map-background.png' con la ruta a tu imagen */
  /* background-image: url('path/to/your/dotted-map-background.png'); */
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain; /* O 'cover', experimenta cuál se ve mejor */
  opacity: 0.1; /* Hacerlo muy sutil */
  z-index: 0; /* Detrás del contenido */
  /* Si no tienes imagen, puedes quitar este div o dejar el background del footer */
}

.site-footer .container {
  position: relative; /* Asegura que el contenido esté sobre el fondo */
  z-index: 1;
}

.footer-logo img {
  max-height: 60px; /* Ajusta según tu logo */
}

/* Títulos de columna */
.footer-title {
  font-size: 1.1rem; /* Un poco más grande que el texto normal */
  margin-bottom: 1rem !important;
}

/* Iconos verdes */
.icon-green {
  color: var(--coopes-light-green);
  font-size: 1.1rem; /* Tamaño de iconos de contacto */
}

/* Lista de contactos */
.footer-contact-list li {
  line-height: 1.7;
}
.footer-contact-list a:hover {
  color: var(--coopes-dark-green) !important; /* Oscurecer al pasar el mouse */
  text-decoration: underline !important;
}

/* Iconos Sociales */
.footer-social .social-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--coopes-light-green);
  color: white;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.footer-social .social-icon:hover {
  background-color: var(--coopes-dark-green); /* Oscurecer al pasar */
  transform: scale(1.1);
}

/* Dirección */
.footer-address {
  line-height: 1.7;
  color: var(--coopes-dark-grey);
}

/* Separador */
.footer-divider {
  border-top: 1px solid #e0e0e0; /* Línea gris clara */
}

/* Copyright */
.footer-copyright {
  color: #6c757d; /* Gris estándar de Bootstrap */
  font-size: 0.8rem;
}

/* Ajustes Responsive para el Footer */
@media (max-width: 767.98px) {
  .site-footer {
    text-align: center; /* Centrar todo en móvil */
  }
  /* Centrar items de contacto y social explícitamente si text-align no es suficiente */
  .footer-contact-list li,
  .footer-social {
    justify-content: center !important; /* Fuerza centrado */
  }
  .footer-title {
    margin-top: 1rem; /* Añadir espacio arriba de los títulos al apilar */
  }
  .footer-logo {
    margin-bottom: 1.5rem;
  }
  .site-footer h6 {
    /* "Síguenos" */
    text-align: center;
  }
}
