/*
Theme Name: GeneratePress Child
Theme URI: https://generatepress.com
Description: Tema hijo personalizado para Coograncolombiana
Author: M.V
Author URI: https://coograncolombiana.com
Template: generatepress
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: generatepress-child
*/

body {
  font-family: 'Inter', sans-serif;
}

/* ============================================
🎨 Variables institucionales
============================================ */
:root {
  --azul-principal: #003366;
  --azul-hover: #336699;
  --amarillo: #f4c300;
  --gris-fondo: #f6f6f6;
  --blanco: #ffffff;
}

/* ============================================
🧭 Tipografía global
============================================ */
body {
  font-family: 'Nunito', sans-serif !important;
}

/* Footer */
.footer-custom {
  font-family: 'Nunito', sans-serif !important;
}
.footer-custom *:not(i):not(.fas):not(.fab):not(.far) {
  font-family: 'Nunito', sans-serif !important;
}

/* ============================================
🖼️ Hero principal
============================================ */
.hero-coogran {
  background-color: var(--azul-principal);
  color: var(--blanco);
  padding: 80px 20px;
  text-align: center;
}
.hero-coogran h1,
.hero-coogran h2,
.hero-coogran p {
  color: var(--blanco);
  margin-bottom: 20px;
}

/* ============================================
🟡 Botones institucionales
============================================ */
.boton-coogran {
  background-color: var(--amarillo);
  color: var(--azul-principal);
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.boton-coogran:hover {
  background-color: var(--blanco);
  color: var(--azul-principal);
  border: 2px solid var(--amarillo);
}

/* ============================================
🧱 Contenedores a ancho completo
============================================ */
.ancho-completo {
  width: 100vw !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  overflow-x: hidden !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}
.gb-container-c604265b {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-attachment: scroll;
  min-height: 100vh !important;
  box-sizing: border-box;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* ============================================
📉 Ajustes generales
============================================ */
.superponer-footer {
  margin-bottom: -20px !important;
}
.site-info {
  display: none;
}

/* ============================================
📌 Footer: títulos y enlaces
============================================ */
.footer-column h4 {
  background-color: #1B4F72;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 20px;
  display: inline-block;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.footer-column h4:hover {
  background-color: #154360;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}
.footer-column ul li a {
  position: relative;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}
.footer-column ul li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #b8d8f4;
  transition: width 0.3s ease-in-out;
}
.footer-column ul li a:hover {
  color: #b8d8f4;
}
.footer-column ul li a:hover::after {
  width: 100%;
}

/* Logo del footer */
.footer-logo img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backface-visibility: hidden;
  transform: scale(1);
  box-shadow: none;
}
.footer-logo img:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

/* ============================================
📌 Botón Ir arriba
============================================ */
.footer-go-top {
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
  width: auto !important;
  height: auto !important;
  border: none !important;
	 z-index: 1; /* lo pone por debajo */
  pointer-events: none; /* evita que capture clicks fuera de su icono */
}
/* ✅ Ajuste para que no se superponga al botón de WhatsApp */
.footer-go-top {
  z-index: 1;
  pointer-events: none;
}

.footer-go-top i {
  pointer-events: auto;
}

/* ============================================
📌 Botón flotante de WhatsApp
============================================ */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
  border: none !important;
}
.whatsapp-button:hover {
  transform: scale(1.1);
}

/* ============================================
📌 Bloque entidades reguladoras
============================================ */
.footer-entidades {
  background: linear-gradient(90deg, #004d73, #006699);
  padding: 25px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1),
              0 -2px 6px rgba(0,0,0,0.2);
}
.footer-entidades a {
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.footer-entidades a img {
  max-height: 60px;
  display: block;
  border-radius: 6px;
  background: #ffffff;
  padding: 6px 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.footer-entidades a:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* ============================================
📌 Secciones generales
============================================ */
.logos-section {
  padding: 50px 20px;
  text-align: center;
}
.logos-section h2 {
  font-size: 24px;
  color: var(--azul-principal);
  margin-bottom: 30px;
}
.pagadurias-section {
  background: linear-gradient(180deg, #f0f4e8 0%, #ffffff 100%);
  padding: 60px 0 70px;
}
.convenios-section {
  background: #e9f3f9;
  padding: 60px 0;
}

.aliados-section {
  background: linear-gradient(-45deg, #e3f2fd, #f8faff, #e8eaf6, #d1c4e9);
  background-size: 400% 400%;
  animation: aurora 15s ease infinite;
  padding: 60px 20px;
}
@keyframes aurora {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
/* ============================================
📌 Carruseles
============================================ */
.swiper {
  width: 100%;
  padding: 20px 0;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagadurias-section .swiper-slide img {
  max-height: 120px;
  object-fit: contain;
}
.aliados-section .swiper-slide img {
  max-height: 100px;
  object-fit: contain;
}
.swiper-slide img:hover {
  transform: scale(1.05);
}

/* ============================================
📌 Convenios
============================================ */
.convenios-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 160px; /* más separación */
  flex-wrap: wrap;
}
.convenios-logos img {
  max-height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.convenios-logos img[alt="Concepto"] {
  max-height: 100px; /* más grande */
}
.convenios-logos img[alt="On Vacation"] {
  max-height: 90px; /* más grande */
}
.convenios-logos img:hover {
  transform: scale(1.05);
}

/* ============================================
📌 Animación fade-in
============================================ */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Evitar que el ícono de ir arriba cree remanentes */
.footer-go-top-rect i {
  pointer-events: none; /* el ícono no captura clics */
  overflow: hidden; /* asegura que no sobresalga */
  display: inline-block;
}
/* Asegurar que el botón de ir arriba quede por debajo de WhatsApp visualmente */
.footer-go-top-rect {
  z-index: 900; /* menor que el z-index del botón de WhatsApp */
  overflow: hidden; /* evita cualquier proyección fuera de su caja */
}

/* Asegurar que el botón flotante de WhatsApp quede por encima de todo */
.whatsapp-button {
  z-index: 1000 !important; /* prioridad máxima para que quede encima */
}

/* ✅ Elimina el icono residual solo dentro del botón de WhatsApp */
.whatsapp-button .fa-chevron-up::before {
  content: none !important;
}

/* ======= FIX WHATSAPP ======= */
.whatsapp-button i.fa-chevron-up,
.whatsapp-button i.fas.fa-chevron-up,
.whatsapp-button i.fas.fa-chevron-up::before {
  display: none !important;
  content: none !important;
}

.whatsapp-button::before,
.whatsapp-button::after {
  content: none !important;
}

.footer-go-top-rect-wrapper {
  overflow: hidden;
  position: relative;
}

/* Ocultar cualquier chevron-up fuera del botón de ir arriba */
i.fas.fa-chevron-up {
  display: none !important;
}

/* Pero mostrarlo dentro del botón de ir arriba */
.footer-go-top-rect i.fas.fa-chevron-up {
  display: inline-block !important;
} 



.footer-go-top-rect i {
  display: inline-block !important;
  pointer-events: none;
}

/* === CORRECCIÓN PARA QUE NO AFECTE AL WHATSAPP === */
.whatsapp-button .fa-chevron-up,
.whatsapp-button .fa-chevron-up::before {
  display: none !important;
  content: none !important;
}







.convenio-item {
  position: relative;
}

.logo-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 8px; /* opcional si ya lo tienes */
}

.logo-wrapper img {
  display: block;
  transition: transform 0.3s ease; /* mantiene tu efecto hover si ya estaba */
}

.logo-wrapper:hover img {
  transform: scale(1.05); /* mantiene el efecto */
}

.info-hover {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  text-align: center;
  padding: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.logo-wrapper:hover .info-hover {
  opacity: 1;
}

.info-hover a {
  color: #25D366; /* color WhatsApp */
  font-weight: bold;
  text-decoration: none;
}

.info-hover a:hover {
  text-decoration: underline;
}





/* ====== SOLO PARA LOGO DE CONCEPTO ====== */
.convenio-item.concepto img {
  max-height: 140px; /* aumenta solo Concepto */
  object-fit: contain;
}

/* Ajuste de la capa de información SOLO en Concepto */
.convenio-item.concepto .info-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;      /* cubrir 100% del logo */
  height: 100%;     /* cubrir 100% del logo */
  background: rgba(0, 0, 0, 0.7);
  padding: 12px 8px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
}

/* Mostrar overlay solo en hover */
.convenio-item.concepto:hover .info-hover {
  opacity: 1;
}

/* Nombre y teléfono de Concepto */
.convenio-item.concepto .info-hover p {
  margin: 0;
  line-height: 1.3;
  white-space: nowrap;
  color: #fff;
}

/* ====== ESTILOS PARA COOPSOLFIN (El nuevo) ====== */
.convenio-item.coopsolfin {
    position: relative;
    cursor: pointer;
}
.convenio-item.coopsolfin img {
    max-height: 90px;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.convenio-item.coopsolfin .info-hover {
     position: absolute;
  top: 0;
  left: 0;
  width: 100%;      /* cubrir 100% del logo */
  height: 100%;     /* cubrir 100% del logo */
  background: rgba(0, 0, 0, 0.7);
  padding: 12px 8px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
}
.convenio-item.coopsolfin:hover .info-hover { opacity: 1; }
.convenio-item.coopsolfin:hover img { transform: scale(1.05); }
.convenio-item.coopsolfin .info-hover p { margin: 0 0 5px 0; color: #fff; font-weight: bold; }
.convenio-item.coopsolfin .info-hover a { color: #32d47b; text-decoration: none; font-weight: bold; }

.convenio-item.coopsolfin:hover .info-hover {
  opacity: 1;
}

.convenio-item.coopsolfin .info-hover p {
  margin: 0;
  line-height: 1.3;
  white-space: nowrap;
  color: #fff;
}

.convenio-item.coopsolfin .info-hover a {
  margin-top: 4px;
  color: #25D366;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
}

.convenio-item.coopsolfin .info-hover a:hover {
  text-decoration: underline;
}

/* Estilo del enlace de WhatsApp */
.convenio-item.concepto .info-hover a {
  margin-top: 4px;
  color: #25D366;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
}

.convenio-item.concepto .info-hover a:hover {
  text-decoration: underline;
}



/* ====== SOLO PARA LOGO DE ON VACATION ====== */
.convenio-item.onvacation .info-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  padding: 12px 8px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
}

.convenio-item.onvacation:hover .info-hover {
  opacity: 1;
}

.convenio-item.onvacation .info-hover p {
  margin: 0;
  line-height: 1.3;
  white-space: nowrap;
  color: #fff;
}

.convenio-item.onvacation .info-hover a {
  margin-top: 4px;
  color: #25D366;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
}

.convenio-item.onvacation .info-hover a:hover {
  text-decoration: underline;
}

/* ====== SOLO PARA LOGO DE GOTT WESSEN ====== */
.convenio-item.gottwesen .info-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  padding: 12px 8px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
}

.convenio-item.gottwesen:hover .info-hover {
  opacity: 1;
}

.convenio-item.gottwesen .info-hover p {
  margin: 0;
  line-height: 1.3;
  white-space: nowrap;
  color: #fff;
}

.convenio-item.gottwesen .info-hover a {
  margin-top: 4px;
  color: #25D366;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
}

.convenio-item.gottwesen .info-hover a:hover {
  text-decoration: underline;
}

/* ===== Ajuste individual para cada logo en Aliados ===== */

/* Experian */
.aliados-section .swiper-slide img[alt="Experian"] {
  max-height: 80px; /* cámbialo aquí solo para Experian */
		  object-fit: contain;
		}

/* TransUnion */
.aliados-section .swiper-slide img[alt="TransUnion"] {
  max-height: 80px; /* cámbialo aquí solo para TransUnion */
  object-fit: contain;
}

/* BBVA */
.aliados-section .swiper-slide img[alt="BBVA"] {
  max-height: 80px; /* cámbialo aquí solo para BBVA */
  object-fit: contain;
}

/* Global Seguros */
.aliados-section .swiper-slide img[alt="Global Seguros"] {
  max-height: 80px; /* cámbialo aquí solo para Global Seguros */
  object-fit: contain;
}

/* Acción Fiduciaria */
.aliados-section .swiper-slide img[alt="Acción Fiduciaria"] {
  max-height: 100px; /* tamaño actual que ya tenías */
  object-fit: contain;
}

/* Coopcentral */
.aliados-section .swiper-slide img[alt="Coopcentral"] {
  max-height: 100px; /* tamaño actual que ya tenías */
  object-fit: contain;
}

/* Kuenta */
.aliados-section .swiper-slide img[alt="Kuenta"] {
  max-height: 95px; /* ajusta si deseas */
  object-fit: contain;
}

/* Payments Way */
.aliados-section .swiper-slide img[alt="Payments Way"] {
  max-height: 100px; /* ajusta si deseas */
  object-fit: contain;
}

/* FCC */
.aliados-section .swiper-slide img[alt="FCC"] {
  max-height: 100px; /* ajusta si deseas */
  object-fit: contain;
}

/* Bancolombia */
.aliados-section .swiper-slide img[alt="Bancolombia"] {
  max-height: 100px; /* ajusta si deseas */
  object-fit: contain;
}



.aliados-section .swiper-slide img[src*="logo-fcc.png"] {
  background-color: #333; /* fondo oscuro para que se vea el texto */
  padding: 10px;          /* opcional, separa el logo del borde */
  border-radius: 6px;     /* opcional, esquinas redondeadas */
}



/* === SUBMENÚ SERVICIOS LOGOS EN VERTICAL === */
ul.sub-menu.servicios-logos {
  display: flex !important;
  flex-direction: column !important; /* uno debajo del otro */
  align-items: center !important;
  justify-content: flex-start;
  gap: 45px; /* separación vertical entre logos */
  padding: 20px;
  list-style: none;
  background: #fff;
  border-radius: 4px;
}

/* Elementos */
ul.sub-menu.servicios-logos li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Ajustes individuales de posición */
ul.sub-menu.servicios-logos li:first-child {
  margin-top: 30px; /* mueve solo MelonCash hacia abajo */
}
ul.sub-menu.servicios-logos li:last-child {
  margin-top: -15px; /* mueve solo Coograncolombiana, ajusta a tu gusto */
}

/* Enlaces */
ul.sub-menu.servicios-logos li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-bottom: none !important; /* quita la línea azul inferior */
}

/* Tamaño y efecto hover tipo footer */
ul.sub-menu.servicios-logos li img {
  max-height: 145px;
  width: auto;
  transition: all 0.3s ease;
  box-shadow: none;
  border-radius: 6px;
}

/* Hover efecto suave tipo footer */
ul.sub-menu.servicios-logos li img:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

/* 🔧 Elimina la línea inferior azul SOLO en los enlaces del submenú de logos */
ul.sub-menu.servicios-logos li a::after {
  content: none !important;
  background: none !important;
  height: 0 !important;
}

/* Mantener visible el submenú mientras el mouse baja */
.main-navigation ul li.menu-item-has-children:hover > .sub-menu {
  display: flex !important;
}

/* Aumentar la zona hover para que no se pierda al bajar */
.main-navigation ul.sub-menu.servicios-logos {
  margin-top: 0; /* evita huecos verticales */
  padding-top: 15px; /* crea un área extra que conecta con el menú */
}

/* Evitar que se cierre si hay espacios */
.main-navigation ul li.menu-item-has-children {
  position: relative;
}

/* menu Area de Atencion Clientes */
ul.sub-menu.atencion-cliente {
  display: none;
  position: absolute;
  background: #fff;
  padding: 15px 20px;
  margin-top: 8px;
  list-style: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 4px;
  gap: 10px;
  min-width: 200px;
  flex-direction: column;
}

.main-navigation ul li.menu-item-has-children:hover > ul.atencion-cliente {
  display: flex;
}

ul.sub-menu.atencion-cliente li a {
  color: #003366;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 0;
  display: block;
  transition: color 0.3s ease;
}

ul.sub-menu.atencion-cliente li a:hover {
  color: #007b9d;
}

.main-navigation ul li.menu-item-has-children {
  padding-bottom: 10px; /* Crea el puente invisible */
  margin-bottom: -10px;  /* Compensa el espacio para mantener la alineación */
}

/* ============ ESTILOS PARA PÁGINA DE ATENCIÓN AL CLIENTE (ID 279) ============ */
body.page-id-279 main#main-content.area-cliente-container {
  font-family: 'Nunito', sans-serif;
  color: #333;
  background-color: #f8f9fa;
  line-height: 1.6;
  padding: 0;
  margin: 0;
}

/* Encabezados */
body.page-id-279 main#main-content.area-cliente-container h1,
body.page-id-279 main#main-content.area-cliente-container h2,
body.page-id-279 main#main-content.area-cliente-container h3 {
  font-weight: 700;
  color: var(--azul-principal, #003366);
  margin-bottom: 20px;
  text-align: center;
}
body.page-id-279 main#main-content.area-cliente-container h1::after,
body.page-id-279 main#main-content.area-cliente-container h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--azul-principal, #003366);
  margin: 8px auto 0;
  border-radius: 2px;
}

/* Secciones */
body.page-id-279 main#main-content.area-cliente-container section {
  background: #ffffff;
  padding: 60px 20px;
  margin: 40px auto;
  max-width: 1200px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
}
body.page-id-279 main#main-content.area-cliente-container section:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Botones */
body.page-id-279 main#main-content.area-cliente-container button,
body.page-id-279 main#main-content.area-cliente-container .boton,
body.page-id-279 main#main-content.area-cliente-container .wp-block-button__link {
  background: var(--azul-principal, #003366);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease, transform 0.2s ease;
}
body.page-id-279 main#main-content.area-cliente-container button:hover,
body.page-id-279 main#main-content.area-cliente-container .boton:hover,
body.page-id-279 main#main-content.area-cliente-container .wp-block-button__link:hover {
  background: var(--azul-hover, #336699);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Mapa */
body.page-id-279 main#main-content.area-cliente-container #mapa {
  padding: 60px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
  max-width: 1000px;
  margin: 60px auto;
}
body.page-id-279 main#main-content.area-cliente-container #mapa:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
body.page-id-279 main#main-content.area-cliente-container #mapa h2 {
  font-size: 32px;
}
body.page-id-279 main#main-content.area-cliente-container #mapa iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 10px;
  margin-top: 30px;
  transition: transform 0.3s ease;
}
body.page-id-279 main#main-content.area-cliente-container #mapa iframe:hover {
  transform: scale(1.01);
}

/* Enlaces */
body.page-id-279 main#main-content.area-cliente-container a {
  color: var(--azul-principal, #003366);
  text-decoration: none;
  transition: color 0.3s ease;
}
body.page-id-279 main#main-content.area-cliente-container a:hover {
  color: var(--azul-hover, #336699);
  text-decoration: underline;
}

/* Listas y bloques */
body.page-id-279 main#main-content.area-cliente-container ul,
body.page-id-279 main#main-content.area-cliente-container ol {
  padding-left: 20px;
}
body.page-id-279 main#main-content.area-cliente-container li {
  margin-bottom: 8px;
}
body.page-id-279 main#main-content.area-cliente-container .wp-block {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
body.page-id-279 main#main-content.area-cliente-container .wp-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}



/* Quitar franja blanca antes del footer */
.footer-widgets-container {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.site-content {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Quitar espacio en blanco antes del footer SOLO en las páginas indicadas */
body.page-id-279 .footer-widgets-container,body.page-id-289 .footer-widgets-container,
body.page-id-276 .footer-widgets-container {
  padding: 0 !important; /* sin padding */
  margin: 0 !important;  /* sin margen extra */
  background: transparent !important; /* por si acaso tiene fondo */
}
