/* ============================================================
   SECCIÓN RESULTADOS / TESTIMONIOS
============================================================ */

.seccionResultados {
    position: relative;
    overflow: hidden;
    padding: 150px 0 130px;
    background:
        linear-gradient(
            180deg,
            #00B39F 0%,
            #007b71 36%,
            #010103 100%
        );
}

/* HEADER */

.resultados-header {
    text-align: center;
    margin-bottom: 90px;
}

.resultados-header h2 {
    color: #ffffff;
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -1.8px;
    margin-bottom: 28px;
}

.resultados-header p {
    color: rgba(255,255,255,0.78);
    line-height: 1.5;
    max-width: 980px;
    margin: 0 auto;
}

/* CARRUSEL INFINITO */

.resultados-carousel {
    position: relative;
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 150px,
        #000 calc(100% - 150px),
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 150px,
        #000 calc(100% - 150px),
        transparent 100%
    );
}

.resultados-track {
    display: flex;
    align-items: stretch;
    gap: 28px;
    width: max-content;
    animation: resultadosScroll 28s linear infinite;
}

.resultados-carousel:hover .resultados-track {
    animation-play-state: paused;
}

@keyframes resultadosScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* CARD */

.resultado-card {
    width: 430px;
    min-width: 430px;
    min-height: 325px;
    border-radius: 28px;
    padding: 20px 24px 36px;
    background:
        linear-gradient(
            135deg,
            rgba(7, 9, 12, 0.98) 0%,
            rgba(7, 14, 24, 0.96) 48%,
            rgba(5, 23, 46, 0.92) 100%
        );
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.28);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* CARD HEADER */

.resultado-card-header {
    display: flex;
    align-items: center;
    gap: 24px;
}

.resultado-logo-box {
    width: 104px;
    height: 104px;
    min-width: 104px;
    border-radius: 22px;
    border: 1.5px solid #ff2c91;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.02);
    overflow: hidden;
}

.resultado-logo-box.logo-cyan {
    border-color: #00d6c4;
}

.resultado-logo-box img {
    max-width: 74px;
    max-height: 74px;
    object-fit: contain;
}

.resultado-card h3 {
    color: #ffffff;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 10px;
}

.resultado-card-header p {
    color: rgba(255,255,255,0.58);
    line-height: 1.35;
    margin: 0;
}

/* QUOTE */

.resultado-card blockquote {
    color: rgba(255,255,255,0.86);
    line-height: 1.42;
    text-align: center;
    font-weight: 300;
    margin: 42px 0 0;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
.resultado-card {
        width: 390px;
        min-width: 390px;
    }
}

@media (max-width: 768px) {
    .seccionResultados {
        padding: 100px 0 90px;
    }

    .resultados-header {
        margin-bottom: 55px;
    }

    .resultados-header h2 {
        letter-spacing: -1px;
    }
    .resultados-carousel {
        width: 100%;
        -webkit-mask-image: linear-gradient(
            to right,
            transparent 0%,
            #000 50px,
            #000 calc(100% - 50px),
            transparent 100%
        );
        mask-image: linear-gradient(
            to right,
            transparent 0%,
            #000 50px,
            #000 calc(100% - 50px),
            transparent 100%
        );
    }

    .resultados-track {
        gap: 20px;
        animation-duration: 22s;
    }

    .resultado-card {
        width: 320px;
        min-width: 320px;
        min-height: auto;
        padding: 24px;
    }

    .resultado-card-header {
        align-items: flex-start;
        gap: 16px;
    }

    .resultado-logo-box {
        width: 82px;
        height: 82px;
        min-width: 82px;
        border-radius: 18px;
    }

    .resultado-logo-box img {
        max-width: 58px;
        max-height: 58px;
    }
.resultado-card blockquote {
        margin-top: 34px;
    }
}

