* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  color: #fff;
  background-color: #000;
}

/* Hero principal */
.hero {
  position: relative;
  height: 100vh;
  background: url('fondo.jpeg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}
.content {
  position: relative;
  z-index: 2;
}
.content h1 {
  font-size: 4rem;
  color: #5DEBD7;
}
.content p {
  font-size: 1.3rem;
  margin-top: 10px;
}
.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 28px;
  background: #5DEBD7;
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}
.btn:hover { background: #4cd2c1; }

/* Secciones generales */
section {
  padding: 70px 20px;
  text-align: center;
}
section h2 {
  color: #5DEBD7;
  margin-bottom: 20px;
}

/* Sobre Halpek */
.about { background: #111; }

/* Servicios */
.services {
  background: #0d0d0d;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
.service {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 25px;
  width: 300px;
  transition: transform 0.3s ease;
}
.service:hover { transform: translateY(-8px); }

/* Pasajeros / Conductores */
.users {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.users-content {
  flex: 1 1 400px;
  padding: 60px 40px;
}
.users-content h2 {
  color: #5DEBD7;
  margin-bottom: 20px;
}
.users-content ul {
  list-style: none;
  margin-top: 20px;
}
.users-content li {
  margin-bottom: 10px;
  color: #ccc;
}
.users-image {
  flex: 1 1 400px;
  background-size: cover;
  background-position: center;
  min-height: 350px;
}
.passengers { background: #0b0b0b; }
.drivers { background: #111; }

/* Logística */
.logistics {
  background: #0d0d0d;
}
.logistics ul {
  list-style: none;
  margin-top: 20px;
}
.logistics li {
  margin: 10px 0;
  color: #ccc;
}

/* Soporte */
.support {
  background: #111;
}

/* Legales */
.legal {
  background: #0b0b0b;
  font-size: 15px;
}
.legal a {
  color: #5DEBD7;
  text-decoration: underline;
}

/* Footer */
footer {
  background: #000;
  text-align: center;
  padding: 25px 0;
  border-top: 1px solid #333;
  color: #888;
  font-size: 14px;
}
footer a {
  color: #5DEBD7;
  text-decoration: none;
}
footer a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .users {
    flex-direction: column;
  }
  .users-image {
    height: 250px;
  }
}
/* ===========================
   Descarga App
=========================== */
.download {
  background: #0d0d0d;
  text-align: center;
  padding: 70px 20px;
}

.download h2 {
  color: #5DEBD7;
  margin-bottom: 15px;
}

.download p {
  color: #ccc;
  margin-bottom: 30px;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.store-btn img {
  width: 180px;
  transition: transform 0.3s ease;
}

.store-btn img:hover {
  transform: scale(1.05);
}

/* ===========================
   Soporte técnico
=========================== */
.support {
  background: #111;
  text-align: center;
  padding: 70px 20px;
}

.support h2 {
  color: #5DEBD7;
  margin-bottom: 15px;
}

.support ul {
  list-style: none;
  margin-top: 15px;
  color: #ccc;
  line-height: 1.8em;
}

/* ===========================
   Legales
=========================== */
.legal {
  background: #0b0b0b;
  text-align: center;
  padding: 70px 20px;
}

.legal h2 {
  color: #5DEBD7;
  margin-bottom: 15px;
}

.legal a {
  color: #5DEBD7;
  text-decoration: none;
  font-weight: 600;
}

.legal a:hover {
  text-decoration: underline;
}
/* ===========================
   Alquiler / Control de flota
=========================== */
.services-section {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background: #0d0d0d;
}

.services-section.alt {
  background: #111;
}

.services-content {
  flex: 1 1 400px;
  padding: 60px 40px;
  color: #fff;
}

.services-content h2 {
  color: #5DEBD7;
  margin-bottom: 20px;
}

.services-content p {
  margin-bottom: 20px;
  color: #ccc;
  line-height: 1.6;
}

.services-content ul {
  list-style: none;
}

.services-content li {
  margin-bottom: 10px;
  color: #bbb;
}

.services-image {
  flex: 1 1 400px;
  background-size: cover;
  background-position: center;
  min-height: 350px;
}

@media (max-width: 900px) {
  .services-section {
    flex-direction: column;
  }
  .services-image {
    height: 250px;
  }
}
.logo {
  width: 280px;
  height: auto;
  display: block;
  margin: 0 auto -85px auto; /* 👈 usa -5px o -10px si querés que quede más pegado */
}