/* Ajustes para el texto de la compañía en el hero */
@media (max-width: 768px) {
    #inicio .text-xl {
        font-size: 1.1rem;
        padding: 0.5rem 1.5rem;
    }

    #inicio h1 {
        font-size: 2.5rem;
    }

    #inicio p {
        font-size: 1rem;
    }
}



/* ===== FOOTER LOGO ===== */
footer .footer-logo-container {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.75rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

footer .footer-logo-container:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(255, 255, 255, 0.3);
}

footer .footer-logo-container .footer-logo {
    height: 3.5rem !important;
    min-height: 3.5rem !important;
    width: auto !important;
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(255, 255, 255, 0.2));
    transition: all 0.3s ease;
    max-width: none !important;
}

footer .footer-logo-container .footer-logo:hover {
    filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(255, 255, 255, 0.4)) brightness(1.1);
}

footer .footer-logo-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
    border-radius: 0.75rem;
}

footer .footer-logo-container:hover::after {
    left: 100%;
}



/* Footer responsive */
@media (max-width: 768px) {
    footer .footer-logo-container .footer-logo {
        height: 2.75rem !important;
        min-height: 2.75rem !important;
    }

    footer .footer-logo-container {
        padding: 0.5rem;
    }
}



/* ===== PLACEHOLDERS DE IMÁGENES ===== */
.image-placeholder {
    background: linear-gradient(45deg, #e2e8f0, #cbd5e1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}



/* ===== ESPACIADO DE SECCIONES ===== */
.section-padding {
    padding: 80px 0;
}



/* ===== MAPA Y CONTACTO ===== */
.rounded-2xl iframe {
    border-radius: 1rem;
    min-height: 300px;
}

.map-container {
    position: relative;
    padding-bottom: 60%;
    height: 0;
    margin-top: 1.5rem;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
}

#contacto .grid {
    align-items: stretch;
}

#contacto .bg-white.rounded-2xl {
    height: 100%;
    display: flex;
    flex-direction: column;
}

#contacto .contact-info-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
    min-height: 400px;
}


/* Mapa responsive */
@media (min-width: 1024px) {
    .map-container {
        padding-bottom: 50%;
        margin-top: 0;
    }
}


