/* Estilos para substituir os elementos de urgência com design elegante */

/* Substitui a contagem regressiva por um separador elegante */
.elegant-separator {
    padding: 40px 0;
    text-align: center;
}

.elegant-separator .divider {
    position: relative;
    height: 1px;
    background-color: #e0e0e0;
    max-width: 300px;
    margin: 0 auto;
}

.elegant-separator .divider::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 7px;
    background-color: #1e6f5c;
    border-radius: 3px;
}

/* Substitui os indicadores de vagas limitadas por um design mais sutil */
.client-trust {
    text-align: center;
    margin: 30px 0;
}

.client-trust .trust-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
    font-weight: 500;
}

.client-trust .trust-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.client-trust .trust-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.client-trust .trust-icon i {
    font-size: 1.8rem;
    color: #1e6f5c;
    margin-bottom: 10px;
}

.client-trust .trust-icon span {
    font-size: 0.9rem;
    color: #555;
}

/* Remove a tag de oferta limitada e substitui por um título elegante */
.elegant-title {
    font-size: 1.2rem;
    color: #1e6f5c;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Substitui o botão pulsante por um botão elegante */
.button-elegant {
    display: inline-block;
    background: linear-gradient(to right, #1e6f5c, #2a9d8f);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 10px rgba(30, 111, 92, 0.2);
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.button-elegant:hover {
    background: linear-gradient(to right, #164e3f, #1e6f5c);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(30, 111, 92, 0.3);
}

/* Substitui o contador de clientes por um design mais elegante */
.testimonial-counter {
    background-color: #f5f9f8;
    padding: 40px 0;
    text-align: center;
    margin: 40px 0;
}

.testimonial-counter h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
}

.testimonial-counter .counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e6f5c;
    margin-bottom: 10px;
}

.testimonial-counter .counter-description {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .elegant-separator {
        padding: 30px 0;
    }
    
    .client-trust .trust-icons {
        gap: 20px;
    }
    
    .testimonial-counter {
        padding: 30px 0;
    }
    
    .testimonial-counter h3 {
        font-size: 1.2rem;
    }
    
    .testimonial-counter .counter {
        font-size: 2rem;
    }
    
    .testimonial-counter .counter-description {
        font-size: 1rem;
    }
}
