/* 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-color: #000000;
  font-family: "Michroma", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  overflow-x: hidden;
  color: #ffffff;
}

main {
  width: 100%;
  overflow: hidden;
}

.container {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}
@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-left: 20px;
  padding-right: 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}
.row.center-v {
  align-items: center;
}
.row.center-w {
  justify-content: center;
}

.row > * {
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  flex-wrap: wrap;
}

.col {
  flex: 0 0 auto;
  width: 100%;
}
.col-20 {
  width: 20%;
}
@media (max-width: 574.98px) {
  .col-20 {
    width: 100%;
  }
}
.col-30 {
  width: 30%;
}
@media (max-width: 574.98px) {
  .col-30 {
    width: 100%;
  }
}
.col-33 {
  width: 33.3333%;
}
@media (max-width: 574.98px) {
  .col-33 {
    width: 100%;
  }
}
.col-35 {
  width: 35%;
}
@media (max-width: 574.98px) {
  .col-35 {
    width: 100%;
  }
}
.col-40 {
  width: 40%;
}
@media (max-width: 574.98px) {
  .col-40 {
    width: 100%;
  }
}
.col-45 {
  width: 45%;
}
@media (max-width: 574.98px) {
  .col-45 {
    width: 100%;
  }
}
.col-50 {
  width: 50%;
}
@media (max-width: 574.98px) {
  .col-50 {
    width: 100%;
  }
}
.col-55 {
  width: 55%;
}
@media (max-width: 574.98px) {
  .col-55 {
    width: 100%;
  }
}
.col-60 {
  width: 60%;
}
@media (max-width: 574.98px) {
  .col-60 {
    width: 100%;
  }
}
.col-70 {
  width: 70%;
}
@media (max-width: 574.98px) {
  .col-70 {
    width: 100%;
  }
}
.col-80 {
  width: 80%;
}
@media (max-width: 574.98px) {
  .col-80 {
    width: 100%;
  }
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-start {
  justify-content: flex-start;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.small-title {
  color: #000000;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 100%;
  position: relative;
  padding-left: 30px;
  margin: 0 0 24px;
}
@media (max-width: 991.98px) {
  .small-title {
    font-size: 1.25rem;
  }
}
.small-title::before {
  background: url(../img/icon-title.svg) no-repeat center;
  content: "";
  display: block;
  height: 20px;
  width: 25px;
  position: absolute;
  left: 0;
  top: 2px;
}
@media (max-width: 991.98px) {
  .small-title::before {
    top: -1px;
  }
}

.img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.btn {
  border: none;
  background-color: #a25e1f;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #ffffff;
  width: 100%;
  max-width: 350px;
  padding: 15px 40px;
  font-size: 1.125rem;
  font-weight: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  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;
}
@media (max-width: 574.98px) {
  .btn {
    font-size: 1rem;
  }
}
.btn:hover {
  background-color: #ffffff;
  color: #a25e1f;
}

#banner {
  background: #000000;
  height: auto;
  position: relative;
  overflow: hidden;
  padding: 0;
}
#banner .bg-banner {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  z-index: 1;
}
@media (max-width: 991.98px) {
  #banner .bg-banner {
    width: 120%;
    max-width: 120%;
    margin-left: -15%;
  }
}
@media (max-width: 767.98px) {
  #banner .bg-banner {
    margin-left: -19%;
  }
}
@media (max-width: 574.98px) {
  #banner .bg-banner {
    opacity: 0.6;
  }
}
#banner .texto {
  position: absolute;
  top: 16%;
  right: 5%;
  max-width: 30%;
  z-index: 2;
}
@media (max-width: 991.98px) {
  #banner .texto {
    max-width: 35%;
  }
}
@media (max-width: 767.98px) {
  #banner .texto {
    right: 3%;
    max-width: 40%;
  }
}
@media (max-width: 574.98px) {
  #banner .texto {
    top: 10%;
    right: 5%;
    max-width: 55%;
  }
}
#banner .texto .logo {
  max-width: 100%;
  display: block;
  margin-bottom: 120%;
}
@media (max-width: 574.98px) {
  #banner .texto .logo {
    margin-bottom: 70%;
  }
}
#banner .texto h2 {
  color: #ffffff;
  font-size: 1.7vw;
  font-weight: normal;
  line-height: 120%;
  margin-bottom: 70%;
}
@media (max-width: 991.98px) {
  #banner .texto h2 {
    font-size: 2.2vw;
  }
}
@media (max-width: 767.98px) {
  #banner .texto h2 {
    font-size: 2.5vw;
  }
}
@media (max-width: 574.98px) {
  #banner .texto h2 {
    font-size: 0.875rem;
    margin-bottom: 55%;
    line-height: 140%;
  }
}
#banner .texto h3 {
  color: #ffffff;
  font-size: 1.3vw;
  font-weight: normal;
  line-height: 120%;
}
@media (max-width: 991.98px) {
  #banner .texto h3 {
    font-size: 1.7vw;
  }
}
@media (max-width: 767.98px) {
  #banner .texto h3 {
    font-size: 2vw;
  }
}
@media (max-width: 574.98px) {
  #banner .texto h3 {
    font-size: 0.6875rem;
    line-height: 140%;
  }
}

#contato {
  background: url(../img/bg-2.jpg) no-repeat right top/cover;
  padding: 120px 0;
}
#contato .row {
  justify-content: center;
}
@media (max-width: 1399.98px) {
  #contato .col-60 {
    width: 70%;
  }
}
@media (max-width: 991.98px) {
  #contato .col-60 {
    width: 80%;
  }
}
@media (max-width: 767.98px) {
  #contato .col-60 {
    width: 100%;
  }
}
#contato h2 {
  font-size: 1.5rem;
  font-weight: normal;
  margin-bottom: 50px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 170%;
}
@media (max-width: 574.98px) {
  #contato h2 {
    font-size: 1.25rem;
  }
}
#contato form .col .ipt,
#contato form .col-50 .ipt {
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 0;
  color: #ffffff;
  width: 100%;
  height: 52px;
  font-family: "Michroma", sans-serif;
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 0.1em;
  margin-bottom: 50px;
  padding: 0 15px;
}
#contato form .col .ipt::-moz-placeholder, #contato form .col-50 .ipt::-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}
#contato form .col .ipt::placeholder,
#contato form .col-50 .ipt::placeholder {
  color: #ffffff;
  opacity: 1;
}
@media (max-width: 574.98px) {
  #contato form .col .ipt,
  #contato form .col-50 .ipt {
    font-size: 0.875rem;
  }
}
#contato form .col.checks,
#contato form .col-50.checks {
  display: block;
  margin-bottom: 40px;
  position: relative;
}
#contato form .col.checks input,
#contato form .col-50.checks input {
  position: absolute;
  top: 8px;
  left: 25px;
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: block;
  width: 1px;
  height: 1px;
  opacity: 0;
  cursor: pointer;
}
#contato form .col.checks label,
#contato form .col-50.checks label {
  min-height: 28px;
  position: relative;
  left: 0;
  cursor: pointer;
  pointer-events: all;
  padding-left: 40px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  line-height: 120%;
  text-transform: uppercase;
  display: block;
  padding-top: 3px;
}
@media (max-width: 574.98px) {
  #contato form .col.checks label,
  #contato form .col-50.checks label {
    font-size: 0.625rem;
  }
}
@media (max-width: 479.98px) {
  #contato form .col.checks label,
  #contato form .col-50.checks label {
    padding-top: 0;
  }
}
#contato form .col.checks label:before,
#contato form .col-50.checks label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #ffffff;
  box-shadow: none;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  border-radius: 0;
  height: 19px;
  width: 19px;
  transition: all 0.2s ease-in-out;
}
#contato form .col.checks label::after,
#contato form .col-50.checks label::after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 7px;
  width: 5px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: all 0.2s ease-in-out;
}
#contato form .col.checks label a,
#contato form .col-50.checks label a {
  color: #ffffff;
  text-transform: uppercase;
  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 .col.checks label a:hover,
#contato form .col-50.checks label a:hover {
  text-decoration: underline;
}
#contato form .col.checks input:checked + label::after,
#contato form .col-50.checks input:checked + label::after {
  transform: rotate(45deg) scale(1);
}
#contato form .col .radios,
#contato form .col-50 .radios {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
#contato form .col .radios .form-group,
#contato form .col-50 .radios .form-group {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
#contato form .col .radios .form-group input,
#contato form .col-50 .radios .form-group input {
  position: absolute;
  top: 8px;
  left: 5px;
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  cursor: pointer;
  display: block;
  width: 1px;
  height: 1px;
  opacity: 0;
}
#contato form .col .radios .form-group label,
#contato form .col-50 .radios .form-group label {
  display: block;
  align-items: center;
  min-height: 28px;
  position: relative;
  left: 0;
  padding-left: 40px;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 140%;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 300;
}
@media (max-width: 574.98px) {
  #contato form .col .radios .form-group label,
  #contato form .col-50 .radios .form-group label {
    font-size: 0.875rem;
  }
}
#contato form .col .radios .form-group label:before,
#contato form .col-50 .radios .form-group label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #ffffff;
  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 .col .radios .form-group label::after,
#contato form .col-50 .radios .form-group label::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  width: 14px;
  height: 14px;
  border: none;
  z-index: 2;
  border-radius: 100%;
  background-color: #ffffff;
  transform: scale(0);
  transition: all 0.2s ease-in-out;
}
#contato form .col .radios .form-group input:checked + label::after,
#contato form .col-50 .radios .form-group input:checked + label::after {
  transform: scale(1);
}
#contato form .col p,
#contato form .col-50 p {
  font-size: 0.625rem;
  font-weight: normal;
  margin-bottom: 20px;
  line-height: 130%;
  text-transform: uppercase;
}
#contato form .col p:last-of-type,
#contato form .col-50 p:last-of-type {
  margin-bottom: 50px;
}
#contato form .col p a,
#contato form .col-50 p a {
  color: #ffffff;
  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 .col p a:hover,
#contato form .col-50 p a:hover {
  text-decoration: underline;
}
@media (max-width: 574.98px) {
  #contato form .col .btn-enviar,
  #contato form .col-50 .btn-enviar {
    max-width: 100%;
  }
}
#contato .institucional {
  padding-top: 120px;
}
#contato .institucional h2 {
  margin-bottom: 140px;
}
#contato .institucional .aspas {
  height: 60px;
}
@media (max-width: 574.98px) {
  #contato .institucional .aspas {
    margin-top: 32px;
  }
}
#contato .institucional p {
  margin-top: 30px;
  font-size: 1.125rem;
  font-weight: normal;
  line-height: 140%;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}
@media (max-width: 991.98px) {
  #contato .institucional p {
    font-size: 0.875rem;
  }
}
#contato .institucional h3 {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 140%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
@media (max-width: 991.98px) {
  #contato .institucional h3 {
    font-size: 0.875rem;
  }
}
#contato .institucional h4 {
  font-size: 1.125rem;
  font-weight: normal;
  line-height: 140%;
  letter-spacing: 0.1em;
}
@media (max-width: 991.98px) {
  #contato .institucional h4 {
    font-size: 0.875rem;
  }
}

#slogan {
  background: url(../img/bg-slogan.jpg) no-repeat center top/cover;
  padding: 80px 0;
  height: 656px;
  position: relative;
}
@media (max-width: 991.98px) {
  #slogan {
    height: 480px;
  }
}
@media (max-width: 574.98px) {
  #slogan {
    background-position: 60% bottom;
  }
  #slogan::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
}
#slogan .container,
#slogan .row {
  height: 100%;
  position: relative;
  z-index: 2;
}
#slogan .row {
  align-items: center;
}
#slogan h2 {
  font-size: 2rem;
  font-weight: normal;
  margin-bottom: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 170%;
}
@media (max-width: 991.98px) {
  #slogan h2 {
    font-size: 1.5rem;
  }
}

footer {
  background: url(../img/bg-2.jpg) no-repeat right bottom/cover;
  padding: 120px 0;
}
@media (max-width: 767.98px) {
  footer .row {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767.98px) {
  footer .col-60,
  footer .col-40 {
    width: 100%;
  }
}
footer .telefone {
  display: block;
  color: #ffffff;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 140%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  transition: all 0.4s ease-in-out;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
footer .telefone:hover {
  color: #a25e1f;
}
@media (max-width: 991.98px) {
  footer .telefone {
    font-size: 1.375rem;
  }
}
@media (max-width: 767.98px) {
  footer .telefone {
    margin: 0 auto 10px;
  }
}
footer .site {
  display: block;
  color: #ffffff;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.125rem;
  font-weight: normal;
  line-height: 140%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 50px;
  transition: all 0.4s ease-in-out;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
footer .site:hover {
  color: #a25e1f;
}
@media (max-width: 991.98px) {
  footer .site {
    font-size: 0.875rem;
  }
}
@media (max-width: 767.98px) {
  footer .site {
    margin: 0 auto 50px;
  }
}
@media (max-width: 574.98px) {
  footer .site {
    font-size: 0.75rem;
  }
}
footer .copyright {
  font-size: 0.75rem;
  font-weight: normal;
  line-height: 140%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media (max-width: 991.98px) {
  footer .copyright {
    font-size: 0.625rem;
  }
}
@media (max-width: 767.98px) {
  footer .copyright {
    text-align: center;
  }
}
footer .copyright a {
  color: #ffffff;
  transition: all 0.4s ease-in-out;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
footer .copyright a:hover {
  text-decoration: underline;
}
footer .legal {
  font-size: 0.5rem;
  font-weight: normal;
  line-height: 160%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0;
  margin-top: 50px;
}
footer .logo {
  display: block;
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}
@media (max-width: 767.98px) {
  footer .logo {
    margin: 0 auto 50px;
    max-width: 80%;
  }
}

.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: #333333;
  padding: 50px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow: hidden;
  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%);
}
@media (max-width: 574.98px) {
  .modal .modal-content {
    padding: 50px 20px;
  }
}
.modal .modal-content span.close {
  cursor: pointer;
  display: block;
  height: 24px;
  width: 24px;
  position: absolute;
  top: 20px;
  right: 20px;
}
.modal .modal-content span.close svg {
  height: 24px;
  width: 24px;
}
.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.stroke path, .modal .modal-content span.close:focus svg.stroke path {
  stroke: #a25e1f;
}

#modalPrivacidade .modal-content h2,
#modalSucesso .modal-content h2,
#modalErro .modal-content h2 {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: normal;
  margin-bottom: 30px;
  line-height: 140%;
}
@media (max-width: 767.98px) {
  #modalPrivacidade .modal-content h2,
  #modalSucesso .modal-content h2,
  #modalErro .modal-content h2 {
    font-size: 1.125rem;
  }
}
#modalPrivacidade .modal-content p,
#modalSucesso .modal-content p,
#modalErro .modal-content p {
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 150%;
  margin-bottom: 30px;
}
@media (max-width: 767.98px) {
  #modalPrivacidade .modal-content p,
  #modalSucesso .modal-content p,
  #modalErro .modal-content p {
    font-size: 1rem;
  }
}
#modalPrivacidade .modal-content .btn,
#modalSucesso .modal-content .btn,
#modalErro .modal-content .btn {
  margin: 0;
}

@keyframes modalopen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}/*# sourceMappingURL=styles.css.map */