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

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

.c-philosophy-container {
  width: 100%;
  height: auto;
  max-width: 250px;
  max-height: 250px;
  overflow: hidden;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

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

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

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

/* ! Banner */
.c-banner-section {
  position: relative;
  height: 50dvh;
  width: 100%;
  background-image: url(../media/images/filosofiaBanner.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-container {
  overflow: hidden;
  z-index: 2;
}

.c-banner-logo {
  height: 100%;
  width: auto;
  object-fit: contain;
}
