@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@font-face {
  font-family: "Nexa Extra";
  src: url("../fonts/Nexa-ExtraLight.woff2") format("woff2"),
    url("../fonts/Nexa-ExtraLight.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nexa";
  src: url("../fonts/Nexa-Heavy.woff2") format("woff2"),
    url("../fonts/Nexa-Heavy.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nexa Book";
  src: url("../fonts/Nexa-Book.woff2") format("woff2"),
    url("../fonts/Nexa-Book.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* CSS Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Estilos globais */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  overflow-x: hidden;
  color: #77624b;
}

main {
  width: 100%;
  overflow: hidden;
}

.container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 767.98px) {
  .container {
    max-width: 100%;
  }
}
@media (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 1399.98px) {
  .container {
    max-width: 1140px;
  }
}
.container-fluid {
  max-width: 100%;
  padding: 0 30px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -30px;
  margin-right: -30px;
}
.row.center-v {
  align-items: center;
}
.row.center-w {
  justify-content: center;
}

.row > * {
  max-width: 100%;
  flex-wrap: wrap;
  padding: 0 30px;
}

.col {
  flex: 0 0 auto;
  width: 100%;
}
.col-30 {
  width: 30%;
}
@media (max-width: 767.98px) {
  .col-30 {
    width: 100%;
  }
}
.col-40 {
  width: 40%;
}
@media (max-width: 767.98px) {
  .col-40 {
    width: 100%;
  }
}
.col-50 {
  width: 50%;
}
@media (max-width: 767.98px) {
  .col-50 {
    width: 100%;
  }
}
.col-60 {
  width: 60%;
}
@media (max-width: 767.98px) {
  .col-60 {
    width: 100%;
  }
}
.col-70 {
  width: 70%;
}
@media (max-width: 767.98px) {
  .col-70 {
    width: 100%;
  }
}
.col-content {
  width: 70%;
}
@media (max-width: 1399.98px) {
  .col-content {
    width: 80%;
  }
}
@media (max-width: 991.98px) {
  .col-content {
    width: 90%;
  }
}
@media (max-width: 767.98px) {
  .col-content {
    width: 100%;
  }
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.align-items-center {
  align-items: center;
}

.align-items-end {
  align-items: flex-end;
}

.img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.btn,
button.close {
  border: none;
  background-image: linear-gradient(92deg, #b39a76 0%, #77624b 100%);
  cursor: pointer;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 100%;
  max-width: 500px;
  transition: all 0.4s ease-in-out;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.btn:hover,
button.close:hover {
  background-image: linear-gradient(92deg, #77624b 0%, #77624b 100%);
  color: #ffffff;
}

#banner {
  background: url(../img/bg-banner.jpg) no-repeat center/cover;
}
@media (max-width: 767.98px) {
  #banner {
    background-position: 70% center;
  }
}
@media (max-width: 574.98px) {
  #banner {
    background-position: 70% center;
  }
}
#banner .col {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  height: 100dvh;
  padding: 150px 0;
}
#banner .col h2 {
  font-family: "Roboto", sans-serif;
  font-size: 1.625rem;
  font-weight: 500;
  color: #b8996d;
  letter-spacing: 2px;
}
@media (max-width: 767.98px) {
  #banner .col h2 {
    text-align: center;
    font-size: 1.25rem;
  }
}
#banner .col h3 {
  font-family: "Nexa Extra", sans-serif;
  font-size: 1rem;
  color: #b8996d;
  line-height: 250%;
  text-align: center;
}
#banner .col h3 strong {
  font-family: "Nexa Book", sans-serif;
  font-weight: 500;
  font-size: 1.625rem;
  letter-spacing: 3px;
}
#banner .col h3 span {
  font-weight: 100;
  font-size: 2.5rem;
  vertical-align: top;
  padding: 0 10px;
}
@media (max-width: 767.98px) {
  #banner .col h3 {
    font-size: 0.9375rem;
    letter-spacing: 2.7px;
  }
}
#banner .col .logo {
  display: block;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  #banner .col .logo {
    width: 80%;
  }
}

