﻿/* ==========================================
   FOOTER
========================================== */

.footer {
    margin-bottom: 0;
    position: relative;
    background: linear-gradient( rgba(8, 28, 70, .92), rgba(8, 28, 70, .92) ), url("/img/banner/victoria.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ==========================================
   CONTENEDOR
========================================== */

.footer-container {
    width: 95%;
    max-width: 1380px;
    margin: auto;
    padding: 35px 0 15px;
    display: grid;
    grid-template-columns: 1.55fr 1fr 1fr 1fr 1.15fr;
    column-gap: 45px;
    align-items: start;
}

/* ==========================================
   LOGO
========================================== */
.footer-company {
    position: relative;
    padding-right: 55px;
    margin-top: -8px;
}

.footer-company::after {
    content: "";
    position: absolute;
    top: 5px;
    right: -22px;
    width: 1px;
    height: 255px;
    background: rgba(255,255,255,.10);
}

.footer-company img {
    width: 260px;
    margin-bottom: 18px;
    display: block;
}

.footer-slogan {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.5;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,.20);
    margin: 18px 0 22px;
}

.footer-description {
    color: rgba(255,255,255,.82);
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 38px;
}

/* ==========================================
   REDES
========================================== */

.footer-social {
    display: flex;
    gap: 18px;
    margin-top: 8px;
}

.footer-social a {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255,255,255,.40);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: .30s;
}

.footer-social a:hover {
    background: #f7931e;
    border-color: #f7931e;
    transform: translateY(-3px);
}

.footer-social i {
    font-size: 20px;
}
/* ==========================================
   COLUMNAS
========================================== */

.footer-column h3,
.footer-contact h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 26px;
    position: relative;
    text-transform: uppercase;
    color:white;
}

.footer-column h3::after,
.footer-contact h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 36px;
    height: 3px;
    background: #f7931e;
}

/* ==========================================
   MENÚS
========================================== */

.footer-column ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    position: relative;
    margin-bottom: 16px;
    padding-left: 18px;
}

.footer-column li::before {
    content: "\203A"; /* › */
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(255,255,255,.85);
    font-size: 18px;
    font-weight: 600;
    transition: .25s;
}

.footer-column li:hover::before {
    color: #f7931e;
}

.footer-column a {
    color: rgba(255,255,255,.88);
    text-decoration: none;
    transition: .25s;
}

.footer-column a:hover {
    color: #f7931e;
    padding-left: 6px;
}

/* ==========================================
   CONTACTO
========================================== */

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact i {
    width: 22px;
    font-size: 20px;
    color: #fff;
    margin-top: 5px; /* Ajusta el icono con el bloque de texto */
    flex-shrink: 0;
}

.footer-contact span {
    color: rgba(255,255,255,.88);
    line-height: 1.7;
    white-space: pre-line;
}

.footer-hours {
    display: flex;
    flex-direction: column;
    line-height: 1.8;
    color: rgba(255,255,255,.88);
}

.footer-hours br {
    margin-bottom: 4px;
}
/* ==========================================
   BARRA INFERIOR
========================================== */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
}

.footer-bottom-container {
    width: 95%;
    max-width: 1380px;
    margin: auto;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,.75);
}

.footer-bottom span {
    color: rgba(255,255,255,.90);
    font-weight: 500;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width:1200px) {

    .footer-container {
        grid-template-columns: repeat(2,1fr);
    }

    .footer-company {
        grid-column: 1 / -1;
    }
}

@media (max-width:768px) {

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}

.footer-tagline {
    white-space: nowrap;
}
.footer-links {
    column-gap: 70px;
}