:root {
  --PrimaryColor: #137695;
  --TitlesColor: #043c4d;
  --LegendsColor: #8c9394;
  --MenuHoverColor: #00c3ff;
  --ButonTextColor: #ffffff;
}

/*RESET-----------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

.clear {
  clear: both;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}

.whatsapp-button {
  background-color: var(--PrimaryColor);
  color: var(--ButonTextColor);
  padding: 7px 14px;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  transition: 0.2s;
  cursor: pointer;
  max-width: 600px;
}

.whatsapp-button:visited {
  color: var(--ButonTextColor);
}

.whatsapp-button:hover {
  background-color: var(--whatsappButtonHover);
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/*Menu------------------------*/

.principal-nav {
  width: 100%;
  height: 60px;
  background: linear-gradient(to right, white 50%, var(--TitlesColor) 50%);
  position: fixed;
  z-index: 99;
}

.principal-nav .container {
  max-width: none;
  width: 100%;
  height: 60px;
  padding: 0;
  background-color: var(--TitlesColor);
  position: relative;
}

.principal-menu {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-menu {
  width: 200px;
  height: 100%;
  background-color: #ffffff;
  border-radius: 0 20px 0 0;
  padding-right: 20px;
}

.logo-menu img {
  width: 150px;
  margin-top: 12px;
  margin-left: 20px;
}

.menu-list {
  width: 60%;
  max-width: 600px;
  display: flex;
  justify-content: space-around;
}

.menu-list li {
  display: inline-block;
  list-style: none;
  font-size: 15px;
}

.menu-list > li::after {
  content: "";
  width: 0px;
  height: 1px;
  display: block;
  transition: 0.8s;
  background-color: #00c3ff;
}

.menu-list li:hover::after {
  width: 100%;
}

.menu-list li a,
.menu-list span {
  color: var(--ButonTextColor);
  text-decoration: none;
  cursor: pointer;
}

.other-link {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 20px;
  width: 20%;
  max-width: 200px;
  margin-right: 20px;
}

.other-link .whatsapp-button {
  margin: 0;
  color: #ffffff;
  text-align: center;
}
.other-link a {
  color: #0e95be;
  text-decoration: none;
}

.solution-sub-menu {
  display: block;
}

.sub-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  top: -1000%;
  right: 50%;
  transform: translate(50%, 0%);
  width: 50%;
  padding: 10px 10px;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgba(85, 85, 85, 0.026);
  transition: 0.5s;
}

.sub-menu li {
  display: block;
  padding: 10px 10px 15px 10px;
  background-color: #f5f5f500;
  border: 1px solid var(--PrimaryColor);
  border-radius: 20px 20px 0px 20px;
  transition: 0.5s;
}

.sub-menu li:hover {
  border: 1px solid #0ebcf1;
}

.menu-list .sub-menu li a {
  color: var(--PrimaryColor);
  transition: 0.5s;
  font-weight: 400;
  margin-top: -20px;
}

.menu-list .sub-menu li a:hover {
  color: rgb(0, 185, 209);
}

