
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');

:root{
    /* CORES */
    --titulo: rgb(64, 2, 121);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;

}

html{
    scroll-behavior: smooth;
}

body{
    font-family: "Cormorant Garamond", serif;
    background-image: url(./IMG/body.jpeg);
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    margin: 0;
    min-height: 100vh;
    
}

.logo{
    width: 20%;
    display: flex;
    margin: 30px auto;
}

.header h1{
    font-size: 2rem;
    text-align: center;
    margin-top: -20px;
    color: var(--titulo);
}

.header h1::after{
    content: "";
    display: block;
    width: 80px;
    height: 1.5px;
    background-color: var(--titulo);
    margin: 12px  auto 0;
    border-radius: 2px;
    margin-bottom: 2rem;
}

.header p{
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    align-items: center;
    max-width: 50%;
    margin: 20px auto;
}

form {
    max-width: 70%;
    margin: auto;
}

fieldset{
    border: 1px solid var(--titulo);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 40px;
}

legend {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--titulo);
    padding: 15px;
}

.campo{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

label{
    font-weight: 700;
    font-size: 1.3rem;
}

input, textarea, select{
    border: 1px solid var(--titulo);
    border-radius: 5px;
    padding: 5px 10px;
}


span{
    color: red;
}

.grupo-radio{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.opcao-radio{
    display: flex;
    align-items: center;
    gap: .75rem;
}

.opcao-radio input{
    width: 20px;
    height: 20px;
    min-height: auto;
}

.opcao-radio label{
    margin: 0;
    font-weight: 600;
    font-size: 1.2rem;
}

.termos h2{
    text-align: center;
    font-size: 2rem;
    color: var(--titulo);
    margin-bottom: 20px;
    font-weight: bold;
}

.termos h2::after{
    content: "";
    display: block;
    width: 80px;
    height: 1.5px;
    background-color: var(--titulo);
    margin: 12px  auto 0;
    border-radius: 2px;
    margin-bottom: 2rem;
}

.termos p{
    font-size: 1.5rem;
    margin: 30px auto;
    text-align: center;
    font-weight: 700;
}

.campo-checkbox label{
    display: flex;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 30px;
    font-size: 1.5rem;
    align-items: center;
    justify-content: center;
}

.enviar{
    background-color: var(--titulo);
    border: none;
    color: aliceblue;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    height: auto;
    width: 50%;
    margin: 0 auto 100px auto; 
    display: block;
    padding: 20px;
    border-radius: 20px;
}

.enviar:focus-visible{
    outline: 2px solid var(--titulo);
    outline-offset: 5px;
}

.footer{
    text-align: center;
    max-width: 50%;
    margin: 0 auto 50px auto;
}

.footer h3{
    text-align: center;
    font-size: 1.5rem;
    color: var(--titulo);
    margin-bottom: 20px;
}

.PLD{
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 50px;
}

.copy{
    font: 1rem;
    font-weight: bold;
}



