/* =========================================
   FOOTER PROFESIONAL - ESTILO EMPRESARIAL
   Layout: Logo izquierda + Info centro/derecha
   Colores: Naranjas de Fénix Contadores
   ========================================= */

.pager__footer-professional {
    background-color: rgba(229, 115, 42) !important;
    /* Naranja medio como fondo principal */
    width: 100%;
    margin-top: 60px;
}

/* Sección principal del footer */
.footer-main-section {
    padding: 0px;
}

/* Grid de 3 columnas */
.footer-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== COLUMNA DE MARCA (Logo + Descripción + Redes) ===== */
.footer-brand-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-box {
    margin-bottom: 10px;
}

.footer-brand-logo {
    max-width: 200px;
    height: auto;
}

.footer-brand-description {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* Redes sociales */
.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon.facebook {
    background-color: #3b5998;
}

.social-icon.tiktok {
    background-color: #000000;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.youtube {
    background-color: #ff0000;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* ===== COLUMNAS DE INFORMACIÓN ===== */
.footer-info-column h4.footer-column-title {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 10px;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-contact-item i {
    font-size: 1.3rem;
    color: #ffffff;
    margin-top: 3px;
    min-width: 20px;
}

.footer-contact-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
    color: #ffffff;
}

.footer-contact-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    color: #ffffff;
}

.footer-contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-contact-item a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* ===== SECCIÓN COPYRIGHT ===== */
.footer-copyright {
    background-color: rgba(229, 115, 42) !important;
    /* Naranja más oscuro para copyright */
    padding: 20px;
    text-align: center;
}

.footer-copyright-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-copyright p {
    color: #ffffff;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .footer-content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand-column {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }

    .footer-social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-main-section {
        padding: 30px 15px;
    }

    .footer-brand-logo {
        max-width: 150px;
    }

    .footer-contact-item {
        flex-direction: column;
        gap: 8px;
        text-align: left;
    }

    .footer-contact-item i {
        margin-top: 0;
    }
}