.sub-menu li::before {
  content: "";
  width: 45px;
  height: 45px;
  top: 6px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  background-image: url(../images/industriaIcon.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 5px;
  opacity: 0.5;
}

.sub-menu li a::after {
  content: "lorem ipsum is dolor asmet";
  font-size: 12px;
  display: block;
  width: 80%;
  margin-left: 55px;
  margin-top: -10px;
  color: var(--LegendsColor);
  background-color: #00c3ff00;
  font-weight: 300;
}

/* ----------------------TEXT SUB MENU--------------------*/

.aplication-sub-menu li:first-of-type a::after {
  content: "Veja como nossas soluções se aplicam em Indústrias";
}

.aplication-sub-menu li:nth-of-type(2) a::after {
  content: "Veja como nossas soluções se aplicam em Supermercados";
}

.solution-sub-menu li:nth-of-type(1) a::after {
  content: "Explore as possibilidades de infraestrutura com a Bit Energy";
}

.solution-sub-menu li:nth-of-type(2) a::after {
  content: "Saiba mais sobre o nosso Software";
}
.solution-sub-menu li:nth-of-type(3) a::after {
  content: "Entenda como nossos serviços geram resultado";
}
/* ----------------------------------------*/

/* ----------------------ICONES SUB MENU--------------------*/

.sub-menu li:first-of-type::after {
  background-color: #00c3ff00;
}

.aplication-sub-menu li:first-of-type::before {
  background-image: url(../images/icones/SM-ICON-INDUSTRIES.png);
}

.aplication-sub-menu li:nth-of-type(2)::before {
  background-image: url(../images/icones/SM-ICON-SUPERMARKET.png);
}

.solution-sub-menu li:nth-of-type(1)::before {
  background-image: url(../images/icones/SM-ICON-INFRA.png);
}

.solution-sub-menu li:nth-of-type(2)::before {
  background-image: url(../images/icones/SM-ICON-SOFTWARE.png);
}
.solution-sub-menu li:nth-of-type(3)::before {
  background-image: url(../images/icones/SM-ICON-SERVICES.png);
}
/* ----------------------------------------*/

.sub-menu li a {
  color: #585858;
  font-weight: bolder;
}

.sub-menu-active {
  top: 60px;
  transition: 0.5s;
}

.icon-menu-mobile {
  display: none;
}

@media (max-width: 950px) {
  .menu-list {
    position: absolute;
    display: block;
    width: 100%;
    max-width: none;
    background-color: #effbff;
    height: 100vh;
    top: 60px;
    right: 100%;
    margin: 0;
    padding-top: 30px;
    transition: 0.3s;
  }

  .active {
    right: 0;
  }

  .menu-list li {
    display: block;
    padding: 20px 10px;
  }
  .menu-list li a,
  .menu-list span {
    color: #606060;
  }

  .other-link {
    display: none;
  }

  .icon-menu-mobile {
    margin-right: 15px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 30px;
    height: 30px;
    box-sizing: border-box;
  }
  .icon-menu-mobile .line {
    display: block;
    width: 30px;
    height: 2px;
    background-color: white;
  }
  .sub-menu {
    position: relative;
    top: 0;
    right: 50%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0);
    border: 0;
    height: 0px;
    overflow: hidden;
    transition: 1s;
    display: none;
  }
  .sub-menu-active {
    top: 0px;
    height: auto;
    display: block;
  }
  .sub-menu li {
    border: 0;
  }
}

/*Homeeee-------------------------------------------------------------------------------------------------*/

.home {
  width: 100%;
  min-height: 100dvh;
  position: relative;
  background-color: #f9fdff;
}

.video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: black;
}

.video-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-bg::before {
  content: "";
  display: block;
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--TitlesColor);
  opacity: 0.75;
}

.home .container {
  z-index: 3;
  position: relative;
}

.home-text {
  display: flex;
  width: calc(50% - 4px);
  min-height: 100dvh;
  z-index: 3;
}

