/* ========================
   FOOTER VOLARIS - MOBILE FIRST
   ======================== */

/* ========================
   BASE & GRID
   ======================== */
* {
    box-sizing: border-box;
}

.container {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .container { max-width: 960px; }
}

@media (min-width: 1200px) {
    .container { max-width: 1140px; }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

[class*="col-"] {
    width: 100%;
    padding: 0 15px;
}

.col-12 { flex: 0 0 100%; }

@media (min-width: 992px) {
    .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
    .col-lg-4 { flex: 0 0 33.333%; max-width: 33.333%; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-7 { flex: 0 0 58.333%; max-width: 58.333%; }
    .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
}

/* ========================
   FOOTER PRINCIPAL
   ======================== */
#FooterLinks {
    background: #000 !important;
    padding: 50px 0 30px !important;
    margin-top: 66px !important;
    color: #fff !important;
    font-family: 'Inter', Arial, sans-serif !important;
}

/* ========================
   TÍTULOS
   ======================== */
#FooterLinks .mat-list-item,
#FooterLinks h4,
#FooterLinks h6 {
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
    margin-top: 0 !important;
}

/* ========================
   LISTAS Y LINKS
   ======================== */
#FooterLinks ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

#FooterLinks li {
    margin-bottom: 10px !important;
}

#FooterLinks a {
    color: #fff !important;
    opacity: 0.9 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    transition: opacity 0.2s ease !important;
}

#FooterLinks a:hover {
    opacity: 1 !important;
    text-decoration: none !important;
}

#FooterLinks .see {
    color: #fff !important;
    opacity: 0.85 !important;
    font-size: 14px !important;
    margin-top: 12px !important;
    display: inline-block !important;
}

/* ========================
   SECCIONES
   ======================== */
#FooterLinks .InfoLinks {
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    #FooterLinks .InfoLinks { margin-bottom: 0; }
}

/* ========================
   APP BADGES
   ======================== */
.downloadApps {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    flex-wrap: wrap !important;
    margin: 16px 0 !important;
    padding: 0 !important;
}

@media (min-width: 768px) {
    .downloadApps { gap: 24px !important; }
}

.downloadApps li {
    list-style: none !important;
    margin: 0 !important;
}

.downloadApps img {
    display: block !important;
    height: 42px !important;
    width: auto !important;
}

@media (min-width: 768px) {
    .downloadApps img { height: 50px !important; }
}

/* ========================
   SOCIAL MEDIA
   ======================== */
.socialMedia {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    flex-wrap: wrap !important;
    margin: 20px 0 !important;
    padding: 0 !important;
}

.socialMedia li {
    list-style: none !important;
    margin: 0 !important;
}

.socialMedia img {
    display: block !important;
    width: 32px !important;
    height: 32px !important;
    opacity: 0.9 !important;
    transition: transform 0.2s ease, opacity 0.2s ease !important;
}

.socialMedia a:hover img {
    transform: scale(1.1) !important;
    opacity: 1 !important;
}

/* ========================
   FOOTER LEGAL (barra inferior)
   ======================== */
footer {
    background: #000 !important;
    color: #fff !important;
    padding: 20px 0 !important;
    font-size: 13px !important;
}

footer .copyright {
    color: #fff !important;
    opacity: 0.7 !important;
    margin: 10px 0 !important;
    text-align: center !important;
}

@media (min-width: 768px) {
    footer .copyright { text-align: left !important; }
}

footer .tnc ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 10px 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    justify-content: center !important;
}

@media (min-width: 768px) {
    footer .tnc ul { justify-content: flex-end !important; }
}

footer .tnc a {
    color: #fff !important;
    opacity: 0.85 !important;
    font-size: 13px !important;
    text-decoration: underline !important;
}

footer .tnc a:hover {
    opacity: 1 !important;
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 767px) {
    #FooterLinks .row,
    footer .container .row {
        flex-direction: column !important;
        text-align: center !important;
    }

    footer .tnc ul {
        justify-content: center !important;
    }
}