body {
  margin: 0;
  font-family: 'Archivo Narrow', sans-serif;
  color: white;
  background-color: #cc8a33;
  overflow-x: hidden;
}

.kluster-section {
  position: relative;
  height: 100vh;
  padding: 2rem;
  box-sizing: border-box;
  margin-top: 80px; /* Espacio para el navbar fijo */
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

/* Removemos el menu anterior ya que usamos el navbar modular */

.kluster-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  height: calc(100% - 100px);
  padding-top: 2rem; /* Espacio adicional por el navbar */
}

.graphic {
  flex: 1 1 45%;
  position: relative;
  opacity: 0.6;
  z-index: 1;
}

.graphic img {
  width: 125%;
  max-width: none;
}

.title {
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.text-content {
  flex: 1 1 45%;
  font-size: 1.2rem;
  line-height: 1.8;
  position: relative;
  z-index: 3;
  background: none;
}

.text-content p {
  margin-bottom: 1.8rem;
}

.btn-servicios {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: bold;
  padding: 0.9rem 1.4rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-servicios:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.valores-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
  background-color: black;
  color: white;
  font-family: 'Archivo', sans-serif;
  text-align: center;
}

.bg-valores {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25) saturate(0.6);
  z-index: 0;
}

.valores-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.valores-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.logo-blanco {
  width: 60px;
  margin-bottom: 2rem;
  filter: brightness(0) invert(1);
}

.valores-section .btn-servicios {
  background-color: #d6a661;
  color: white;
  font-weight: bold;
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.valores-section .btn-servicios:hover {
  background-color: #D69F50;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(214, 159, 80, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .kluster-section {
    margin-top: 70px;
    padding: 1rem;
    height: auto;
    min-height: 100vh;
  }
  
  .kluster-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding-top: 1rem;
  }
  
  .graphic,
  .text-content {
    flex: 1 1 100%;
  }
  
  .graphic img {
    width: 100%;
    max-width: 400px;
  }
  
  .text-content {
    font-size: 1rem;
  }
  
  .title {
    font-size: 1rem;
  }
  
  .valores-section {
    height: auto;
    min-height: 100vh;
    padding: 3rem 1rem;
  }
  
  .valores-content p {
    font-size: 1rem;
  }
  
  .logo-blanco {
    width: 50px;
  }
}

@media (max-width: 480px) {
  .kluster-section {
    margin-top: 60px;
  }
  
  .text-content {
    font-size: 0.9rem;
  }
  
  .btn-servicios {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .valores-content p {
    font-size: 0.9rem;
  }
}