#bloco2 {
  background: url(../img/bg-fachada.jpg) no-repeat center/cover;
  padding: 130px 0;
}
#bloco2 h2 {
  font-size: 2.5rem;
  color: #ffffff;
  font-weight: 300;
  line-height: 130%;
  letter-spacing: 5px;
  text-align: center;
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  #bloco2 h2 {
    font-size: 2rem;
  }
}
@media (max-width: 574.98px) {
  #bloco2 h2 {
    letter-spacing: 3px;
  }
  #bloco2 h2 br {
    display: none;
  }
}
#bloco2 p {
  color: #b39a76;
  line-height: 130%;
  font-family: "Nexa", sans-serif;
  font-size: 1.5rem;
  display: block;
  text-align: center;
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  #bloco2 p {
    font-size: 1.25rem;
  }
}
#bloco2 .lista {
  display: grid;
  gap: 40px 60px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 574.98px) {
  #bloco2 .lista {
    grid-template-columns: repeat(1, 1fr);
  }
}
#bloco2 .lista .item {
  position: relative;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 3px;
  margin-bottom: 20px;
  padding-left: 57px;
}
@media (max-width: 574.98px) {
  #bloco2 .lista .item {
    font-size: 0.875rem;
    padding-left: 45px;
  }
}
#bloco2 .lista .item::before {
  content: "";
  display: block;
  width: 40px;
  height: 14px;
  background-image: linear-gradient(0deg, #958672 0%, #726455 100%);
  position: absolute;
  left: 0;
  top: 8px;
}
@media (max-width: 767.98px) {
  #bloco2 .lista .item::before {
    width: 30px;
  }
}
#bloco2 span {
  display: block;
  color: #77624b;
  font-size: 1.0625rem;
  letter-spacing: 4px;
  line-height: 32px;
  font-weight: 300;
  padding-top: 20px;
}
@media (max-width: 574.98px) {
  #bloco2 span {
    font-size: 0.875rem;
  }
}

#contato {
  background-color: #f2ece4;
  padding-top: 120px;
}
#contato h2 {
  color: #77624b;
  font-weight: 300;
  font-size: 1.625rem;
  letter-spacing: 5px;
  line-height: 140%;
  text-transform: uppercase;
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  #contato h2 {
    text-align: center;
  }
}
#contato form .col,
#contato form .col-50 {
  margin-bottom: 40px;
}
#contato form .col .ipt,
#contato form .col-50 .ipt {
  background-color: #ffffff;
  border: 0.3px solid rgba(57, 64, 40, 0.3);
  color: #394028;
  height: 50px;
  font-family: "Nexa Extra", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 3px;
  width: 100%;
  padding: 0 20px;
}
#contato form .col .ipt:focus,
#contato form .col-50 .ipt:focus {
  outline: none;
}
#contato form .col .ipt::-moz-placeholder,
#contato form .col-50 .ipt::-moz-placeholder {
  color: #77624b;
  opacity: 1; /* Firefox */
}
#contato form .col .ipt::placeholder,
#contato form .col-50 .ipt::placeholder {
  color: #77624b;
  opacity: 1; /* Firefox */
}
#contato form .col .ipt::-ms-input-placeholder,
#contato form .col-50 .ipt::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: #77624b;
}
#contato form .radios {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

#contato form .col-50 .textMensagem {
  height: auto;
  width: 100%;
  padding-top: 15px;
  font-family: "Nexa Extra", sans-serif;
}

@media (max-width: 991.98px) {
  #contato form .col-50 .textMensagem {
    width: 100%;
    max-width: 100%;
    min-width: 50%;
  }
}

@media (max-width: 574.98px) {
  #contato form .col-50 .textMensagem {
    width: 100%;
  }
}

