/* ============================================
   ARES SEGURIDAD — Page Overrides & Utilities
   ============================================ */
@import 'design-system.css';
@import 'layout.css';
@import 'components.css';

/* === UTILITIES === */
.text-gold   { color: var(--color-gold); }
.text-muted  { color: var(--text-muted); }
.text-upper  { text-transform: uppercase; letter-spacing: 0.05em; }
.text-center { text-align: center; }
.mt-2  { margin-top: var(--space-2); }
.mt-4  { margin-top: var(--space-4); }
.mb-2  { margin-bottom: var(--space-2); }
.mb-4  { margin-bottom: var(--space-4); }

/* === EYEBROW TEXT === */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: var(--space-1);
}

/* === LEAD PARAGRAPH === */
.lead {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 640px;
}

/* === HIGHLIGHT BOX === */
.highlight-box {
  border-left: 3px solid var(--color-gold);
  padding: var(--space-3) var(--space-4);
  background: rgba(201,168,76,0.05);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* === GOLD LINE DIVIDER === */
hr.gold { border: none; border-top: 1px solid var(--border-subtle); margin: var(--space-4) 0; }

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* === SECTION: SOBRE NOSOTROS INLINE === */
.about-stat {
  text-align: center;
  padding: var(--space-3);
}
.about-stat__num {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  display: block;
}
.about-stat__label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* === RESPONSIVE HELPERS === */
@media (max-width: 768px) {
  .hide-mobile { display: none; }
  .lead { font-size: var(--text-base); }
}
@media (min-width: 769px) {
  .hide-desktop { display: none; }
}
