@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Inter", sans-serif;
  color: #18181b;
  overflow-x: hidden;
  display: grid;
  grid-template-areas: "header" "main" "footer";
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
}

h1,
h2,
h3 {
  font-weight: 300;
}
h1 b,
h2 b,
h3 b {
  font-weight: bold;
}

.divider {
  margin: auto;
  width: 80vw;
  padding: 10px;
  border-bottom: 0.7px solid rgba(24, 24, 27, 0.19);
}
@media (width >= 1440px) {
  .divider {
    padding: 40px;
  }
}

.btn {
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px 20px;
  font-weight: 500;
  font-size: 1rem;
}
.btn--contact {
  background-color: #18181b;
  color: #fff;
  margin: 40px 0;
}
.btn--border {
  position: relative;
  background: none;
  overflow: hidden;
  color: #18181b;
  border: 1px solid #18181b;
  padding: 6px 15px;
  transition: all 0.3s ease;
}
.btn--border:hover {
  background-color: #18181b;
  color: #fff;
}
.btn--submit {
  width: 150px;
  background-color: #18181b;
  color: #fff;
  font-size: 0.75rem;
  padding: 8px 10px;
  border: none;
}

.header {
  grid-area: header;
}

.nav {
  width: 100%;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 40px;
  transition: all 0.5s ease;
  z-index: 90;
  background-color: transparent;
}
.nav--scrolled {
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.nav--scrolled .nav__toggle {
  color: rgba(0, 0, 0, 0.4941176471);
}
@media (width >= 1024px) {
  .nav {
    padding: 1rem 5rem;
  }
}
@media (width >= 1440px) {
  .nav {
    padding: 1.1rem 6.25rem;
  }
}
.nav__logo {
  width: 130px;
  transition: all 0.3s ease-in-out;
}
.nav__toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.4941176471);
  font-size: 2rem;
  transition: all 0.5s ease;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 40px;
  background-color: rgb(32 26 26 / 91%);
  transition: all 0.5s ease, opacity 0.5s ease;
  z-index: 900;
}
@media (width >= 1440px) {
  .sidebar {
    width: 400px;
  }
}
.sidebar--active {
  right: 0;
  z-index: 1000;
  opacity: 1;
}
.sidebar__language {
  font-weight: bold;
  text-decoration: underline;
  font-size: 1.25rem;
  color: #fff;
}
.sidebar__menu {
  list-style: none;
  padding: 0;
}
.sidebar__item {
  margin-bottom: 20px;
}
.sidebar__link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
}

