/* ================= PAGINA 12 ================= */
.pagina12 {
    position: relative;
    margin-top: -50px;
}

/* ================= CTA ================= */
.p12-cta {
    position: relative;
    z-index: 2;
    margin-bottom: -120px;
}

.p12-cta-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--secondary-color);
    padding: 40px;
    color: #fff;
    gap: 30px;    
}

.p12-cta-grid h3{
    color: white;
}

.p12-left h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.p12-left p {
    color: #ffe3c2;
}

.p12-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.p12-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
}

/* ================= TESTIMONIOS ================= */
.p12-testimonials {
    background: url('../image/pagina_12_7.webp') center/cover no-repeat;
    position: relative;
    padding: 120px 0 80px;
}

.p12-testimonials::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15,26,35,0.85);
}

.p12-testimonials .container {
    position: relative;
    z-index: 2;
}

/* HEADER */
.p12-header {
    text-align: center;
    margin-bottom: 40px;
}

.p12-header span {
    color: var(--secondary-color);
    letter-spacing: 2px;
}

.p12-header h2 {
    color: #fff;
}

.p12-header h2 span {
    color: var(--secondary-color);
}

/* ================= SLIDER ================= */
.p12-slider {
    overflow: hidden;
}

.p12-track {
    display: flex;    
    transition: transform 0.6s ease;
}

/* CARD */
.p12-card {
    width: calc(100% / 6);
    padding: 15px;
    box-sizing: border-box;
}

.p12-card {
    background: #fff;
    padding: 30px;
    position: relative;
    border-bottom: 4px solid var(--secondary-color);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);

    min-width: 33.333%;
    padding: 15px;
    box-sizing: border-box;
}

/* STARS */
.stars {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* TEXTO */
.p12-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* USER */
.p12-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.p12-user img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
}

.p12-user span {
    color: var(--secondary-color);
    font-size: 13px;
}

/* NUMERO */
.quote {
    position: absolute;
    right: 25px;
    bottom: 15px;
    font-size: 48px;
    color: var(--secondary-color);
}

/* ================= DOTS ================= */
.p12-dots {
    text-align: center;
    margin-top: 25px;
}

.p12-dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #fff;
    opacity: 0.4;
    margin: 0 5px;
    cursor: pointer;
}

.p12-dots span.active {
    background: var(--secondary-color);
    opacity: 1;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {

    .p12-cta-grid {
        flex-direction: column;
        align-items: flex-start;
    }

    .p12-card {
        width: calc(100% / 4);
    }

    .p12-track {
        width: 200%;
    }
}

@media (max-width: 576px) {

    .p12-card {
        width: calc(100% / 2);
    }

    .p12-testimonials {
        padding: 140px 0 80px;
    }

}