/* Estilos para a seção "Por que escolher a Maria Flor?" */

.why-choose-section {
    padding: 100px 0 80px;
    background-color: #fff;
    font-family: 'santral', sans-serif;
    border-bottom: 1px solid #f5f5f5;
}

.why-choose-section .section-header {
    margin-bottom: 60px;
}

.why-choose-section .elegant-subtitle {
    color: #80D8D0;
    font-size: 0.8rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 500;
}

.why-choose-section .elegant-title {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 500;
}

.why-choose-section .elegant-divider {
    width: 30px;
    height: 1px;
    background-color: #80D8D0;
    margin: 0 auto 50px;
}

.text-center {
    text-align: center;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.feature-item {
    flex: 0 0 22%;
    text-align: center;
    padding: 20px 10px;
    margin-bottom: 20px;
}

.feature-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    opacity: 0.9;
}

.feature-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    letter-spacing: 1px;
}

.feature-description {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #666;
    max-width: 220px;
    margin: 0 auto;
}

.cta-container {
    margin-top: 40px;
}

.btn-cta {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid #80D8D0;
    color: #333;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 500;
}

.btn-cta:hover {
    background-color: #80D8D0;
    color: #fff;
}

/* Responsividade */
@media (max-width: 991px) {
    .features-container {
        gap: 20px;
    }
    
    .feature-item {
        min-width: 200px;
    }
}

@media (max-width: 767px) {
    .why-choose-section {
        padding: 60px 0;
    }
    
    .features-container {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item {
        max-width: 100%;
        width: 100%;
    }
    
    .why-choose-section .elegant-title {
        font-size: 2rem;
    }
    
    .btn-cta {
        padding: 12px 20px;
        font-size: 0.8rem;
    }
}
