.cg-clientes-container{
    width:100%;
}

.cg-search-form{
    margin-bottom:30px;
}

.cg-search-form input{
    width:300px;
    max-width:100%;
    padding:10px;
}

.cg-search-form button{
    padding:10px 20px;
}

.cg-item{
    display:flex;
    gap:20px;
    padding:20px;
    border:1px solid #ddd;
    margin-bottom:15px;
    border-radius:8px;
}

.cg-logo{
    width:120px;
    flex-shrink:0;
}

.cg-logo img{
    width:100%;
    height:auto;
}

.cg-info{
    flex:1;
}

.cg-info h3{
    margin-top:0;
}

.cg-pagination{
    margin-top:25px;
}

@media(max-width:768px){

    .cg-item{
        flex-direction:column;
    }

    .cg-logo{
        width:100%;
        text-align:center;
    }

    .cg-logo img{
        max-width:150px;
    }

}

/* =========================
   BUSCADOR CORPORATIVO
========================= */

.cg-search-form{
    margin-bottom:30px;
}

.cg-search-wrapper{
    display:flex;
    align-items:center;
    gap:12px;
    background:#fff;
    padding:15px;
    border-radius:12px;
    border:1px solid #dbe2ea;
    box-shadow:0 4px 20px rgba(0,0,0,.05);
}

.cg-search-wrapper input{
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 16px !important;
    font-size: 15px;
    background: #fff0;

}

.cg-search-wrapper input::placeholder{
    color:#8b95a1;
}

.cg-search-wrapper button{
    display:flex;
    align-items:center;
    gap:8px;
    border:none;
    cursor:pointer;
    padding:14px 22px;
    border-radius:10px;
    background:#0057b8;
    color:#fff;
    font-weight:600;
    transition:all .3s ease;
}

.cg-search-wrapper button:hover{
    transform:translateY(-1px);
    background:#00479a;
}

.cg-search-wrapper svg{
    width:18px;
    height:18px;
}

@media(max-width:768px){

    .cg-search-wrapper{
        flex-direction:column;
    }

    .cg-search-wrapper button{
        width:100%;
        justify-content:center;
    }

}


.cg-item{
    display:flex;
    align-items:center;
    gap:25px;
}

.cg-logo{
    width:120px;
    min-width:120px;
}

.cg-info{
    flex:1;
}

.cg-resumen{
    margin:10px 0;
    line-height:1.7;
    color:#666;
}

.cg-action{
    min-width:140px;
    text-align:right;
}

.cg-btn-vermas{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 24px;
    background:#0057b8;
    color:#fff !important;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
    white-space:nowrap;
}

.cg-btn-vermas:hover{
    background:#003f85;
    transform:translateY(-2px);
}

@media(max-width:768px){

    .cg-item{
        flex-direction:column;
        align-items:flex-start;
    }

    .cg-action{
        width:100%;
        text-align:left;
    }

    .cg-btn-vermas{
        width:100%;
    }

}

/*==================================
DETALLE CLIENTE
==================================*/

.cg-detalle-cliente{
    max-width:1000px;
    margin:40px auto;
    padding:40px;
    background:#ffffff;
    border-radius:16px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.cg-detalle-logo{
    text-align:center;
    margin-bottom:30px;
}

.cg-detalle-logo img{
    max-width:350px;
    width:100%;
    height:auto;
    object-fit:contain;
}

.cg-detalle-titulo{
    text-align:center;
    font-size:38px;
    font-weight:700;
    margin-bottom:30px;
}

.cg-detalle-descripcion{
    text-align:justify;
    line-height:1.9;
    color:#555;
    margin-bottom:40px;
}

.cg-detalle-contacto{
    border-top:1px solid #e5e5e5;
    padding-top:30px;
}

.cg-detalle-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
    padding:18px;
    margin-bottom:15px;
    background:#f8f9fb;
    border-radius:12px;
}

.cg-detalle-icono{
    font-size:30px;
    min-width:40px;
}

.cg-detalle-contenido{
    flex:1;
}

.cg-detalle-contenido strong{
    display:block;
    margin-bottom:5px;
    color:#222;
}

.cg-detalle-contenido a{
    color:#0057b8;
    text-decoration:none;
    word-break:break-word;
}

.cg-detalle-contenido a:hover{
    text-decoration:underline;
}

.cg-detalle-contenido span{
    color:#555;
}

@media(max-width:768px){

    .cg-detalle-cliente{
        padding:25px;
    }

    .cg-detalle-logo img{
        max-width:220px;
    }

    .cg-detalle-titulo{
        font-size:28px;
    }

    .cg-detalle-item{
        flex-direction:row;
    }

}
.cg-clientes-container{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.cg-item{
    width:100%;
    display:flex;
    align-items:center;
    gap:25px;
    padding:20px;
    border:1px solid #e5e7eb;
    border-radius:12px;
    background:#fff;
}

