.about-us-banner {
  width: 100%;
  height: 50vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 17vh;
}

.about-us-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--about-us-banner-url);
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.about-us-banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  box-sizing: border-box;
  color: white;
  overflow: hidden;
  transform: translate(-50%, -50%);
}

.about-us-banner-content h2 {
  font-weight: bold;
  margin: 0 0 0.5rem 0;
  word-wrap: break-word;
  hyphens: auto;
  flex-shrink: 1;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 1);
}

.about-us-banner-content h3 {
  margin: 0 0 1rem 0;
  word-wrap: break-word;
  flex-shrink: 1;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 1);
}

.about-us-text-row {
  margin-top: 8vh !important;
  margin-bottom: 8vh !important;
  --container-margin: 8rem;
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  gap: var(--container-margin);
  flex-wrap: wrap;
}

.about-us-text-col {
  flex: 1;
}

.about-us-text {
  color: var(--grey-dark);
}

/* What we do Section */

.what-we-make-section-container {
  width: 90%;
  max-width: 90%;
  margin: 0 auto;
}

.what-we-make-title {
  text-align: center;
  color: var(--grey-light);
  font-weight: bold;
  margin-bottom: 3%;
}

.what-we-make-text-wrapper {
  width: 60%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 3%;
}

.what-we-make-text {
  text-align: center;
}


.what-we-make-cards-container {
  margin-top: 8vh;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  overflow: hidden;
  margin-bottom: 8vh;
}

.what-we-make-cards-container .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* opcional, se quiseres centrar os cards */
}

.col {
  flex: 0 0 20%;
  max-width: 20%;
}

.card {
  border: none;
  border-radius: 0;
  text-align: center;
}

.card-title {
color: var(--grey-mid);
}

.image-wrapper {
  width: 100%;
  aspect-ratio: 3 / 2;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--crisal-green-light);
  opacity: 0;
  transition: opacity 0.3s ease;
  mix-blend-mode: multiply;
  z-index: 2;
  pointer-events: none;
}

.image-wrapper:hover::after {
  opacity: 1;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.image-wrapper:hover img {
  transform: scale(1.1);
}

/* What Moves us Section */


.what-moves-us-section-container {
  width: 90%;
  max-width: 90%;
  margin: 0 auto;
}

.what-moves-us-title {
  text-align: center;
  color: var(--grey-light);
  font-weight: bold;
  margin-bottom: 3%;
}

.what-moves-us-text-wrapper {
  width: 60%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 3%;
}

.what-moves-us-text {
  text-align: center;
}


.what-moves-us-container {
    width: 90%;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
    margin-bottom: 8vh;
}


.column-left,
.column-right {
    flex: 1; 
    display: flex;
    flex-direction: column;
}


@media (max-width: 1200px) {
  
    .col {
    flex: 0 0 25%;
    max-width: 25%;
    }

}

@media (max-width: 768px) {
  .col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Mobile Styles */
@media (max-width: 576px) {
  .about-us-banner {
    margin-top: 8vh;
  }

  .about-us-text-row {
    width: 90%;
    margin: 0 auto;
    display: flex;
    gap: 0.5rem !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-top: 8vh !important;
    margin-bottom: 8vh !important;
  }

  .about-us-text-col {
    flex: 1 1 100%;
  }

  .what-we-make-text-wrapper {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 8vh;
  }

  .col {
    flex: 0 0 100%;
    max-width: 100%;
  }

    .what-moves-us-text-wrapper {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 8vh;
  }
}
