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

body {
  font-family: 'Poppins', sans-serif;
  color: #2f2f2f;
  line-height: 1.6;
}

/* HERO */
.hero {
  background: linear-gradient(rgba(20, 70, 50, 0.85), rgba(20, 70, 50, 0.85)),
              url('https://images.unsplash.com/photo-1528698827591-e19ccd7bc23d?auto=format&fit=crop&w=1400&q=80');
  background-size: cover;
  background-position: center;
  padding: 90px 20px;
  color: #ffffff;
  text-align: center;
}

.hero-content {
  max-width: 700px;
  margin: auto;
}

.hero h1 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

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

/* BOTONES */
.btn {
  display: inline-block;
  background: #ffffff;
  color: #144632;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
}

.btn.secondary {
  background: #144632;
  color: #ffffff;
}

/* SERVICIOS */
.services {
  padding: 60px 20px;
  background: #f6f6f4;
  text-align: center;
}

.services h2 {
  margin-bottom: 40px;
  font-weight: 500;
}

.services-grid {
  display: grid;
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

.service-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.service-card h3 {
  margin-bottom: 10px;
  font-weight: 500;
}

/* CONFIANZA */
.trust {
  padding: 50px 20px;
  text-align: center;
  max-width: 700px;
  margin: auto;
  font-size: 1.05rem;
}

/* UBICACIÓN */
.location {
  background: #e9eee9;
  padding: 60px 20px;
  text-align: center;
}

.location h2 {
  margin-bottom: 20px;
}

.location p {
  margin-bottom: 20px;
}

/* CONTACTO */
.contact {
  background: #144632;
  color: #ffffff;
  padding: 50px 20px;
  text-align: center;
}

.contact h2 {
  margin-bottom: 10px;
}

.phone {
  display: inline-block;
  margin-top: 15px;
  font-size: 1.2rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero h1 {
    font-size: 2.6rem;
  }
}

.location-grid {
  display: grid;
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto 0;
}

.location-info {
  font-size: 1rem;
}

.location-map {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
}

/* Desktop */
@media (min-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .location-map {
    height: 350px;
  }
}
