* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, Arial, sans-serif;
  color: #1f2933;
  line-height: 1.6;
}

/* HERO */

.hero {
  background: linear-gradient(135deg, #e8f5f2, #ffffff);
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.hero p {
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 30px;
}

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

/* BOTONES */

.btn-primary {
  background-color: #0f766e;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn-secondary {
  background-color: #ffffff;
  color: #0f766e;
  padding: 12px 22px;
  border-radius: 6px;
  border: 2px solid #0f766e;
  text-decoration: none;
  font-weight: 600;
}

/* SECCIONES */

.presentacion,
.servicios,
.ubicacion,
.contacto {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.presentacion h2,
.servicios h2,
.ubicacion h2,
.contacto h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* SERVICIOS */

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.servicio {
  background-color: #f8fafc;
  padding: 25px;
  border-radius: 8px;
}

/* UBICACIÓN */

.direccion {
  font-size: 1.05rem;
  margin-top: 10px;
  margin-bottom: 25px;
  line-height: 1.4;
}

.map-button {
  margin-top: 10px;
}

/* CONTACTO */

.contacto-dato {
  margin-top: 10px;
  font-size: 1.1rem;
}

/* FOOTER */

.footer {
  background-color: #f1f5f9;
  text-align: center;
  padding: 25px 10px;
  margin-top: 40px;
}

.footer-small {
  font-size: 0.85rem;
  color: #64748b;
}
