/* ============================================================
   M'arte Studio — NOSOTRAS.CSS
   ============================================================ */

/* PAGE HERO */
.about-hero { min-height: 55vh; padding: 120px 40px 80px; }
.ph-orb--1 { width: 500px; height: 500px; background: var(--c5); right: -100px; top: -100px; opacity: 0.12; }
.ph-orb--2 { width: 400px; height: 400px; background: var(--c3); left: -80px; bottom: -80px; opacity: 0.1; }

.ah-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.ah-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(255,32,121,0.1);
}

/* MANIFESTO */
.manifesto {
  background: linear-gradient(135deg, rgba(68,11,212,0.05), rgba(255,32,121,0.05));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  margin: 40px 0;
}
.mf-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}
.mf-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  position: relative;
  padding-left: 24px;
}
.mf-text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--c5), var(--c4));
  border-radius: 3px;
}
.mf-quote-author {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mf-quote-author span { font-family: var(--font-display); font-weight: 700; color: var(--c5); }
.mf-role { font-size: 0.85rem; color: rgba(255,255,255,0.4); font-weight: 400 !important; }

/* VALORES */
.valor-card { text-align: center; }
.valor-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,32,121,0.15), rgba(211,59,255,0.1));
  border: 1px solid rgba(255,32,121,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--c5);
  margin: 0 auto 20px;
  transition: var(--transition);
}
.valor-card:hover .valor-icon {
  background: linear-gradient(135deg, var(--c5), var(--c4));
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 25px rgba(255,32,121,0.5);
}
.valor-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--white);
}
.valor-card p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* PROCESO TIMELINE */
.proceso-about {
  background: linear-gradient(180deg, var(--c1), rgba(13,16,69,0.3), var(--c1));
  padding: 80px 0;
}

.proc-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.proc-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--c5), var(--c4), transparent);
}

.pt-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px 0 32px 0;
  position: relative;
}
.pt-marker {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c5), var(--c4));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(255,32,121,0.4);
  position: relative;
  z-index: 1;
}
.pt-marker span {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
}
.pt-content { flex: 1; padding-top: 8px; }
.pt-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--white);
}
.pt-content h3 i { color: var(--c5); margin-left: 6px; }
.pt-content p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* CTA */
.about-cta {
  padding: 80px 0 100px;
  position: relative;
}
.about-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,32,121,0.07), transparent 70%);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .ah-inner { grid-template-columns: 1fr; gap: 40px; }
  .ah-img { display: none; }
  .mf-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-hero { padding: 120px 24px 60px; }
}