header .navbar.bg-brand-2 .brand-button:hover {
	background-color: var(--color-brand-2);
}

#hero-swiper {
    padding: 0!important;
    max-width: 100%!important;
}

.swiper-wrapper-default-container {
    padding: 0!important;
    max-width: 100%!important;
}

#hero-swiper h1 {
    font-size: 38px;
}

#hero-swiper .mx-1 {
    margin: 0!important;
}

.hero-1 *, .hero-2 * {
    color: white;
}

.hero-default-inner {
  position: relative;
  width: 100%;
  height: 100vh; /* Ensures it takes full screen height */
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the full area */
}

.hero-default-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centers the content */
  text-align: center;
  color: white;
  z-index: 2;
}

.hero-default-content-inner div * {
  padding: 1rem;
  background: rgba(0, 0, 0, 0.4); /* Optional: Adds contrast */
  border-radius: 8px;
}

#hero-swiper .hero-default-inner {
    min-height: calc(100vh - var(--navbar-height)) !important;
    margin-top: 0;
    background-position: center top !important;
}

#hero-swiper .hero-default-layer-inner {
        min-height: 100%!important;
    }

@media (min-width: 768px) {
#hero-swiper .hero-default-inner {
    padding-top: 0;
    background-size: cover !important;
    }
}

#hero-swiper .swiper-slide {
    padding-bottom: 0!important;
}

.entrada .rich-text-component {
    align-items: center;
    gap: 40px;
}

/* Modal Base Styles */
.modal-content {
    position: relative;
    width: 100%;
    max-width: 420px; /* Adjust width */
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease-in-out;
}

/* Close Button */
.close-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: #6b7280;
    cursor: pointer;
    transition: color 0.2s ease-in-out;
}

.close-modal:hover {
    color: #374151;
}

/* Title */
.modal .rich-text-component h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

/* Paragraph */
.modal .rich-text-component p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
}

.carousel-default .swiper-wrapper img {
    width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .modal-content {
        max-width: 90%;
        padding: 20px;
    }
.carousel-default .swiper-wrapper img {
    width: 180px;
}
}

/* Bullet Points */
.modal .rich-text-component ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 8px;
}

.modal .rich-text-component ul li {
    margin-bottom: 8px;
    font-size: 1rem;
    color: #374151;
}

.team-default img {
    filter: grayscale(100%);
    transition: filter 0.4s ease-in-out;
}

.team-default img:hover {
    filter: grayscale(0%);
}

.banner-default {
    background-color: rgb(51, 51, 51)!important;
    color: white!important;
}

.banner-default * {
    color: white!important;
}

.carousel-default, .carousel-default-container {
    background-color: white;
}

.carousel-default .swiper-wrapper {
    transition-timing-function: linear;
}