/* =========================================== */
/* === Estilos Footer ENARM & GO === */
/* =========================================== */

.enarmango-footer {
    background-color: #2d3748; /* Azul grisáceo oscuro */
    color: #a0aec0; /* Texto gris claro */
    padding: 50px 0 30px 0;
    font-size: 0.9em;
    line-height: 1.7;
}

.enarmango-footer a {
    color: #cbd5e0; /* Enlaces un poco más claros */
    text-decoration: none;
    transition: color 0.2s ease;
}

.enarmango-footer a:hover,
.enarmango-footer a:focus {
    color: #ffffff; /* Blanco en hover */
    text-decoration: underline;
}

.footer-container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columnas iguales */
    gap: 40px; /* Espacio entre columnas */
    margin-bottom: 40px;
}

.footer-widget-title {
    color: #ffffff; /* Títulos en blanco */
    font-size: 1.1em;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #4a5568; /* Línea divisoria bajo títulos */
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu li a {
    display: inline-block; /* Evita que el subrayado ocupe toda la línea */
}

/* Columna 2 - Seguridad Pago */
.footer-security {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #4a5568; /* Separador sutil */
}
.footer-security p {
    margin-bottom: 8px;
    font-size: 0.9em;
}
.footer-security strong {
    color: #e2e8f0; /* Blanco suave */
}
.stripe-logo {
    max-height: 25px; /* Ajusta tamaño del logo Stripe */
    width: auto;
    margin-bottom: 5px;
    opacity: 0.8;
}
.security-text {
    font-style: italic;
    font-size: 0.85em !important; /* Forzar tamaño pequeño */
    color: #718096; /* Gris más oscuro */
}

/* Columna 3 - Sobre y Social */
.footer-about {
    margin-bottom: 20px;
    font-size: 0.95em;
}

.footer-social a {
    display: inline-block;
    margin-right: 12px;
    color: #a0aec0;
}
.footer-social a .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
    vertical-align: middle;
}
.footer-social a:hover {
    color: #ffffff;
    text-decoration: none;
}
.footer-promo-link {
    margin-top: 15px;
    font-weight: 500;
}
.footer-promo-link a {
    color: var(--landing-secondary-color); /* Naranja para la promo */
}
.footer-promo-link a:hover {
    color: #ffad49; /* Naranja más claro */
}


/* Línea inferior de Copyright */
.enarmango-site-info {
    border-top: 1px solid #4a5568;
    padding-top: 25px;
    margin-top: 30px;
    text-align: center;
    font-size: 0.85em;
    color: #718096; /* Gris más oscuro */
}
.enarmango-site-info .sep {
    margin: 0 8px;
}
.footer-logo {
    max-height: 30px;
    width: auto;
    vertical-align: middle;
    margin-left: 10px;
    opacity: 0.7;
}

/* --- Responsividad del Footer --- */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr; /* 1 columna en móvil */
        gap: 30px; /* Espacio vertical */
    }
    .footer-column {
        text-align: center; /* Centrar contenido de columnas */
    }
    .footer-widget-title {
        border-bottom: none; /* Quitar borde bajo títulos */
        padding-bottom: 0;
        margin-bottom: 15px;
    }
     .footer-menu li a {
         display: block; /* Enlaces ocupan toda la línea */
     }
    .footer-security {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #4a5568; /* Mantener separador */
    }
    .footer-social {
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .footer-social a { margin: 0 8px; } /* Espacio entre iconos sociales */
}