main {
  grid-area: main;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-image: url("../images/bgMain.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 60% 50%;
  height: 100vh;
}
@media (width >= 768px) {
  .hero {
    background-position: 50% 50%;
    height: 493px;
  }
}
@media (width >= 1440px) {
  .hero {
    height: 740px;
    padding: 3rem 7.5rem;
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.326);
  z-index: 1;
}
@media (width >= 768px) {
  .hero::before {
    height: 493px;
  }
}
@media (width >= 1440px) {
  .hero::before {
    height: 740px;
  }
}
.hero__title {
  font-size: 2.5rem;
  color: #fff;
  padding: 50px;
  z-index: 10;
  margin: 0;
}
.hero__title span {
  color: #04ffff;
}
@media (width >= 1440px) {
  .hero__title {
    padding: 7.5rem 6.7rem;
    font-size: 4rem;
  }
}
.hero__scroll-link {
  z-index: 10;
}
.hero__scroll-indicator {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 20px;
  z-index: 10;
}

.tab-section {
  padding: 2.5rem;
  max-width: 1440px;
  margin: auto;
}
@media (width >= 1024px) {
  .tab-section {
    padding: 3rem 5rem;
  }
}
@media (width >= 1440px) {
  .tab-section {
    padding: 2.5rem 7.5rem;
  }
}
.tab-section .tab-options__container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  height: 60px;
  padding-bottom: 1rem;
}
@media (width >= 1440px) {
  .tab-section .tab-options__container {
    height: 100px;
  }
}
.tab-section .tab-options__container .tab-option {
  text-align: center;
  cursor: pointer;
  opacity: 0.6;
  font-size: 0.75rem;
  letter-spacing: 0.1rem;
  transition: all 0.3s ease;
}
@media (width >= 768px) {
  .tab-section .tab-options__container .tab-option {
    font-size: 1.25rem;
  }
}
@media (width >= 1440px) {
  .tab-section .tab-options__container .tab-option {
    font-size: 1.5rem;
    letter-spacing: 0.35rem;
  }
}
.tab-section .tab-options__container .tab-option.active {
  font-size: 0.875rem;
  opacity: 1;
  font-weight: bold;
}
@media (width >= 768px) {
  .tab-section .tab-options__container .tab-option.active {
    font-size: 1.5rem;
  }
}
@media (width >= 1440px) {
  .tab-section .tab-options__container .tab-option.active {
    font-size: 2.3rem;
  }
}
.tab-section .tab-content__container {
  padding-top: 2rem;
}
.tab-section .tab-content__container .tab-panel {
  display: none;
  height: 200px;
}
@media (width >= 768px) {
  .tab-section .tab-content__container .tab-panel {
    height: 300px;
  }
}
.tab-section .tab-content__container .tab-panel.active {
  display: block;
}
.tab-section .tab-content__container .tab-panel__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
@media (width >= 768px) {
  .tab-section .tab-content__container .tab-panel__title {
    font-size: 2rem;
    width: 540px;
  }
}
@media (width >= 1024px) {
  .tab-section .tab-content__container .tab-panel__title {
    font-size: 2.5rem;
    width: 680px;
  }
}
@media (width >= 1440px) {
  .tab-section .tab-content__container .tab-panel__title {
    font-size: 3rem;
    width: 800px;
  }
}
.tab-section .tab-content__container .tab-panel__description {
  width: 100%;
  display: flex;
  transition: all 0.3s ease;
}
@media (width >= 768px) {
  .tab-section .tab-content__container .tab-panel__description {
    justify-content: end;
  }
}
.tab-section .tab-content__container .tab-panel__description-text {
  font-size: 0.75rem;
  line-height: 1.5;
}
@media (width >= 768px) {
  .tab-section .tab-content__container .tab-panel__description-text {
    font-size: 1.245rem;
    width: 500px;
  }
}
@media (width >= 1024px) {
  .tab-section .tab-content__container .tab-panel__description-text {
    font-size: 1.5rem;
    width: 600px;
  }
}

