/* ==========================================================================
   CL Footer – Estilos del shortcode [cl_footer]
   ========================================================================== */

/* ---- Contenedor principal ---- */
.clf-footer {
    /*background-color: #010066;*/
    color: #ffffff;
    font-family: inherit;
    width: 100%;
}

/* ---- Línea decorativa superior (azul eléctrico) ---- */
.clf-top-bar {
    height: 4px;
    background: linear-gradient(90deg, #00cfff 0%, #0077ff 50%, #00cfff 100%);
    width: 100%;
}

/* ---- Fila interna de tres columnas ---- */
.clf-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 32px;
    /*max-width: 1200px;*/
    margin: 0 auto;
    padding: 48px 32px 40px;
}

/* ---- Columna base ---- */
.clf-col {
    flex: 1 1 220px;
    min-width: 200px;
}

/* ---- Caja con borde punteado azul ---- */
.clf-box {
    /*order: 1.5px dashed #1a8cff;*/
    border-radius: 4px;
    padding: 20px 18px;
    height: 100%;
    box-sizing: border-box;
}

/* ---- Logo ---- */
.clf-logo {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
}

.clf-logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1.15;
    text-transform: uppercase;
    color: #ffffff;
}

.clf-logo-icon {
    display: inline-flex;
    align-items: center;
    margin-top: 2px;
}

.clf-logo-icon svg {
    width: 38px;
    height: 38px;
    color: #1a8cff;
    flex-shrink: 0;
}

/* ---- Disclaimer ---- */
.clf-disclaimer {
    font-size: 0.78rem;
    line-height: 1.5;
    color: #ccd6ff;
    margin: 0 0 14px;
        max-width: 300px;
}

.clf-disclaimer strong {
    color: #ffffff;
    display: block;
    margin-bottom: 4px;
}

/* ---- Enlace de privacidad ---- */
.clf-privacy-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.2s;
}

.clf-privacy-link:hover,
.clf-privacy-link:focus {
    color: #00cfff;
}

/* ---- Datos de contacto ---- */
.clf-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
}

.clf-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    color: #FFF;
}

.clf-contact-icon svg {
    width: 20px;
    height: 20px;
}

.clf-contact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ccd6ff;
    margin-bottom: 2px;
}

.clf-contact-value {
    display: block;
    font-size: 0.95rem;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s;
}

.clf-contact-value:hover,
.clf-contact-value:focus {
    color: #00cfff;
}

/* ---- Iconos de redes sociales ---- */
.clf-social {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 8px;
}

.clf-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #ffffff;
    transition: color 0.2s, transform 0.2s;
}

.clf-social-link svg {
    width: 20px;
    height: 20px;
}

.clf-social-link:hover,
.clf-social-link:focus {
    color: #00cfff;
    transform: translateY(-2px);
}

/* ---- Menú de navegación (columna derecha) ---- */
.clf-col--nav {
    border: none;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.menu-footer-container{
    margin-top: 25px;
}

.clf-col--nav .clf-nav-list,
.clf-col--nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.clf-col--nav .clf-nav-list li,
.clf-col--nav ul li {
    margin-bottom: 8px;
}

.clf-col--nav .clf-nav-list a,
.clf-col--nav ul li a {
    color: #ccd6ff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
    display: block;
    padding: 2px 0;
}

.clf-col--nav .clf-nav-list a:hover,
.clf-col--nav ul li a:hover,
.clf-col--nav .clf-nav-list a:focus,
.clf-col--nav ul li a:focus {
    color: #00cfff;
}

/* ---- Barra inferior ---- */
.clf-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    padding: 16px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.clf-copyright {
    font-size: 0.82rem;
    color: #ccd6ff;
}

.clf-credits {
    font-size: 0.82rem;
    color: #ccd6ff;
}

.clf-credits a {
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.2s;
}

.clf-credits a:hover,
.clf-credits a:focus {
    color: #00cfff;
}


/*.attorna-footer-container.attorna-container.clearfix{
    max-width: 100% !important;
}*/

.clf-col.clf-col--contact{
    margin-top: 25px;
        display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .clf-inner {
        flex-direction: column;
        padding: 0;
        gap: 24px;
    }

    .clf-col {
        flex: 1 1 100%;
    }

    .clf-col--nav {
        justify-content: flex-start;
    }

    .clf-bottom-bar {
        padding: 14px 20px;
    }
    
    .clf-col.clf-col--contact{
         justify-content: flex-start;
    }
    
    .clf-box{
        padding: 0;
    }
}