/* Estilos dos Campos de Formulário */
.material-textfield {
    position: relative;
    margin-bottom: 1.5rem; /* Espaço entre os campos */
}

.material-textfield input,
.material-textfield textarea {
    font-size: 1rem;
    outline: none;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 11px;
    padding: 1rem 0.7rem;
    color: gray;
    width: 100%;
    transition: 0.1s ease-out;
    background: none;
}

.material-textfield textarea {
    resize: vertical; /* Permite redimensionar verticalmente */
}

.material-textfield input:focus,
.material-textfield textarea:focus {
    border-color: #5A070E;
}

.material-textfield label {
    position: absolute;
    font-size: 1rem;
    left: 1rem;
    top: 30%;
    transform: translateY(-50%);
    background-color: white;
    color: gray;
    padding: 0 0.3rem;
    transition: 0.1s ease-out;
    transform-origin: left top;
    pointer-events: none;
}

.material-textfield input:focus + label,
.material-textfield textarea:focus + label,
.material-textfield input:not(:placeholder-shown) + label,
.material-textfield textarea:not(:placeholder-shown) + label {
    color: #5A070E;
    top: 0;
    transform: translateY(-50%) scale(0.9);
}

.section-testimonials {
    padding: 40px 0;
    background-color: var(--background-light);
    display: flex;
    flex-direction: column;  /* Garante que o título fique acima dos slides */
    align-items: center;  /* Centraliza o conteúdo */
    text-align: center;  /* Garante que o texto do título fique centralizado */
}

.titulo-section {
    margin-bottom: 30px;  /* Adiciona margem abaixo do título */
}

.swiper {
    width: 100%;
    max-width: 1000px;  /* Limita a largura máxima, se necessário */
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    width: 250px;
    margin: 0 15px;
    display: flex;
    justify-content: center; /* Centraliza o conteúdo dentro de cada slide */
}

.section-testimonials .testimonial-card {
    border-radius: 8px;
    padding: 20px;
    text-align: left;
    min-height: 250px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section-testimonials .testimonial-footer {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.section-testimonials .testimonial-footer img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    object-fit: cover;
}

.second-div{
    position: relative !important;
    z-index: 1 !important;
}

.section-hero .container{
    max-width: 637px;
}
.first-div{
    position: relative !important;
    z-index: 10 !important;
}

