/* =============================================================
   VARIABLES · PG ELEVACIONES BRANDBOOK MIC-01
   ============================================================= */
:root {
  /* Primarios · Guía visual cliente */
  --orange:    #F57C00;
  --orange-h:  #D96900;
  --navy:      #000000;
  --ink:       #000000;

  /* Secundarios */
  --graphite:  #1F1F1F;

  /* Neutros (escala cálida del manual) */
  --paper:     #FAF8F3;
  --paper-warm:#F2EFE6;
  --concrete:  #E6E2D6;
  --rule:      #D9D4C7;
  --mute:      #6B6657;

  /* Aliases internos para compatibilidad */
  --yellow:    var(--orange);
  --yellow-h:  var(--orange-h);
  --blue:      #1A4A8A;
  --gray-bg:   var(--paper-warm);
  --border:    var(--rule);
  --white:     #ffffff;
  --text:      var(--ink);
  --text-muted:var(--mute);

  /* Esquinas rectas (sharp · manual 05.1) */
  --radius:    0;
  --shadow:    0 4px 24px rgba(0,0,0,.10);

  /* Tipografía */
  --font-display: 'Archivo', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
}

/* =============================================================
   BASE
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.1;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* =============================================================
   LAYOUT
   ============================================================= */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 780px;
}

.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-gray {
  background: var(--gray-bg);
}

/* =============================================================
   SECTION HEADER
   ============================================================= */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-header-light h2,
.section-header-light p {
  color: var(--white);
}

.section-tag {
  display: inline-block;
  background: rgba(245,124,0,.15);
  border: 1px solid rgba(245,124,0,.4);
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 0;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-header-light h2 {
  color: var(--white);
}

.section-header p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
}

.section-header-light p {
  color: rgba(255,255,255,.75);
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  text-align: center;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn .icon { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--yellow);
  color: var(--navy);
}
.btn-primary:hover { background: var(--yellow-h); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.9);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover { background: #1ebe5d; }

.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 16px 36px; font-size: 17px; }
.btn-block { width: 100%; justify-content: center; }

/* =============================================================
   ICONS
   ============================================================= */
.icon {
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.icon-service { width: 28px; height: 28px; }

/* =============================================================
   NAVBAR
   ============================================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0,0,0,.97);
  backdrop-filter: blur(8px);
  height: 72px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.navbar-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.navbar-links a {
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: 15px;
  transition: color .15s;
}
.navbar-links a:hover { color: var(--yellow); }

.btn-cta-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 0;
  flex-shrink: 0;
  transition: background .15s, transform .15s;
}
.btn-cta-nav:hover { background: var(--yellow-h); transform: translateY(-1px); }
.btn-cta-nav .icon { width: 16px; height: 16px; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger .icon { width: 24px; height: 24px; }
.ham-close { display: none; }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(0,0,0,.92) 0%,
    rgba(0,0,0,.65) 60%,
    rgba(0,0,0,.20) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-text {
  max-width: 600px;
}

.hero-tag {
  display: inline-block;
  background: rgba(245,124,0,.18);
  border: 1px solid rgba(245,124,0,.5);
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 0;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero-text > p {
  font-size: 18px;
  color: rgba(255,255,255,.85);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 28px;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.hero-stat span {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
}

/* =============================================================
   TRUST BAR
   ============================================================= */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.trust-inner {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.trust-item .icon {
  width: 16px;
  height: 16px;
  color: var(--yellow);
  stroke: var(--yellow);
}

/* =============================================================
   SERVICES
   ============================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
}

.service-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  background-color: var(--gray-bg);
}

.service-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-icon {
  width: 44px;
  height: 44px;
  background: rgba(245,124,0,.15);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--yellow);
}

.service-body h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-body > p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-list {
  margin-bottom: 24px;
  flex: 1;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}

.service-list li::before {
  content: '';
  display: inline-flex;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F57C00' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* =============================================================
   STEPS / CÓMO FUNCIONA
   ============================================================= */
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  padding: 0 16px;
}

.step-num {
  width: 52px;
  height: 52px;
  background: var(--orange);
  color: var(--ink);
  border-radius: 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: rgba(255,255,255,.70);
  line-height: 1.6;
}

.step-arrow {
  align-self: flex-start;
  padding-top: 14px;
  color: rgba(245,124,0,.5);
  flex-shrink: 0;
}
.step-arrow .icon { width: 24px; height: 24px; }

/* =============================================================
   POR QUÉ NOSOTROS
   ============================================================= */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-text .section-tag { margin-bottom: 12px; }

.why-text h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
}

.why-text > p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 36px;
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  width: 42px;
  height: 42px;
  background: rgba(245,124,0,.12);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  flex-shrink: 0;
}
.why-icon .icon { width: 20px; height: 20px; }

.why-item strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.why-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.why-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-card-big {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}

