/* ===== FOOTER STYLES ===== */
.footer {
    background-color: #ffe300;
    color: white;
    padding: 3rem 1rem;
    position: relative;
    overflow: hidden;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Contenedor principal del contenido */
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
}

/* Sección de texto (izquierda en desktop) */
.footer-text-section {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Caja de texto blanca */
.text-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* IDs para modificar tamaños de texto */
#footer-main-text {
    color: #2c3e50;
    margin: 0;
    line-height: 1.6;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Botón PQRS - Separado del text-box */
#pqrs-main-btn {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 12px 30px;
    border: 2px solid white;
    border-radius: 15px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    text-align: center;
    align-self: center;
    width: fit-content;
    font-size: 2.5rem;
}

#pqrs-main-btn:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Sección de contacto (derecha en desktop) */
.footer-contact-section {
    flex: 1;
    min-width: 300px;
}

/* Información de contacto */
.contact-info {
    margin-top: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    
}

.contact-item i {
    width: 24px;
    margin-right: 12px;
    color: #f39c12;
    font-size: 1.1rem;
    margin-top: 2px;
}

/* IDs para información de contacto */
#contact-email,
#contact-phone,
#contact-landline,
#contact-address {
    color: #595959;
    line-height: 1.4;
    flex: 1;
    font-size: 2rem;
}

/* IMAGEN FIJA - SOLO ESTO SE MODIFICÓ */
.floating-image {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 9999;
}

.floating-img {
    width: 120px;
    height: auto;
    z-index: 1;
    /* Eliminados: animación, hover y transiciones */
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 1rem;
    }

    #footer-main-text {
        font-size: 1.6rem;
    }
    
    #contact-email,
    #contact-phone,
    #contact-landline,
    #contact-address {
        font-size: 1.7rem !important;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-text-section {
        width: 100%;
        align-items: center;
        font-size: 3.5rem;
    }

    .footer-contact-section {
        width: 100%;
    }

    .text-box {
        padding: 1.5rem;
        width: 50%;
    }

    /* Imagen fija en móvil */
    .floating-image {
        right: 20px;
        bottom: 20px;
    }

    .floating-img {
        width: 100px;
    }

    .contact-item {
        justify-content: center;
        text-align: left;
        flex-direction: column;
    }

    .contact-item i {
        margin-right: 0;
        margin-bottom: 8px;
        width: 100%;
    }

    .contact-info {
        margin-left: 10%;
    }
    
    #contact-email,
    #contact-phone,
    #contact-landline,
    #contact-address {
        font-size: 2rem !important;
    }
}

@media (max-width: 480px) {
    .text-box {
        padding: 1.5rem;
        width: 92%;
    }

    #footer-main-text {
        font-size: 1.5rem;
    }

    .floating-image {
        right: 15px;
        bottom: 15px;
    }

    .floating-img {
        width: 80px;
    }

    #pqrs-main-btn {
        padding: 10px 25px;
        border-radius: 15px;
        font-size: 2rem;
    }

    #contact-email,
    #contact-phone,
    #contact-landline,
    #contact-address {
        font-size: 1.5rem !important;
    }
}

/* Para pantallas muy grandes */
@media (min-width: 1200px) {
    .footer-content {
        gap: 4rem;
    }

    .footer-text-section {
        flex: 0 0 45%;
    }

    .footer-contact-section {
        flex: 0 0 45%;
    }
    
    .floating-image {
        right: 40px;
        bottom: 40px;
    }
    
    .floating-img {
        width: 130px;
    }
}

.negrita{
    font-size: 2rem !important;
}
