:root{
    --brand: #006242;
    --text: #27251f;
    --secondary: #465A69;
    --gray: #f1f4f7;
    --border: #dee3e9;
    --red: #c82014;
    --yellow: #fbbc05;
    --hover: #00754a;
    --gold: #cba258;
    --info: #33433d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

input, button, textarea, select {
    font: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

table {
    border-collapse: collapse;
    width: 100%;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a{
    text-decoration: none;
}

input, select, textarea {
    -webkit-appearance: none; /* Remove o estilo padrão do iOS */
    -moz-appearance: none;    /* Para outros navegadores baseados em Gecko */
    appearance: none;         /* Para outros navegadores modernos */
    border: none;             /* Remover bordas */
    background: transparent;  /* Remover fundo */
    padding: 0;               /* Resetar o preenchimento */
    font-family: inherit;     /* Usar a fonte do documento */
}


input[type="text"], input[type="password"], input[type="email"], input[type="number"] {
    -webkit-border-radius: 0;
    border-radius: 0;
}

textarea.input{
    resize: vertical;
    margin: 0;
    display: block;
}
main{
    min-height: 1vh;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
body{
    font-family: "Roboto", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
}

h1, h2, h3, h4, h5{
    line-height: 1.2778;
    text-align: center;
    font-weight: 500;
    font-size: 2.25rem;
    margin: 0;
}
h3{
    font-size: 1.5rem;
    line-height: 1.25;
}
.hn{
    margin: 80px 0 64px 0;
}
header{
    width: 100%;
    height: 70px;
    z-index: 90;
    background-color: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;

}
.cc{
    letter-spacing: -0.01em;
    font-size: .875rem;
    text-transform: uppercase;
    color: var(--secondary);
}

header .container{
    flex-direction: row;
    height: 70px;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

header .icon-nav{
    position: absolute;
    right: 0;
    padding: 6px;
    width: 36px;
    height: 36px;
    color: var(--text);
    cursor: pointer;
    display: none;
}

header nav{
    display: flex;
    background-color: #fff;
}
header nav ul{
    display: flex;
    flex-direction: row;
}
header nav ul li a{
    height: 68px;
    line-height: 70px;
    padding: 4px 1rem 0 1rem;
    border-bottom: 4px solid transparent;
    display: block;
    transition: all .2s linear;
    font-weight: 500;
}
header nav ul li a:hover{
    color: var(--brand);
    border-bottom-color: var(--brand);
}

header .logo{
    width: 204px;
    height: 70px;
    padding: 20px 0;
    color: var(--brand);
}
header .logo svg{
    width: 204px;
    height: 30px;
}

.welcome{
    display: flex;
    gap: 2rem;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    align-items: center;

}
.mobile .welcome{
    flex-direction: column;
}
.welcome .message{
    width: calc(50% - 1rem);
    gap: 1rem;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    flex-wrap: nowrap;
    align-items: center;
}
.mobile .welcome .message{
    width: 100%;
}
.welcome .message p{
    font-size: 1rem;
    line-height: 1.5;
    text-align: justify;
}
.welcome .message .btn{
    display: flex;
    width: auto;
}
.welcome .video{
    width: calc(50% - 1rem);
    height: 0;
    padding-bottom: calc(50% - 1rem);
    border-radius: 12px;
    background-color: var(--gray);
    overflow: hidden;
    position: relative;
}
.mobile .welcome .video{
    width: 100%;
    padding-bottom: 100%;
}
.welcome .video video{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.mobile header .icon-nav{
    display: block;
}

.mobile header nav{
    position: absolute;
    top: 78px;
    right: 0;
    transform: translate(-1rem, -1rem) scale(.8);
    transition: all .1s linear;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform-origin: top right;
    min-width: 320px;
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
}
.mobile header nav ul{
    width: 100%;
}
.mobile header nav ul li a {
    height: 2.5rem;
    line-height: 2.5rem;
    padding: 0 1rem;
    border: 0;
    display: block;
    transition: all .2s linear;
    font-weight: 500;
    width: 100%;
}
.mobile header nav ul li a:hover{
    background-color: var(--gray);
}

.mobile header nav.show{
    transform: translate(0, 0) scale(1);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.mobile header nav ul{
    display: flex;
    flex-direction: column;
}

.container{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 95%;
    max-width: 1440px;
    margin: 0 auto;
}

form{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0 auto;
    width: 100%;
    max-width: 950px;
}

.section{
    width: 100%;
    min-height: 60px;
    border-radius: 8px;
    border: 1px solid var(--border);
    position: relative;
    transition: all .2s linear;
}

.section:focus-within {
    border-color: var(--brand);
}
.section:focus-within label, .section:has(select) label, .section.active label{
    font-size: .75rem;
    line-height: 1rem;
    height: 1rem;
    top: 8px;
}

.section .input{
    position: relative;
    width: 100%;
    height: 60px;
    line-height: 1.5rem;
    padding: 30px 18px 6px 18px;
    border: 0;
    background-color: transparent;
    box-sizing: border-box;
    outline: none;
    font-size: 1rem;
}
.section label{
    position: absolute;
    top: 18px;
    left: 18px;
    height: 1.5rem;
    line-height: 1.5rem;
    font-size: 1rem;
    transition: all .2s linear;
}
.btn{
    height: 3.25rem;
    border-radius: 999rem;
    line-height: 1.25rem;
    padding: 1rem 1.875rem;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background-color: var(--brand);
    width: 100%;
    box-sizing: border-box;
    border: 0;
    cursor: pointer;
    transition: all .2s linear;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
}
.btn:hover{
    background-color: var(--hover);
}
.btn svg{
    width: 1.25rem;
    height: 1.25rem;
}

.address{
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    gap: 1rem;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.address .icon{
    width: 2rem;
    height: 2rem;
}
.mobile .address{
    flex-direction: column;
}
.address .info h3{
    text-wrap: nowrap;
    font-weight: 400;
    font-size: 1rem;
    color: var(--secondary)
}
.address .info{
    padding: 2rem;
    gap: 1rem;
    flex-wrap: nowrap;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}
.mobile .address .info{
    padding: 1rem;
}
.address .info .btn{
    width: auto;
}
.map{
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 35%;
    overflow: hidden;
}
.map #map{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.address .btn{
    width: auto;
}

footer{
    font-size: .75rem;
    line-height: 1rem;
    color: var(--secondary);
    width: 100%;
    padding: 1rem;
    background-color: var(--gray);
    text-align: center;
    margin-top: 1rem;
}
