@charset "utf-8";
/* CSS Document */

/**************************************************************************/

/* Layout responsivo da seção principal */
.header__space {
    background-color: #5c2787;
    background-position: -75px 1px;
    background-repeat: no-repeat;
    background-size: cover;
    align-items: flex-start;
    justify-content: center;
    padding: 175px 30px 0px 30px;
    display: flex;
    flex-direction: column; /* MOBILE: empilha os elementos (imagem + formulário) */
}

/* DESKTOP: coloca imagem e formulário lado a lado */
@media (min-width: 700px) {
    .header__space {
        background-position: 75% 5%;
        flex-direction: row;
    }
}

/* Lado esquerdo: texto + imagem */
.header__left-text {
    display: flex;
    flex-direction: column;
    padding: 0 0px 0 0px;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

@media (min-width: 700px) {
    .header__left-text {
        padding: 0 0px 0 60px;
        width: 40%;
    }
}

/* Título e parágrafo */
.header__left-text h1 {
    font-size: 50px;
    line-height: 3.5rem;
    font-weight: bold;
    width: 100%;
    text-align: center;
}

.header__left-text p {
    font-size: 25px;
    line-height: 1.6;
    width: 100%;
    text-align: center;
}

@media (min-width: 700px) {
    .header__left-text h1,
    .header__left-text p {
        text-align: left !important;
        justify-content: left;
		margin-bottom: 45px;
    }
}

/* Imagem */
.header__cta img {
    width: 100%;
    max-width: 395px;
}

/* Lado direito: formulário */
.form-col {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 0px;
}

@media (min-width: 700px) {
    .form-col {
        width: 50%;
        padding-top: 0;
    }
}

/* Estilo do formulário */
.header__form-style {
    background-color: #b0d751;
    width: 100%;
    padding: 15px 5px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.308);
}

@media (min-width: 700px) {
    .header__form-style {
        width: 80%;
    }
}

/* Campos do formulário */
.header__form-style form div {
    display: flex;
    flex-direction: column;
}

.mb-1 {
    margin-bottom: 10px;
}

input[type='text'] {
    border: 1px solid #585b5e6e;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    color: #4b4b4b !important;
}

/* Botão */
#submitButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 20px !important;
    background-color: #000;
    border-radius: 10px;
    width: 100%;
    cursor: pointer;
    border: 0;
    margin-top: 15px;
    color: #FFF !important;
}

/* Outros ajustes */
button, input, optgroup, select, textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

.header__form-style fieldset {
    border: 0;
    padding: 0.35em 0.75em .625em;
    width: 100%;
}

.col {
    width: 100%;
}

.d-flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.centralize {
    justify-content: center;
    align-items: center;
}

/* Controle de colunas */
.col-50-flex {
    width: 100%;
	color: #fff;
}

@media (min-width: 700px) {
    .col-50-flex {
        width: 50%;
		color: #fff;
    }
}

.header__form-style button:hover {
    background-color: #333333 !important;
}

.bg-secondary {
    --bs-bg-opacity: 1;
    background-color: #FFF !important;
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.308);
}

.buttonhamb label span {
    position: absolute;
    display: block;
    height: 5px;
    width: 100%;
    border-radius: 30px;
    background-color: #00995d;
    transition: all 0.25s 
	ease-in-out;
}

.bg-cinco {
    --bs-bg-opacity: 1;
    background-color: #5c2787 !important;
}


@media screen and (max-width:500px) {
.header__left-text p {
    font-size: 25px;
    line-height: 1.6;
    width: 100%;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 35px;
}

.cta {
    background-color: #5c2787;
    padding: 30px 20px !important;
    margin-top: 45px !important;
}

.posicao-texto{
	margin-top: 40px !important;
}

.posicao-texto2{
	margin-top: 40px !important;
}

.posicao-texto3{
	margin-top: 40px !important;
}

.row .card {
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin-bottom: 30px;
}

}

.posicao-texto{
	margin-top: 95px;
}

.posicao-texto2{
	margin-top: 85px;
}

.posicao-texto3{
	margin-top: 35px;
}

.cta {
    background-color: #5c2787;
    padding: 45px 20px;
    margin-top: 35px;
}

.cta a {
    background-color: var(--primary);
    border: 1px solid var(--white);
   /*  padding: 15px 25px;*/
    border-radius: 25px;
    /* transition: all 0.3s 
ease-in-out; */
}

.cta :where(p, strong, a) {
    color: #fff;
    text-align: center;
}


    .cta strong {
        font-size: 40px;
    }

.cta p {
    font-size: 20px;
}

.cta strong {
    font-weight: 400;
}

/*************************************************/