/**
 * Rocha Footer Widget - Rocha Brothers Group
 * Contacto + redes sociales + crédito
 */

.rocha-footer {
    width: 100%;
}

.rocha-footer-contact {
    background-color: #1a1a1a; 
    padding: 1rem 1rem;
}

.rocha-footer-contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 575px) {
    .rocha-footer-contact-inner {
        flex-direction: column;
        justify-content: center;
    }
}

.rocha-footer-contact a { 
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.rocha-footer-contact a:hover {
    opacity: 0.85;
}

.rocha-footer-contact svg {
    flex-shrink: 0;
}

.rocha-footer-social {
    background-color: #e85d04;
    padding: 1.5rem 1rem;
}

.rocha-footer-social-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.rocha-footer-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.rocha-footer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.rocha-footer-icon:hover {
    opacity: 0.9;
    transform: scale(1.1);
}

.rocha-footer-icon svg {
    width: 24px;
    height: 24px;
}

.rocha-footer-credit {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #ffffff;
    text-transform: uppercase;
}

.rocha-footer-bottom {
    height: 6px;
    background-color: #0f0f0f;
}

@media (min-width: 768px) {
    .rocha-footer-contact {
        padding: 1.25rem 2rem;
    }

    .rocha-footer-social {
        padding: 2rem;
    }

    .rocha-footer-icons {
        gap: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .rocha-footer-icon svg {
        width: 26px;
        height: 26px;
    }

    .rocha-footer-credit {
        font-size: 0.9rem;
    }
}
