/* =========================================================
   NATURIVA
   SECCIÓN CLIENTES / RESEÑAS
   CSS EXCLUSIVO
========================================================= */

.naturiva-clientes {

    --clientes-verde-oscuro: #0b6b3a;
    --clientes-verde: #7fbf4d;
    --clientes-verde-claro: #a7d46b;
    --clientes-crema: #f8f5ec;
    --clientes-blanco: #ffffff;
    --clientes-texto: #26382d;
    --clientes-texto-suave: #66756b;
    --clientes-dorado: #e6a93a;

    position: relative;

    width: 100%;

    padding: 120px 30px 130px;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(127,191,77,.13),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(167,212,107,.16),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #f8f5ec 0%,
            #ffffff 48%,
            #f1f7e9 100%
        );

    overflow: hidden;

    isolation: isolate;
}


/* DECORACIÓN SUPERIOR */

.naturiva-clientes::before {

    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    top: -220px;
    left: -180px;

    border-radius: 50%;

    background: rgba(127,191,77,.10);

    filter: blur(5px);

    z-index: -1;
}


.naturiva-clientes::after {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -170px;
    bottom: -180px;

    border-radius: 50%;

    background: rgba(11,107,58,.08);

    filter: blur(10px);

    z-index: -1;
}


/* CONTENEDOR */

.clientes-contenedor {

    width: 100%;
    max-width: 1250px;

    margin: auto;
}


/* =========================================================
   ENCABEZADO
========================================================= */

.clientes-header {

    text-align: center;

    max-width: 850px;

    margin: 0 auto 60px;
}


.clientes-etiqueta {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 20px;

    margin-bottom: 18px;

    border-radius: 50px;

    background: rgba(127,191,77,.12);

    border: 1px solid rgba(127,191,77,.30);

    color: var(--clientes-verde-oscuro);

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: .7px;

}


.clientes-etiqueta::before {

    content: "✦";

    color: var(--clientes-verde);

    font-size: 14px;
}


.clientes-header h2 {

    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(48px, 6vw, 76px);

    line-height: .95;

    font-weight: 700;

    color: var(--clientes-verde-oscuro);

    letter-spacing: -.8px;
}


.clientes-header h2 span {

    color: var(--clientes-verde);

    display: inline-block;

    position: relative;
}


.clientes-header h2 span::after {

    content: "";

    position: absolute;

    left: 5%;

    right: 5%;

    bottom: -8px;

    height: 3px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--clientes-verde-claro),
            transparent
        );
}


.clientes-header p {

    margin: 25px auto 0;

    max-width: 650px;

    font-family: "Poppins", sans-serif;

    font-size: 15px;

    line-height: 1.8;

    color: var(--clientes-texto-suave);
}


.clientes-linea {

    width: 70px;

    height: 4px;

    margin: 28px auto 0;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            var(--clientes-verde),
            var(--clientes-verde-claro)
        );
}


/* =========================================================
   SLIDER
========================================================= */

.clientes-slider {

    position: relative;

    display: flex;

    align-items: center;

    gap: 25px;

    width: 100%;
}


.clientes-viewport {

    width: 100%;

    overflow: hidden;

    padding: 25px 5px 35px;
}


.clientes-track {

    display: flex;

    gap: 28px;

    transition:
        transform .65s cubic-bezier(.22,.61,.36,1);

    will-change: transform;
}


/* =========================================================
   TARJETA
========================================================= */

.cliente-card {

    position: relative;

    flex: 0 0 calc(
        (100% - 56px) / 3
    );

    min-width: 0;

    padding: 35px 32px 30px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fbfaf5
        );

    border: 1px solid rgba(11,107,58,.13);

    border-radius: 28px;

    box-shadow:
        0 18px 45px rgba(11,107,58,.10),
        0 3px 10px rgba(0,0,0,.04);

    overflow: hidden;

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;
}


