/* Estilos para a seção de Depoimentos */
.testimonials-section {
    position: relative;
    padding: 120px 0;
    background-color: #fff;
    overflow: hidden;
}

/* Elementos decorativos de fundo */
.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 250, 250, 0.8) 0%, rgba(255, 255, 255, 1) 100%);
    z-index: 0;
}

.testimonials-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(circle, rgba(128, 216, 208, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.7;
}

/* Elementos florais decorativos */
.floral-accent {
    position: absolute;
    opacity: 0.1;
    z-index: 1;
}

.floral-accent-1 {
    top: 5%;
    left: 5%;
    width: 150px;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%2380D8D0'%3E%3Cpath d='M512 256c0 141.4-114.6 256-256 256S0 397.4 0 256 114.6 0 256 0s256 114.6 256 256zm-256 0c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm-128 0c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm256 0c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(45deg);
}

.floral-accent-2 {
    bottom: 5%;
    right: 5%;
    width: 180px;
    height: 180px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%2380D8D0'%3E%3Cpath d='M512 256c0 141.4-114.6 256-256 256S0 397.4 0 256 114.6 0 256 0s256 114.6 256 256zm-256 0c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm-128 0c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm256 0c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(-15deg);
}

.testimonials-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.testimonials-title {
    font-family: 'cormorant-garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.testimonials-subtitle {
    font-family: 'santral', sans-serif;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

/* Swiper Carousel Styles */
.testimonials-carousel {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: visible;
    padding: 30px 0;
}

.testimonial-slide {
    background-color: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(128, 216, 208, 0.1);
}

.testimonial-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(128, 216, 208, 0.3);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-name {
    font-family: 'cormorant-garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-color);
}

.testimonial-stars {
    margin-bottom: 20px;
    color: #FFD700;
}

.testimonial-text {
    font-family: 'santral', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    font-style: italic;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-family: 'cormorant-garamond', serif;
    font-size: 3rem;
    line-height: 0;
    position: relative;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial-text::before {
    margin-right: 5px;
    vertical-align: -0.4em;
}

.testimonial-text::after {
    margin-left: 5px;
    vertical-align: -0.6em;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    background-color: transparent;
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    opacity: 0.7;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(128, 216, 208, 0.1);
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(128, 216, 208, 0.2);
    opacity: 1;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 0.9rem;
    font-weight: normal;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    opacity: 0.3;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

/* Responsividade */
@media (max-width: 992px) {
    .testimonials-section {
        padding: 100px 0;
    }
    
    .testimonials-title {
        font-size: 3rem;
    }
    
    .testimonial-slide {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-title {
        font-size: 2.5rem;
    }
    
    .testimonials-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .testimonial-slide {
        padding: 25px;
    }
    
    .testimonial-name {
        font-size: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}