.home-text-container {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.home-text-container h1 {
  margin-left: -2px;
  font-size: clamp(40px, 5vw, 50px);
  font-weight: 500;
  color: white;
}

.home p {
  text-align: justify;
  font-weight: 400;
  font-size: 16px;
  color: var(--LegendsColor);
  filter: brightness(1.5);
}

.home-text-container .links-container {
  display: flex;
  gap: 20px;
  width: 100%;
}

.home-text-container .links-container .whatsapp-button {
  margin: 0;
  font-size: clamp(12px, 1.5vw, 15px);
}

.home-text-container .links-container .whatsapp-button:last-child {
  background-color: rgb(5, 157, 51);
}

.home-text-container .links-container .whatsapp-button:last-child:hover {
  background-color: rgb(4, 123, 40);
}

@media (max-width: 768px) {
  .home-text {
    width: 100%;
    min-height: 70dvh;
    height: auto;
  }

  .home-text .home-text-container h1 {
    padding-top: 50px;
    font-size: clamp(30px, 5vw, 50px);
  }

  .home-text-container {
    text-align: center;
    align-items: center;
  }

  .home-text-container h1 {
    margin-left: 0px;
    font-size: clamp(45px, 5vw, 90px);
    font-weight: 600;
    padding: 0;
  }

  .home-text-container .links-container {
    justify-content: center;
  }

  .home-text-container .links-container .whatsapp-button {
    margin: 0;
    font-size: 15px;
  }

  .home-img figure {
    height: 100%;
  }
}

@media (max-height: 600px) {
  .home-text-container {
    justify-content: flex-start;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/*----------------------------------------------------------------------------------------------SERVICES*/
.services {
  width: 100%;
  padding-bottom: 60px;
}

.text-container {
  width: calc(40% - 4px);
  padding-right: 50px;
  display: inline-block;
}

.text-container h2 {
  padding-top: 90px;
  padding-bottom: 3px;
  font-size: 25px;
  font-weight: 600;
  display: inline-block;
  color: var(--TitlesColor);
}

.text-wrap {
  max-height: 25px;
  margin-top: 20px;
  cursor: pointer;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.active-text {
  max-height: 500px;
}

.services-subtitle {
  color: var(--TitlesColor);
  opacity: 0.9;
  font-size: 18px;
  transition: 0.4s;
  background-color: rgba(255, 255, 255, 0);
  border: none;
  cursor: pointer;
}

.text-wrap:hover .services-subtitle {
  color: var(--PrimaryColor);
}

.services-arrow {
  width: 30px;
  height: 18px;
  object-fit: cover;
  vertical-align: top;
  float: right;
  opacity: 0.3;
}

.text-wrap p {
  text-align: justify;
  padding-top: 20px;
  padding-right: 40px;
  font-size: 16px;
  color: var(--LegendsColor);
}

.division-line {
  width: 100%;
  height: 0.5px;
  background-color: var(--PrimaryColor);
  opacity: 0.2;
  display: block;
  margin-bottom: 25px;
  margin-top: 18px;
}

.image-container {
  width: calc(60% - 4px);
  display: inline-block;
  height: 500px;
  vertical-align: top;
  margin-top: 90px;
  position: relative;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  object-position: center;
  border-radius: 20px;

  opacity: 1;
  transition: opacity 1s ease;
}

.services .whatsapp-button {
  width: 150px;
  display: block;
  text-align: center;
}

@media (max-width: 768px) {
  .services .container {
    display: flex;
    justify-content: center;
    flex-direction: column-reverse;
    align-items: center;
    flex-wrap: nowrap;
  }
  .text-container {
    display: block;
    height: auto;
    width: 100%;
    padding: 0;
  }
  .image-container {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin-top: 50px;
    padding-right: 0;
  }

  .image-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
  }

  .text-container h3 {
    width: 100%;
    text-align: center;
    padding-top: 30px;
  }

  .text-wrap p {
    padding-right: 0px;
  }

  .whatsapp-button {
    margin: 0 auto;
    text-align: center;
  }
}

/*Sevices Areas------------------------------------------------------------------------------------------------------------*/

.serviceAreas {
  width: 100%;
  background-color: #f3f3f3;
  padding-bottom: 100px;
}

.serviceAreas > h2 {
  width: 500px;
  text-align: center;
  padding-top: 60px;
  margin: 0 auto;
  font-size: 32px;
  color: var(--TitlesColor);
  font-weight: 600;
}

.serviceAreas > p {
  padding: 20px 10px;
  color: var(--LegendsColor);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.serviceAreas .container {
  display: flex;
  gap: 20px;
  height: 500px;
  margin-top: 60px;
}

/* CARD */
.areas-wrap {
  width: calc(100% / 4);
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* BACKGROUND */
.areaBackground {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}

/* OVERLAY ESCURO */
.areaBackground::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.244);
  transition: background 1s ease;
}

/* TEXTO */
.areas-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  padding: 10px;
  color: white;
  z-index: 2;
  background-color: white;
  transition: 1s;
}

.areas-text h3 {
  font-size: clamp(0.9375rem, -0.2847rem + 2.5463vw, 1.325rem);
  display: inline-block;
  width: 100%;
  vertical-align: top;
  color: var(--TitlesColor);
  font-weight: normal;
}

.areas-text p {
  font-size: clamp(0.625rem, 0.0694rem + 1.1574vw, 0.9375rem);
  color: var(--LegendsColor);
  text-align: start;
  padding-top: 10px;
}

.text-hover {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

/* HOVER (card controla tudo) */

.areas-wrap:hover .areaBackground {
  transform: scale(1.1);
}
.areas-wrap:hover .text-hover {
  max-height: 300px;
}

.areas-wrap:hover .areas-text {
  height: 200px;
}

.areas-wrap:hover .areas-text {
  background-color: #ffffff;
}

.areas-wrap:hover .areaBackground::after {
  background: rgba(78, 78, 78, 0.064);
}

/* IMAGENS */
#maintenance .areaBackground {
  background-image: url(../images/Person/SRVC\ -\ PREV.png);
}

#lostPrevention .areaBackground {
  background-image: url(../images/Person/SRVC\ -\ MANUTENCAO.png);
}

#operation .areaBackground {
  background-image: url(../images/Person/SRVC\ -\ GEREN.png);
}

