/* ! Hero */
.c-hero-section {
  position: relative;
  min-height: 65dvh;
  width: 100%;
  background-image: url(../media/images/nosotrosBackground.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.c-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    to bottom,
    rgba(36, 29, 73, 0.5) 0%,
    rgba(36, 29, 73, 0.8) 100%
  );
  z-index: 1;
}

.c-hero-text {
  overflow: hidden;
  z-index: 2;
}

.c-hero-title {
  font-size: var(--font-size-hero-title);
  text-align: center;
  text-transform: uppercase;
  color: var(--alternative-text);
}

/* ! About */
.c-about-title {
  font-size: var(--font-size-section-title);
  text-align: center;
  font-weight: bold;
}

.c-about-container {
  width: 100%;
  height: 100%;
  min-height: 230px;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.c-about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.c-about-img:hover {
  transform: scale(1.05);
}

.c-about-text {
  font-size: var(--font-size-section-text);
  text-align: start;
  color: var(--secondary-text);
}

/* ! Banner */
.c-banner-section {
  position: relative;
  height: 50dvh;
  width: 100%;
  background-image: url(../media/images/nosotrosBackground.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.c-banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    to bottom,
    rgba(36, 29, 73, 0.5) 0%,
    rgba(36, 29, 73, 0.8) 100%
  );
  z-index: 1;
}

.c-banner-text {
  overflow: hidden;
  z-index: 2;
}

.c-banner-title {
  font-size: var(--font-size-hero-title);
  text-align: center;
  text-transform: uppercase;
  color: var(--alternative-text);
}
