/*
 * Version: 0.26.0410.1
 * Fecha: 2026-04-10 11:00:00 (-03:00)
 * Archivo: secondary-landing.css
 *
 * Cambio:
 * - Agrega estilo de hero y layout comercial para paginas secundarias como Descargas y Consultar Documentos.
 */

.sofgem-secondary-hero {
  position: relative;
  padding: 150px 0 96px;
  background:
    radial-gradient(circle at top right, rgba(111, 190, 52, 0.28), transparent 30%),
    linear-gradient(135deg, #163012 0%, #24481a 48%, #2f5f1f 100%);
  overflow: hidden;
}

.sofgem-secondary-hero::before,
.sofgem-secondary-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(2px);
}

.sofgem-secondary-hero::before {
  width: 320px;
  height: 320px;
  top: -120px;
  right: -80px;
}

.sofgem-secondary-hero::after {
  width: 220px;
  height: 220px;
  bottom: -80px;
  left: -40px;
}

.sofgem-secondary-hero .container {
  position: relative;
  z-index: 1;
}

.sofgem-secondary-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #f4f8ef;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sofgem-secondary-hero h1 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.05;
}

.sofgem-secondary-hero p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  line-height: 1.75;
}

.sofgem-secondary-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.sofgem-secondary-points span {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-weight: 600;
}

.sofgem-secondary-intro {
  padding: 72px 0 18px;
  background: linear-gradient(180deg, #f7faf3 0%, #edf4e8 100%);
}

.sofgem-secondary-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.sofgem-secondary-intro-card {
  padding: 28px 24px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(56, 130, 0, 0.12);
  box-shadow: 0 18px 38px rgba(47, 59, 51, 0.08);
}

.sofgem-secondary-intro-card h3 {
  margin: 0 0 10px;
  color: #233018;
  font-size: 1.15rem;
}

.sofgem-secondary-intro-card p {
  margin: 0;
  color: #53604f;
  line-height: 1.7;
}

.sofgem-secondary-content {
  background: linear-gradient(180deg, #edf4e8 0%, #f7faf4 100%);
}

.sofgem-secondary-content .contact-page-area {
  background: transparent !important;
}

@media (max-width: 991px) {
  .sofgem-secondary-hero {
    padding: 130px 0 72px;
  }

  .sofgem-secondary-intro-grid {
    grid-template-columns: 1fr;
  }
}
