.sec-form-vela {
    padding-top: 96px;
    padding-bottom: 64px;
}

.c-form-vela {
    display: flex;
    gap: 128px;
    align-items: center;
}

.info-form-vela {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
}

.form-vela {
    border-radius: 16px;
    background:#00904A;
    padding: 32px;
    width: 50%;
}

.sec-form-vela h1 {
    color: #003321;
    font-family: "Agiary Signs";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 52px */
    margin-top: 32px;
}

.sec-form-vela p {
    color: #56645F;
    font-family: "Brother Regular";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 26px */
    margin-top: 16px;
}

.wrapper-cards-vela {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 64px;
}

.card-vela {
    border-radius: 16px;
    border: 4px solid #EDF4FA;
    background: #FFF;
    padding: 32px;
    flex: 0 0 calc(33% - 32px);
}

.pessoa-vela {
    color: #003321;
    font-family: "Brother Regular";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 18.2px */
}

.pessoa-vela span {
    font-family: "Brother Bold";
}

.img-card-vela {
    border-radius: 8px;
    background: #EDF4FA;
    height: 120px;
    width: 100%;
    margin-top: 32px;
}

.img-card-vela img {
    width: 100%;
    border-radius: 8px;
    height: 100%;
    object-fit: cover;
}

.title-card-vela {
    padding-bottom: 16px;
    border-bottom: 1px solid #EDF4FA;
    width: 100%;
    margin-top: 32px;
}

.title-card-vela p {
    color: #647871;
    font-family: "Brother Regular";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 18.2px */
}

.title-card-vela h3 {
    color: #003321;
    font-family: "Brother Medium";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%; /* 31.2px */
}

.mensagem-vela {
    color: #56645F;
    font-family: "Brother Regular";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 18.2px */
    margin-top: 16px;
}

.data-hora-vela {
    color: #56645F;
    font-family: "Brother Regular";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 18.2px */
    margin-top: 32px;
}

.data-hora-vela span {
    font-family: "Brother Bold";
}

/* FORM  */

.form-vela p {
    color:#FFF;
    font-family: "Brother Medium";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%; /* 20.8px */
    margin-top: 0;
}

.form-vela-virtual {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.input-wrapper {
    display: flex;
    gap: 16px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
	width: 100%;
}

.input-group label {
    color: #FFF;
    text-align: center;
    font-family: "Brother Regular";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 18.2px */
}

.input-group input, .input-group textarea {
    width: 100%;
    border-radius: 8px;
    border: 1px solid  #EDF4FA;
    background: #FFF;
    padding: 16px;
    outline: none;
    color:  #647871;
    font-family: "Brother Regular";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 18.2px */
}

.input-group textarea {
    height: 82px;
}

.input-group input::placeholder {
    color: #647871;
}

.form-vela-virtual button {
    border-radius: 75px;
    background: #FFF;
    padding: 16px 32px;
    color:  #003321;
    text-align: center;
    font-family: "Brother Bold";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 18.2px */
    letter-spacing: 1.4px;
    text-transform: uppercase;
    border: none;
    outline: none;
    cursor: pointer;
    margin-top: 16px;
}

.nao-velas {
    color: #56645F;
    font-family: "Brother Regular";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-top: 32px;
}


@media all and (max-width: 1021px) {

    .c-form-vela {
        gap: 64px;
    }

    .card-vela{
        flex: 0 0 calc(50% - 32px);
    }

}

@media all and (max-width: 781px) {


    .c-form-vela {
       flex-direction: column;
    }

    .info-form-vela {
        width: 100%;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .form-vela {
        width: 100%;
    }

    .card-vela{
        flex: 0 0 calc(100%);
    }

    .input-wrapper {
        flex-direction: column;
    }
}