@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --layout-max-width: 1590px;
  --primary-color: #359794;
  --light-green-color: #83fac5;
  --dark-green-color: #082c2a;
  --green-bg-color: #429a98;
  --dark-bg-color: #2c2a29;
  --blue-bg-color: #3a5372;
}

* {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  box-sizing: border-box;
  color: white;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background-color: black;
}

body.is-loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  z-index: 2000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}

.page-loader[hidden] {
  display: none;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader-spinner {
  width: 64px;
  height: 64px;
  border: 6px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: page-loader-spin 0.8s linear infinite;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@keyframes page-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

/* HEADER SECTION */

header {
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header.compacted {
  background-color: rgba(10, 10, 10, 0.95);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  padding-left: 18px;
  padding-right: 18px;
}

nav {
  width: 100%;
  max-width: var(--layout-max-width);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-right: 35px;
  padding-bottom: 0;
  padding-left: 35px;
  transition: padding 0.3s ease;
}

header.compacted nav {
  padding: 0;
}

/* NAVIGATION SECTION */

nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
}

.nav-logo {
  width: 165px;
  margin-right: 60px;
  cursor: pointer;
}

.nav-logo-sm {
  width: 30px;
  margin-right: 60px;
  cursor: pointer;
  display: none;
}

header.compacted .nav-logo {
  display: none;
}

header.compacted .nav-logo-sm {
  display: block;
}

.nav-link {
  list-style: none;
}

.nav-link a {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  margin-right: 40px;
  position: relative;
  display: inline-block;
  transition: font-size 0.3s ease;
  color: lightgray;
}

header.compacted .nav-link a {
  font-size: 14px;
}

.nav-link a:hover {
  color: white;
}

.nav-link a.is-active,
.nav-link.selected a {
  font-weight: 700;
  color: white;
}

.nav-contact-btn.is-active {
  font-weight: 700;
}

.nav-contact-btn {
  background-color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  padding-left: 20px;
  padding-right: 20px;
  height: 40px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

.nav-contact-btn.compacted {
  transform: scale(0.85);
}

.nav-contact-btn:hover {
  background-color: #236564;
}

/* MOBILE MENU SECTION */

.hamburger-btn {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  cursor: pointer;
}

.hamburger-line {
  display: block;
  height: 2px;
  background-color: #ffffff;
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease,
    background-color 0.3s ease;
}

.hamburger-line.top,
.hamburger-line.bottom {
  width: 26px;
}

.hamburger-line.middle {
  width: 18px;
}

.hamburger-btn.is-open .hamburger-line.top {
  transform: translateY(8px) rotate(45deg);
  width: 26px;
}

.hamburger-btn.is-open .hamburger-line.middle {
  opacity: 0;
}

.hamburger-btn.is-open .hamburger-line.bottom {
  transform: translateY(-8px) rotate(-45deg);
  width: 26px;
}

.mobile-menu-modal {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
  background-color: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
  z-index: 1100;
}

.mobile-menu-modal[hidden] {
  display: none;
}

.mobile-menu-modal.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.35s ease, visibility 0s linear 0s;
}

.mobile-menu-content {
  position: relative;
  width: 100%;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.mobile-menu-close {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: none;
  cursor: pointer;
}

.mobile-menu-close .close-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 999px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-close .close-line.right {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu-close:hover {
  border-color: white;
}

.mobile-menu-nav {
  flex: 1;
  display: flex;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
}

.mobile-menu-list .nav-link a {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  margin: 0;
}

.nav-contact-btn.mobile {
  width: 100%;
  max-width: 380px;
  font-size: 16px;
  height: 48px;
  border-radius: 25px;
  align-self: center;
}

body.mobile-menu-open {
  overflow: hidden;
}

/* HOME SECTION */

.home {
  height: 100vh;
  width: 100%;
  background-image: url("../img/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  transition: opacity 1s ease;
}

body.is-loading .home {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .home {
    transition: none;
  }

  body.is-loading .home {
    opacity: 1;
  }
}

.home-content {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.home-text {
  font-size: clamp(3rem, 10vw, 7.5rem);
  font-weight: 800;
}

.home-text.first {
  color: var(--primary-color);
  transform: translateX(-10%);
}

.home-text.second {
  width: fit-content;
  transform: translateX(15%) translateY(-40%);
}

.home-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  max-width: var(--layout-max-width);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 1.2rem;
  font-weight: 800;
  padding: 28px;
  padding-bottom: 40px;
}

@media only screen and (max-width: 990px) {
  .home-text.first {
    transform: none;
  }

  .home-text.second {
    transform: translateX(10%) translateY(-40%);
  }

  .home-footer {
    font-size: 1rem;
    line-height: 0.5rem;
  }

  .home-footer.line1 {
    transform: translateY(-40%);
  }
}

/* PURPOSE SECTION */

.purpose {
  background-color: var(--dark-bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.purpose-content {
  width: 100%;
  max-width: var(--layout-max-width);
  padding: 120px;
}

.purpose-header {
  font-family: "Dosis", sans-serif;
  font-weight: 300;
  font-size: 4.5rem;
  position: relative;
}

.purpose-header-box {
  position: absolute;
  top: -10px;
  left: 140px;
  border: 1.5px solid var(--light-green-color);
  height: 115px;
  width: 360px;
}

.purpose-text {
  border-left: 1.5px solid var(--light-green-color);
  font-size: 1.8rem;
  line-height: 3rem;
  font-weight: 300;
  margin-left: 322px;
  padding: 50px;
  padding-top: 180px;
  padding-bottom: 30px;
  max-width: 800px;
  position: relative;
}

.purpose-text-border-dot {
  position: absolute;
  top: -6px;
  left: -4.5px;
  background-color: var(--light-green-color);
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

@media only screen and (max-width: 990px) {
  .purpose-content {
    padding: 60px;
  }

  .purpose-header {
    font-size: 3.8rem;
    max-width: 160px;
  }

  .purpose-header-box {
    top: 75px;
    left: -22px;
    height: 89px;
    width: 313px;
  }

  .purpose-text {
    margin-left: 5px;
    padding: 25px;
    padding-top: 100px;
    max-width: none;
    font-size: 1.35rem;
    line-height: 2.3rem;
  }

  .purpose-text-border-dot {
    top: -4px;
  }
}

/* PROTHEUS SECTION */

.protheus {
  background-color: var(--dark-green-color);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.protheus-content {
  width: 100%;
  max-width: var(--layout-max-width);
  padding: 120px;
}

.protheus-header {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
}

.protheus-header.first {
  color: var(--primary-color);
}

.protheus-header.second {
  width: fit-content;
  transform: translateX(40%) translateY(-40%);
}

.protheus-row {
  margin-top: 20px;
  display: flex;
}

.protheus-img {
  flex: 0 0 45%;
  max-width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.protheus-img img {
  width: 50%;
  margin-top: -50px;
}

.protheus-text {
  flex: 1;
  flex: 0 0 45%;
  max-width: 45%;
  border-left: 1.5px solid var(--primary-color);
  padding-left: 35px;
  padding-bottom: 10px;
  position: relative;
}

.protheus-text-border-dot {
  position: absolute;
  top: -6px;
  left: -4.5px;
  background-color: var(--primary-color);
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

.protheus-text-header {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  margin-top: -30px;
  margin-bottom: 40px;
}

.protheus-text-line {
  font-size: 1.35rem;
  line-height: 2rem;
  font-weight: 300;
  margin-top: 30px;
}

@media only screen and (max-width: 1200px) {
  .protheus-content {
    padding: 60px 20px 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .protheus-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .protheus-header.first {
    transform: translateX(-5%);
  }

  .protheus-header.second {
    transform: translateX(15%) translateY(-40%);
  }

  .protheus-row {
    margin-top: 80px;
  }

  .protheus-img {
    display: none;
  }

  .protheus-text {
    flex: 1;
    max-width: none;
    margin-left: 15px;
  }

  .protheus-text-header {
    font-size: 25px;
    margin-bottom: 20px;
  }

  .protheus-text-line {
    font-size: 1rem;
    line-height: 1.6rem;
    font-weight: 400;
    margin-top: 25px;
    padding-right: 10px;
  }
}

/* POWERBI SECTION */

.powerbi {
  background-color: var(--green-bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.powerbi-content {
  width: 100%;
  max-width: var(--layout-max-width);
  padding: 120px;
  display: flex;
  flex-direction: column;
}

.powerbi-row {
  display: flex;
}

.powerbi-text {
  flex: 0 0 60%;
  max-width: 60%;
  display: flex;
  flex-direction: column;
  padding-top: 60px;
}

.powerbi-img {
  flex: 0 0 40%;
  max-width: 40%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.powerbi-img img {
  width: 120%;
  margin-top: -120px;
}

.powerbi-header {
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 900;
  color: var(--light-green-color);
}

.powerbi-header.second {
  width: fit-content;
  transform: translateY(-20%);
}

.powerbi-text-header {
  font-family: "Dosis", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.powerbi-text-line {
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 400;
  margin-bottom: 15px;
}

@media only screen and (max-width: 990px) {
  .powerbi-content {
    padding: 80px 40px 80px 40px;
  }

  .powerbi-row {
    flex-direction: column-reverse;
  }

  .powerbi-text {
    flex: 1;
    max-width: none;
    padding-top: 50px;
  }

  .powerbi-img {
    flex: 1;
    max-width: none;
    padding-top: 35px;
  }

  .powerbi-img img {
    width: 80%;
    margin-top: 0;
  }

  .powerbi-text-header {
    font-size: 2rem;
  }

  .powerbi-text-line {
    font-size: 1.3rem;
    line-height: 2rem;
  }
}

/* PLATFORM SECTION */

.platform {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.platform-content {
  width: 100%;
  max-width: var(--layout-max-width);
  padding: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.platform-header {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
}

.platform-header.first {
  color: var(--primary-color);
  transform: translateX(-40%);
}

.platform-header.second {
  width: fit-content;
  color: black;
  transform: translateX(15%) translateY(-40%);
}

.platform-title {
  color: black;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2rem;
  text-align: center;
  margin-top: 15px;
}

.platform-video {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

.platform-video video {
  width: 60%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.platform-text {
  background-color: grey;
  flex: 1;
  color: black;
}

.platform-row {
  margin-top: 80px;
  display: flex;
  width: 100%;
}

.platform-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-img img {
  width: 40%;
}

.platform-text {
  flex: 1;
  border-left: 1.5px solid var(--primary-color);
  padding-left: 35px;
  padding-bottom: 10px;
  position: relative;
  background-color: white;
}

.platform-text-border-dot {
  position: absolute;
  top: -6px;
  left: -4.5px;
  background-color: var(--primary-color);
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

.platform-text-header {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  margin-top: -30px;
  margin-bottom: 40px;
  color: black;
}

.platform-text-line {
  font-size: 1.35rem;
  line-height: 2rem;
  font-weight: 300;
  margin-top: 30px;
  color: black;
}

.platform-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 80px;
}

.platform-btn a {
  background-color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
  padding-left: 30px;
  padding-right: 30px;
  height: 50px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white; /* ou a cor que quiser para o texto */
}

.platform-btn a:hover {
  background-color: #236564;
}

@media only screen and (max-width: 990px) {
  .platform-content {
    padding-left: 40px;
    padding-right: 40px;
  }

  .platform-header.second {
    transform: translateX(5%) translateY(-40%);
  }

  .platform-title {
    font-size: 1.1rem;
    line-height: 1.75rem;
  }

  .platform-title.first {
    margin-top: 25px;
  }

  .platform-title.second {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .platform-video {
    padding: 30px;
  }

  .platform-video video {
    width: 100%;
  }

  .platform-row {
    margin-top: 60px;
  }

  .platform-img {
    display: none;
  }

  .platform-text {
    margin-left: 5px;
  }

  .platform-text-header {
    font-size: 25px;
    margin-bottom: 20px;
  }

  .platform-text-line {
    font-size: 1rem;
    line-height: 1.6rem;
    font-weight: 400;
    margin-top: 25px;
    padding-right: 10px;
  }
}

/* CASES SECTION */

.cases {
  background-color: var(--blue-bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
}

.cases-content {
  width: 100%;
  max-width: var(--layout-max-width);
  padding: 120px 80px 120px 80px;
  margin: 0 auto;
}

.cases-header {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 400;
  font-family: "Dosis", sans-serif;
  text-transform: uppercase;
  color: var(--light-green-color);
  text-align: left;
  margin-top: -40px;
  margin-bottom: 180px;
}

.cases-carousel {
  position: relative;
  margin-top: 80px;
}

.cases-track-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.cases-track {
  display: flex;
  align-items: stretch;
  gap: 0;
  transition: transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.cases-slide {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 clamp(16px, 6vw, 80px);
  opacity: 0.3;
  transform: scale(0.85);
  transition: transform 0.65s ease, opacity 0.65s ease;
}

.cases-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.cases-slide-logo {
  width: clamp(180px, 25vw, 260px);
  height: clamp(90px, 12vw, 140px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cases-slide-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%) brightness(0) invert(100%);
}

.cases-slide-subtitle {
  font-family: "Dosis", sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.cases-slide-description {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.cases-nav {
  --translate-x: 0;
  background: none;
  border: none;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translate(var(--translate-x), -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cases-nav span {
  display: block;
  width: 32px;
  height: 32px;
  border-top: 2px solid rgba(255, 255, 255, 0.7);
  border-right: 2px solid rgba(255, 255, 255, 0.7);
  transform: rotate(45deg);
}

.cases-nav.prev span {
  transform: rotate(225deg);
}

.cases-nav:hover {
  transform: translate(var(--translate-x), -50%) scale(1.05);
  opacity: 0.9;
}

.cases-nav.prev {
  --translate-x: -50%;
  left: 0;
}

.cases-nav.next {
  --translate-x: 50%;
  right: 0;
}

.cases-pagination {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.cases-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cases-dot.is-active {
  background-color: var(--light-green-color);
  transform: scale(1.2);
}

.cases-dot:focus-visible,
.cases-nav:focus-visible {
  outline: 2px solid var(--light-green-color);
  outline-offset: 4px;
}

@media (max-width: 990px) {
  .cases {
    padding: 80px 0;
  }

  .cases-content {
    padding: 40px 30px 40px 30px;
  }

  .cases-header {
    margin-top: 0;
    margin-bottom: 0;
  }

  .cases-slide {
    padding: 0 clamp(12px, 7vw, 40px);
    transform: scale(1);
    opacity: 1;
  }

  .cases-nav {
    width: 56px;
    height: 56px;
  }

  .cases-nav span {
    width: 22px;
    height: 22px;
  }

  .cases-dot {
    transform: scale(0.6);
  }

  .cases-dot.is-active {
    transform: scale(0.8);
  }
}

/* CONTACT SECTION */

.contact {
  background-color: var(--dark-bg-color);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.contact-content {
  width: 100%;
  flex: 1;
  max-width: var(--layout-max-width);
  padding: 120px;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.contact-header {
  display: flex;
  flex-direction: column;
}

.contact-header-text {
  font-family: "Dosis", sans-serif;
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 5rem);
}

.contact-header-text.second {
  margin-left: 120px;
}

.contact-info {
  flex: 0 0 80%;
  max-width: 80%;
}

.contact-info * {
  font-weight: 900;
  font-size: 3rem;
}

.contact-info a {
  text-decoration: none;
}

.contact-info a:hover {
  color: var(--light-green-color);
  cursor: pointer;
}

.contact-info.phone {
  margin-left: 30px;
}

.contact-info.mail {
  margin-left: 100px;
}

.contact-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.contact-logo {
  flex: 0 0 20%;
  max-width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-logo img {
  width: 50%;
}

@media (max-width: 990px) {
  .contact {
    min-height: none;
  }

  .contact-content {
    padding: 60px 10px 60px 10px;
    align-items: center;
    justify-content: center;
    gap: 70px;
  }

  .contact-header-text.first {
    margin-left: -10px;
  }

  .contact-header-text.second {
    margin-left: 30px;
  }

  .contact-info * {
    font-size: 1.8rem;
  }

  .contact-info.phone {
    margin-left: 0;
  }

  .contact-info.mail {
    margin-left: 0;
    width: 100%;
    max-width: none;
    text-align: center;
  }

  .contact-row {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 70px;
  }

  .contact-logo img {
    width: 60px;
  }
}

@media only screen and (max-width: 768px) {
  .contact-info.large-only {
    display: none;
  }
}

@media only screen and (min-width: 769px) {
  .contact-info.small-only {
    display: none;
  }
}

/* FOOTER SECTION  */

.footer {
  background-color: black;
  color: white;
  padding: 60px 20px 60px 20px;
  gap: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.footer-social img {
  width: 22px;
}

.footer-social img:hover {
  cursor: pointer;
  transform: scale(1.2);
}

.footer-logo {
  width: 120px;
}

/* HELPERS  */

@media only screen and (min-width: 991px) {
  .mobile-only {
    display: none;
  }
}

@media only screen and (max-width: 990px) {
  ::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .desktop-only {
    display: none;
  }
}

/* TEXTURES BG SECTION */

.light-gray-top-right-texture-bg {
  background-image: url("../img/textures/light-gray-top-right.png");
  background-size: 40%;
  background-position: top right;
  background-repeat: no-repeat;
}

.light-gray-bottom-left-texture-bg {
  background-image: url("../img/textures/light-gray-bottom-left.png");
  background-size: 45%;
  background-position: bottom left;
  background-repeat: no-repeat;
}

.black-top-right-texture-bg {
  background-image: url("../img/textures/black-top-right.png");
  background-size: 40%;
  background-position: top right;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .light-gray-top-right-texture-bg {
    background-size: 100%;
  }
  .light-gray-bottom-left-texture-bg {
    background-size: 100%;
  }
  .black-top-right-texture-bg {
    background-size: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .light-gray-top-right-texture-bg {
    background-size: 65%;
  }
  .light-gray-bottom-left-texture-bg {
    background-size: 80%;
  }
  .black-top-right-texture-bg {
    background-size: 65%;
  }
}
