/* Wrapper para el ancho máximo */
.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 2px solid #ccc; /* Línea divisoria */
}

/* Contenedor interno */
.footer-container {
    display: flex;
    justify-content: space-between;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', sans-serif;
    color: #4a4a4a;
    flex-wrap: wrap;
    background-color: transparent;
}

.footer-col {
    flex: 1 1 25%;
    padding: 0.5rem;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 10rem;
}

/* Título Ubicación */
.titulo-ubicacion {
    color: #000;
    font-family: Inter, sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0.5rem;
}

/* Dirección */
.direccion {
    color: #000;
    font-family: Inter, sans-serif;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: left;
}

/* Botones redes sociales */
.link-red {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #000;
    font-family: Inter, sans-serif;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 0.3rem 0;
    background: none;
    border: none;
    cursor: pointer;
}

.link-red i {
    font-size: 52px;
}

/* Botón Contáctanos */
.btn-contacto {
    display: flex;
    width: 184px;
    height: 44px;
    padding: 10px 14px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--Primario-400, #A42D1D);
    color: white;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.btn-contacto:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .footer-container {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 1rem; /* menos padding */
        overflow: hidden;
    }
    
    .footer-col {
        flex: 1 1 0;
        min-width: 0;
        padding: 0 0.3rem; /* menos separación entre columnas */
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    /* Logo más pequeño */
    .footer-col img {
        width: 50px;
        height: auto;
    }
    
    /* Ubicación más compacta */
    .titulo-ubicacion {
        font-size: 12px;
        margin-bottom: 0.1rem;
    }
    
    .direccion {
        font-size: 10px;
        line-height: 1.1;
        max-height: 36px; /* recorta altura excesiva */
        overflow: hidden;
    }
    
    /* Redes sociales más pequeñas */
    .link-red {
        font-size: 10px;
        gap: 4px;
    }
    
    .link-red i {
        font-size: 14px;
    }
    
    /* Botón Contáctanos más compacto y más pegado a las redes */
    .btn-contacto {
        width: 90px;
        height: 28px;
        font-size: 11px;
        margin-top: 2px; /* pequeño gap */
    }
}
