.gold-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #c6a74e, #e6d18a);
  margin: 20px auto 0;
  border-radius: 10px;
}

.title-wrapper{
  text-align:center;
  margin-bottom:40px;
  position:relative;
}

.title-sub{
  display:block;
  font-size:13px;
  letter-spacing:3px;
  color:#b8912c;
  margin-bottom:12px;
  text-transform:uppercase;
}

.metal-title{
  font-size:38px;
  font-weight:700;
  letter-spacing:3px;
  text-transform:uppercase;
  margin:0;
  background:linear-gradient(
    90deg,
    #999,
    #e5e5e5,
    #999
  );
  background-size:200% auto;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  animation:metalTextShine 6s linear infinite;
  position:relative;
}

@keyframes metalTextShine{
  0%{ background-position:0% center; }
  100%{ background-position:200% center; }
}

.title-divider{
  width:120px;
  height:3px;
  margin:25px auto 0;
  background:linear-gradient(to right,#d4af37,#f6e27a,#d4af37);
  border-radius:5px;
  position:relative;
}

.title-divider::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:10px;
  height:10px;
  background:#d4af37;
  border-radius:50%;
  box-shadow:0 0 10px rgba(212,175,55,0.6);
}

.section-legend{
  margin:14px auto 0;
  color:#666;
  font-size:18px;
  max-width:720px;
}

/* ===== SERVICIOS + LICENCIAS WRAPPER ===== */
.services-licenses{
  background:#ffffff;
  padding:80px 0;
}

.sl-grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap:60px;
  padding:0 24px;
  align-items:stretch;
  min-height:100vh;
}

.services-licenses #servicios{
  background:transparent;
}

.services-licenses .licenses-subsection{
  background:transparent;
  padding:0;
}

.services-licenses .licenses-metal-grid{
  grid-template-columns:1fr;
}

.services-licenses .sl-services,
.services-licenses .sl-licenses{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

.services-licenses .title-wrapper{
  text-align:left;
  margin-bottom:24px;
}

.services-licenses .title-divider{
  margin:18px 0 0;
}

.services-licenses .section-legend{
  margin:12px 0 0;
  max-width:560px;
}

.services-licenses #servicios .grid{
  grid-template-columns:1fr;
  gap:40px;
}

@media (max-width:1024px){
  .sl-grid{
    grid-template-columns:1fr;
    gap:70px;
    min-height:auto;
  }
  .services-licenses #servicios .grid{
    grid-template-columns:1fr;
  }
}
