/* ========== FOOTER CSS RESPONSIVE - COLOR NARANJA ========== */

.site-footer {
    background: #333333;
}

#footerPrincipal {
    background: inherit;
}

#footerPrincipal .container {
    padding-top: 0;
    padding-bottom: 0;
}

/* ========== COLUMNA PRINCIPAL (Logo + Info) ========== */
.footer-main-col {
    margin-bottom: 0;
}

.footer-main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    background: #eb9626; /* NARANJA/DORADO */
    padding: 2rem;
    border-radius: 0;
}

.footer-brand .navbar-brand {
    text-decoration: none;
}

.footer-logo {
    margin: 0;
    text-transform: uppercase;
    color: white;
    font-family: 'Oswald', sans-serif;
}

.footer-logo i {
    color: var(--dark);
}

.footer-about p {
    margin-top: 1rem;
    color: var(--dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ========== COLUMNAS DE CONTENIDO ========== */
.footer-content-col {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.footer-section-title {
    color: #eb9626; /* NARANJA/DORADO */
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
}

/* ========== SECCIÓN CONTACTO ========== */
.footer-contact-info {
    font-style: normal;
}

.footer-contact-item {
    display: flex;
    margin-bottom: 0.75rem;
    align-items: flex-start;
}

.footer-contact-item i {
    color: #eb9626; /* NARANJA/DORADO */
    margin-right: 0.75rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-contact-item p {
    margin-bottom: 0;
    color: #fff;
    font-size: 0.95rem;
}

.contact-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #eb9626;
    text-decoration: underline;
}

/* ========== REDES SOCIALES ========== */
.footer-social-links {
    display: flex;
    margin-top: 1.5rem;
    gap: 0.75rem;
}

.footer-social-btn {
   width: 45px;
   height: 45px;
   color: white;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 3px;
   font-size: 18px;
   transition: all 0.3s ease;
   text-decoration: none;
}

.footer-social-btn.facebook {
    background: #1877F2;
}

.footer-social-btn.facebook:hover {
   background: #155BB5;
   color: white;
   transform: scale(1.05);
}

.footer-social-btn.instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.footer-social-btn.instagram:hover {
   background: linear-gradient(45deg, #E1751F, #C91F69, #6D2C9A, #4145C4);
   color: white;
   transform: scale(1.05);
}

.footer-social-btn.youtube {
    background: #FF0000;
}

.footer-social-btn.youtube:hover {
   background: #CC0000;
   color: white;
   transform: scale(1.05);
}

/* ========== NAVEGACIÓN ========== */
.footer-links {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link {
    color: #fff; /* BLANCO */
    margin-bottom: 0.5rem;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-link:hover {
    color: #eb9626; /* NARANJA/DORADO */
}

.footer-link i {
    color: #eb9626; /* NARANJA/DORADO */
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

/* ========== ENLACE RENADE EN COLUMNA PRINCIPAL ========== */
.renade-document {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.renade-link {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.renade-link:hover {
    color: #666;
    text-decoration: underline;
}

.renade-link i {
    color: #dc3545;
}

/* ========== CALIDAD Y COMPROMISO ========== */
.footer-quality-info {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.quality-features {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quality-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.quality-item i {
    color: #eb9626;
    font-size: 1rem;
}

.certification-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========== COPYRIGHT ========== */
#footerCopyright {
    background: #222222;
    padding: 1rem 0;
}

#footerCopyright .container {
    text-align: center;
}

.copyright-text {
    margin-bottom: 0;
    color: #ccc;
    font-size: 0.9rem;
}

.copyright-text a {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.copyright-text a:hover {
    border-bottom-color: white;
}

/* ========== RESPONSIVE FIXES ========== */

/* Desktop Grande (≥1200px) */
@media (min-width: 1200px) {
    .footer-main-content {
        padding: 3rem 2.5rem;
    }
    
    .footer-content-col {
        padding-left: 2rem;
        padding-right: 1.5rem;
    }
    
    .footer-section-title {
        font-size: 1.2rem;
        margin-bottom: 1.75rem;
    }
}

/* Tablet Landscape (992px-1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    #footerPrincipal .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .footer-main-col {
        flex: 0 0 35%;
        max-width: 35%;
    }
    
    .footer-main-content {
        padding: 2rem 1.5rem;
        height: 100%;
    }
    
    .footer-about p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .footer-content-wrapper {
        flex: 0 0 65%;
        max-width: 65%;
    }
    
    .footer-content-col {
        padding-top: 1.75rem;
        padding-bottom: 1.75rem;
        padding-left: 1.25rem;
        padding-right: 1rem;
    }
    
    .footer-section-title {
        font-size: 1.05rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-contact-item,
    .footer-link {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .footer-recognition {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .footer-social-links {
        margin-top: 1.25rem;
        gap: 0.6rem;
    }
    
    .footer-social-btn.facebook {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .footer-social-btn.instagram {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .footer-social-btn.youtube {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Tablet Portrait (768px-991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .footer-main-col {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 0;
    }
    
    .footer-main-content {
        padding: 2.5rem 2rem;
        margin-bottom: 0;
    }
    
    .footer-about p {
        font-size: 0.95rem;
        margin-top: 1.25rem;
    }
    
    .footer-content-wrapper {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .footer-content-wrapper .row {
        margin-left: -0.75rem;
        margin-right: -0.75rem;
    }
    
    .footer-content-col {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        padding: 1.5rem 0.75rem;
    }
    
    .footer-section-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-contact-item,
    .footer-link,
    .footer-recognition {
        font-size: 0.85rem;
    }
    
    .footer-contact-item {
        margin-bottom: 0.5rem;
    }
    
    .footer-link {
        margin-bottom: 0.4rem;
    }
    
    .footer-social-links {
        margin-top: 1rem;
        gap: 0.5rem;
        justify-content: flex-start;
    }
    
    .footer-social-btn.facebook {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    
    .footer-social-btn.instagram {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    
    .footer-social-btn.youtube {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}

/* Mobile (≤767px) */
@media (max-width: 767px) {
    .footer-main-content {
        padding: 2rem 1.5rem;
    }
    
    .footer-content-col {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 1.25rem 1rem;
        text-align: left;
    }
    
    .footer-section-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .footer-contact-item {
        justify-content: flex-start;
        text-align: left;
    }
    
    .footer-links {
        align-items: flex-start;
    }
    
    .footer-recognition {
        text-align: center;
        padding: 0 1rem;
    }
    
    .footer-social-links {
        justify-content: center;
        margin-top: 1.25rem;
    }
}

/* Mobile Pequeño (≤575px) */
@media (max-width: 575px) {
    .footer-main-content {
        padding: 1.5rem 1rem;
    }
    
    .footer-logo {
        font-size: 1.8rem;
    }
    
    .footer-content-col {
        padding: 1rem 0.75rem;
    }
    
    .footer-section-title {
        font-size: 1rem;
    }
    
    .footer-contact-item,
    .footer-link,
    .footer-recognition {
        font-size: 0.9rem;
    }
    
    .footer-social-btn.facebook {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    
    .footer-social-btn.instagram {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    
    .footer-social-btn.youtube {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}