/* CBDev Testemunhos Frontend Styles */

.cbdev-testemunhos-wrapper {
    margin: 40px 0;
    position: relative;
    outline: none !important;
}

/* Section Header */
.cbdev-testemunhos-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    padding: 0 10px;
}

.cbdev-section-subtitle {
    font-size: 14px;
    letter-spacing: 0.15em;
    color: #8D5B5B; 
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 500;
}

.cbdev-section-title {
    font-family: serif; 
    font-size: 42px;
    line-height: 1.1;
    color: #5D3E3E;
    margin: 0;
    font-weight: 400;
}

/* Header Navigation */
.cbdev-slider-navigation {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.cbdev-slider-navigation .swiper-button-next,
.cbdev-slider-navigation .swiper-button-prev {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    background: none;
    box-shadow: none;
    color: #555;
    cursor: pointer;
}

.cbdev-slider-navigation .swiper-button-next::after,
.cbdev-slider-navigation .swiper-button-prev::after {
    font-size: 24px;
    font-weight: 300;
}

/* Hide Swiper default navigation if it appears elsewhere */
.cbdev-testemunhos-slider > .swiper-button-next,
.cbdev-testemunhos-slider > .swiper-button-prev {
    display: none;
}

/* Testimonial Item */
.cbdev-testemunho-item {
    background: #ffffff;
    padding: 35px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid #f9f9f9;
    transition: all 0.3s ease;
}

.cbdev-testemunho-item::before {
    display: none !important; 
}

/* Remove focus outlines and boxes */
.cbdev-testemunho-item, 
.cbdev-testemunho-item:focus,
.cbdev-testemunho-item:active,
.cbdev-read-more,
.cbdev-read-more:focus,
.swiper-button-next,
.swiper-button-prev,
.swiper-pagination-bullet {
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

/* Item Header (Name + Rating) */
.cbdev-testemunho-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.cbdev-testemunho-name {
    font-weight: 600;
    font-size: 18px;
    color: #8D5B5B;
    text-transform: none;
}

.cbdev-testemunho-rating {
    display: flex;
    gap: 2px;
}

.cbdev-testemunho-rating .star {
    font-size: 18px;
    color: #E2E2E2;
}

.cbdev-testemunho-rating .star.filled {
    color: #F8C661;
}

/* Item Content (Line Clamping) */
.cbdev-testemunho-text {
    font-size: 16px;
    line-height: 1.7;
    color: #7A7A7A;
    font-style: normal;
    margin-bottom: 0;
}

.cbdev-testemunho-text-inner {
    display: -webkit-box;
    -webkit-line-clamp: var(--line-clamp, 3);
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cbdev-testemunho-text.is-expanded .cbdev-testemunho-text-inner {
    -webkit-line-clamp: initial;
    display: block;
}

.cbdev-read-more {
    color: #333;
    text-decoration: none;
    font-weight: 800; 
    font-size: 14px;
    margin-top: 10px;
    display: none; /* Hidden by default, shown by JS if overflowing */
}

.cbdev-read-more.is-visible {
    display: inline-block;
}

.cbdev-read-more:hover {
    color: #8D5B5B;
}

/* Grid Layout Improvements */
.cbdev-testemunhos-grid {
    display: grid;
    gap: 30px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .cbdev-section-title { font-size: 36px; }
}

@media (max-width: 768px) {
    .cbdev-testemunhos-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .cbdev-slider-navigation {
        align-self: flex-end;
    }
    .cbdev-section-title { font-size: 32px; }
}

/* Slider Pagination */
.swiper-pagination-bullet {
    background: #E2E2E2;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #8D5B5B;
}
