:root {
    --cor1: #1D2D0F;
    --cor2: #68b445;
    --cor3: #EEEDE8;
    --cor4: #68b445;
    --cor5: #B0F867;
}

* {
    font-family: "Branding Semilight", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #f8f7fd;
}

label {
    font-size: 1.25em;
    font-weight: 500;
    font-family: 'Branding Semibold';
}

.rotulo {
    background: var(--cor5);
    color: var(--cor1);
    padding: 4px 8px;
    border-radius: 6px;
    width: fit-content;
    font-family: 'Branding Medium';
}

#form-container {
    margin: 20px auto 0px;
    width: 750px;
    max-width: calc(95% - 80px);
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgb(149 149 149 / 15%);
    box-shadow: 0px 0px 50px 0px rgb(153 153 153 / 10%);
}

#menu img {
    width: 120px;
}

#menu-container {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 9999;
}

#menu {
    width: 95%;
    max-width: 1200px;
    margin: 12px auto;
    z-index: 9999;
}

label:has(input[type="radio"]) {
    border: 1px solid rgb(149 149 149 / 15%);
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    background: #fff;
    display: block;
    font-size: 1em;
    color: rgba(0, 0, 0, 0.82);
    font-weight: 400;
    transition: 0.3s;
}

label input[type="radio"] {
    display: none;
}

label img {
    width: 32px;
}

label:has(input[type="radio"]:checked) {
    background: var(--cor4);
    color: #fff;
    border: 1px solid var(--cor4);
    /*box-shadow: 0 0 4px #4caf50;*/
}

label:has(img) {
    display: flex !important;
    align-items: center;
    gap: 8px;
    flex-direction: column;
    justify-content: center;
}

/*label:has(input[type="text"]){
    display:grid;
    gap: 8px;
}*/

.form-linha {
    display: grid;
    gap: 8px;
}

.opcoes-container {
    display: grid;
    gap: 8px;
}

.grid-2 {
    grid-template-columns: 1fr 1fr;
}

.gap-24 {
    gap: 24px;
}


#parte-1, #parte-2 {
    display: none;
    gap: 24px;

    &.ativo {
        display: grid;
    }
}

select,
input[type="text"] {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #bbb;
    font-size: 1rem;
}

input[type="text"] {
    width: calc(100% - 16px);
}

.botao, .botao2 {
    padding: 12px 12px;
    border: none;
    width: calc(100% - 24px);
    margin: 0 auto;
    background: var(--cor1);
    border-radius: 8px;
    cursor: pointer;
    color: #fff;
    font-size: 1.1em;
    font-weight: 500;
    text-align: center;
}

.botao-contato {
    background: #1D2D0F;
    border-radius: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    align-items: center;
    padding: 15px 25px;
    color: #fff;
    font-weight: 600;
    font-size: 1.1em;
    cursor: pointer;
    width: fit-content;
    text-decoration: none;
    transition: 0.5s;
}

.botao2 {
    background: #e6e6e6;
    color: #000;
}

.centralizar {
    justify-items: center;
}

#sem-placa-container {
    display: none;

    &.ativo {
        display: grid;
    }
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
}

.sessao {
    margin: 0 auto;
    width: 95%;
    max-width: 1200px;
    padding: 60px 0px;
}

.header-sessao {
    margin: 0 auto;
    width: 95%;
    max-width: 1200px;
}

#header {
    background: url(../media/bg3.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 90px;
    padding-bottom: 200px;
}

h1, h2, h3, h4, h5, h6 {
    margin: 4px 0px;
    color: #1D2D0F;
    font-family: 'Branding Bold';
}

h1 {
    font-size: 2.75em;
    font-weight: 700;
    line-height: 1.37em;
}

h2 {
    font-size: 2.25em;
}

h5 {
    font-size: 1.25em;
}

.branco {
    color: #fff;
}

p {
    line-height: 1.37em;
    font-size: 1.05em;
    font-family: 'Branding Medium';
}

b {
    font-family: 'Branding Bold';
}

.flex-vertical {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.flex-centro {
    align-items: center;
}

.flex {
    display: flex;
    align-items: center;
}

.gap-12 {
    gap: 20px;
}

a.botao-saiba-mais.branco {
    text-decoration: none;
    font-size: 1.25em;
    font-weight: 500;
}

.card {
    border: 2px solid var(--cor5);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: rgb(138 219 101 / 07%);
}

.centro {
    text-align: center; 
}

.card img {
    width: 72px;
}

.margin-top-24 {
    margin-top: 24px;
}

#parceiros img {
    width: 220px;
}

#parceiros {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 20px;
}

#parceria {
    width: 1156px;
    max-width: calc(95% - 40px);
    margin: 0 auto;
    background: #fff;
    padding: 24px;
    border-radius: 25px;
    margin-top: -120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lista {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lista p {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    font-family: 'Branding Semibold';
    font-size: 1.15em;
    color: var(--cor1);
    margin: 0px;
}

.lista img {
    width: 24px;
}

#img1 {
    background-image: url(../media/img1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 25px;
}

.destaque {
    color: var(--cor1);
}

.mauer-logo {
    width: 100%;
}

.pergunta {
    margin-top: 16px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 16px;
    background: #fff;
    border-radius: 6px 6px 0px 0px;
    border: 1px solid #e9e9e9;
    cursor: pointer;
}

.pergunta img {
    width: 24px;
}

.resposta {
    display: none;
    flex-direction: row;
    justify-content: space-between;
    padding: 16px;
    background: #fff;
    border-radius: 0px 0px 6px 6px;
    border: 1px solid #e9e9e9;
    border-top: unset;
}

.resposta.ativo {
    display: flex;
}

.resposta p {
    margin: 0px;
}

#faq-container {
    width: 95%;
    max-width: 1200px;
}

#msg-parte-1:empty {
    display: none;
}

#menu-baixo {
    display: none;
}


#rodape {
    background-color: var(--cor1);
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9em;
}

#rodape .sessao {
    padding: 10px 0;
}

#rodape p {
    margin: 5px 0;
}

@media (max-width: 768px) {
    /*/.grid-2 {
        grid-template-columns: 1fr;
    }*/

    #menu-baixo {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: calc(100% - 24px);
        position: fixed;
        bottom: 0;
        background: var(--cor1);
        opacity: 0;
        pointer-events: none;
        transition: 0.5s;
        padding: 12px;
    
        &.ativo {
            opacity: 1;
            pointer-events: auto;
        }

        & .botao-contato {
            color: var(--cor1);
            background: var(--cor5);
        }
    }

    h1 {
        font-size: 2.2em;
        font-weight: 700;
        line-height: 1.15em;
    }

    #header {
        background: linear-gradient(45deg, #b0f767, #b0f767);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        padding-top: 72px;
        padding-bottom: 100px;
    }

    #parceria {
        max-width: calc(95% - 32px);
        padding: 16px;
        margin-top: -75px;
    }

    #parceiros {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0px;
        padding: 12px;
    }

    .sessao {
        padding: 30px 0px;
    }

    #form-container {
        margin: 40px auto;
        max-width: calc(95% - 24px);
        padding: 12px;
    }

    input[type="text"] {
        width: calc(100% - 16px);
    }

    select {
        width: 100%;
    }

    .grid-2, .grid-3 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .grid-4 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .card {
        padding: 12px;
        gap: 5px;
    }

    .card h5 {
        font-size: 1.1em;
    }

    .flex-centro-mobile {
        align-items: center;
    }

    .centro-mobile {
        text-align: center;
    }

    #rodape {
        padding: 20px 0 80px;
    }
}