#contato form .radios .form-group {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
#contato form .radios .form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  cursor: pointer;
  display: block;
  position: absolute;
}
#contato form .radios .form-group label {
  display: block;
  align-items: center;
  min-height: 28px;
  position: relative;
  left: 0;
  padding-left: 30px;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 3px;
  line-height: 140%;
  text-transform: uppercase;
  color: #77624b;
  font-weight: 300;
}
#contato form .radios .form-group label:before {
  content: "";
  -webkit-appearance: none;
  background-color: #ffffff;
  border: none;
  box-shadow: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  border-radius: 100%;
  height: 20px;
  width: 20px;
  z-index: 1;
  transition: all 0.2s ease-in-out;
}
#contato form .radios .form-group label::after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 3px;
  width: 14px;
  height: 14px;
  border: none;
  z-index: 2;
  border-radius: 100%;
  background-color: #77624b;
  transform: scale(0);
  transition: all 0.2s ease-in-out;
}
#contato form .radios .form-group input:checked + label::after {
  transform: scale(1);
}
#contato form .checks {
  display: block;
  margin-bottom: 50px;
}
#contato form .checks .form-group {
  position: relative;
}
#contato form .checks .form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: block;
  cursor: pointer;
  position: absolute;
}
#contato form .checks .form-group label {
  padding-left: 30px;
  display: block;
  line-height: 24px;
  position: relative;
  left: 0;
  cursor: pointer;
  pointer-events: all;
  padding-left: 35px;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: #77624b;
}
#contato form .checks .form-group label:before {
  content: "";
  -webkit-appearance: none;
  background-color: #ffffff;
  border: none;
  box-shadow: none;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  border-radius: 0;
  height: 24px;
  width: 24px;
  transition: all 0.2s ease-in-out;
}
#contato form .checks .form-group label::after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 8px;
  width: 6px;
  height: 12px;
  border: solid #77624b;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: all 0.2s ease-in-out;
}
#contato form .checks .form-group label a {
  color: #77624b;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
#contato form .checks .form-group label a:hover {
  color: #394028;
}
#contato form .checks .form-group input:checked + label::before {
  background-color: #ffffff;
}
#contato form .checks .form-group input:checked + label::after {
  transform: rotate(45deg) scale(1);
}
#contato form .btn-enviar {
  border: none;
  background-image: linear-gradient(92deg, #b39a76 0%, #77624b 100%);
  cursor: pointer;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 3px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 100%;
  max-width: 500px;
  visibility: visible;
  opacity: 1;
  margin: 0 auto;
  transition: all 0.4s ease-in-out;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
#contato form .btn-enviar:hover {
  background-image: linear-gradient(92deg, #77624b 0%, #77624b 100%);
  color: #ffffff;
}

#localizacao {
  background-color: #f2ece4;
  padding-top: 100px;
}
#localizacao .img-fluid {
  margin: 0 auto;
}
#localizacao .border {
  border-left: 1px solid #77624b;
}
@media (max-width: 767.98px) {
  #localizacao .border {
    border-left: none;
  }
}
#localizacao address {
  font-size: 1rem;
  letter-spacing: 3px;
  line-height: 150%;
  color: #77624b;
  font-weight: 400;
  display: block;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  #localizacao address {
    text-align: center;
  }
}
#localizacao p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #363636;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  line-height: 130%;
  font-weight: 400;
  margin-bottom: 10px;
}
#localizacao p:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  #localizacao p {
    width: 100%;
    justify-content: center;
  }
}
#localizacao .mapa {
  margin-top: 100px;
}

