@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&display=swap');

* {font-family: 'Open Sans', sans-serif;}
body {background: var(--branco);  font-size: 18px; overflow-x: hidden; position: unset!important; color: var(--cinza)}
p {line-height: 30px}
a,button, input, textarea {-webkit-transition: .3s;-o-transition: .3s;transition: .3s; outline: 0;}
button {cursor: pointer;}
cite {font-style: normal;}
a, a:hover {text-decoration: none;}
a:focus, button:focus, input:focus, textarea:focus {outline: 0; text-decoration: none;}
ul {-webkit-padding-start:0; -moz-padding-start:0; margin: 0;}
li {list-style-type: none;}
img {max-width: 100%;}
*{margin: 0; padding: 0; box-sizing:border-box}
section{padding: 100px 0; position: relative;}
.grid {max-width: 1320px; width: 100%; margin: 0 auto; padding: 0 30px; display: grid; grid-gap: 10px; position: relative;}

:root {
    --branco: #fff;
    --preto: #222222;
    --cinza: #58595b;
    --fundo: #f9f9f9;
}
address {
    background: rgb(88,89,91);
    background: linear-gradient(90deg, var(--cinza) 0%, var(--preto) 80%);
    color: var(--branco);
    padding: 14px 35px 16px;
    position: fixed;
    z-index: 3;
    width: 100%;
    text-align: center;
    font-style: normal;
    display: none;    
}
body:before {
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}
body.ativo:before {
    opacity: .8;
    visibility: visible;
}
body.ativo section.beneficios form {
    background-color: var(--branco);
}
body.ativo section.beneficios form i {
    opacity: 1;
    visibility: visible;
}

