/* FOOTER - GRÚAS ROSANO */

.footer {
    width: 100%;
    background-color: #fff;
    padding: 3rem 1rem 1.5rem;
    border-top: 1px solid rgba(119, 81, 154, 0.1);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Contenedor principal */
.footer-links-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(119, 81, 154, 0.1);
}

/* Logo */
.footer-links-a img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-links-a img:hover {
    transform: scale(1.05);
}

/* Grupos de enlaces */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-title p {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #77519A;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links-a {
    margin-bottom: 0.8rem;
}

.footer-links-a p,
.footer-links-a a {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links-a a:hover {
    color: #77519A;
    transform: translateX(5px);
}

/* Info de copyright */
.footer-info-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.copyright-p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
}

.copyright-p a {
    color: #77519A;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.copyright-p a:hover {
    color: #5d3d7c;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 1rem 1rem;
    }
    
    .footer-links-container {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .footer-links-a img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .footer-links-container {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        margin-bottom: 1.5rem;
    }
    
    .footer-links-title p {
        margin-bottom: 0.8rem;
    }
}