/* Estilos para a seção de depoimentos da Medinova */

.depoimentos-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.depoimentos-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333333;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.depoimentos-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    color: #666666;
    opacity: 0.85;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-weight: 300;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Media queries para responsividade */
@media (max-width: 992px) {
    .depoimentos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .depoimentos-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .depoimentos-title {
        font-size: 32px;
    }
    
    .depoimentos-subtitle {
        font-size: 16px;
    }
}

.depoimento-card {
    background-color: #F4EDE4;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: translateY(30px);
    border: 1px solid rgba(217, 199, 182, 0.3);
}

.depoimento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.depoimento-quote {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 0.8;
    color: #D9C7B6;
    margin-bottom: 5px;
    display: block;
}

.depoimento-texto {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 20px;
    font-style: italic;
}

.depoimento-autor {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.depoimento-nome {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #8D6E63;
    margin-bottom: 5px;
}

.depoimento-separador {
    width: 40px;
    height: 2px;
    background-color: #D9C7B6;
    margin-bottom: 5px;
}

.depoimento-info {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: #666666;
    font-weight: 300;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 992px) {
    .depoimentos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .depoimentos-section {
        padding: 70px 0;
    }
    
    .depoimentos-title {
        font-size: 2rem;
    }
    
    .depoimentos-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .depoimento-card {
        padding: 25px;
    }
}
