@import url('https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.css');
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap");



.depomentos-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    overflow: hidden;
}

.swiper {
    width: 100%;
    max-width: 1200px;
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: visible;
}

/* Card de Depoimento - Design Clean e Minimalista */
.testimonial-card {
    width: 280px;
    height: 420px;
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transform: scale(0.7);
    opacity: 0.6;
    transition: none;

    /* Sombra sutil e elegante */
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);

    /* Borda sutil */
    border: 1px solid rgba(0, 0, 0, 0.04);

    /* Efeito de profundidade */
    position: relative;

    /* Textura sutil */
    background-image:
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.02) 0%, transparent 50%);
}

/* Linha decorativa no topo */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, #8e6eff 0%, #0d001a 100%);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

/* Detalhes decorativos nos cantos */
.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    border: 1px solid rgba(102, 126, 234, 0.08);
}

/* Ícone de aspas */
.quote-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 24px;
    opacity: 0.15;
}

.quote-icon svg {
    width: 100%;
    height: 100%;
    color: #667eea;
}

/* Conteúdo do depoimento */
.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: #2d3748;
    font-weight: 400;
    margin-bottom: 28px;
    position: relative;

    /* Sutil highlight no texto */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}



/* Seção do autor */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px;
    position: relative;
    background-color: #05001d;
    border-radius: 10px;
}



.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;

    /* Borda sutil com gradient */
    border: 6px solid white;
    

    /* Sombra sutil no avatar */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}



.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border: none;
    outline: none;
}

.author-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
    letter-spacing: -0.01em;

    
}

.author-info span {
    font-size: 12px;
    color: #d8d8d8;
    

    font-weight: 400;
    position: relative;
}

/* Pequeno ponto decorativo no cargo */
.author-info span::before {
    content: '•';
    color: rgba(255, 255, 255, 0.678);
    margin-right: 6px;
    font-size: 8px;
    vertical-align: middle;
}

/* Estados do card */
.testimonial-card:hover .author-avatar img {
    transform: scale(1.05);
}

/* Paginação personalizada */
.swiper-pagination {
    bottom: 0px !important;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(107, 107, 107, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #080024;
    transform: scale(1.2);
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: none !important;
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: none !important;
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: none !important;
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: none !important;
}

/* Responsividade */
@media (max-width: 768px) {
    .testimonial-card {
        width: 260px;
        height: 400px;
        padding: 28px 24px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    section {
        padding: 20px 10px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        width: 240px;
        height: 380px;
        padding: 24px 20px;
    }

    .author-avatar {
        width: 44px;
        height: 44px;
    }

    .author-info h4 {
        font-size: 13px;
    }

    .author-info span {
        font-size: 11px;
    }
}