/* ============================================
   DEPOIMENTOS - ESTILOS MOBILE (MESMO DESIGN)
   ============================================ */

.testimonials-mobile {
    background: #fff;
    padding: 60px 0;
}

.section-title-mobile-test {
    color: #2e1809;
    font-size: 28px;
    line-height: 1.1;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    margin-top: 12px;
}

/* ===== SLIDER MOBILE ===== */
.testimonials-slider-mobile {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonials-viewport-mobile {
    overflow: hidden;
}

.testimonials-track-mobile {
    display: flex;
    transition: transform 0.4s ease;
    gap: 20px;
}

.testimonial-slide-mobile {
    flex: 0 0 100%;
    min-width: 100%;
    transition: transform 0.4s ease;
}

/* ===== CARD MOBILE (MESMO DESIGN DO DESKTOP) ===== */
.testimonial-card {
    background: #fafaf8;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(46, 24, 9, 0.04);
    transition: all 0.4s ease;
    height: 100%;
}

.testimonial-stars {
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: #d6b88d;
    font-size: 15px;
    margin: 0 1px;
}

.testimonial-text {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

/* ===== SETAS MOBILE ===== */
.slider-arrow-mobile {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e8e4dc;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: #2e1809;
    font-size: 16px;
}

.slider-arrow-mobile:hover {
    background: #572b07;
    border-color: #572b07;
    color: #fff;
}

.slider-arrow-left-mobile {
    left: 0;
}

.slider-arrow-right-mobile {
    right: 0;
}

/* ===== DOTS MOBILE ===== */
.testimonial-dots-mobile {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.testimonial-dots-mobile .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots-mobile .dot.active {
    background: #572b07;
}

/* ============================================
   RESPONSIVIDADE MOBILE
   ============================================ */

@media (max-width: 480px) {
    .testimonials-slider-mobile {
        padding: 0 32px;
    }

    .testimonial-card {
        padding: 24px 18px !important;
    }

    .testimonial-text {
        font-size: 13px !important;
    }

    .slider-arrow-mobile {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .testimonial-stars i {
        font-size: 13px !important;
    }
}

/* ============================================
   CONTROLE DE EXIBIÇÃO
   ============================================ */

/* Mobile: mostra mobile, esconde desktop */
@media (max-width: 767px) {
    .testimonials-desktop {
        display: none !important;
    }
    .testimonials-mobile {
        display: block !important;
    }
}

/* Desktop: mostra desktop, esconde mobile */
@media (min-width: 768px) {
    .testimonials-desktop {
        display: block !important;
    }
    .testimonials-mobile {
        display: none !important;
    }
}