.cliente-card:hover {

    transform: translateY(-10px);

    border-color:
        rgba(127,191,77,.45);

    box-shadow:
        0 28px 65px rgba(11,107,58,.16),
        0 0 0 1px rgba(127,191,77,.08);
}


/* DECORACIÓN DE LA TARJETA */

.cliente-card-decoracion {

    position: absolute;

    width: 120px;
    height: 120px;

    top: -65px;
    right: -60px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(167,212,107,.35),
            rgba(167,212,107,0)
        );

    pointer-events: none;
}


/* =========================================================
   FOTO
========================================================= */

.cliente-foto-contenedor {

    position: relative;

    width: 86px;
    height: 86px;

    margin: 0 auto 15px;

    padding: 4px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--clientes-verde),
            var(--clientes-verde-claro)
        );

    box-shadow:
        0 8px 20px rgba(11,107,58,.18);
}


.cliente-foto {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 50%;

    background: #edf3e7;

    border: 3px solid white;
}


/* =========================================================
   ESTRELLAS
========================================================= */

.cliente-estrellas {

    text-align: center;

    color: var(--clientes-dorado);

    font-size: 17px;

    letter-spacing: 4px;

    margin-bottom: 20px;

    text-shadow:
        0 2px 8px rgba(230,169,58,.18);
}


/* =========================================================
   RESEÑA
========================================================= */

.cliente-resena {

    position: relative;

    padding: 0 3px;

    min-height: 145px;
}


.cliente-comillas {

    position: absolute;

    left: 0;
    top: -17px;

    font-family:
        Georgia,
        serif;

    font-size: 62px;

    line-height: 1;

    color: var(--clientes-verde-claro);

    opacity: .65;
}


.cliente-resena p {

    position: relative;

    margin: 0;

    padding-left: 4px;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    line-height: 1.75;

    color: var(--clientes-texto);
}


/* =========================================================
   DATOS
========================================================= */

.cliente-datos {

    margin-top: 20px;

    padding-top: 18px;

    border-top:
        1px solid rgba(11,107,58,.10);

    text-align: center;
}


.cliente-datos h3 {

    margin: 0 0 3px;

    font-family: "Poppins", sans-serif;

    font-size: 15px;

    font-weight: 700;

    color: var(--clientes-verde-oscuro);
}


.cliente-datos span {

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    color: var(--clientes-texto-suave);
}


/* =========================================================
   DETALLES
========================================================= */

.cliente-detalles {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin-top: 20px;
}


.cliente-detalle {

    padding: 12px;

    border-radius: 14px;

    background:
        rgba(127,191,77,.07);

    border:
        1px solid rgba(127,191,77,.12);
}


.cliente-detalle strong {

    display: block;

    margin-bottom: 4px;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    color: var(--clientes-verde-oscuro);
}


.cliente-detalle span {

    display: block;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    line-height: 1.4;

    color: var(--clientes-texto-suave);
}


/* =========================================================
   CALIFICACIONES
========================================================= */

.cliente-calificaciones {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 8px;

    margin-top: 12px;
}


.cliente-calificacion {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 10px 5px;

    border-radius: 13px;

    background: #f5f8ef;

    border: 1px solid rgba(11,107,58,.08);
}


.cliente-calificacion span {

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    color: var(--clientes-texto-suave);

    margin-bottom: 3px;
}


.cliente-calificacion strong {

    font-family: "Poppins", sans-serif;

    font-size: 16px;

    color: var(--clientes-verde-oscuro);
}


.cliente-calificacion strong::after {

    content: " ★";

    color: var(--clientes-dorado);

    font-size: 11px;
}


/* =========================================================
   TRADUCCIÓN
========================================================= */

.cliente-traduccion {

    margin-top: 15px;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    color: #17849a;

    cursor: pointer;

    transition: color .25s ease;
}


.cliente-traduccion:hover {

    color: var(--clientes-verde-oscuro);

    text-decoration: underline;
}


/* =========================================================
   FUENTE GOOGLE
========================================================= */

.cliente-fuente {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    margin-top: 20px;

    padding-top: 15px;

    border-top:
        1px solid rgba(11,107,58,.08);

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    color: #8a948d;
}


