﻿/*==================================================
    INS VALORES - EQUIPO DE ASESORES
==================================================*/

/*-----------------------------
    CONTENEDOR GENERAL
------------------------------*/

.asesores-page {
    position: relative;
    left: 50%;
    right: 50%;
    width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #fafbfc;
    padding: 45px 0 70px;
}

.asesores-header {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 45px;
    padding: 0 25px;
}

    .asesores-header span {
        display: block;
        color: #0B4E4E;
        font-size: 26px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .12em;
        margin-bottom: 10px;
    }

    .asesores-header h1 {
        margin: 0;
        color: #1EAEBC;
        font-size: 42px;
        font-weight: 700;
    }

    .asesores-header p {
        margin-top: 15px;
        max-width: 720px;
        color: #666;
        font-size: 17px;
        line-height: 1.7;
    }
.asesores-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-left: 4px solid #0B4E4E;
    padding-left: 12px;
}
/*-----------------------------
    CONTENEDOR DE TARJETAS
------------------------------*/

.asesores-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
}

/*-----------------------------
    GRID
------------------------------*/

.asesores-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 28px;
    width: 100%;
    margin-bottom: 40px;
}

/*-----------------------------
    TARJETA
------------------------------*/

.asesor-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    border: 1px solid #e8edf4;
    box-shadow: 0 8px 20px rgba(0,45,95,.06);
    transition: all .25s ease;
    height: 100%;
}


/* .asesor-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 35px rgba(0,45,95,.13);
    }*/

/*-----------------------------
    FOTO
------------------------------*/

.asesor-photo {
    width: 95px;
    height: 95px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #1EAEBC;
    background: #eef4fa;
}

.asesor-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.asesor-placeholder {
    width: 95px;
    height: 95px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 42px;
    color: #003b79;
    background: #eef4fa;
}

/*-----------------------------
    INFORMACIÓN
------------------------------*/

.asesor-info {
    flex: 1;
}

    .asesor-info h3 {
        margin: 0;
        padding: 0;
        color: #5f6f7f;
        font-size: 14px;
        line-height: 1.45;
        font-weight: 400;
    }

    .asesor-info .TextBox11_Negro_Bold {
        display: inline;
        color: #0B4E4E;
        font-size: 19px;
        font-weight: 700;
        line-height: 1.25;
        margin: 0;
        padding: 0;
    }

        .asesor-info .TextBox11_Negro_Bold::after {
            content: "";
            display: block;
            width: 42px;
            height: 3px;
            background: #0B4E4E;
            border-radius: 20px;
            margin: 6px 0 -12px 0;
        }
    .asesor-info a:hover {
        color: #0B4E4E;
        text-decoration: none;
    }
    .asesor-info a {
        display: inline-block;
        color: #0066b3;
        font-weight: 600;
        text-decoration: none;
        word-break: break-word;
    }
  
.asesor-puesto {
    margin-top: 8px;
    color: #0B4E4E;
    font-size: 14px;
    font-weight: 600;
   
}

.asesor-credencial {
    margin-top: 8px;
    color: #777;
    font-size: 13px;
}

.asesor-contacto {
    margin-top: 15px;
}

    .asesor-contacto a {
        color: #003b79;
        text-decoration: none;
        margin-right: 18px;
    }

        .asesor-contacto a:hover {
            color: #0B4E4E;
        }
/*-----------------------------
   Iconos
------------------------------*/
.asesores-valores {
    width: 100%;
    max-width: 1350px;
    margin: 30px auto 0;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    background: #fff;
    border-radius: 18px;
    padding: 34px 20px;
    border: 1px solid #e8edf4;
    box-shadow: 0 8px 20px rgba(0,45,95,.06);
}

.valor-item {
    position: relative;
    text-align: center;
    padding: 0 36px;
}

    .valor-item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 10px;
        width: 1px;
        height: calc(100% - 20px);
        background: #dfe6ed;
    }

.valor-icono {
    width: 76px;
    height: 76px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .valor-icono img {
        width: 76px;
        height: 76px;
        object-fit: contain;
        display: block;
    }

.valor-item h3 {
    margin: 0 0 10px;
    color: #0B4E4E;
    font-size: 19px;
    font-weight: 700;
}

.valor-item p {
    margin: 0 auto;
    max-width: 260px;
    color: #667085;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .asesores-valores {
        grid-template-columns: 1fr;
        margin-top: 45px;
        padding: 30px 24px;
    }

    .valor-item {
        padding: 28px 10px;
    }

        .valor-item:not(:last-child)::after {
            right: auto;
            top: auto;
            bottom: 0;
            left: 50%;
            width: 180px;
            height: 1px;
            transform: translateX(-50%);
        }
}
/*-----------------------------
    TABLET
------------------------------*/

@media (max-width:1199px) {

    .asesores-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
    .asesor-info .TextBox11_Negro_Bold::after {
        width: 55px;
    }

}

/*-----------------------------
    CELULAR
------------------------------*/

@media (max-width:767px) {

    .asesores-page {
        padding: 30px 0 45px;
    }

    .asesores-header {
        padding: 0 15px;
    }

    .asesores-content {
        padding: 0 15px;
    }

    .asesores-header h1 {
        font-size: 32px;
    }

    .asesores-grid {
        grid-template-columns: 1fr;
    }

    .asesor-card {
        flex-direction: column;
        text-align: center;
    }
    .asesor-info .TextBox11_Negro_Bold::after {
        width: 70px;
        margin: 8px auto -12px auto;
    }
}
