/* RESET */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #0a0a0a;
  color: #fff;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

/* HERO PREMIUM */
.hero {
  height: 60vh;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)),
              url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero p {
  color: #ccc;
  font-size: 18px;
}

/* TITULOS */
h2 {
  font-size: 30px;
  margin-bottom: 20px;
  position: relative;
}

h2::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #f5a623;
  position: absolute;
  left: 0;
  bottom: -10px;
}

/* ABOUT */
.about p {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 16px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* CARDS PREMIUM */
.card {
  background: linear-gradient(145deg, #111, #0a0a0a);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #222;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  border-color: #f5a623;
}

.card h3 {
  color: #f5a623;
  margin-bottom: 15px;
}

/* SPECIALTY */
.specialty p {
  color: #bbb;
  margin-bottom: 20px;
}

/* ZONES */
.zones {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.zones span {
  background: #111;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid #222;
  transition: 0.3s;
}

.zones span:hover {
  background: #f5a623;
  color: #000;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.service {
  background: linear-gradient(145deg, #111, #0a0a0a);
  padding: 30px;
  text-align: center;
  border-radius: 12px;
  border: 1px solid #222;
  transition: 0.3s;
  font-weight: bold;
}

.service:hover {
  background: #f5a623;
  color: #000;
  transform: translateY(-6px);
}

/* DIVISORES */
section {
  border-bottom: 1px solid #111;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 32px;
  }
}