body {
    margin: 0;
    font-family: 'Golos Text', sans-serif;
    background-color: #fff;
    color: #333;
}

/*PANTALLA GIGANTE PROMOCIONAL*/

.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #F2E9E2;
  height: 40vh; /* Ocupa casi toda la pantalla */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 80px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/*CONTENIDO GENERAL INFORMATIVO*/

.container {
  display: flex;
  max-width: 1200px;
  margin: 50px auto;
  gap: 30px;
  padding: 0 20px;
}

/* Columna izquierda */
.sidebar {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sidebar button {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #000000;
  cursor: pointer;
  background-color: #FFFFFF;
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: 0.3s;
}

.sidebar button:hover {
  background-color: #000000;
  color: #FFFFFF;
}

/* Columna derecha */
.content {
  width: 75%;
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
}

.content h1 {
  font-size: 22px;
  margin-bottom: 25px;
  margin-top: -40px;
  color: #000000;
}

.content h3 {
  margin-top: 20px;
  color: #7E7E7E;
}

.content p, 
.content li {
  line-height: 1.7;
  margin-bottom: 10px;
  color: #7E7E7E;
}

ul {
  margin-left: 20px;
}

.sidebar button.active {
  background-color: #000000;
  color: #FFFFFF;
  border-color: #000000;
}

@media (max-width: 900px) {
  .container {
    flex-direction: column;
  }
  .sidebar, .content {
    width: 100%;
  }
}