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

.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);
}

.c-hero-subtitle {
  max-width: 60%;
  font-size: var(--font-size-hero-subtitle);
  text-align: center;
  color: var(--alternative-text);
}

.c-social-a {
  transition: transform 0.3s ease;
}

.c-social-a:hover {
  filter: brightness(90%);
  transform: scale(1.2);
}

.c-social-a:active {
  transform: translateY(2px);
}

.c-social-icon {
  color: var(--alternative-text);
  font-size: clamp(1.3rem, 3vw + 0.5rem, 2rem);
}

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

.c-about-img {
  border-radius: var(--border-radius);
  width: 100%;
  height: auto;
  max-height: 345px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.c-about-text {
  font-size: var(--font-size-card-title);
  font-weight: bold;
  text-align: center;
  color: var(--primary-color);
}

/* ! Values */
.c-values-section {
  background-color: var(--alt-color);
}

.c-values-title {
  font-size: var(--font-size-section-title);
  text-align: start;
  font-weight: bold;
  color: var(--primary-text);
}

.c-values-col {
  min-height: 312px;
}

.c-values-container {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: var(--border-radius);
}

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

.c-values-img:hover {
  transform: scale(1.1);
}

.c-values-text {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  color: var(--primary-color);
}

.c-line-break {
  border: 0;
  height: 4px;
  width: 100%;
  border-radius: 4px;
  background-color: var(--primary-text);
}

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

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

.c-team-col {
  min-height: 385px;
}

.c-card {
  border-radius: var(--border-radius);
  background-color: var(--alt-color);
  transition: transform 0.3s ease;
}

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

.c-team-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  /* filter: grayscale(100%);
  transition: filter 0.4s ease; */
}

/* .c-team-img:hover {
  filter: grayscale(0%);
} */

.c-card-title {
  color: var(--primary-color);
  font-size: var(--font-size-card-title);
  font-weight: bold;
  text-align: center;
}

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

@media (max-width: 767px) {
  .c-values-title {
    text-align: center;
  }
}
