/* =============================================================================
   ESTILOS INSTITUCIONALES PARA EL PIE DE PÁGINA (FOOTER)
   ============================================================================= */

.reporte-footer {
    background-color: #691c32; /* Guinda institucional */
    color: #ffffff;
    padding: 30px 20px;
    font-family: sans-serif;
    margin-top: auto;
    width: 100%;
    box-sizing: border-box;
}

/* Contenedor principal de las 3 columnas */
.reporte-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Columna 1: Logotipo */
.reporte-footer-logo-box {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: center;
}

.reporte-footer-logo {
    max-height: 55px;
    width: auto;
    object-fit: contain;
}

/* Columna 2: Números de Emergencia */
.reporte-footer-emergency-box {
    flex: 1;
    min-width: 250px;
    display: flex;
    justify-content: center;
    gap: 40px;
    text-align: center;
}

.emergency-item-num {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

.emergency-item-label {
    font-size: 13px;
    color: #dddddd;
    opacity: 0.9;
}

/* Columna 3: Información y Enlaces */
.reporte-footer-info-box {
    flex: 1;
    min-width: 250px;
    text-align: right;
    font-size: 14px;
    color: #ffffff;
}

.reporte-privacy-link {
    color: #ffffff;
    text-decoration: underline;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 5px;
}

.reporte-contact-title {
    margin: 5px 0 2px 0;
    font-weight: bold;
    color: #dddddd;
}

.reporte-address {
    font-style: normal;
    font-size: 13px;
    line-height: 1.4;
    color: #cccccc;
}

/* Franja inferior de Derechos de Autor */
.reporte-footer-bottom {
    max-width: 1200px;
    margin: 15px auto 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-size: 12px;
    color: #dddddd;
}

.reporte-copyright-text {
    margin: 0;
}

.reporte-btn-escape {
    background-color: #bc955c; /* Dorado complementario */
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.reporte-btn-escape:hover {
    background-color: #987747; /* Efecto hover */
}