/* CREDIVAC - Sentir del socio */

.cv-sentir,
.cv-sentir * {
    box-sizing: border-box;
}

.cv-sentir {
    width: 100%;
    padding: clamp(48px, 6vw, 84px) 20px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(0, 176, 80, 0.10), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f5f8fa 100%);
}

.cv-sentir__head {
    width: min(1180px, 100%);
    margin: 0 auto 30px;
    text-align: center;
}

.cv-sentir__kicker {
    display: inline-block;
    margin-bottom: 8px;
    color: #00883e;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.cv-sentir__head h2 {
    margin: 0;
    color: #003f7d;
    font-size: clamp(32px, 4.5vw, 52px);
    line-height: 1.08;
    text-transform: uppercase;
}

.cv-sentir__head p {
    width: min(760px, 100%);
    margin: 14px auto 0;
    color: #4b5f72;
    font-size: 17px;
    line-height: 1.65;
}

.cv-sentir__shell {
    position: relative;
    width: min(1240px, 100%);
    margin: 0 auto;
    padding: 0 52px;
}

.cv-sentir__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 40px) / 3);
    gap: 20px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    padding: 4px 2px 22px;
}

.cv-sentir__track::-webkit-scrollbar {
    display: none;
}

.cv-sentir__card {
    min-width: 0;
    overflow: hidden;
    scroll-snap-align: start;
    border: 1px solid rgba(0, 63, 125, 0.10);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(0, 45, 88, 0.12);
}

.cv-sentir__photo-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #e7eef2;
}

.cv-sentir__photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cv-sentir__number {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #00B050;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(0, 70, 32, 0.24);
}

.cv-sentir__body {
    display: flex;
    min-height: 310px;
    flex-direction: column;
    padding: 22px;
}

.cv-sentir__body h3 {
    margin: 0;
    color: #003f7d;
    font-size: 20px;
    line-height: 1.25;
}

.cv-sentir__body > p {
    margin: 12px 0 18px;
    color: #4b5f72;
    font-size: 15px;
    line-height: 1.55;
}

.cv-sentir__audio-box {
    margin-top: auto;
    padding: 14px;
    border-radius: 14px;
    background: #edf8f2;
    border-left: 4px solid #00B050;
}

.cv-sentir__audio-label {
    display: block;
    margin-bottom: 9px;
    color: #006b31;
    font-size: 13px;
    font-weight: 800;
}

.cv-sentir__audio-box audio {
    display: block;
    width: 100%;
    height: 40px;
}

.cv-sentir__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: #003f7d;
    color: #ffffff;
    font-size: 23px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 45, 88, 0.22);
    transform: translateY(-50%);
}

.cv-sentir__nav:hover,
.cv-sentir__nav:focus-visible {
    background: #00B050;
}

.cv-sentir__nav--prev {
    left: 0;
}

.cv-sentir__nav--next {
    right: 0;
}

.cv-sentir__status {
    width: min(1180px, 100%);
    min-height: 20px;
    margin: 4px auto 0;
    color: #526475;
    font-size: 13px;
    text-align: center;
}

@media (max-width: 1024px) {
    .cv-sentir__track {
        grid-auto-columns: calc((100% - 20px) / 2);
    }
}

@media (max-width: 767px) {
    .cv-sentir {
        padding: 44px 12px 52px;
    }

    .cv-sentir__head {
        margin-bottom: 22px;
    }

    .cv-sentir__head p {
        font-size: 15px;
    }

    .cv-sentir__shell {
        padding: 0 6px;
    }

    .cv-sentir__track {
        grid-auto-columns: 91%;
        gap: 14px;
        padding-inline: 2px;
    }

    .cv-sentir__body {
        min-height: 285px;
        padding: 18px;
    }

    .cv-sentir__body h3 {
        font-size: 19px;
    }

    .cv-sentir__nav {
        display: none;
    }
}