#energyS .areaBackground {
  background-image: url(../images/Person/SRVC\ -ENERGIA.png);
}

@media (max-width: 768px) {
  .serviceAreas > h2 {
    width: 100%;
    padding: 60px 10px 20px 10px;
  }
  .serviceAreas .container {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .areas-wrap {
    width: 100%;
    height: 300px;
  }
  .areas-text span {
    font-size: 24px;
  }
  .areas-text p {
    font-size: 15px;
  }
  .areaBackground {
    background-position: top;
    background-repeat: no-repeat;
  }
}

/*--Works0-----------------------------------------------------------------------------------------------------------------*/
.how-works {
  width: 100%;
  height: auto;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 50px;
}

.how-works .container h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--TitlesColor);
}

.work-legend {
  font-size: 15px;
  color: var(--LegendsColor);
  padding-top: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.works-list {
  width: 100%;
  padding-top: 50px;
}

.works-list ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.work-item {
  width: calc(100% / 4);
  font-size: clamp(0.7rem, 0.4167rem + 0.6944vw, 0.9375rem);
  color: var(--LegendsColor);
  list-style: none;
  padding: 25px;
  border-bottom: 0.5px solid var(--LegendsColor);
  cursor: pointer;
}

.work-item:hover {
  color: var(--TitlesColor);
}

.list-active {
  color: var(--TitlesColor);
  font-weight: 600;
  border-bottom: 2px solid var(--PrimaryColor);
}

.works-card {
  padding-top: 50px;
  width: 100%;

  display: none;
  justify-content: space-between;
  transition: 0.2s;
  opacity: 0;
}

.works-text {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  text-align: start;
}

.works-text h4 {
  font-size: 25px;
  color: var(--TitlesColor);
}

.works-text p {
  font-size: 16px;
  color: var(--LegendsColor);
  padding-top: 15px;
  text-align: justify;
}

.works-wrap figure {
  width: 70%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  text-align: end;
  padding-left: 30px;
}

.works-wrap figure img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}

.work-active {
  opacity: 1;
  display: flex;
}

.whatsapp-button {
  margin-top: 60px;
}
/*----------------------------------------------------------INFRASTRUCTURE---------------------------------*/
.infrastructure-works .works-text {
  width: 40%;
}

.infrastructure-works .works-wrap figure {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.infrastructure-works .works-wrap figure img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.infrastructure-works .dispo-info {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  background-color: rgba(220, 220, 220, 0.655);
  border-radius: 3px;
  padding: 5px;
  gap: 10px;
  font-weight: 500;
}
.infrastructure-works .dispo-info-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.infrastructure-works .dispo-info .icon {
  width: 20px;
  height: 20px;
  background-image: url(../images/icones/INFRA-SENSOR.png);
  background-size: cover;
  background-position: center;
  height: 30px;
}
.infrastructure-works .dispo-info .dispo-info-text {
  display: flex;
  flex-direction: column;
  color: var(--TitlesColor);
  font-size: 16px;
}

.dispo-info-text .header-info {
  font-size: 12px;
  color: var(--PrimaryColor);
}

@media (max-width: 1000px) {
  .work-item {
    padding: 20px 0px;
  }

  .works-card {
    flex-direction: column;
    gap: 30px;
  }
  .works-wrap figure {
    padding-left: 0;
  }

  .works-text,
  .works-wrap figure {
    width: 100%;
  }

  .infrastructure-works .works-text {
    width: 100%;
  }

  .infrastructure-works .works-wrap figure {
    width: 100%;
  }
}
/*-------Redes-------------------------------------------------------------------------------------*/
.redes {
  width: 100%;
  height: 200px;
  overflow: hidden;
  text-align: center;
  font-size: 18px;
  margin: 0 auto;
  z-index: 2;
  padding-bottom: 50px;

  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  position: relative;
}

.redes h2 {
  font-weight: 300;
  font-size: 16px;
  display: block;
  color: #00000061;
  position: absolute;
  left: 50%;
  top: 35px;
  transform: translate(-50%);
}

.redes-logos {
  width: 200%;
  height: 50px;
  position: relative;
  animation: logosani 90s linear infinite;
  will-change: transform;
}
.logos-wrap {
  width: 100%;
  height: 50px;
  margin-top: 40px;
  display: flex;
  gap: 40px;
}

.redes-logos-img {
  height: auto;
  width: calc(100% / 42);
  max-width: 150px;
  display: inline-block;
  object-fit: contain;
  opacity: 0.85;
  transition: 0.3s ease;
  filter: saturate(0);
}

#redes-apoiadores {
  margin-top: 80px;
  margin-bottom: 40px;
}

