/* Buttons */ 
.btn.btn-primary {
  background-color: #115147;
  border-color: #115147;
}

.btn-primary:hover {
  background-color: #0F483F;
  border-color: #0F483F;
}

.btn-secondary {
  background-color: #fff;
  border-color: #D5D7DA;
  color: #414651;
}

.btn-secondary:hover {
  background-color: #FAFAFA;
  border-color: #D5D7DA;
  color: #252B37;
}

/* Text */
.display-5 {
color:  #181D27;
font-family:  Inter;
font-size: 60px;
font-style: normal;
font-weight: 600;
line-height: 72px;
letter-spacing: -1.2px;
}

.lead {
color:  #535862;
font-family: Inter;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height:30px; /* 150% */
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #fff;
  overflow: hidden;
}

.hero-carousel-wrapper {
  position: relative;
  height: 100vh;
  clip-path: polygon(15% 0%, 100% 0, 100% 100%, 0% 100%);
  overflow: hidden;
}

.carousel-inner,
.carousel-item,
.carousel-item img {
  height: 100%;
  width: 100%;
}

.hero-logo {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #115147;
  padding: 27px 80px;
  border-radius: 999px;
  display: flex;
  align-items: center;
}

/* Asegura que ambas columnas ocupen el 50% */
.hero-section .container,
.hero-section .row {
  height: 100%;
}

.hero-section .col-lg-6 {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contacto-section {
  background-color: #0B362F;
  color: white;
  padding-bottom: 150px;
}

.asesoramiento-section {
  background-color: #fff;
  color:  #181D27;
  padding-bottom: 0;
  margin-bottom: 150px;
}


.contact-img {
  position: relative;
  display: block;
  max-width: 100%;
  height: auto;
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.15);
}

.negative-margin {
  margin-top: -150px;
}

.spacing-9-xl {
  padding: 96px;
}


@media (max-width: 768px) {
  .contact-img {
    margin-top: 30px;
    margin-bottom: 0;
  }
}



@media (max-width: 991px) {
  .hero-section {
    flex-direction: column;
  }

  .hero-carousel-wrapper {
    clip-path: none;
    height: auto;
    margin-top: 2rem;
  }

  .hero-logo {
    bottom: 10px;
    left: 10px;
    font-size: 14px;
    padding: 6px 10px;
  }
}
