.footer-pro {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 80px 20px 30px;
    margin-top: 120px;
    border-top: 4px solid var(--amarillo-ruts);
    font-family: 'Georgia', serif;
}

.footer-pro .container {
    max-width: 1300px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-slogan {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
    font-style: italic;
}

.text-amarillo {
    color: var(--amarillo-ruts);
    font-weight: 600;
    font-style: normal;
}

.footer-contacto h4,
.footer-ubicacion h4,
.footer-redes h4 {
    color: var(--amarillo-ruts);
    font-size: 18px;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-contacto p,
.footer-ubicacion p {
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

.horario {
    font-size: 14px;
    opacity: 0.8;
    font-style: italic;
}

.footer-contacto a,
.footer-ubicacion a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-contacto a:hover,
.footer-ubicacion a:hover {
    color: var(--amarillo-ruts);
    text-decoration: underline;
}

.redes-icons {
    display: flex;
    gap: 18px;
    margin-top:_cover 10px;
}

.redes-icons a {
    width: 48px;
    height: 48px;
    background: rgba(255, 215, 0, 0.15);
    border: 1.5px solid var(--amarillo-ruts);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.35s ease;
}

.redes-icons a:hover {
    background: var(--amarillo-ruts);
    color: #000;
    /* Efecto eliminado: sin elevación ni escala */
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.redes-icons svg {
    width: 26px;
    height: 26px;
}

/* ========================
   CENTRADO PERFECTO DEL LOGO
   ======================== */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;     /* Centra horizontalmente */
    text-align: center;
}

.footer-brand img {
    width: 220px;
    max-width: 90%;
    height: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
    display: block;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 14px;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .redes-icons {
        justify-content: center;
    }
}