#redes-apoiadores .redes-logos-img {
  width: calc(100% / 36);
}

@keyframes logosani {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-101%);
  }
}

@keyframes logosaniMobile {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-600%);
  }
}

@media (max-width: 768px) {
  .redes-logos {
    animation: logosaniMobile 50s linear infinite;
  }

  .logos-wrap {
    margin-top: 80px;
  }
  .redes-logos-img,
  #redes-apoiadores .redes-logos-img {
    width: 80px;
    margin-top: 0;
  }
}
/*Indicators ------------------------------------*/
.indicators {
  padding-bottom: 100px;
  background-color: #f3f3f3;
}

.indicators h2 {
  padding-top: 60px;
  padding-bottom: 10px;
  font-size: 32px;
  font-weight: 600;
  color: var(--TitlesColor);
  text-align: center;
}

.indicators p {
  font-size: 15px;
  padding-bottom: 10px;
  color: var(--LegendsColor);
  margin: 0 auto;
  display: block;
  text-align: center;
}

.indicators-wrap {
  width: 100%;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.indicators-wrap:last-child {
  margin-top: 20px;
}

.indicators-box {
  width: calc(100% / 5);
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border: 1px solid #13779575;
  color: var(--PrimaryColor);
  position: relative;
  overflow: hidden;
}

.indicators-box::after {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: start;
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 100%;
  font-size: 2px;
  font-weight: 400;

  background-color: var(--PrimaryColor);
  color: #ffffff;
  opacity: 0;
  transition: 0.5s;
}

.indicators-box:hover::after {
  opacity: 1;
  width: 85%;
  height: 100%;
  border-radius: 0;
  font-size: 16px;
  padding: 0 50px;
}

.indicators-box:first-of-type::after {
  content: "Menos emergências, mais planejamento e maior controle dos custos de manutenção.";
}
.indicators-box:nth-of-type(2)::after {
  content: "Técnicos eliminam teste e vão direto para execução, correções remotas que reduzem deslocamentos, prevenção e operação com processos digitalizados.";
}
.indicators-box:nth-of-type(3)::after {
  content: "Atuação preditiva aliado a controle online e montiramento 24/7h que atua em falhas críticas e amplia a vida útil dos equipamentos.";
}
.indicators-box:nth-of-type(4)::after {
  content: "Dados reais que permitem identificar desperdícios, melhorar parâmetros de funcionamento e otimizar a eficiência energética.";
}
.indicators-box:last-of-type::after {
  content: "Controle térmico contínuo e atuação preditiva para proteger o faturamento e a qualidade.";
}

.indicators-box .icon {
  width: 35px;
  height: 15%;
  max-height: 30px;
  display: block;
  margin: 0 auto;

  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

#mainstaceIcon {
  background-image: url(../images/icones/INDI-MANUTENCAO.png);
}

#qubraIcon {
  background-image: url(../images/icones/INDI-COMP.png);
}

#lojaIcon {
  background-image: url(../images/icones/INDI\ -\ PRODU.png);
}

#energyIcon {
  background-image: url(../images/icones/INDI-ENERGIA.png);
}
#produtIcon {
  background-image: url(../images/icones/IND\ -\ PRODUT.png);
}
.indicators-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 20%;
  width: 70%;
  font-size: clamp(10px, 1.5vw, 16px);
  padding-top: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--MenuHoverColor);
}

