/* ===== SERVICIO TÉCNICO PAGE STYLES ===== */

/* HERO */
.st-hero {
  min-height: 58vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 80px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(64,224,208,0.12), transparent);
  border-bottom: 1px solid var(--border);
}

.st-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  display: block;
}

.st-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(64,224,208,0.1);
  border: 1px solid rgba(64,224,208,0.3);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 980px;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.st-hero-title {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 24px;
}
.st-hero-title .accent { color: var(--green); }

.st-hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

/* SECTIONS */
.st-section {
  padding: 88px 5%;
}
.st-section-alt {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.st-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.st-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
}

.st-sub {
  font-size: 17px;
  color: var(--gray);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* BENEFITS */
.st-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}

.st-benefit {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color 0.25s, transform 0.25s;
}
.st-benefit:hover {
  border-color: rgba(64,224,208,0.35);
  transform: translateY(-2px);
}
.st-benefit-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}
.st-benefit-text {
  font-size: 15px;
  color: var(--white);
  font-weight: 400;
  line-height: 1.55;
}

/* SERVICES GRID */
.st-services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.st-service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.st-service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  opacity: 0;
  background: linear-gradient(135deg, rgba(64,224,208,0.06), transparent);
  transition: opacity 0.3s;
}
.st-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(64,224,208,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.st-service-card:hover::before { opacity: 1; }

.st-service-emoji {
  font-size: 36px;
  display: block;
  margin-bottom: 16px;
}
.st-service-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.st-service-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

/* BRANDS */
.st-brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto;
}

.st-brand-pill {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 980px;
  transition: all 0.2s;
  cursor: default;
}
.st-brand-pill:hover {
  border-color: rgba(64,224,208,0.4);
  color: var(--green);
}
.st-brand-pill.featured {
  background: rgba(64,224,208,0.1);
  border-color: rgba(64,224,208,0.35);
  color: var(--green);
}

/* PRICING BOX */
.st-pricing-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.st-pricing-box .st-pricing-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}
.st-pricing-box h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 14px;
}
.st-pricing-box p {
  font-size: 16px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.75;
}

/* CTA */
.st-cta {
  padding: 96px 5%;
  text-align: center;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(64,224,208,0.08), transparent);
  border-top: 1px solid var(--border);
}
.st-cta .st-eyebrow { margin-bottom: 12px; }
.st-cta-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.05;
}
.st-cta-desc {
  font-size: 17px;
  color: var(--gray);
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.st-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.st-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 980px;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: -0.01em;
}
.st-wa-btn:hover { background: #20bc5a; transform: scale(1.03); }
.st-wa-btn svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }

/* CLOSING TAGLINE */
.st-tagline {
  text-align: center;
  padding: 40px 5%;
  background: var(--dark);
  border-top: 1px solid var(--border);
}
.st-tagline p {
  font-size: 16px;
  color: var(--gray);
  font-weight: 300;
}
.st-tagline strong { color: var(--white); }

/* INDEX PAGE TEASER */
.st-teaser { padding: 88px 5%; }
.st-teaser-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto 44px;
}
.st-teaser-pill {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 980px;
  transition: all 0.2s;
}
.st-teaser-pill:hover {
  border-color: rgba(64,224,208,0.35);
  color: var(--green);
}
.st-teaser-cta { text-align: center; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .st-benefits { grid-template-columns: 1fr; }
  .st-services { grid-template-columns: 1fr; }
  .st-pricing-box { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .st-hero { padding: 100px 5% 60px; }
  .st-section { padding: 60px 5%; }
  .st-cta { padding: 60px 5%; }
}