.companies {
  padding: 2.5rem;
  max-width: 1440px;
  margin: auto;
}
@media (width >= 1024px) {
  .companies {
    padding: 3rem 5rem;
  }
}
@media (width >= 1440px) {
  .companies {
    padding: 2.5rem 7.5rem;
  }
}
.companies__container {
  display: flex;
  gap: 3rem;
  flex-direction: column;
}
.companies__container-marcas {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1440px;
  align-items: center;
}
@media (width >= 768px) {
  .companies__container-marcas {
    flex-direction: row;
    height: 400px;
  }
}
.companies__container-marcas .scrollbar-track {
  display: none;
}
@media (width >= 1024px) {
  .companies__container-marcas .scrollbar-track {
    display: block;
    position: relative;
    width: 1px;
    height: 300px;
    background-color: #e5e5e5;
    margin-right: 20px;
    flex-shrink: 0;
    height: 100%;
    max-height: 400px;
  }
}
.companies__container-marcas .scrollbar-track .scrollbar-thumb {
  position: absolute;
  top: 0;
  left: -0.5px;
  width: 2px;
  background-color: #18181b;
  transition: top 0.4s ease;
}
.companies__container-marcas .mobile-slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}
@media (width >= 768px) {
  .companies__container-marcas .mobile-slider-wrapper {
    display: block;
    width: auto;
    height: 100%;
    overflow: hidden;
  }
}
.companies__container-marcas .nav-arrow {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 2rem;
  color: #878787;
  padding: 0 10px;
  z-index: 20;
  transition: color 0.3s ease;
}
.companies__container-marcas .nav-arrow:hover {
  color: #18181b;
}
@media (width >= 768px) {
  .companies__container-marcas .nav-arrow {
    display: none;
  }
}
.companies__container-marcas .logos-wrapper {
  height: 100px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 10;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: none;
  padding: 20px 50%;
  scroll-behavior: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.companies__container-marcas .logos-wrapper::-webkit-scrollbar {
  display: none;
}
@media (max-width: 767px) {
  .companies__container-marcas .logos-wrapper {
    width: calc(100% - 80px);
    padding: 20px 0;
  }
}
@media (width >= 768px) {
  .companies__container-marcas .logos-wrapper {
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 2rem 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: none;
  }
}
@media (width >= 1024px) {
  .companies__container-marcas .logos-wrapper {
    width: 300px;
    gap: 0;
  }
}
.companies__container-marcas .logos-wrapper > div {
  flex-shrink: 0;
  width: 200px;
  height: 150px;
  background-color: #fff;
  border-radius: 16px;
  cursor: pointer;
  opacity: 0.5;
  transform: scale(0.9);
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: #999;
  user-select: none;
}
@media (width >= 768px) {
  .companies__container-marcas .logos-wrapper > div {
    height: 100px;
  }
}
@media (width >= 1024px) {
  .companies__container-marcas .logos-wrapper > div {
    height: 120px;
  }
}
.companies__container-marcas .logos-wrapper > div.is-active {
  opacity: 1;
  transform: scale(1.1);
  color: red;
  z-index: 20;
}
.companies__container .no-transition {
  transition: none !important;
}
.companies__container .content-wrapper {
  width: 100%;
  min-height: 200px;
}
@media (width >= 768px) {
  .companies__container .content-wrapper {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: none;
    background: transparent;
    padding-left: 40px;
  }
}
.companies__container .description-item {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.companies__container .description-item.is-visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: fadeIn 0.5s forwards;
}
.companies__container .desc-title {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #18181b;
}
@media (width >= 1024px) {
  .companies__container .desc-title {
    font-size: 2.25rem;
    padding-right: 15rem;
  }
}
@media (width >= 1440px) {
  .companies__container .desc-title {
    font-size: 3rem;
    padding-right: 18rem;
  }
}
.companies__container .desc-text {
  line-height: 1.6;
  color: #18181b;
}
@media (width >= 1024px) {
  .companies__container .desc-text {
    padding-left: 15rem;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.companies .text-secondary {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
}
@media (width >= 768px) {
  .companies .text-secondary {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.companies .text-secondary p {
  font-size: 1.5rem;
}
.companies .text-secondary .text-secondary_btn {
  display: flex;
  justify-content: end;
}

.footer {
  grid-area: footer;
  background-color: #18181b;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem;
}
@media (width >= 768px) {
  .footer {
    padding: 2.5rem 4rem;
  }
}
@media (width >= 1440px) {
  .footer {
    padding: 3rem 7.5rem;
  }
}
.footer__scroll-top {
  font-size: 1.7rem;
  color: #fff;
}
.footer__brand-info {
  display: flex;
  max-width: 1440px;
  width: 100%;
  flex-direction: column;
  align-items: center;
  font-size: 1.25rem;
  text-transform: uppercase;
}
@media (width >= 768px) {
  .footer__brand-info {
    gap: 0.6rem;
    font-size: 1.2rem;
  }
}
@media (width >= 1024px) {
  .footer__brand-info {
    font-size: 1.5rem;
    gap: 3rem;
    flex-direction: row;
  }
}
.footer__brand-name {
  font-weight: 800;
}
.footer__tagline {
  width: fit-content;
  margin: 0;
  text-align: center;
  padding: 0 2rem;
  letter-spacing: 0.3rem;
}
@media (width >= 768px) {
  .footer__tagline {
    padding: 0;
  }
}
.footer__main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 1440px;
  width: 100%;
}
@media (width >= 1024px) {
  .footer__main-content {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media (width >= 768px) {
  .footer__socials {
    width: 250px;
    order: 1;
  }
}
.footer__social-link {
  color: #fff;
  text-decoration: none;
}
.footer__social-link i {
  font-size: 1.8rem;
}
.footer__contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (width >= 1024px) {
  .footer__contact-info {
    flex-direction: row;
    gap: 8rem;
  }
}
@media (width >= 1440px) {
  .footer__contact-info {
    gap: 22rem;
  }
}
.footer__regional-presence {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
@media (width >= 1024px) {
  .footer__regional-presence {
    width: fit-content;
    align-items: flex-start;
    text-align: start;
  }
}
.footer__presence-title {
  font-size: 0.81rem;
}
.footer__countries-list {
  font-size: 0.75rem;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
}
@media (width >= 1024px) {
  .footer__countries-list {
    text-align: start;
  }
}
.footer__mail-link {
  font-size: 0.75rem;
  text-align: center;
  color: #fff;
}
@media (width >= 1024px) {
  .footer__mail-link {
    width: fit-content;
  }
}
.footer__legacy {
  font-size: 0.65rem;
}

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