/* Reset e Isolamento Total */
.depoimentos-slider-container, 
.depoimentos-slider-container * {
    box-sizing: border-box !important;
}

.depoimentos-slider-container {
    max-width: 1000px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    font-family: 'Montserrat', sans-serif !important;
    position: relative !important;
    width: 100% !important;
    display: block !important;
}

/* Viewport Rígido - A "Janela" que corta tudo */
.depoimentos-viewport {
    overflow: hidden !important;
    width: 100% !important;
    position: relative !important;
    border-radius: 30px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02) !important;
    border: 1px solid #f0f0f0 !important;
    background: #fff !important;
}

/* Wrapper que desliza */
.depoimentos-wrapper {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Card */
.depoimento-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    background: #fff !important;
    padding: 40px !important;
    position: relative !important;
    margin: 0 !important;
}

.depoimento-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    margin-bottom: 25px !important;
}

.depoimento-stars {
    color: #C5A367 !important;
    font-size: 22px !important;
    letter-spacing: 2px !important;
}

.depoimento-quote-icon {
    width: 60px !important;
    height: 60px !important;
    opacity: 0.8 !important;
}

.depoimento-content {
    margin-bottom: 30px !important;
}

.depoimento-content p {
    font-family: 'Lora', serif !important;
    font-size: 22px !important;
    line-height: 1.5 !important;
    color: #333 !important;
    margin: 0 !important;
    font-weight: 400 !important;
}

.depoimento-footer {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
}

.depoimento-avatar {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    background: #1A1A1A !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.depoimento-avatar img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.avatar-placeholder {
    color: #C5A367 !important;
    font-weight: 600 !important;
    font-size: 20px !important;
    font-family: 'Lora', serif !important;
}

.depoimento-info h4 {
    margin: 0 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #1A1A1A !important;
}

.depoimento-info p {
    margin: 2px 0 0 !important;
    font-size: 14px !important;
    color: #888 !important;
}

/* Navigation - Posicionada ABAIXO do card */
.depoimentos-navigation {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 30px !important; /* Espaço entre o card e a navegação */
    gap: 20px !important;
    position: relative !important;
    z-index: 10 !important;
}

.depo-prev, .depo-next {
    background: #fff !important;
    border: 1px solid #e0e0e0 !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    color: #333 !important;
    padding: 0 !important;
}

.depo-prev:hover, .depo-next:hover {
    background: #f9f9f9 !important;
    border-color: #C5A367 !important;
}

.depo-prev svg, .depo-next svg {
    width: 20px !important;
    height: 20px !important;
}

.depo-dots {
    display: flex !important;
    gap: 8px !important;
    align-items: center !important;
}

.depo-dot {
    width: 8px !important;
    height: 8px !important;
    background: #ddd !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.depo-dot.active {
    background: #C5A367 !important;
    width: 25px !important;
    border-radius: 10px !important;
}

/* Responsive */
@media (max-width: 768px) {
    .depoimento-card {
        padding: 25px 20px !important; /* Padding reduzido para ganhar espaço lateral */
        min-height: auto !important; /* Garante que não haja altura mínima forçada */
    }
    
    .depoimento-header {
        margin-bottom: 15px !important;
    }

    .depoimento-content {
        margin-bottom: 20px !important;
    }

    .depoimento-content p {
        font-size: 16px !important; /* Fonte levemente menor para caber melhor */
        line-height: 1.4 !important;
    }
    
    .depoimento-quote-icon {
        width: 35px !important;
        height: 35px !important;
    }

    .depoimento-stars {
        font-size: 18px !important;
    }

    .depoimento-avatar {
        width: 50px !important;
        height: 50px !important;
    }

    .depoimento-info h4 {
        font-size: 16px !important;
    }

    .depoimento-info p {
        font-size: 13px !important;
    }

    /* Ajuste na navegação mobile */
    .depoimentos-navigation {
        margin-top: 20px !important;
        gap: 15px !important;
    }

    .depo-prev, .depo-next {
        width: 40px !important;
        height: 40px !important;
    }
}
