/* ===== CONTENEDOR MAESTRO (FONDO NEGRO ABSOLUTO EDITORIAL) ===== */
.cnf-footer-section {
    background: linear-gradient(40deg, #333 0%, #192a39 60%, #333 100%);
    color: #ffffff;
    padding: 80px 0 60px 0;
    font-family: 'Inter', -apple-system, sans-serif;
    width: 100%;
    box-sizing: border-box;
    letter-spacing: -0.01em;
}

.cnf-footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

/* ===== ENLACES GLOBALES REFINADOS ===== */
.cnf-footer-link,
.cnf-interactive-link,
.cnf-social-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
}

/* ===== REGLA DE DIVISIÓN INTEGRAL ===== */
.cnf-divider-line {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    margin: 50px 0;
}

/* ===== COMPONENTE: ETIQUETAS LATERALES EN GRIS FINO ===== */
.cnf-sitemap-meta-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    padding-top: 2px;
}

/* ===== ESTRUCTURA ROW SUPERIOR ===== */
.cnf-top-row {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
}

.cnf-brand-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: 40px;
}

.cnf-logo-wrapper {
    width: 110px;
    height: 110px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cnf-gold-seal {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(180, 147, 90, 0.15));
}

.cnf-brand-column:hover .cnf-logo-wrapper {
    transform: scale(1.03) rotate(3deg);
}

.cnf-main-brand-title {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin: 0;
}

/* GRID DE INFORMACIÓN DE PRÁCTICA */
.cnf-practice-info-grid {
    display: grid;
    grid-template-columns: 150px repeat(4, 1fr);
    gap: 24px;
}

/* COMPONENTES DE COLUMNAS */
.cnf-info-column,
.cnf-sitemap-column {
    display: flex;
    flex-direction: column;
}

.cnf-column-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #f4b000;
    /* Tu dorado característico premium */
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* BLOQUES DE TEXTO INTERNOS */
.cnf-address-block,
.cnf-contact-block,
.cnf-hours-block {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 16px 0;
}

.cnf-address-block strong,
.cnf-contact-block strong {
    color: #ffffff;
    font-weight: 500;
    display: block;
    margin-bottom: 2px;
}

.cnf-address-block:last-child,
.cnf-contact-block:last-child {
    margin-bottom: 0;
}

/* LISTAS SOCIALES Y LEGALES */
.cnf-social-list,
.cnf-legal-list,
.cnf-sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cnf-social-link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.cnf-social-link:hover,
.cnf-interactive-link:hover {
    color: #b4935a;
}

/* ===== ESTRUCTURA ROW INFERIOR (SITEMAP) ===== */
.cnf-bottom-row {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
}

.cnf-sitemap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.cnf-sitemap-list {
    gap: 14px;
}

.cnf-sitemap-list .cnf-footer-link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    position: relative;
    padding-bottom: 2px;
}

/* Animación líquida de subrayado al hacer Hover */
.cnf-sitemap-list .cnf-footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #b4935a;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cnf-sitemap-list .cnf-footer-link:hover {
    color: #ffffff;
}

.cnf-sitemap-list .cnf-footer-link:hover::after {
    width: 100%;
}

/* Espaciadores internos para slots múltiples en columnas */
.cnf-margin-top-slot {
    margin-top: 30px;
}

/* ===== MEDIAS QUERIES (RESPONSIVO TOTALMENTE FLUIDO) ===== */
@media (max-width: 1200px) {

    .cnf-top-row,
    .cnf-bottom-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cnf-brand-column {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 30px;
    }

    .cnf-practice-info-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .cnf-sitemap-meta-label {
        display: none;
    }
}

@media (max-width: 768px) {
    .cnf-footer-container {
        padding: 0 24px;
    }

    .cnf-practice-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cnf-sitemap-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .cnf-footer-section {
        padding: 60px 0 40px 0;
    }
}

@media (max-width: 480px) {
    .cnf-practice-info-grid {
        grid-template-columns: 1fr;
    }

    .cnf-sitemap-grid {
        grid-template-columns: 1fr;
    }
}