/* ==========================================================================
   ESTILOS PIE DE PÁGINA (FOOTER AZUL TURQUESA Y BOTONES)
   ========================================================================== */

/* Fondo Azul Turquesa de la muestra */
.footer-blue-content {
    background-color: #6da2b3 !important;
}

/* Imagen del Mural en columna izquierda */
.footer-mural-wrapper {
    min-height: 100%;
    overflow: hidden;
}

/* Título de sección "Contacto:" con tipografía estilizada */
.footer-contacto-title {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-weight: bold;
    font-size: 1.6rem;
    color: #ffffff;
}

.footer-title-line {
    width: 40px;
    height: 2px;
    background-color: #ffffff;
    margin-top: 4px;
}

/* Botones de Acción sobre el fondo azul */
.btn-footer-action {
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.btn-footer-action:hover {
    background-color: rgba(255, 255, 255, 0.22);
    border-color: #ffffff;
    transform: translateX(4px);
}

/* Botón de Teléfono estilo resaltado */
.btn-footer-phone {
    background-color: #a8d5ba;
    /* Tono verde claro resaltado tipo marcador de la imagen */
    border: none;
    transition: all 0.3s ease;
}

.btn-footer-phone:hover {
    background-color: #92c9a7;
    transform: translateX(4px);
}

/* Tipografía de créditos */
.footer-credits {
    font-size: 0.82rem;
    line-height: 1.5;
}