.why-card-big strong {
  display: block;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.why-card-big span {
  font-size: 16px;
  color: rgba(255,255,255,.75);
  margin-top: 6px;
  display: block;
}

.why-cards-small {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.why-card-sm {
  background: var(--gray-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.why-card-sm strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.why-card-sm span {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

/* =============================================================
   CTA SECTION
   ============================================================= */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 72px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.cta-text p {
  font-size: 17px;
  color: rgba(255,255,255,.75);
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* =============================================================
   FAQ
   ============================================================= */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.faq-item {
  background: var(--white);
  border-left: 4px solid var(--yellow);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  box-shadow: var(--shadow);
}

.faq-item h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================================
   CONTACTO
   ============================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(0,0,0,.06);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}
.contact-icon .icon { width: 20px; height: 20px; }
.contact-icon-wa { background: rgba(37,211,102,.12); color: #25D366; }

.contact-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-item a, .contact-item span {
  font-size: 15px;
  color: var(--text-muted);
}
.contact-item a:hover { color: var(--navy); }

/* CF7 form styles */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.contact-form-wrap .wpcf7 { width: 100%; }

.contact-form-wrap .wpcf7-form label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-form-wrap .wpcf7-form input[type="text"],
.contact-form-wrap .wpcf7-form input[type="email"],
.contact-form-wrap .wpcf7-form input[type="tel"],
.contact-form-wrap .wpcf7-form select,
.contact-form-wrap .wpcf7-form textarea {
  width: 100%;
  background: #fafbff;
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  transition: border-color .15s;
  margin-bottom: 16px;
}

.contact-form-wrap .wpcf7-form input:focus,
.contact-form-wrap .wpcf7-form select:focus,
.contact-form-wrap .wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
}

.contact-form-wrap .wpcf7-form textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-form-wrap .wpcf7-form p {
  margin-bottom: 16px;
}

.contact-form-wrap .wpcf7-form .wpcf7-submit,
.contact-form-wrap .wpcf7-form input[type="submit"] {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 0;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s, transform .15s;
}

.contact-form-wrap .wpcf7-form .wpcf7-submit:hover,
.contact-form-wrap .wpcf7-form input[type="submit"]:hover {
  background: var(--blue);
  transform: translateY(-1px);
}

.contact-form-wrap .wpcf7-form .form-legal {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
}
.contact-form-wrap .wpcf7-form .form-legal a {
  color: var(--navy);
  text-decoration: underline;
}

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding-top: 60px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 72px;
  width: auto;
  display: block;
}

.footer-brand > p {
  font-size: 14px;
  line-height: 1.65;
}

.footer-links h5,
.footer-contact h5 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .5px;
  margin-bottom: 16px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  transition: color .15s;
}
.footer-links a:hover { color: var(--yellow); }

.footer-contact p { margin-bottom: 10px; font-size: 14px; }
.footer-contact a { color: var(--yellow); transition: color .15s; }
.footer-contact a:hover { color: var(--yellow-h); }

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,.45);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255,255,255,.45);
  transition: color .15s;
}
.footer-legal a:hover { color: rgba(255,255,255,.8); }

/* =============================================================
   WHATSAPP FLOAT
   ============================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s ease, box-shadow .2s ease;
  color: var(--white);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}
.whatsapp-float .icon { width: 28px; height: 28px; }

/* =============================================================
   PAGE CONTENT (legal pages)
   ============================================================= */
.page-content {
  padding-top: 100px;
}

.entry-content h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 32px;
}

.entry-content h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin: 32px 0 12px;
}

.entry-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 24px 0 10px;
}

.entry-content p {
  font-size: 15px;
  line-height: 1.75;
  color: #374151;
  margin-bottom: 16px;
}

.entry-content ul, .entry-content ol {
  margin: 0 0 16px 20px;
}

.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }

.entry-content li {
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 8px;
}

.entry-content a { color: var(--blue); text-decoration: underline; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar-links,
  .btn-cta-nav { display: none; }

  .navbar-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(0,0,0,.98);
    padding: 20px 24px 28px;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .navbar-links.open + .btn-cta-nav {
    display: none;
  }

  .hamburger { display: flex; }
  .hamburger.active .ham-open { display: none; }
  .hamburger.active .ham-close { display: inline-flex; }

  .hero { min-height: 520px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 20px; }

  .section { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }

  .steps-grid {
    flex-direction: column;
    align-items: center;
  }
  .step { max-width: 100%; padding: 0; }
  .step-arrow {
    transform: rotate(90deg);
    padding: 0;
  }

  .faq-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-actions { justify-content: center; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .contact-form-wrap { padding: 24px 20px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .trust-inner { flex-direction: column; align-items: flex-start; }
}

/* =============================================================
   HAZARD STRIPES · MANUAL 05.1
   Cenefa diagonal 45°, naranja + negro
   ============================================================= */
.hazard-stripes {
  height: 18px;
  background-image: repeating-linear-gradient(
    -45deg,
    var(--orange) 0,
    var(--orange) 22px,
    var(--ink) 22px,
    var(--ink) 44px
  );
  width: 100%;
  display: block;
}

.hazard-stripes-sm {
  height: 10px;
}

.hazard-stripes-thick {
  height: 28px;
}

/* =============================================================
   MONO ACCENT (datos técnicos) · MANUAL 04.1
   ============================================================= */
.mono {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.mono-accent {
  font-family: var(--font-mono);
  color: var(--orange);
  font-size: 13px;
  letter-spacing: .04em;
}
