/* ════════════════════════════
       ABOUT (NOSOTROS)
    ════════════════════════════ */
#nosotros .about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-img-wrap {
  width: 360px;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--grad);
  position: relative;
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-img-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 36px;
}

.about-icon-big {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  color: var(--white);
}

.about-since {
  font-family: var(--font-head);
  color: var(--white);
  text-align: center;
}

.about-since strong {
  font-size: 3rem;
  font-weight: 800;
  display: block;
}

.about-since span {
  font-size: .85rem;
  opacity: .7;
}

.about-badge {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-badge-1 {
  bottom: -20px;
  left: -30px;
}

.about-badge-2 {
  top: 30px;
  right: -36px;
}

.about-badge i {
  font-size: 1.3rem;
  color: var(--blue);
}

.about-badge-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
}

.about-badge-text span {
  font-size: .75rem;
  color: var(--gray);
}

/* MVV */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.mvv-card {
  background: var(--white);
  border: 1px solid rgba(0, 80, 204, .1);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.mvv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
}

.mvv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.mvv-card i {
  font-size: 1.6rem;
  color: var(--blue);
  margin-bottom: 14px;
  display: block;
}

.mvv-card h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
}

.mvv-card p {
  font-size: .88rem;
  text-align: justify;
  color: var(--gray);
  line-height: 1.65;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 20px;
  border: 1px solid rgba(0, 80, 204, .08);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--grad);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
}

.team-card h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}

.team-card p {
  font-size: .82rem;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 14px;
}

.team-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--gray);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, .1);
  text-decoration: none;
  font-size: .8rem;
  margin: 0 2px;
}

.team-socials a:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}