.indicators-number strong {
  font-size: clamp(10px, 50vw, 50px);
}

.indicators-data {
  display: block;
  height: 50%;
  width: 100%;
  padding: 10px;
  font-size: clamp(15px, 1.8vw, 20px);
  text-align: center;
}

.indicators-box h3 {
  padding-top: 15px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin: 0 auto;
  color: var(--LegendsColor);
  display: none;
}

@media (max-width: 900px) {
  .indicators-wrap {
    flex-direction: column;
    align-items: center;
  }
  .indicators-box {
    width: 100%;
    height: 250px;
    display: block;
    padding-top: 40px;
  }
  .indicators-number {
    width: 100%;
    font-size: clamp(14px, 1.5vw, 20px);
  }
  .indicators-data {
    display: flex;
    height: 50%;
    width: 100%;
    padding: 10px;
    font-size: clamp(15px, 5vw, 30px);
    text-align: center;
  }
  .indicators-box::after {
    top: 0;
    left: 0;
    padding: 10px;
    margin: 0;
  }
  .indicators-box:hover::after {
    padding: 0 30px;
  }
}

/*Contact us-----------------*/

.formulario {
  width: 100%;
  background-color: #dadada;
}

.formulario h3 {
  font-size: 25px;
  font-weight: 600;
  padding-top: 60px;
  color: var(--TitlesColor);
  margin: 0 auto;
  text-align: center;
  padding-bottom: 10px;
}

.formulario p {
  text-align: center;
  color: var(--LegendsColor);
  padding-bottom: 25px;
}

.formulario .container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: none;
  padding: 0px;
}

.fomulario-inputs {
  width: 50%;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fomulario-inputs input,
.fomulario-inputs button {
  display: block;
  width: 100%;
  max-width: 600px;
  padding: 10px 15px;
  margin: 10px auto;
  border: 1px solid rgba(189, 189, 189, 0.365);
  background-color: #ffffff;
}

.fomulario-inputs input:focus {
  outline: none;
  box-shadow: none;
}

.fomulario-inputs input::placeholder {
  color: rgb(127, 126, 126);
  font-size: 15px;
}

.fomulario-inputs button.whatsapp-button {
  display: block;
  text-align: center;
  margin: 10px auto;
  padding: 10px 15px;
  background-color: var(--PrimaryColor);
  position: relative;
}
#btn-loader {
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

.fomulario-inputs input.whatsapp-button:hover {
  background-color: var(--MenuHoverColor);
}

.formulario-img {
  width: 50%;
  min-height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/OTHER/form.png);
  filter: brightness(0.8);
}

@media (max-width: 768px) {
  .formulario-img {
    display: none;
  }

  .fomulario-inputs {
    width: 100%;
    padding: 0 40px;
  }
}

/*footer -------------------*/
footer {
  width: 100%;
  padding: 20px;
  background-color: #043c4d;
}

footer .container {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 60px;
}

.footer-links-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
}

.footer-links-box span {
  font-weight: bold;
  color: white;
}

.footer-links-box a {
  border: 0;
  text-decoration: none;
  color: #d8d8d8;
  transition: 0.2s;
}

.footer-links-box a:visited {
  color: #d8d8d8;
}

.footer-links-box a:hover {
  color: #ffffff;
}

#logo-footer {
  display: inline-block;
  position: relative;
  top: 100%;
  left: 30px;
  width: 110px;
  height: 30px;
}

.footer-redes-box {
  float: right;
  margin-right: 25px;
  padding: 0 10px;
  width: 200px;
  height: 30px;
  text-align: end;
}

.footer-reder-img {
  width: 30px;
  height: 100%;
  display: inline-block;
  margin: 0 5px;

  background-position: center;
  background-size: 100% 100%;
  cursor: pointer;
}

.footer-reder-img:nth-of-type(1) {
  background-image: url(../images/linkedinlogo.png);
}
.footer-reder-img:nth-of-type(2) {
  background-image: url(../images/instagramlogo.png);
}
.footer-reder-img:nth-of-type(3) {
  background-image: url(../images/whatsapplogo.png);
}
@media (max-width: 768px) {
  footer .container {
    justify-content: center;
    padding: 60px 10px;
  }
}
