/* ===== PÁGINA SERVICIOS ===== */

.hero-servicios {
  min-height: 62vh;
  background:
    linear-gradient(rgba(15, 25, 18, .45), rgba(15, 25, 18, .55)),
    url("../images/servicios/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 120px 20px 80px;
}
.hero-servicios h1 {
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 700;
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeInUp 1.2s ease forwards .6s;
}
.hero-servicios p {
  max-width: 760px;
  font-size: clamp(16px, 2vw, 21px);
  color: #e8ede9;
  opacity: 0;
  animation: fadeInUp 1.2s ease forwards 1.2s;
}

/* Intro */
.servicios-intro {
  max-width: 860px;
  margin: 0 auto;
  padding: 70px 20px 10px;
  text-align: center;
  color: #555;
  font-size: clamp(16px, 2vw, 20px);
}

/* Lista de servicios en filas alternas */
.servicios-lista {
  max-width: 1150px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.servicio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.servicio:nth-child(even) .servicio-img { order: 2; }
.servicio-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}
.servicio-texto .kicker {
  color: #2e7d32;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.servicio-texto h2 {
  color: #2b2b2b;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 14px;
}
.servicio-texto h2::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 56px; height: 4px;
  border-radius: 2px;
  background: #6fbf73;
}
.servicio-texto p { color: #666; font-size: 16px; }
.servicio-texto .logo-mini { max-height: 60px; margin-top: 18px; }

/* Banda final CTA */
.cta-servicios {
  background: #171b26;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}
.cta-servicios h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 700; margin-bottom: 14px; }
.cta-servicios p { color: #c7cbd3; margin-bottom: 30px; }
.btn-verde {
  display: inline-block;
  background: #2e7d32;
  color: #fff;
  padding: 15px 46px;
  border-radius: 30px;
  font-size: 16px;
  transition: background .2s, transform .2s;
}
.btn-verde:hover { background: #256b29; transform: translateY(-2px); }

/* Responsive */
@media (max-width: 860px) {
  .servicio { grid-template-columns: 1fr; gap: 24px; }
  .servicio:nth-child(even) .servicio-img { order: 0; }
  .servicio-img img { height: 240px; }
}