header {
    position: fixed;
    top: 0;
    padding: 30px 0;
    width: 100%;
    z-index: 2;
    background: var(--branco);
    transition: .3s;
}
header .menu {
    background-image: url('../img/menu.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 48px;
    height: 48px;
    cursor: pointer;
    position: absolute;
    right: 0;
    display: none;
    transition: .3s;  
}
header.fixo {
    padding: 15px 0;
    box-shadow: 0 25px 30px 0px rgb(0 0 0 / 25%);
}
header.fixo img {
    width: 150px;
}
header.fixo .grid > a:last-child {
    font-size: 14px;
}
header a img {
    transition: .3s;
    width: 228px;
}
header .grid {
    grid-template-columns: max-content 1fr max-content;
    align-items: center;
}
header ul {
    display: flex;
    gap: 40px;
    justify-content: center;
}
header ul li a {
    color: var(--cinza);
    font-weight: 500;
}
header ul li a:hover {
    color: var(--preto);
}
header ul li:last-child {
    display: none;
}
header .grid > a[target="_blank"] {
    background: rgb(88,89,91);
    background: linear-gradient(90deg, var(--cinza) 0%, var(--preto) 80%);
    color: var(--branco);
    padding: 10px 35px 12px;
    border-radius: 50px; 
    box-shadow: 0 5px 15px 5px rgb(0 0 0 / 20%);    
}
header .grid > a:last-child:hover {
    transform: ; 
}



section.banner {
    padding-top: 175px;
}
section.banner .grid {
    grid-template-columns: max-content 1fr;
    gap: 100px;
    align-items: center;
}
section.banner h1 {
    font-size: 46px;
    line-height: 50px;
    background: linear-gradient(90deg, var(--cinza) 0%, var(--preto) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;    
    font-weight: 800;
    margin-bottom: 35px;
}
section.banner p {
    font-size: 22px;
    margin-bottom: 50px;
}
section.banner .grid > div > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
section.banner span {
    position: relative;
    display: flex;
    border: 1px solid var(--preto);
    border-radius: 100px;
    padding: 5px;
    justify-content: center;   
}
section.banner span sup {
    position: absolute;
    top: -10px;
    background: var(--branco);
    padding: 0 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: max-content;
    font-weight: 700;
}
section.banner span strong {
    font-size: 64px;
    font-weight: 800;    
    position: relative;
    left: 12px;
}
section.banner span strong sub {
    font-size: 22px;
    position: absolute;
    bottom: 14px;
    left: -25px;
}
section.banner a {
    background: rgb(88,89,91);
    background: linear-gradient(90deg, var(--cinza) 0%, var(--preto) 80%);
    color: var(--branco);
    padding: 14px 35px 16px;
    border-radius: 50px;
    height: max-content;
    text-align: center;    
    position: relative;
    box-shadow: 0 5px 15px 5px rgb(0 0 0 / 20%);    
}
section.banner a:after {
    content: '*Consulte condições para empresas.';
    position: absolute;
    bottom: -38px;
    left: 0;
    font-size: 15px;
    color: var(--cinza);
}


section.beneficios {
    padding: 0;
}
section.beneficios .bg {
    position: relative;
    display: grid;
    grid-template-columns: .45fr;
    background-color: var(--fundo);
    padding: 60px;
    border-radius: 15px;
}
section.beneficios .bg:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 817px;
    height: 521px;
    background-image: url('../img/beneficios.png');
    background-position: 120px 120px;
    background-repeat: no-repeat;    
    border-radius: 0 0 20px 0;    
}
section.beneficios h2 {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 40px;
    font-weight: 400;
    line-height: 45px;  
    background: linear-gradient(90deg, var(--cinza) 0%, var(--preto) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;     
    margin-bottom: 35px;
    margin-top: -5px;
}
section.beneficios h2 span strong {
    display: flex;
}
section.beneficios ul {
    margin: 35px 0 45px;
    display: grid;
    gap: 20px;
}
section.beneficios ul li {
    display: flex;
    align-items: center;
    gap: 12px;
}
section.beneficios a {
    background: rgb(88,89,91);
    background: linear-gradient(90deg, var(--cinza) 0%, var(--preto) 80%);
    color: var(--branco);
    padding: 14px 35px 16px;
    border-radius: 50px;
    position: relative;
    box-shadow: 0 5px 15px 5px rgb(0 0 0 / 20%);
    display: flex;
    max-width: 300px;
    justify-content: center;   
}

section.beneficios form {
    position: absolute;
    top: -60px;
    right: 60px;
    max-width: 350px;
    z-index: 1;
    background-color: rgb(255 255 255 / 85%);
    box-shadow: 0 5px 15px 5px rgb(0 0 0 / 10%);
    padding: 45px;
    border-radius: 15px;
}
section.beneficios form i {
    position: absolute;
    right: -15px;
    top: -15px;
    background: rgb(88,89,91);
    background: linear-gradient(90deg, var(--cinza) 0%, var(--preto) 80%);
    border-radius: 10px;    
    padding: 6px;
    visibility: hidden;
    opacity: 0;
    transition: .3s;
    cursor: pointer;
}
section.beneficios form i:before {
    content: '';
    background-image: url('../img/icone-fechar.png');
    width: 28px;
    height: 28px;
    background-size: contain;
    display: flex;
}
section.beneficios form h3 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 30px;
}
section.beneficios form h3 strong {
    color: var(--preto);
}
section.beneficios form p {
    display: flex;
    position: relative;
    width: max-content;
    margin: 0 auto 40px;
    font-size: 46px;
    font-weight: 800;
    left: -15px;
}
section.beneficios form p sub {
    font-size: 20px;
    position: absolute;
    bottom: -11px;
}
section.beneficios form p sub:first-child {
    left: -25px;
}
section.beneficios form p sub:last-child {
    right: -55px;
}
section.beneficios form input {
    width: 100%;
    padding: 13px;
    border: 2px solid var(--cinza);
    border-radius: 10px;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 16px;
}
section.beneficios form input::placeholder {
    opacity: .75;
}
section.beneficios form div {
    display: flex;
    align-items: center;
    gap: 8px;
}
section.beneficios form div input {
    width: 18px;
    height: 18px;
    margin: 0;
}
section.beneficios form div label {
    font-size: 12px;
    font-weight: 600;
}
section.beneficios form button {
    background: rgb(88,89,91);
    background: linear-gradient(90deg, var(--cinza) 0%, var(--preto) 80%);
    color: var(--branco);
    padding: 14px 35px 16px;
    border-radius: 50px;
    box-shadow: 0 5px 15px 5px rgb(0 0 0 / 20%);
    display: flex;
    width: 100%;
    justify-content: center;
    border: 0;
    font-size: 18px;
    margin-top: 35px;    
}



section.servicos {
    padding-bottom: 65px;
}
section.servicos .grid {
    grid-template-columns: 1fr 1fr;
}
section.servicos h2 {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 40px;
    font-weight: 400;
    line-height: 45px;  
    background: linear-gradient(90deg, var(--cinza) 0%, var(--preto) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;     
    margin-bottom: 35px;
}
section.servicos h2 span strong {
    display: flex;
}
section.servicos p {
    margin-bottom: 20px;
}
section.servicos a {
    background: rgb(88,89,91);
    background: linear-gradient(90deg, var(--cinza) 0%, var(--preto) 80%);
    color: var(--branco);
    padding: 14px 35px 16px;
    border-radius: 50px;
    position: relative;
    box-shadow: 0 5px 15px 5px rgb(0 0 0 / 20%);
    display: flex;
    max-width: 300px;
    justify-content: center;
    margin-top: 40px;    
}



section.chamada {
    padding: 0;
}
section.chamada .grid div {
    display: grid;
    grid-template-columns: max-content 1fr;
    background: rgb(88,89,91);
    background: linear-gradient(90deg, var(--cinza) 0%, var(--preto) 80%);
    padding: 60px;
    border-radius: 20px;    
    align-items: center;    
    gap: 60px;
}
section.chamada a {
    text-align: center;
    background-color: var(--branco);
    color: var(--preto);
    padding: 14px 35px 16px;
    border-radius: 50px;
    width: 275px;
    font-weight: 600;    
}
section.chamada h2 {
    color: var(--branco);
    font-size: 40px;
    font-weight: 400;    
    margin-top: -10px;
}
section.chamada h2 span {
    font-size: 22px;
    display: flex;
}



section.especialidades {
    padding-bottom: 30px;
}
section.especialidades h2 {
    text-align: center;
    gap: 20px;
    font-size: 40px;
    font-weight: 400;
    line-height: 45px;
    background: linear-gradient(90deg, var(--cinza) 0%, var(--preto) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;   
    margin-bottom: 20px; 
}
section.especialidades h2 img {
    display: block;
    margin: 0 auto;
}
section.especialidades h2 strong {
    display: block;
}
section.especialidades p {
    margin-bottom: 75px;
    text-align: center;
}
section.especialidades ul {
    column-count: 2;
}
section.especialidades ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
section.especialidades ul li img {
    width: 11px;
}
section.especialidades .grid:first-child {
    gap: 0;
}
section.especialidades .grid:last-child {
    grid-template-columns: 1fr 1fr;
}
section.especialidades .grid:last-child div div {
    position: absolute;
    bottom: 150px;
    right: 30px;
    max-width: 350px;
    z-index: 1;
    background-color: rgb(255 255 255 / 85%);
    box-shadow: 0 5px 15px 5px rgb(0 0 0 / 10%);
    padding: 35px 45px 45px;
    border-radius: 15px;    
}
section.especialidades .grid:last-child div div h3 {
    text-align: center;
    margin-bottom: 25px;
}
section.especialidades .grid:last-child div div h3 strong {
    color: var(--preto);
}
section.especialidades .grid:last-child div div a {
    background: rgb(88,89,91);
    background: linear-gradient(90deg, var(--cinza) 0%, var(--preto) 80%);
    color: var(--branco);
    padding: 14px 35px 16px;
    border-radius: 50px;
    position: relative;
    box-shadow: 0 5px 15px 5px rgb(0 0 0 / 20%);
    display: flex;
    max-width: 300px;
    justify-content: center;
}



section.contato {
    padding-top: 0;
}
section.contato .bg {
    display: grid;
    grid-template-columns: .45fr 1fr;
    align-items: center;
    gap: 60px;
    background-color: var(--fundo);
    padding: 60px;
    border-radius: 15px;
}
section.contato h2 {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 40px;
    font-weight: 400;
    line-height: 45px;  
    background: linear-gradient(90deg, var(--cinza) 0%, var(--preto) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;     
    margin-bottom: 20px;
}
section.contato h2 span strong {
    display: flex;
}
section.contato p {
    margin-bottom: 40px;
}
section.contato iframe {
    height: 500px;
    width: 100%;
    border-radius: 15px;
}
section.contato ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
}
section.contato ul li:nth-child(1),
section.contato ul li:nth-child(2) {
    font-size: 28px;
    font-weight: 800;
}
section.contato ul li a {
    color: var(--cinza);
}
section.contato ul li a:hover {
    color: var(--preto);
}


footer > .grid {
    grid-template-columns: max-content max-content 1fr;
    gap: 40px;
    align-items: center;
}
footer > .grid ul {
    display: flex;
    gap: 15px;
}
footer > .grid p {
    font-size: 12px;
    line-height: 20px;    
}
footer .creditos {
    margin-top: 90px;
    background: rgb(88,89,91);
    background: linear-gradient(90deg, var(--cinza) 0%, var(--preto) 80%);  
    padding: 20px 0;  
}
footer .creditos .grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
footer .creditos p {
    color: var(--branco);
}
footer .creditos a {
    display: flex;
    align-items: center;
    color: var(--branco);
    gap: 10px; 
    justify-content: end;       
}