/* ==========================================================================
   New Homepage Testimonials (Large Images Layout)
   ========================================================================== */
section.block-cards-slider {
    padding: 80px 0;
    background: #F5F3EF;
    color: #2A2822;
    overflow: hidden;
    font-family: "Saans", sans-serif;
}

.header-cards-slider {
    max-width: 800px;
    margin: 0 auto 48px auto;
    text-align: center;
    padding: 0 24px;
}

.header-cards-slider .antetitulo {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #5071E7;
    margin-bottom: 12px;
}

.header-cards-slider .titulo {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    color: #2A2822;
    margin: 0;
}

/* Container and Grid */
.inner-cards-slider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

/* Testimonial Card */
.testimonio-card-large {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0px 8px 30px rgba(225, 220, 212, 0.4);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 580px;
    border: 1px solid #f0ede6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonio-card-large:hover {
    transform: translateY(-6px);
    box-shadow: 0px 12px 40px rgba(225, 220, 212, 0.6);
}

.testimonio-card-large .card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 355/240;
    overflow: hidden;
    background-color: #f7f5f0;
}

.testimonio-card-large .card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.testimonio-card-large .card-content-wrapper {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.testimonio-card-large .quote-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.testimonio-card-large .quote-text {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #2A2822;
    margin: 0;
}

.testimonio-card-large .quote-subtext {
    font-size: 15px;
    line-height: 1.6;
    color: #5a5a65;
    margin: 0;
    font-weight: 300;
}

.testimonio-card-large .author-section {
    margin-top: 24px;
    border-top: 1px solid #f0ede6;
    padding-top: 20px;
}

.testimonio-card-large .author-name {
    font-size: 18px;
    font-weight: 600;
    color: #2A2822;
    margin: 0 0 4px 0;
}

.testimonio-card-large .author-role {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #5071E7;
    display: block;
}

/* Mobile Responsiveness & Native Scroll Snap */
@media (max-width: 991px) {
    .testimonios-grid {
        grid-template-columns: repeat(2, 1fr);
        overflow-x: visible;
        scroll-snap-type: none;
        padding-bottom: 0;
        gap: 24px;
    }
    
    .testimonio-card-large {
        scroll-snap-align: none;
        min-height: auto;
    }
    
    .inner-cards-slider {
        padding: 0 24px;
    }
    
    .header-cards-slider {
        margin-bottom: 32px;
    }
    
    .header-cards-slider .titulo {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .testimonios-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
