/* ==== RESET ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  color: #333;
  line-height: 1.6;
}

/* ==== HEADER ==== */
.header {
  background: #000;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  height: 60px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #ff8c00;
}

/* ==== HERO ==== */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
              url('https://images.unsplash.com/photo-1581091012184-5c1a4b7d2e3a?auto=format&fit=crop&w=1950&q=80') center/cover;
  color: white;
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.btn {
  background: #ff8c00;
  color: white;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #e67e00;
}

/* ==== SECCIONES ==== */
.section {
  padding: 80px 20px;
  text-align: center;
}

.bg-light {
  background: #f4f4f4;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

/* ==== SERVICIOS ==== */
.servicios-lista {
  list-style: none;
  margin-top: 20px;
  text-align: left;
  display: inline-block;
}

.servicios-lista li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* ==== CONTACTO ==== */
.contacto p {
  margin: 10px 0;
  font-size: 1.1rem;
}

/* ==== FOOTER ==== */
.footer {
  background: #000;
  color: #ccc;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    gap: 10px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
