* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #111;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

/* BOTONES */
.btn {
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn.primary {
  background: #e8b4c4;
  color: #000;
}

.btn.secondary {
  background: #000;
  color: #fff;
}

.btn:hover {
  opacity: 0.85;
}

/* SECCIONES */
.section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

.section h2 {
  text-align: center;
  margin-bottom: 30px;
}

/* SERVICIOS */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
}

.card h3 {
  margin-bottom: 10px;
}

/* UBICACIÓN */
.location {
  text-align: center;
}

/* CTA */
.cta {
  background: #f7f7f7;
  padding: 60px 20px;
  text-align: center;
}

/* FOOTER */
footer {
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #666;
}
