.header-container {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 694px;
  align-items: center;
  padding: 17px 60px 180px;
  overflow: hidden;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  z-index: 2;
}

@media (max-width: 991px) {
  .header-container {
    padding: 0 20px;
  }
}

.header-background-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.header-content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 80%;
}

@media (max-width: 991px) {
  .header-content-wrapper {
    max-width: 100%;
  }
}



.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  padding:5px;
  list-style-type: none;
}

.dropdown-content li:hover{
  background: rgba(0, 163, 159, 0.5);
}

.dropdown-content a {
  color: black;
  padding: 8px 12px;
  text-decoration: none;
  display: block;
}

.dropdown-icon {
  cursor: pointer;
  user-select: none;
  font-size: 15px;
  margin-left: 10px;
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Sombra sutil para el header */
  z-index: 1000; /* Asegura que el header esté por encima de otros elementos */
}

.header-header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
  color: #00a39f;
  transition: background-color 0.3s; /* Suaviza la transición del color de fondo */
  width: 100%;
 
}
@media (max-width: 991px) {
  .header-header {
    flex-wrap: wrap;
    max-width: 100%;
  }
}

.header-logo {
  width: 309px;
  max-width: 100%;
  aspect-ratio: 6.25;
  object-fit: contain;
  object-position: center;
}

.header-navigation {
  display: flex;
  gap: 20px;
  margin: auto 0;
  font-family: Raleway, sans-serif;
}

@media (max-width: 991px) {
  .header-navigation {
    flex-wrap: wrap;
  }
}

.header-main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 160px;
  padding: 0 1px 0 47px;
  color: #fff;
  letter-spacing: 3px;

  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .header-main-content {
    max-width: 100%;
    padding-left: 20px;
    margin-top: 40px;
  }
}


.parallax-container {
  height: 100vh; /* Asegúrate de que sea tan alto como la ventana del navegador */
  overflow: hidden;
  position: relative;
  z-index: -1; /* Detrás del contenido */
}

.parallax-background {
  background-image: url('/assets/images/building-bg.jpeg');
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateZ(0); /* Mejora el rendimiento en algunos navegadores */
}


.header-main-heading {
  align-self: stretch;
  margin: 0;
  color: #3f3f3f;
  font: 900 60px/73px Raleway, sans-serif;
  letter-spacing: 3header-6px;
}

@media (max-width: 991px) {
  .header-main-heading {
    max-width: 100%;
    font-size: 40px;
    line-height: 54px;
  }
}

.header-main-description {
  margin: 50px 0 0 0px;
  font-family: Raleway, sans-serif;
  line-height: 29px;
}

@media (max-width: 991px) {
  .header-main-description {
    max-width: 100%;
    margin-top: 40px;
  }
}

.header-api-text {
  font-weight: 900;
}

.header-scroll-text {
  margin: 144px 0 0 0px;
  font-family: Raleway, sans-serif;
  line-height: 146%;
}

@media (max-width: 991px) {
  .header-scroll-text {
    margin-top: 40px;
  }
}

.header-navigation a {
  color: #00a39f;
  /*text-align: center;*/
  text-align: left;
  font-family: Raleway;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
}

.header-navigation a.selected {
  position: relative;
  display: inline-block;
}

.header-navigation a.selected::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 50%;
  height: 2px;
  background-color: #00a39f;
}

.header-arrow {
  width: 50px;
  height: 50px;
  margin-top: 100px;
}

/* GLOBAL BUTTOM FLOATING*/

.flotation-container {
  animation: floatAnimation 1s infinite alternate ease-in-out;
}

@keyframes floatAnimation {
  0% {
      transform: translateY(0);
  }
 
  100% {
      transform: translateY(-10px);
  }
}

.sticky-header-container{
  min-height: unset;
  padding-bottom: 10px;
  position: fixed;
  background: rgba(255, 255, 255, 0.85);
  width: 100%;
  z-index: 5;
  display: none;
  overflow: unset;
}

@keyframes scaleHeight {
  0% {
      transform: scaleY(0); /* Start from zero height */
  }
  50% {
      transform: scaleY(1.2); /* Scale up to double the height */
  }
  100% {
      transform: scaleY(1); /* Return to normal height */
  }
}

.animate-sticky-header {
  display: flex;
  animation: scaleHeight 0.5s;
  animation-iteration-count: 1;
  zoom: 0.8;
}

.animate-sticky-header .header-content-wrapper{
  max-width: unset;
}

.animate-sticky-header .header-header {
  display: flex;
  justify-content: space-between;
}

.animate-sticky-header .header-header {
  display: flex;
  justify-content: space-between;
}

.animate-sticky-header .header-navigation {
  margin-right: 120px;
}

.animate-sticky-header .dropdown-content{
  right: 0px;
}

/** especific styles */


.dropdown {
  margin-top: -3px;
}