#incorporacao {
  background-color: #ad9672;
  padding: 100px 0;
}
@media (max-width: 991.98px) {
  #incorporacao .col-40,
  #incorporacao .col-30 {
    width: 100%;
  }
}
#incorporacao h3 {
  font-family: "Nexa Book", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 2px;
  line-height: 22px;
  color: #000000;
  text-align: center;
  margin-bottom: 30px;
}
#incorporacao .logos {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 82px;
  gap: 40px;
  margin-bottom: 80px;
}
@media (max-width: 991.98px) {
  #incorporacao .logos {
    min-height: auto;
    margin-bottom: 60px;
  }
}
@media (max-width: 499.98px) {
  #incorporacao .logos {
    display: block;
  }
  #incorporacao .logos img {
    display: block;
    margin: 0 auto 30px;
  }
}
#incorporacao .legal {
  text-align: center;
  color: #000000;
  font-family: "Nexa Book", sans-serif;
  font-size: 0.75rem;
  line-height: 130%;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 40px;
}
#incorporacao .assinatura {
  text-align: center;
  color: #000000;
  font-family: "Nexa Book", sans-serif;
  font-size: 0.75rem;
  line-height: 130%;
  text-transform: uppercase;
  font-weight: 400;
}
#incorporacao .assinatura a {
  color: #000000;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
#incorporacao .assinatura a:hover {
  color: #77624b;
}

#politica .faixa-titulo {
  background-color: #77624b;
  padding: 50px 0;
}
#politica .faixa-titulo h1 {
  color: #394028;
  font-family: "Nexa Book", sans-serif;
  font-size: 2.3125rem;
  letter-spacing: 2px;
  line-height: 140%;
  text-transform: uppercase;
  font-weight: 300;
  text-align: center;
}
@media (max-width: 767.98px) {
  #politica .faixa-titulo h1 {
    font-size: 2rem;
  }
}
#politica h2 {
  color: #77624b;
  font-family: "Nexa Book", sans-serif;
  font-size: 2.3125rem;
  letter-spacing: 2px;
  line-height: 140%;
  text-transform: uppercase;
  padding-top: 100px;
}
@media (max-width: 767.98px) {
  #politica h2 {
    font-size: 2rem;
  }
}
#politica h3 {
  color: #77624b;
  font-family: "Nexa Book", sans-serif;
  font-size: 2rem;
  letter-spacing: 2px;
  line-height: 140%;
  text-transform: uppercase;
  padding-top: 50px;
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  #politica h3 {
    font-size: 1.75rem;
  }
}
#politica p {
  color: #394028;
  font-family: "Nexa Book", sans-serif;
  font-size: 1.125rem;
  letter-spacing: 2px;
  line-height: 140%;
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  #politica p {
    font-size: 1rem;
  }
}
#politica li {
  color: #394028;
  font-family: "Nexa Book", sans-serif;
  font-size: 1.125rem;
  letter-spacing: 2px;
  line-height: 140%;
  font-weight: 300;
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  #politica li {
    font-size: 1rem;
  }
}
#politica a {
  color: #77624b;
  font-family: "Nexa Book", sans-serif;
  font-size: 1.125rem;
  letter-spacing: 2px;
  line-height: 140%;
  font-weight: 300;
}
@media (max-width: 767.98px) {
  #politica a {
    font-size: 1rem;
  }
}
#politica a:hover {
  text-decoration: underline;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
.modal .modal-content {
  background-color: #eaddcb;
  padding: 20px;
  width: 80%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  animation: modalopen 0.4s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal .modal-content span.close {
  cursor: pointer;
}
.modal .modal-content span.close svg path {
  transition: all 0.4s ease-in-out;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.modal .modal-content span.close:hover svg path,
.modal .modal-content span.close:focus svg path {
  fill: #000000;
}
.modal .modal-content span.close:hover svg.stroke path,
.modal .modal-content span.close:focus svg.stroke path {
  stroke: #000000;
  fill: #eaddcb;
}

#modalSucesso .modal-content,
#modalErro .modal-content {
  padding: 100px 90px;
  max-width: 800px;
}
@media (max-width: 574.98px) {
  #modalSucesso .modal-content,
  #modalErro .modal-content {
    padding: 50px 30px;
  }
}
#modalSucesso .modal-content span.close,
#modalErro .modal-content span.close {
  position: absolute;
  right: 15px;
  top: 15px;
}
#modalSucesso .modal-content h2,
#modalErro .modal-content h2 {
  color: #77624b;
  font-family: "Nexa Book", sans-serif;
  font-size: 2rem;
  margin-bottom: 30px;
  text-transform: uppercase;
}
@media (max-width: 574.98px) {
  #modalSucesso .modal-content h2,
  #modalErro .modal-content h2 {
    font-size: 1.5rem;
  }
}
#modalSucesso .modal-content p,
#modalErro .modal-content p {
  color: #77624b;
  font-family: "Nexa Book", sans-serif;
  font-size: 1.5rem;
  line-height: 120%;
  margin-bottom: 30px;
}
@media (max-width: 574.98px) {
  #modalSucesso .modal-content p,
  #modalErro .modal-content p {
    font-size: 1.125rem;
  }
}