.cliente-google-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 21px;
    height: 21px;

    border-radius: 50%;

    background: white;

    box-shadow:
        0 2px 7px rgba(0,0,0,.12);

    font-family: Arial, sans-serif;

    font-size: 13px;

    font-weight: 700;

    color: #4285f4;
}


/* =========================================================
   FLECHAS
========================================================= */

.clientes-flecha {

    flex: 0 0 auto;

    width: 54px;
    height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(11,107,58,.20);

    background: rgba(255,255,255,.85);

    color: var(--clientes-verde-oscuro);

    box-shadow:
        0 8px 22px rgba(11,107,58,.12);

    cursor: pointer;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease,
        box-shadow .3s ease;
}


.clientes-flecha span {

    font-family: Arial, sans-serif;

    font-size: 36px;

    font-weight: 300;

    line-height: 1;

    margin-top: -3px;
}


.clientes-flecha:hover {

    transform: scale(1.08);

    background:
        linear-gradient(
            135deg,
            var(--clientes-verde),
            var(--clientes-verde-oscuro)
        );

    color: white;

    border-color:
        var(--clientes-verde);

    box-shadow:
        0 10px 28px rgba(11,107,58,.25);
}


.clientes-flecha:active {

    transform: scale(.95);
}


/* =========================================================
   INDICADORES
========================================================= */

.clientes-indicadores {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 8px;

    margin-top: 10px;
}


.cliente-indicador {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #cddac7;

    border: none;

    padding: 0;

    cursor: pointer;

    transition:
        width .3s ease,
        background .3s ease;
}


.cliente-indicador.activo {

    width: 28px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            var(--clientes-verde-oscuro),
            var(--clientes-verde)
        );
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .cliente-card {

        flex: 0 0 calc(
            (100% - 28px) / 2
        );
    }

}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 700px) {

    .naturiva-clientes {

        padding:
            85px 15px 90px;
    }


    .clientes-header {

        margin-bottom: 35px;
    }


    .clientes-header h2 {

        font-size: 48px;
    }


    .clientes-header p {

        font-size: 13px;

        padding: 0 15px;
    }


    .clientes-slider {

        gap: 8px;
    }


    .clientes-viewport {

        padding:
            15px 2px 30px;
    }


    .cliente-card {

        flex: 0 0 100%;

        padding:
            30px 24px 25px;
    }


    .clientes-flecha {

        width: 43px;
        height: 43px;
    }


    .clientes-flecha span {

        font-size: 29px;
    }


    .cliente-resena {

        min-height: auto;
    }

}


/* =========================================================
   MÓVIL PEQUEÑO
========================================================= */

@media (max-width: 480px) {

    .clientes-flecha {

        position: absolute;

        z-index: 5;
    }


    .clientes-flecha-izquierda {

        left: 5px;
    }


    .clientes-flecha-derecha {

        right: 5px;
    }


    .clientes-viewport {

        padding-left: 20px;
        padding-right: 20px;
    }


    .cliente-detalles {

        grid-template-columns: 1fr;
    }

}
.google-review {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 14px;
    padding: 10px 18px;

    border-radius: 30px;

    /* Verde Naturiva */
    background: rgba(127, 191, 77, 0.12);
    border: 1px solid #7fbf4d;

    color: #7fbf4d !important;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none !important;

    transition: all 0.3s ease;
}

/* Estrella */
.google-review::before {
    content: "★";
    color: #7fbf4d;
    font-size: 14px;
}

/* Efecto al pasar el mouse */
.google-review:hover {
    background: #7fbf4d;
    border-color: #7fbf4d;

    color: #ffffff !important;

    transform: translateY(-2px);

    box-shadow:
        0 0 12px rgba(127, 191, 77, 0.35),
        0 0 25px rgba(127, 191, 77, 0.20);
}

/* Estrella blanca cuando pasas el mouse */
.google-review:hover::before {
    color: #ffffff;
}