/* ===== HERO ===== */
.hero-lounge {
  width: 100%;
  height: 55vh;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== BASE ===== */
section {
  margin-top: 4rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== INTRO ===== */
.content-narrow {
  max-width: 750px;
  margin: 0 auto;
  text-align: left;
  color: #444;
  line-height: 1.7;
}

/* ===== SOLUCIONES ===== */
.soluciones-wrapper {
  background: #f7f7f7;
  padding: 4rem 0;
}

.solucion-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s ease;
  border: 1px solid #eee;
}

.solucion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.solucion-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.solucion-content {
  padding: 20px;
}

.solucion-content h3 {
  margin-bottom: 10px;
}

.solucion-content p {
  font-size: 14px;
  color: #555;
}

/* ===== BENEFICIOS ===== */
.beneficios h2 {
  margin-bottom: 2rem;
}

.beneficio {
  text-align: center;
  padding: 10px;
}

.beneficio h4 {
  margin-bottom: 8px;
}

.beneficio p {
  font-size: 14px;
  color: #666;
}

/* ===== CTA ===== */
.cta-section {
  margin-top: 4rem;
  padding: 3.5rem 1.5rem;
  background: #111;
  color: #fff;
  border-radius: 10px;
}

.botonx {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 26px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.botonx:hover {
  background: #fff;
  color: #000;
}

/* ===== VOLVER ===== */
.volver-btn {
  color: #444;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
}

.volver-btn:hover {
  color: #000;
  border-color: #000;
}