/* ============================================================
   ITechPro — contacto.css
   Página de Contacto · Página Nosotros
   ============================================================ */

/* ── NOSOTROS: HERO ── */
.about-hero {
  padding: 110px 0 80px;
  position: relative;
  overflow: hidden;
}
.about-hero-orb-1 {
  position: absolute;
  width: 480px; height: 480px;
  top: -120px; right: -80px;
  border-radius: 50%;
  background: rgba(0,170,255,0.09);
  filter: blur(90px);
  pointer-events: none;
}
.about-hero-orb-2 {
  position: absolute;
  width: 320px; height: 320px;
  bottom: 0; left: -60px;
  border-radius: 50%;
  background: rgba(26,58,110,0.30);
  filter: blur(80px);
  pointer-events: none;
}
.about-hero .container { position: relative; z-index: 2; }
.about-hero-img {
  width: 100%; height: 360px;
  border-radius: var(--r2);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.about-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(0.75);
}
.about-hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 55%);
}

/* ── MISIÓN/VISIÓN/VALORES ── */
.mvv-card {
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 32px;
  transition: var(--trans);
  height: 100%;
}
.mvv-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
}
.mvv-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.mvv-card h4  { margin-bottom: 10px; font-size: 1rem; }
.mvv-card p   { font-size: 0.9rem; line-height: 1.65; }
.mvv-values-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.mvv-value-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.55;
}
.mvv-value-item::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ── EQUIPO ── */
.team-section { padding: var(--section-py) 0; }

/* ── DIFERENCIADORES NOSOTROS ── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.diff-item {
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: var(--trans-fast);
}
.diff-item:hover {
  border-color: var(--border2);
  background: var(--surf2);
}
.diff-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--cyan-dim);
  border: 1px solid rgba(0,170,255,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.diff-icon svg { width: 20px; height: 20px; color: var(--cyan); }
.diff-item h4 { margin-bottom: 5px; font-size: 0.95rem; }
.diff-item p  { font-size: 0.88rem; }

/* ── CONTACTO: LAYOUT ── */
.contact-page {
  padding: 110px 0 80px;
  position: relative;
}
.contact-orb-1 {
  position: absolute;
  width: 400px; height: 400px;
  top: -80px; right: 0;
  border-radius: 50%;
  background: rgba(0,170,255,0.08);
  filter: blur(80px);
  pointer-events: none;
}

/* Formulario principal */
.contact-form-card {
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 44px 40px;
}
.contact-form-card h2 { margin-bottom: 8px; }
.contact-form-card > p { margin-bottom: 32px; }

/* Panel lateral */
.contact-sidebar { padding-top: 8px; }
.contact-sidebar h4 {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 20px;
}
.contact-sidebar-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

/* ── LEGALES ── */
.legal-page {
  padding: 110px 0 80px;
}
.legal-content {
  max-width: 760px;
}
.legal-content h1 { margin-bottom: 8px; }
.legal-content .legal-date {
  font-size: 0.85rem;
  color: var(--text3);
  margin-bottom: 48px;
  display: block;
}
.legal-content h2 {
  font-size: 1.15rem;
  margin: 40px 0 12px;
  color: var(--text);
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p {
  font-size: 0.93rem;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-content ul {
  margin: 12px 0 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-content ul li {
  font-size: 0.93rem;
  color: var(--text2);
  line-height: 1.65;
  list-style: disc;
}
.legal-content a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .about-hero { padding: 100px 0 60px; }
  .about-hero-img { height: 240px; }
  .about-hero-img-overlay { background: linear-gradient(to bottom, var(--bg) 0%, transparent 40%); }
  .diff-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 20px; }
  .contact-page { padding: 100px 0 60px; }
  .legal-page { padding: 100px 0 60px; }
}