.modal-contato .modal-content {
  overflow-y: hidden;
}
@media (max-width: 767.98px) {
  .modal-contato .modal-content {
    overflow-y: auto;
  }
}
.modal-contato .modal-content form .col {
  margin-bottom: 40px;
}
.modal-contato .modal-content form .col .ipt,
.modal-contato .modal-content form .col textarea {
  background-color: #ffffff;
  border: none;
  color: #77624b;
  height: 50px;
  font-family: "Roboto", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 3px;
  width: 100%;
  padding: 0 20px;
}
.modal-contato .modal-content form .col .ipt:focus,
.modal-contato .modal-content form .col textarea:focus {
  outline: none;
}
.modal-contato .modal-content form .col .ipt::-moz-placeholder,
.modal-contato .modal-content form .col textarea::-moz-placeholder {
  color: #77624b;
  opacity: 1; /* Firefox */
}
.modal-contato .modal-content form .col .ipt::placeholder,
.modal-contato .modal-content form .col textarea::placeholder {
  color: #77624b;
  opacity: 1; /* Firefox */
}
.modal-contato .modal-content form .col .ipt::-ms-input-placeholder,
.modal-contato .modal-content form .col textarea::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: #77624b;
}
.modal-contato .modal-content form .col textarea {
  padding: 20px;
  height: auto;
  resize: vertical;
}
.modal-contato .modal-content form .checks {
  display: block;
  margin-bottom: 50px;
}
.modal-contato .modal-content form .checks input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.modal-contato .modal-content form .checks label {
  padding-left: 30px;
  display: block;
  line-height: 24px;
  position: relative;
  left: 0;
  cursor: pointer;
  pointer-events: all;
  padding-left: 35px;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: #77624b;
}
.modal-contato .modal-content form .checks label:before {
  content: "";
  -webkit-appearance: none;
  background-color: #ffffff;
  border: none;
  box-shadow: none;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  border-radius: 0;
  height: 24px;
  width: 24px;
  transition: all 0.2s ease-in-out;
}
.modal-contato .modal-content form .checks label::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 9px;
  width: 6px;
  height: 12px;
  border: solid #77624b;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: all 0.2s ease-in-out;
}
.modal-contato .modal-content form .checks label a {
  padding-left: 5px;
  color: #77624b;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.modal-contato .modal-content form .checks label a:hover {
  color: #ffffff;
}
.modal-contato .modal-content form .checks input:checked + label::before {
  background-color: #ffffff;
}
.modal-contato .modal-content form .checks input:checked + label::after {
  transform: rotate(45deg) scale(1);
}
.modal-contato .modal-content form .btn-enviar {
  border: none;
  background-image: linear-gradient(92deg, #958672 0%, #726455 100%);
  cursor: pointer;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  transition: all 0.4s ease-in-out;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.modal-contato .modal-content form .btn-enviar:hover {
  background-image: linear-gradient(92deg, #726455 0%, #726455 100%);
  color: #ffffff;
}

@keyframes modalopen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
} /*# sourceMappingURL=styles.css.map */
