/* =========================================================
   ABOUT / SERVICIOS
   ========================================================= */

.about{
  position: relative;
  z-index: 5;
  padding: 0 24px;
}

.about__inner{
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.about__card{
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 32px;
  border-left: 1px solid var(--line);
}

.about__card:first-child{
  border-left: none;
}

.about__icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gradient-btn);
  color: var(--text);
  font-size: 18px;
  box-shadow: var(--glow-purple);
  flex-shrink: 0;
}

.about__title{
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.about__desc{
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.about__link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-light);
  text-decoration: none;
  transition: gap .2s ease, color .2s ease;
}

.about__link:hover{
  gap: 12px;
  color: var(--brand-cyan);
}

.about__link i{
  font-size: 11px;
}

/* RESPONSIVE: MÓVILES / TABLET (≤ 959px) */
@media (max-width:959px){

  .about{
    margin-top: 0;
    padding: 0 20px;
  }

  .about__inner{
    flex-direction: column;
    border-radius: var(--radius);
  }

  .about__card{
    border-left: none;
    border-top: 1px solid var(--line);
  }

  .about__card:first-child{
    border-top: none;
  }
}

/* RESPONSIVE: ESCRITORIO (≥ 960px) */
@media (min-width:960px){

  .about__card{
    padding: 36px 32px;
  }
}
