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

body {
  font-family: "Inter", sans-serif;
}
body .header {
  background-image: url(/images/Capa\ 0.jpg);
  background-size: cover;
  height: 100vh;
}
@media (max-width: 767px) {
  body .header {
    background-position: 60%;
    height: 70vh;
  }
}
body .header .menu {
  width: 100%;
  padding: 20px 0;
}
body .header .menu__container {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
@media (max-width: 767px) {
  body .header .menu__container {
    align-items: center;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  body .header .menu__container--logo {
    margin-bottom: 10px;
  }
}
body .header .menu__container--logo img {
  height: 15px;
}
body .header .menu__container--logo .texto {
  display: flex;
  color: rgb(218, 41, 28);
  font-weight: bold;
  margin-top: 5px;
}
@media (max-width: 767px) {
  body .header .menu__container--logo .texto {
    justify-content: center;
  }
}
body .header .menu__container--logo .texto h3 {
  font-size: 24px;
  font-weight: bold;
  line-height: 23px;
}
body .header .menu__container--logo .texto span {
  display: flex;
  align-items: flex-start;
}
body .header .menu__container--logo .texto span .number {
  font-size: 70px;
  line-height: 54px;
}
body .header .menu__container--logo .texto span .sub {
  font-size: 10px;
}
body .header .menu__container--links {
  display: flex;
  align-items: center;
  gap: 20px;
}
body .header .menu__container--links a {
  color: grey;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  transition: all 0.3s ease-in;
}
body .header .menu__container--links a:hover {
  color: rgb(218, 41, 28);
}
body .header .hero {
  height: 100vh;
  display: flex;
}
body .header .hero__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  body .header .hero__container {
    align-items: flex-start;
    padding-left: 40px;
  }
}
body .header .hero__container--title h2 {
  font-size: 70px;
  letter-spacing: 2px;
}
@media (max-width: 767px) {
  body .header .hero__container--title h2 {
    font-size: 40px;
    margin-top: 85px;
  }
}
body .header .hero__container--title h2 span {
  color: rgb(218, 41, 28);
  font-weight: bold;
}
body .header .hero__container--content img {
  height: 500px;
}
body .sobre {
  padding-top: 100px;
  margin-bottom: 100px;
  height: 700px;
}
@media (max-width: 767px) {
  body .sobre {
    height: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}
body .sobre__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  body .sobre__container {
    flex-direction: column;
  }
}
body .sobre__container--text {
  font-size: 20px;
  font-weight: bold;
  position: relative;
}
@media (max-width: 767px) {
  body .sobre__container--text {
    margin-bottom: 0;
  }
}
body .sobre__container--text p {
  margin-bottom: 40px;
  width: 80%;
}
@media (max-width: 767px) {
  body .sobre__container--text p {
    width: 100%;
  }
}
body .sobre__container--text a {
  background-color: rgb(218, 41, 28);
  color: white;
  border: none;
  padding: 5px 30px;
  text-align: center;
  text-decoration: none;
  font-weight: normal;
}
body .sobre__container--text::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 15px;
  background-color: rgb(218, 41, 28);
  top: -40px;
}
body .sobre__container--content {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  body .sobre__container--content {
    display: none;
  }
}
body .sobre__container--content .right__container {
  position: relative;
  height: 100%;
  width: 500px;
  right: -15%;
}
@media (max-width: 767px) {
  body .sobre__container--content .right__container {
    right: unset;
    width: 100%;
  }
}
body .sobre__container--content .right__container .content {
  position: absolute;
  background-size: cover;
  background-size: cover !important;
  background-position: center !important;
  cursor: pointer;
}
@media (max-width: 767px) {
  body .sobre__container--content .right__container .content {
    position: unset;
    top: unset;
    bottom: unset;
    left: unset;
    right: unset;
    display: none;
  }
}
body .sobre__container--content .right__container .element1 {
  background-image: url(/images/element1.png);
  width: 110px;
  height: 200px;
  background-size: contain;
  background-repeat: no-repeat;
  left: -28%;
  position: absolute;
  transform: rotate(90deg);
}
body .sobre__container--content .right__container .element2 {
  background-image: url(/images/element2.png);
  width: 165px;
  height: 225px;
  background-size: contain;
  background-repeat: no-repeat;
  left: -45%;
  position: absolute;
  bottom: -25%;
}
body .sobre__container--content .right__container .box1 {
  background: url(/images/1.jpg);
  width: 250px;
  height: 400px;
  top: 0;
  border-radius: 0 0 0 50px;
  overflow: hidden;
}
body .sobre__container--content .right__container .box1 .inner_box {
  background-color: rgba(0, 0, 0, 0.627);
  width: 100%;
  height: 100%;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 30px;
  transition: all 0.3s ease-in;
  opacity: 0;
  z-index: 99999;
}
body .sobre__container--content .right__container .box1 .inner_box img {
  height: 100px;
}
body .sobre__container--content .right__container .box1 .inner_box .line {
  width: 40px;
  height: 2px;
  background-color: rgb(218, 41, 28);
  margin-top: 10px;
}
body .sobre__container--content .right__container .box1:hover .inner_box {
  opacity: 1;
}
body .sobre__container--content .right__container .box2 {
  background: url(/images/2.jpg);
  width: 250px;
  height: 400px;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 0 50px 0 0;
  background-position: right !important;
  overflow: hidden;
}
body .sobre__container--content .right__container .box2 .inner_box {
  background-color: rgba(0, 0, 0, 0.627);
  width: 100%;
  height: 100%;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 30px;
  transition: all 0.3s ease-in;
  opacity: 0;
}
body .sobre__container--content .right__container .box2 .inner_box img {
  height: 100px;
}
body .sobre__container--content .right__container .box2 .inner_box .line {
  width: 40px;
  height: 2px;
  background-color: rgb(218, 41, 28);
  margin-top: 10px;
}
body .sobre__container--content .right__container .box2:hover .inner_box {
  opacity: 1;
}
body .sobre__container--content .right__container .box3 {
  background: url(/images/3.jpg);
  width: 400px;
  height: 200px;
  bottom: -2%;
  left: -30%;
  border-radius: 0 0 50px 0;
  overflow: hidden;
}
body .sobre__container--content .right__container .box3 .inner_box {
  background-color: rgba(0, 0, 0, 0.627);
  width: 100%;
  height: 100%;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 30px;
  transition: all 0.3s ease-in;
  opacity: 0;
}
body .sobre__container--content .right__container .box3 .inner_box img {
  height: 100px;
}
body .sobre__container--content .right__container .box3 .inner_box .line {
  width: 40px;
  height: 2px;
  background-color: rgb(218, 41, 28);
  margin-top: 10px;
}
body .sobre__container--content .right__container .box3:hover .inner_box {
  opacity: 1;
}
body .beneficios {
  overflow: hidden;
  background-color: rgb(240, 240, 240);
}
@media (max-width: 767px) {
  body .beneficios {
    padding-top: 100px;
  }
}
body .beneficios__container--content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
@media (max-width: 767px) {
  body .beneficios__container--content {
    display: flex;
    flex-direction: column;
  }
}
body .beneficios__container--content .box1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding-left: 50px;
  padding-right: 50px;
}
body .beneficios__container--content .box1 h4 {
  font-size: 30px;
}
@media (max-width: 767px) {
  body .beneficios__container--content .box1 h4 {
    font-size: 23px;
  }
}
body .beneficios__container--content .box1 p {
  font-size: 28px;
}
@media (max-width: 767px) {
  body .beneficios__container--content .box1 p {
    font-size: 20px;
  }
}
body .beneficios__container--content .box1 a {
  background-color: rgb(218, 41, 28);
  color: white;
  border: none;
  padding: 5px 30px;
  width: 200px;
  text-decoration: none;
  text-align: center;
}
@media (max-width: 767px) {
  body .beneficios__container--content .box1 a {
    margin: 0 auto;
  }
}
body .beneficios__container--content .box2 {
  background-size: cover;
  background-position: center;
  border-radius: 100px 0 0 0;
}
@media (max-width: 767px) {
  body .beneficios__container--content .box2 {
    display: none;
  }
}
body .beneficios__container--content .box3 {
  background-size: cover;
  border-radius: 0 0 100px 0;
}
@media (max-width: 767px) {
  body .beneficios__container--content .box3 {
    display: none;
  }
}
body .beneficios__container--content .box3 img {
  height: 500px;
}
body .beneficios__container--content .box4 {
  height: 600px;
  padding-left: 50px;
  padding-top: 100px;
}
@media (max-width: 767px) {
  body .beneficios__container--content .box4 {
    height: 100%;
    margin-bottom: 100px;
    padding-left: 0;
    text-align: left;
  }
}
body .beneficios__container--content .box4 h5 {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  body .beneficios__container--content .box4 h5 {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  body .beneficios__container--content .box4 h3 {
    padding-left: 40px;
  }
}
body .beneficios__container--content .box4 .accordion {
  width: 80%;
}
@media (max-width: 767px) {
  body .beneficios__container--content .box4 .accordion {
    margin: 0 auto;
  }
}
body .beneficios__container--content .box4 .accordion-button:not(.collapsed) {
  background-color: rgb(218, 41, 28) !important;
  color: white;
  box-shadow: none;
}
body .beneficios__container--content .box4 .accordion-button:focus {
  border: 2px solid rgb(218, 41, 28);
  box-shadow: none;
}
body .beneficios__container--content .box4 .accordion-button {
  border: 2px solid rgb(218, 41, 28);
  color: rgb(218, 41, 28);
  font-weight: bold;
}
body .beneficios__container--content .box4 .accordion-item {
  margin-bottom: 10px;
}
body .beneficios__container--content .box4 .accordion-body {
  text-align: left;
}
body .contacto {
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body .contacto__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body .contacto__container--title img {
  height: 30px;
}
body .contacto__container--subtitle {
  font-size: 40px;
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 767px) {
  body .contacto__container--subtitle {
    padding-left: 40px;
    padding-right: 40px;
    font-size: 32px;
  }
}
body .contacto__container--subtitle span {
  font-weight: bold;
  color: rgb(218, 41, 28);
}
body .contacto__container .form__container {
  margin-top: 50px;
}
body .contacto__container .form__container--title {
  font-size: 20px;
  width: 70%;
  margin: 0 auto;
  text-align: center;
}
body .contacto__container .form__container--title.mobile {
  display: none;
}
@media (max-width: 767px) {
  body .contacto__container .form__container--title {
    width: 100%;
    display: none;
  }
  body .contacto__container .form__container--title.mobile {
    display: block;
  }
}
body .contacto__container .form__container--content {
  margin-top: 30px;
}
body .contacto__container .form__container--content form .inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
  body .contacto__container .form__container--content form .inputs {
    grid-template-columns: 1fr;
  }
}
body .contacto__container .form__container--content form .form__input input {
  width: 95%;
  border: none;
  background-color: rgb(240, 240, 240);
  height: 45px;
  margin-bottom: 10px;
  padding: 5px 10px;
}
body .contacto__container .form__container--content form .form__input input::placeholder {
  font-size: 20px;
}
body .contacto__container .form__container--content form input[type=submit] {
  margin: 0 auto;
  display: flex;
  background-color: rgb(218, 41, 28);
  color: white;
  border: none;
  padding: 10px 60px;
  margin-top: 20px;
  justify-content: center;
  width: 40%;
}

.custom-loader {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 8px solid;
  border-color: #E4E4ED;
  border-right-color: #DD0A0A;
  animation: s2 1s infinite linear;
  margin: auto;
  margin-top: 12px;
  opacity: 0;
}

@keyframes s2 {
  to {
    transform: rotate(1turn);
  }
}

/*# sourceMappingURL=styles.css.map */
