/* Seção Depoimentos */
.depoimentos-section {
    padding: var(--spacing-xxxl) 0;
    position: relative;
    overflow: hidden;
}

.depoimentos-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-accent));
    border-radius: 50%;
    opacity: 0.05;
    transform: translate(50%, -50%);
}

.depoimentos-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    min-height: 450px;
}

.depoimentos-section-left {
    padding-right: var(--spacing-lg);
}

.depoimentos-section-header .depoimentos-section-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--color-secondary);
}

.depoimentos-section-header .depoimentos-section-title .depoimentos-highlight {
    color: var(--color-primary);
    position: relative;
}

.depoimentos-section-header .depoimentos-section-title .depoimentos-highlight::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 1px;
}

.depoimentos-section-subtitle {
    color: var(--color-gray);
    font-size: var(--font-size-sm);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    max-width: 90%;
}

.depoimentos-section-right {
    position: relative;
    height: 450px;
}

.depoimentos-carrossel-vertical {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.depoimentos-card {
    position: absolute;
    width: 90%;
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    opacity: 0.8;
    border: 1px solid rgba(184, 161, 230, 0.1);
}

.depoimentos-card.featured {
    opacity: 1;
    transform: translateX(-8%) scale(1.03);
    z-index: 3;
}

.depoimentos-card:nth-child(1) {
    top: 0;
    transform: translateY(0) scale(0.95);
    z-index: 2;
}

.depoimentos-card:nth-child(3) {
    bottom: 0;
    transform: translateY(0) scale(0.95);
    z-index: 2;
}

.depoimentos-texto {
    color: var(--color-dark-gray);
    font-size: var(--font-size-sm);
    line-height: 1.7;
    margin: var(--spacing-sm) 0;
    position: relative;
    font-style: normal;
    font-weight: 400;
    z-index: 1;
    padding-right: var(--spacing-md);
}

.depoimentos-texto::after {
    content: "\""; 
    position: absolute;
    top: -15px;
    right: 0;
    font-size: 3rem;
    color: var(--color-primary);
    opacity: 0.1;
    font-family: "Georgia", serif;
    font-weight: bold;
    z-index: -1;
}

.depoimentos-cliente-info {
    margin-bottom: var(--spacing-xs);
}

.depoimentos-cliente-info h4 {
    font-size: var(--font-size-sm);
    margin-bottom: 2px;
    color: var(--color-secondary);
    font-weight: 600;
}

.depoimentos-cliente-info p {
    font-size: var(--font-size-xs);
    color: var(--color-gray);
    margin: 0;
    font-weight: 400;
}

/* Responsividade */
@media (max-width: 992px) {
    .depoimentos-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .depoimentos-section-left {
        padding-right: 0;
        order: 2;
    }
    
    .depoimentos-section-right {
        order: 1;
        height: 350px;
    }
    
    .depoimentos-section-header .depoimentos-section-title {
        font-size: var(--font-size-lg);
    }
    
    .depoimentos-section-subtitle {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .depoimentos-section {
        padding: var(--spacing-xl) 0;
    }
    
    .depoimentos-section-right {
        height: 300px;
    }
    
    .depoimentos-card {
        padding: var(--spacing-sm);
    }
    
    .depoimentos-section-header .depoimentos-section-title {
        font-size: var(--font-size-md);
    }
    
    .depoimentos-section-subtitle {
        font-size: var(--font-size-xs);
    }
}

@media (max-width: 576px) {
    .depoimentos-content {
        gap: var(--spacing-md);
    }
    
    .depoimentos-section-right {
        height: 250px;
    }
    
    .depoimentos-card {
        padding: var(--spacing-xs);
        width: 95%;
    }
    
    .depoimentos-texto {
        font-size: var(--font-size-xs);
    }
}