/* =========================================
   Footer — Global Component
   ========================================= */

.hp-footer {
    background-color: #c4abb4;
    color: white;
    padding: 55px 6% 35px;
    font-family: 'Muli', sans-serif;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: start;
}

.hp-footer .footer-info h3 {
    font-family: 'Butler', serif;
    font-size: 22px;
    font-weight: normal;
    color: white;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-align: left;
}

.footer-info p {
    font-size: 12px;
    color: white;
    margin-bottom: 5px;
    line-height: 1.7;
    opacity: 0.85;
}

.footer-license {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.65;
    margin-top: 8px;
}

.footer-contact strong,
.footer-links strong {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.65;
    margin-bottom: 10px;
}

.footer-contact p,
.footer-links p {
    font-size: 13px;
    color: white;
    margin-bottom: 7px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-contact a,
.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    transition: border-bottom-color 0.2s ease;
}

.footer-contact a:hover,
.footer-links a:hover {
    border-bottom-color: white;
    opacity: 1;
}

/* Política de Privacidad link */
.footer-link-politica {
    font-size: 12px !important;
    margin-top: 5px;
    display: inline-block;
    color: white;
}

.footer-link-politica:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.25);
    padding-top: 20px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer-bottom p {
    font-size: 11px;
    color: white;
    margin: 0;
    opacity: 0.55;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .hp-footer {
        padding: 35px 20px 25px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        margin-bottom: 25px;
    }

    .hp-footer .footer-info h3 {
        font-size: 21px;
        letter-spacing: 1.5px;
        margin-bottom: 8px;
    }

    .footer-info p {
        font-size: 12px !important;
    }

    .footer-license {
        font-size: 10px !important;
    }

    .footer-contact strong {
        font-size: 12px !important;
        margin-bottom: 8px;
    }

    .footer-contact p {
        font-size: 12px !important;
        margin-bottom: 5px;
    }

    .footer-bottom {
        padding-top: 15px;
    }

    .footer-bottom p {
        font-size: 10px !important;
    }
}
