/* ==========================================================================
   SECCIÓN SERVICIOS
   ========================================================================== */
.servicios-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
  font-family: system-ui, -apple-system, sans-serif;
  color: #333;
}

.servicios-container {
  max-width: 1100px;
  margin: 0 auto;
}

.servicios-header {
  text-align: center;
  margin-bottom: 40px;
}

.servicios-title {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: #1a1a1a;
}

.servicios-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

/* GRID DE PLANES */
.planes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  .planes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.plan-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.plan-card:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.plan-activo {
  border-left: 4px solid #2c5e4f; /* Color de acento sugerido */
}

.plan-title {
  font-size: 1.4rem;
  margin: 0 0 12px;
  color: #1a1a1a;
}

.plan-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 18px;
}

.plan-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.plan-benefits li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #333;
}

.plan-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2c5e4f;
  font-weight: bold;
}

.btn-servicio {
  display: inline-block;
  padding: 10px 20px;
  background-color: #2c5e4f;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s ease;
  text-align: center;
}

.btn-servicio:hover {
  background-color: #1e4237;
}

.btn-secundario {
  background-color: transparent;
  border: 1px solid #2c5e4f;
  color: #2c5e4f;
}

.btn-secundario:hover {
  background-color: #f0f4f2;
}

/* BENEFICIOS */
.beneficios-wrapper {
  background: #fff;
  border-radius: 8px;
  padding: 30px 20px;
  border: 1px solid #e0e0e0;
}

.beneficios-title {
  font-size: 1.5rem;
  margin: 0 0 10px;
  text-align: center;
  color: #1a1a1a;
}

.beneficios-intro {
  text-align: center;
  color: #555;
  margin-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .beneficios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .beneficios-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.beneficio-item {
  padding: 16px;
  background: #fafafa;
  border-radius: 6px;
  border: 1px solid #eee;
}

.beneficio-item h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: #1a1a1a;
}

.beneficio-item p {
  margin: 0;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
}

.beneficio-full {
  grid-column: 1 / -1;
  text-align: center;
  background: #f4f7f5;
}

/* Ajuste fino para móviles pequeños */
@media (max-width: 480px) {
  .servicios-title { font-size: 1.6rem; }
  .plan-card { padding: 20px; }
  .beneficios-wrapper { padding: 20px 15px; }
}