@font-face {
  font-family: "Lora";
  src: url("../assets/fonts/Lora/Lora-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Lora";
  src: url("../assets/fonts/Lora/Lora-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Lora";
  src: url("../assets/fonts/Lora/Lora-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Lora";
  src: url("../assets/fonts/Lora/Lora-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Lora";
  src: url("../assets/fonts/Lora/Lora-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Lora";
  src: url("../assets/fonts/Lora/Lora-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "Lora";
  src: url("../assets/fonts/Lora/Lora-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Lora";
  src: url("../assets/fonts/Lora/Lora-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Rische";
  src: url("../assets/fonts/Rische/Rische-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Rische";
  src: url("../assets/fonts/Rische/Rische-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Average";
  src: url("../assets/fonts/Average/Average-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@keyframes infiniti-slider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: "Lora", sans-serif;
}
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  color: #080707;
  background-color: #f5f5f5;
}
p + p {
  margin: 0 0 20px;
}
img {
  display: block;
  max-width: 100%;
}
.max-width {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.px-section {
  padding-left: 20px;
  padding-right: 20px;
}
.py-section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.text-white {
  color: #ffffff;
}
.iframe-container{
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .py-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 768px) {
  .max-width, .iframe-container {
    max-width: 700px;
  }
}
@media (min-width: 992px) {
  .max-width, .iframe-container {
    max-width: 900px;
  }
  .py-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (min-width: 1200px) {
  .max-width {
    max-width: 1100px;
  }
  .iframe-container {
    max-width: 1000px;
  }
}
@media (min-width: 1400px) {
  .max-width {
    max-width: 1280px;
  }
}
.site-footer {
  padding: 20px;
}
.site-footer .brand-footer {
  height: 140px;
  width: fit-content;
  display: block;
  margin: 0 auto;
}
.site-footer .brand-footer img {
  height: 100%;
}
.site-footer .nav-footer {
  margin: 20px 0;
}
.site-footer .nav-footer a {
  text-decoration: none;
  color: inherit;
}
.site-footer .nav-footer .title-menu-footer,
.site-footer .nav-footer .menu-footer-item {
  font-size: 16px;
  text-transform: uppercase;
}
.site-footer .nav-footer .title-menu-footer {
  font-weight: 700;
  margin: 0 0 15px;
}
.site-footer .nav-footer .menu-footer {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer .nav-footer .menu-footer .menu-footer-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-footer
  .nav-footer
  .menu-footer
  .menu-footer-item
  .btn-toggle-footer-submenu {
  background-color: transparent;
  padding: 5px;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}
.site-footer .nav-footer .menu-footer .menu-footer-item .submenu-footer {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 2;
  width: 100%;
  background-color: #3f4345;
  max-height: 0;
  overflow: auto;
  transition: 0.2s;
}
.site-footer
  .nav-footer
  .menu-footer
  .menu-footer-item
  .submenu-footer::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.site-footer
  .nav-footer
  .menu-footer
  .menu-footer-item
  .submenu-footer::-webkit-scrollbar-track {
  background: #3f4345;
}
.site-footer
  .nav-footer
  .menu-footer
  .menu-footer-item
  .submenu-footer::-webkit-scrollbar-thumb {
  background: #ffffff;
}
.site-footer
  .nav-footer
  .menu-footer
  .menu-footer-item
  .submenu-footer::-webkit-scrollbar-thumb:hover {
  background: #ffffff;
}
.site-footer
  .nav-footer
  .menu-footer
  .menu-footer-item
  .submenu-footer
  .menu-footer-item {
  padding: 10px;
  margin-bottom: 0 !important;
}
.site-footer .nav-footer .menu-footer .menu-footer-item:not(:last-child) {
  margin-bottom: 15px;
}
.site-footer
  .nav-footer
  .menu-footer
  .menu-footer-item.has-submenu.active
  .btn-toggle-footer-submenu {
  transform: rotate(180deg);
}
.site-footer
  .nav-footer
  .menu-footer
  .menu-footer-item.has-submenu.active
  .submenu-footer {
  max-height: 285px;
}
.site-footer .newsletter-container {
  margin: 40px 0;
}
.site-footer .newsletter-container .btn {
  margin-top: 20px;
  width: 100%;
}
.site-footer .newsletter-container input {
  border-radius: 18px;
}
.site-footer .footer-bottom {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
}
.site-footer .footer-bottom a {
  color: #ffffff;
}
.site-footer .footer-bottom > a {
  font-size: 8px;
}
.site-footer .footer-bottom p {
  margin: 0;
}
.site-footer .footer-bottom .social-footer {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.site-footer .footer-bottom .social-footer .social-footer-item {
  width: 36px;
  height: 36px;
  border-radius: 5px;
  background-color: #f5f5f5;
}
.site-footer .footer-bottom .social-footer .social-footer-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.site-footer .footer-bottom .social-footer .social-footer-item a svg {
  width: 20px;
  height: 20px;
}
@media (min-width: 768px) {
  .site-footer .nav-footer-container {
    display: flex;
    gap: 20px;
  }
  .site-footer .nav-footer {
    width: 50%;
  }
  .site-footer .footer-bottom {
    width: 100%;
    border-top: 1px solid #ffffff;
    padding-top: 20px;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
  .site-footer .footer-bottom .social-footer {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .site-footer {
    padding: 40px 20px 30px;
  }
  .site-footer .site-info {
    display: flex;
    flex-wrap: wrap;
  }
  .site-footer .site-info .brand-footer-container .brand-footer {
    margin: 0;
  }
  .site-footer .site-info .brand-footer-container {
    width: 20%;
  }
  .site-footer .site-info .nav-footer-container {
    width: 80%;
    flex-direction: row-reverse;
  }
  .site-footer .site-info .nav-footer-container .nav-footer {
    padding: 0 20px;
  }
  .site-footer .site-info .nav-footer-container .nav-footer .title-menu-footer {
    font-size: 18px;
  }
  .site-footer .site-info .footer-bottom {
    gap: 20px;
  }
}
@media (min-width: 1200px) {
  .site-footer {
    padding: 70px 20px 40px;
  }
  .site-footer .site-info {
    position: relative;
  }
  .site-footer .site-info .brand-footer-container {
    order: 3;
    position: absolute;
    left: 0;
    top: 45%;
  }
  .site-footer .site-info .nav-footer-container {
    order: 2;
    width: 60%;
    gap: 50px;
    padding-left: 50px;
  }
  .site-footer .site-info .nav-footer-container .nav-footer {
    padding: 0;
  }
  .site-footer .site-info .nav-footer-container .nav-footer .title-menu-footer {
    margin: 0 0 25px;
  }
  .site-footer
    .site-info
    .nav-footer-container
    .nav-footer
    .menu-footer
    .menu-footer-item:not(:last-child) {
    margin-bottom: 25px;
  }
  .site-footer
    .site-info
    .nav-footer-container
    .nav-footer
    .menu-footer
    .menu-footer-item:not(:last-child)
    .submenu-footer
    .menu-footer-item {
    padding: 10px 15px;
    margin: 0;
  }
  .site-footer .site-info .newsletter-container {
    order: 1;
    width: 40%;
  }
  .site-footer .site-info .footer-bottom {
    margin-top: 100px;
    order: 4;
  }
}
@media (min-width: 1400px) {
  .site-footer .site-info .brand-footer-container {
    bottom: 210px;
  }
  .site-footer .site-info .nav-footer-container {
    padding-top: 50px;
    padding-left: 100px;
  }
}
.site-header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  padding: 20px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.42) 0%,
    rgba(0, 0, 0, 0.1176) 79.33%,
    rgba(0, 0, 0, 0) 93.41%
  );
  background-color: #3f4345;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
}
.site-header .nav-brand {
  display: block;
  margin: 0 auto;
  height: 42px;
  width: 48px;
}
.site-header .nav-brand img {
  height: 100%;
  margin: auto;
}
.site-header .nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.titulo {
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 30px;
  color: #90584C;
  text-align: center;
}

@media (min-width: 768px) {
  .titulo {
    font-size: 24px;
  }
  
}
@media (min-width: 992px) {
  .site-header .nav-brand {
    width: 61px;
    height: 54px;
  }
  .titulo {
    font-size: 28px;
  }
  
}
@media (min-width: 1200px) {
  .site-header .nav-brand {
    height: 113px;
    width: 128px;
  }
  .titulo {
    font-size: 32px;
  }
  
}
@media (min-width: 1400px) {
  .site-header .nav-brand {
    height: 80px;
  }
  .site-header .nav-bottom .menu-header {
    gap: 70px;
  }
  .titulo {
    font-size: 38px;
  }
}
.section-cifras {
  background-color: #ffffff;
}
.group-cifras {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.cifra {
  font-weight: 600;
  text-align: center;
  margin: 0 auto;
}
.cifra img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin: 0 auto 10px;
}
.cifra .cifra-text1 {
  font-size: 20px;
}
.cifra .cifra-text2,
.cifra .cifra-text1 {
  margin: 0;
}
.cifra .cifra-text2 {
  font-size: 12px;
}
@media (min-width: 576px) {
  .group-cifras {
    padding: 20px;
  }
  .cifra .cifra-text1 {
    font-size: 24px;
  }
  .cifra .cifra-text2 {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .group-cifras {
    padding: 30px;
  }
  .cifra .cifra-text1 {
    font-size: 28px;
  }
  .cifra .cifra-text2 {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .group-cifras {
    padding: 40px 50px;
  }
  .cifra .cifra-text1 {
    font-size: 30px;
  }
  .cifra .cifra-text2 {
    font-size: 26px;
  }
}
@media (min-width: 1200px) {
  .group-cifras-container{
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
  }
  .group-cifras-container .group-cifras {
    grid-template-columns: repeat(4, 1fr);
    padding: 0;
    margin: 0;
    /* animation: infiniti-slider 30s linear infinite; */
  }
  .group-cifras-container:hover .group-cifras {
    animation-play-state: paused;
  }
  .group-cifras {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: start;
    gap: 0;
  }
  .group-cifras .cifra {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .group-cifras .cifra .cifra-text1,
  .group-cifras .cifra .cifra-text2 {
    text-align: start;
  }
  .cifra img {
    height: 40px;
    width: 40px;
    margin-bottom: 0;
  }
  /* .cifra .cifra-text1{
    font-size: 34px;
  }
  .cifra .cifra-text2 {
    font-size: 30px;
  } */
}
/* @media (min-width: 1400px) {
  .group-cifras .cifra {
    padding: 0 30px;
    gap: 0 50px;
  }
} */
/* @keyframes infiniti-slider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
} */