/* ============================================
   UniformesOR — Layout desde cero
   Hero split · Bandas · Strip industrias · Proceso en verde · Contacto split · Footer oscuro
   ============================================ */
:root {
  --or-bg: #fff;
  --or-ink: #0a0a0a;
  --or-muted: #525252;
  --or-border: rgba(0,0,0,.08);
  --or-green: #205100;
  --or-green-light: #50701e;
  --or-green-bg: rgba(32,81,0,.06);
  --or-ease: cubic-bezier(0.33, 1, 0.68, 1);
  --or-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --or-duration: 0.4s;
  --or-max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-or-reveal], .or-hero-anim { transition: none !important; }
}

body {
  margin: 0;
  font-family: "Quicksand", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--or-ink);
  background: var(--or-bg);
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 99999;
  padding: 10px 14px;
  background: var(--or-green);
  color: #fff;
  font-weight: 700;
  border-radius: 6px;
  transition: top 0.2s var(--or-ease);
}
.skip-link:focus { top: 12px; outline: 2px solid #fff; outline-offset: 2px; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute; height: 1px; width: 1px; overflow: hidden; }

.or-wrap {
  max-width: var(--or-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- Header: rehecho para desktop + móvil ----- */
.or-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 0 var(--or-border);
}
.or-header__inner {
  max-width: var(--or-max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: nowrap;
  min-height: 72px;
  box-sizing: border-box;
}
.or-header__logo {
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}
.or-header__logo-bg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  min-height: 64px;
  box-sizing: border-box;
}
.or-header .or-logo-img {
  height: 48px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}
.or-header__right {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
}
.or-header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
}
.or-header__nav-link {
  color: var(--or-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 6px 0;
  position: relative;
  transition: color var(--or-duration) var(--or-ease);
  white-space: nowrap;
}
.or-header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--or-green);
  transition: width var(--or-duration) var(--or-ease);
}
.or-header__nav-link:hover { color: var(--or-ink); }
.or-header__nav-link:hover::after { width: 100%; }
.or-header__nav-cta {
  display: none;
}
.or-header__nav-backdrop {
  display: none;
}
.or-header__nav-panel {
  display: flex;
  align-items: center;
  gap: 24px;
}
.or-header__nav-close {
  display: none;
}
.or-header__cta {
  padding: 12px 24px;
  background: var(--or-green);
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(32,81,0,.3);
  transition: transform var(--or-duration) var(--or-ease), box-shadow var(--or-duration) var(--or-ease);
  white-space: nowrap;
}
.or-header__cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(32,81,0,.4);
}
.or-header__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--or-ink);
  cursor: pointer;
  flex-shrink: 0;
}
.or-header__toggle:hover,
.or-header__toggle:focus-visible {
  background: var(--or-green-bg);
  color: var(--or-green);
  outline: none;
}
.or-header__toggle {
  position: relative;
}
.or-header__toggle-bar {
  position: absolute;
  left: 50%;
  margin-left: -11px;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform var(--or-duration) var(--or-ease), opacity var(--or-duration) var(--or-ease);
}
.or-header__toggle-bar:nth-child(1) { top: 50%; margin-top: -7px; }
.or-header__toggle-bar:nth-child(2) { top: 50%; margin-top: -1px; }
.or-header__toggle-bar:nth-child(3) { top: 50%; margin-top: 5px; }
.or-header.has-nav-open .or-header__toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.or-header.has-nav-open .or-header__toggle-bar:nth-child(2) {
  opacity: 0;
}
.or-header.has-nav-open .or-header__toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Logo en footer (se mantiene) */
.or-logo-img--footer {
  height: 56px;
  max-width: 280px;
}
.or-footer-logo-link {
  display: inline-block;
  margin-bottom: 1rem;
}
.or-footer-logo-link:hover .or-logo-img--footer { opacity: 0.9; }
.or-logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--or-green), var(--or-green-light));
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(32,81,0,.25);
}

/* Header móvil: solo logo + hamburger. Menú en panel. Un solo Cotizar dentro del panel. */
@media (max-width: 900px) {
  .or-header__inner { padding: 12px 20px; min-height: 64px; }
  .or-header__nav { display: none; }
  .or-header__cta { display: none; }
  .or-header__toggle { display: flex; position: relative; }
  .or-header__right {
    position: relative;
  }
  .or-header.has-nav-open .or-header__nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: #fff;
    padding: 80px 24px 24px;
    overflow-y: auto;
  }
  .or-header.has-nav-open .or-header__nav-backdrop {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    background: transparent;
    cursor: pointer;
  }
  .or-header.has-nav-open .or-header__nav-panel {
    position: relative;
    z-index: 1;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    max-width: 280px;
    width: 100%;
  }
  .or-header.has-nav-open .or-header__nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -56px;
    right: 0;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: var(--or-ink);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
  }
  .or-header.has-nav-open .or-header__nav-close:hover,
  .or-header.has-nav-open .or-header__nav-close:focus-visible {
    background: var(--or-green-bg);
    color: var(--or-green);
    outline: none;
  }
  .or-header__nav-link {
    display: block;
    width: 100%;
    max-width: 280px;
    padding: 16px 20px;
    font-size: 1.125rem;
    text-align: center;
    border-bottom: 1px solid var(--or-border);
  }
  .or-header__nav-link::after { display: none; }
  .or-header__nav-cta {
    display: block;
    width: 100%;
    max-width: 280px;
    margin-top: 24px;
    padding: 16px 24px;
    text-align: center;
    background: var(--or-green);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(32,81,0,.3);
  }
  .or-header__nav-cta:hover { color: #fff; background: var(--or-green-light); }
}

/* ========== HERO: split 50/50 + animación escalonada ----- */
.or-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
  align-items: center;
  gap: 48px;
  padding: 48px 24px 64px;
  max-width: var(--or-max);
  margin: 0 auto;
}
.or-hero-content { padding-right: 24px; }
.or-hero h1 {
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin: 0 0 0.45em;
}
.or-hero__title-lead {
  display: block;
  white-space: nowrap;
  font-size: clamp(2.25rem, 5.2vw, 3.25rem);
}
.or-hero__title-rest {
  display: block;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  max-width: 18ch;
}
.or-hero__sub {
  font-size: 1.125rem;
  color: var(--or-muted);
  max-width: 36ch;
  margin: 0 0 1.75rem;
  line-height: 1.6;
}
.or-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 1.5rem;
}
.or-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.or-badge {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--or-green);
  padding: 8px 14px;
  border-radius: 6px;
  background: var(--or-green-bg);
  transition: transform var(--or-duration) var(--or-ease), background var(--or-duration) var(--or-ease);
}
.or-badge:hover {
  background: rgba(32,81,0,.12);
  transform: translateY(-2px);
}
/* Bloque visual derecho: gradiente + forma */
.or-hero-visual {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.or-hero-blob {
  width: 95%;
  max-width: 540px;
  aspect-ratio: 1;
  border-radius: 32% 68% 65% 35% / 35% 32% 68% 65%;
  background: linear-gradient(145deg, rgba(32,81,0,.2) 0%, rgba(80,112,30,.12) 50%, rgba(32,81,0,.06) 100%);
  animation: or-blob 12s ease-in-out infinite;
}
@keyframes or-blob {
  0%, 100% { border-radius: 32% 68% 65% 35% / 35% 32% 68% 65%; transform: scale(1) rotate(0deg); }
  50% { border-radius: 68% 32% 35% 65% / 65% 68% 32% 35%; transform: scale(1.05) rotate(5deg); }
}
.or-hero-anim {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--or-ease-out), transform 0.8s var(--or-ease-out);
}
.or-hero-anim.is-in {
  opacity: 1;
  transform: translateY(0);
}
.or-hero-anim.delay-1 { transition-delay: 0.1s; }
.or-hero-anim.delay-2 { transition-delay: 0.2s; }
.or-hero-anim.delay-3 { transition-delay: 0.3s; }
.or-hero-anim.delay-4 { transition-delay: 0.4s; }
.or-hero-anim.delay-5 { transition-delay: 0.5s; }
.or-hero-anim.delay-6 { transition-delay: 0.6s; }
@media (max-width: 900px) {
  .or-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 40px 20px 56px;
  }
  .or-hero-visual { min-height: 320px; order: -1; }
  .or-hero-blob { max-width: 340px; }
  .or-hero__title-lead { white-space: normal; }
}
.or-hero-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 20px;
}

/* Hero: rectángulo con miniatura del vídeo y play encima; el blob verde queda debajo */
.or-hero-video-card {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 98%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.or-hero-video-thumb {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(32,81,0,.25) 0%, rgba(80,112,30,.15) 100%);
}
.or-hero-video-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.or-hero-video-card .or-hero-video-play {
  position: relative;
  z-index: 2;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: var(--or-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 10px 28px rgba(32, 81, 0, 0.35);
  transition: transform var(--or-duration) var(--or-ease), background var(--or-duration) var(--or-ease), box-shadow var(--or-duration) var(--or-ease);
}
.or-hero-video-card .or-hero-video-play:hover {
  background: var(--or-green-light);
  transform: scale(1.08);
  box-shadow: 0 14px 36px rgba(32, 81, 0, 0.4);
}
.or-hero-video-card .or-hero-video-play:focus {
  outline: 0;
  box-shadow: 0 0 0 3px var(--or-green-bg), 0 10px 28px rgba(32, 81, 0, 0.35);
}
.or-hero-video-play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 36px;
  border-color: transparent transparent transparent #fff;
  margin-left: 12px;
}
@media (max-width: 900px) {
  .or-hero-video-card {
    max-width: 520px;
  }
  .or-hero-video-card .or-hero-video-play {
    width: 96px;
    height: 96px;
  }
  .or-hero-video-play-icon {
    border-width: 16px 0 16px 28px;
    margin-left: 8px;
  }
}

/* Modal vídeo hero */
.or-video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--or-duration) var(--or-ease), visibility var(--or-duration) var(--or-ease);
}
.or-video-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.or-video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}
.or-video-modal-box {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
}
.or-video-modal-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  padding: 12px;
  z-index: 2;
}
.or-video-modal-close {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--or-duration) var(--or-ease);
}
.or-video-modal-close:hover {
  background: rgba(255, 255, 255, 0.35);
}
.or-video-modal-body {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.or-video-modal-player {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
@media (max-width: 640px) {
  .or-video-modal { padding: 12px; }
  .or-video-modal-box { max-height: 85vh; }
  .or-video-modal-body { aspect-ratio: 16 / 9; }
}

/* ----- Quiénes somos: 2 columnas (media izq | texto der). Vídeo centrado verticalmente ----- */
.or-about {
  width: 100%;
  padding: 80px 0;
  background: var(--or-bg);
  box-sizing: border-box;
}
.or-about__wrap {
  width: 100%;
  max-width: var(--or-max);
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
.or-about p:empty {
  display: none;
  margin: 0;
  padding: 0;
  height: 0;
  min-height: 0;
  overflow: hidden;
}
.or-about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
  min-width: 0;
}
.or-about__content { min-width: 0; }
.or-about__media {
  min-width: 0;
  width: 100%;
}
.or-about__media-inner {
  display: block;
  width: 100%;
}
.or-about__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  max-height: 420px;
  margin: 0;
}
.or-about__video { display: block; width: 100%; margin-top: 1.5rem; }
.or-about__media-inner > .or-about__video:first-child { margin-top: 0; }
.or-about__media-inner > .or-about__img + .or-about__video { margin-top: 1.5rem; }
.or-about__video-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.06);
}
.or-about__video-card--autoplay {
  width: 100%;
  max-width: none;
}
.or-about__video-thumb {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(32,81,0,.25) 0%, rgba(80,112,30,.15) 100%);
}
.or-about__video-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.or-about__video-card:not(.or-about__video-card--autoplay) .or-hero-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: var(--or-green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(32, 81, 0, 0.35);
  transition: transform var(--or-duration) var(--or-ease), background var(--or-duration) var(--or-ease), box-shadow var(--or-duration) var(--or-ease);
}
.or-about__video-card:not(.or-about__video-card--autoplay) .or-hero-video-play:hover {
  background: var(--or-green-light);
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 14px 36px rgba(32, 81, 0, 0.4);
}
.or-about__video-card:not(.or-about__video-card--autoplay) .or-hero-video-play:focus {
  outline: 0;
  box-shadow: 0 0 0 3px var(--or-green-bg), 0 10px 28px rgba(32, 81, 0, 0.35);
}
.or-about__video-card:not(.or-about__video-card--autoplay) .or-hero-video-play .or-hero-video-play-icon {
  border-width: 18px 0 18px 32px;
  margin-left: 10px;
}
.or-about .or-section-title { margin-top: 0; }
.or-about__lead { font-size: 1.125rem; color: var(--or-ink); margin: 0 0 1rem; line-height: 1.6; text-align: justify; }
.or-about__content p { margin: 0 0 1rem; color: var(--or-muted); line-height: 1.7; text-align: justify; }
.or-about__vision-mision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--or-border);
}
.or-about__vm h3 { font-size: 1rem; font-weight: 800; color: var(--or-green); margin: 0 0 0.5rem; }
.or-about__vm p { margin: 0; font-size: 0.9375rem; color: var(--or-muted); line-height: 1.6; text-align: justify; }

@media (min-width: 900px) {
  .or-about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: stretch;
  }
  .or-about__media {
    position: relative;
  }
  .or-about__media-inner {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    transform: translateY(-50%);
  }
}
@media (max-width: 768px) {
  .or-about__vision-mision { grid-template-columns: 1fr; }
}

/* ----- Estadísticas (PDF) ----- */
.or-stats {
  padding: 80px 0;
  background: var(--or-green-bg);
}
.or-stats p:empty,
.or-stats__grid > p:empty {
  display: none;
  margin: 0;
  padding: 0;
  height: 0;
  min-height: 0;
  overflow: hidden;
}
.or-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 2rem;
}
.or-stats__item {
  text-align: center;
  padding: 1.5rem 1rem;
}
.or-stats__value {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--or-green);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.or-stats__label {
  margin: 0;
  font-size: 0.875rem;
  color: var(--or-muted);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .or-stats__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .or-stats__grid { grid-template-columns: 1fr; }
}

/* ----- Nuestra fábrica (PDF) + imagen opcional ----- */
.or-factory {
  padding-top: 64px;
  padding-bottom: 64px;
}
.or-factory__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
.or-factory__grid > p:empty {
  display: none;
  margin: 0;
  padding: 0;
  height: 0;
  min-height: 0;
  overflow: hidden;
  grid-column: 1 / -1;
}
.or-factory__list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}
.or-factory__list li {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
  position: relative;
  color: var(--or-muted);
  line-height: 1.6;
}
.or-factory__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--or-green);
}
.or-factory__list strong { color: var(--or-ink); }
.or-factory__img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  max-height: 380px;
}
@media (min-width: 900px) {
  .or-factory__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .or-factory__media {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ----- Botones ----- */
.or-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: transform var(--or-duration) var(--or-ease), box-shadow var(--or-duration) var(--or-ease);
}
.or-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.12); }
.or-btn:focus-visible { outline: 2px solid var(--or-green-light); outline-offset: 3px; }
.or-btn--primary {
  background: linear-gradient(135deg, var(--or-green), var(--or-green-light));
  color: #fff;
  box-shadow: 0 6px 24px rgba(32,81,0,.3);
}
.or-btn--primary:hover { box-shadow: 0 12px 32px rgba(32,81,0,.4); }
.or-btn--ghost {
  background: transparent;
  color: var(--or-ink);
  border: 2px solid var(--or-border);
}
.or-btn--ghost:hover { border-color: var(--or-green); color: var(--or-green); box-shadow: none; }
.or-btn--white {
  background: #fff;
  color: var(--or-green);
}
.or-btn--white:hover { background: #f5f5f5; }

/* ----- Reveal ----- */
[data-or-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--or-ease-out), transform 0.7s var(--or-ease-out);
}
[data-or-reveal].is-in { opacity: 1; transform: translateY(0); }
[data-or-reveal="left"] { transform: translateX(-24px) translateY(0); }
[data-or-reveal="left"].is-in { transform: translateX(0); }
[data-or-reveal="right"] { transform: translateX(24px) translateY(0); }
[data-or-reveal="right"].is-in { transform: translateX(0); }

/* ----- Sección estándar ----- */
.or-section {
  padding: 80px 0;
}
.or-section-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.35em;
  line-height: 1.2;
}
.or-section-desc {
  color: var(--or-muted);
  font-size: 1.0625rem;
  margin: 0 0 2.5rem;
  max-width: 32em;
}

/* ========== INDUSTRIAS: strip horizontal con scroll-snap ----- */
.or-industries-wrap {
  padding: 48px 0 64px;
  border-top: 1px solid var(--or-border);
}
.or-industries-strip {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 0 24px;
  margin: 0 -24px;
  scrollbar-width: thin;
}
.or-industries-strip::-webkit-scrollbar { height: 8px; }
.or-industries-strip::-webkit-scrollbar-track { background: var(--or-green-bg); border-radius: 4px; }
.or-industries-strip::-webkit-scrollbar-thumb { background: var(--or-green); border-radius: 4px; }
.or-industry-tile {
  flex: 0 0 min(320px, 85vw);
  scroll-snap-align: start;
  padding: 28px 24px;
  background: var(--or-bg);
  border: 1px solid var(--or-border);
  border-radius: 20px;
  transition: transform var(--or-duration) var(--or-ease), box-shadow var(--or-duration) var(--or-ease), border-color var(--or-duration) var(--or-ease);
}
.or-industry-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(32,81,0,.12);
  border-color: rgba(32,81,0,.2);
}
.or-industry-tile .or-industry-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--or-green);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: .9;
}
.or-industry-tile .or-industry-name {
  font-weight: 800;
  font-size: 1.15rem;
  margin: 0 0 0.4em;
}
.or-industry-tile .or-industry-desc {
  color: var(--or-muted);
  font-size: 0.9375rem;
  margin: 0 0 1rem;
  line-height: 1.5;
}
.or-industry-tile .or-industry-link {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--or-green);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--or-duration) var(--or-ease);
}
.or-industry-tile .or-industry-link:hover { gap: 12px; }

/* ========== BANDA OSCURA (Proceso) ----- */
.or-band--dark {
  background: linear-gradient(160deg, var(--or-green) 0%, #1a4500 100%);
  color: #fff;
  padding: 80px 0;
  margin: 0;
}
.or-band--dark .or-section-title { color: #fff; }
.or-band--dark .or-section-desc { color: rgba(255,255,255,.8); }
.or-process-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 2rem;
  position: relative;
}
.or-process-row::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: rgba(255,255,255,.25);
  z-index: 0;
}
.or-process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.or-process-step .or-process-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,.4);
}
.or-process-step .or-process-title {
  font-size: 1rem;
  margin: 0 0 0.35em;
  color: #fff;
}
.or-process-step p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .or-process-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .or-process-row::before { display: none; }
}

/* Certificaciones: dos columnas equilibradas ----- */
.or-cert {
  padding: 56px 0 48px;
  background: var(--or-green-bg);
}
.or-cert p:empty,
.or-cert__grid > p:empty {
  display: none;
  margin: 0;
  padding: 0;
  height: 0;
  min-height: 0;
  overflow: hidden;
}
.or-cert__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px 64px;
  align-items: center;
}
.or-cert__content .or-section-title { margin-bottom: 0.25em; }
.or-cert__content .or-section-desc { margin-bottom: 1.25rem; }
.or-cert__lead {
  margin: 0 0 1rem;
  color: var(--or-ink);
  font-size: 1rem;
  line-height: 1.7;
}
.or-cert__disclaimer {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--or-muted);
  font-style: italic;
}
.or-cert__aside {
  padding: 0;
}
.or-cert__cta-text {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--or-muted);
  line-height: 1.5;
}
.or-cert__aside .or-btn { width: 100%; justify-content: center; }
.or-cert__aside-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .or-cert__grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* Personalización: contenido a ancho completo ----- */
.or-personalization {
  padding: 80px 0;
}
.or-personalization__inner {
  width: 100%;
  max-width: 100%;
}
.or-personalization__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 56px;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}
.or-personalization__col { padding: 0; }
.or-personalization__col--prendas {
  padding-left: 24px;
  border-left: 3px solid var(--or-green);
}
.or-personalization__col--diseno {
  padding-left: 24px;
  border-left: 3px solid var(--or-green-light);
}
.or-personalization__col-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--or-ink);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}
.or-personalization__list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--or-muted);
  line-height: 1.9;
  font-size: 0.9375rem;
}
.or-personalization__cta {
  text-align: center;
}
.or-personalization__cta .or-btn {
  min-width: 280px;
  justify-content: center;
}
@media (max-width: 768px) {
  .or-personalization__grid { grid-template-columns: 1fr; gap: 2rem; }
  .or-personalization__col--prendas,
  .or-personalization__col--diseno { padding-left: 20px; }
  .or-personalization__cta .or-btn { min-width: 100%; }
}

/* ----- Empresas que confiaron (logos / imagen) ----- */
@-webkit-keyframes or-flip-out {
  from { opacity: 0.85; -webkit-transform: translateY(0);    transform: translateY(0); }
  to   { opacity: 0;    -webkit-transform: translateY(-50%); transform: translateY(-50%); }
}
@keyframes or-flip-out {
  from { opacity: 0.85; transform: translateY(0); }
  to   { opacity: 0;    transform: translateY(-50%); }
}
@-webkit-keyframes or-flip-in {
  from { opacity: 0;    -webkit-transform: translateY(50%); transform: translateY(50%); }
  to   { opacity: 0.85; -webkit-transform: translateY(0);   transform: translateY(0); }
}
@keyframes or-flip-in {
  from { opacity: 0;    transform: translateY(50%); }
  to   { opacity: 0.85; transform: translateY(0); }
}
.or-clients {
  padding: 80px 0;
  background: var(--or-green-bg);
}
.or-clients__banner-wrap { margin-top: 1.5rem; }
.or-clients__banner-wrap img,
.or-clients .or-clients__banner {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}
.or-clients__logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  align-items: center;
  justify-items: center;
  margin-top: 2rem;
}
.or-clients__slot {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Safari fix: clip-path no se ve afectado por el bug de filter+overflow:hidden */
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
  /* filter en el contenedor, no en la imagen, para evitar que Safari rompa el recorte */
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  -webkit-transition: -webkit-filter var(--or-duration) var(--or-ease), filter var(--or-duration) var(--or-ease);
  transition: filter var(--or-duration) var(--or-ease);
}
.or-clients__slot:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}
.or-clients__slot img {
  max-width: 90%;
  max-height: 170px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
}
.or-clients__slot img.is-leaving {
  -webkit-animation: or-flip-out 0.35s var(--or-ease) forwards;
  animation: or-flip-out 0.35s var(--or-ease) forwards;
}
.or-clients__slot img.is-entering {
  -webkit-animation: or-flip-in 0.35s var(--or-ease) forwards;
  animation: or-flip-in 0.35s var(--or-ease) forwards;
}
@media (max-width: 900px) {
  .or-clients__logos {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem 1rem;
  }
  .or-clients__slot { height: 160px; }
  .or-clients__slot img { max-height: 136px; }
}
@media (max-width: 560px) {
  .or-clients__logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 0.5rem;
  }
  .or-clients__slot { height: 140px; }
  .or-clients__slot img { max-height: 120px; }
  /* Solo 6 slots visibles (3 filas × 2 cols) */
  .or-clients__slot:nth-child(n+7) { display: none; }
}

/* Casos: dos columnas ----- */
.or-cases-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.or-case-block {
  padding-left: 20px;
  border-left: 4px solid var(--or-green);
}
.or-case-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--or-green);
  font-weight: 800;
  margin-bottom: 0.4em;
}
.or-case-block p { margin: 0 0 0.6rem; font-size: 0.9375rem; color: var(--or-muted); }
.or-case-block p:last-child { margin-bottom: 0; }
@media (max-width: 768px) { .or-cases-cols { grid-template-columns: 1fr; } }

/* FAQ ----- */
.or-faq-list { margin: 0; padding: 0; list-style: none; }
.or-faq-item {
  border-bottom: 1px solid var(--or-border);
  transition: background 0.2s var(--or-ease);
}
.or-faq-item:hover { background: var(--or-green-bg); }
.or-faq-q {
  margin: 0;
  padding: 1.15rem 3rem 1.15rem 0;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  position: relative;
  transition: color 0.2s var(--or-ease);
}
.or-faq-q::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--or-green);
  transition: transform 0.35s var(--or-ease);
}
.or-faq-item.is-open .or-faq-q::after { transform: translateY(-50%) rotate(45deg); }
.or-faq-a {
  margin: 0;
  padding: 0 0 1.15rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--or-muted);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--or-ease-out);
}
.or-faq-item.is-open .or-faq-a { max-height: 220px; }

/* ========== CONTACTO: split form + panel verde ----- */
.or-contact-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.1);
}
.or-contact-form-wrap {
  padding: 40px 40px 48px;
  background: #fff;
}
.or-contact-form-wrap h3 { font-size: 1.1rem; font-weight: 800; margin: 0 0 1.25rem; }
.or-contact-panel {
  padding: 40px 36px;
  background: linear-gradient(160deg, var(--or-green) 0%, #1a4500 100%);
  color: #fff;
}
.or-contact-panel h3 { color: #fff; font-size: 1.1rem; margin: 0 0 1rem; }
.or-contact-panel p { margin: 0 0 0.6rem; font-size: 0.9375rem; color: rgba(255,255,255,.9); line-height: 1.5; }
.or-contact-panel .or-btn--white { margin-top: 1rem; }
.or-notice {
  padding: 1rem 1.25rem;
  background: var(--or-green-bg);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

/* Form ----- */
.or-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}
.or-form label { display: block; font-size: 0.8125rem; font-weight: 700; margin-bottom: 6px; color: var(--or-ink); }
.or-form input,
.or-form textarea {
  width: 100%;
  border: 2px solid var(--or-border);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--or-duration) var(--or-ease);
}
.or-form input:focus,
.or-form textarea:focus { border-color: var(--or-green); }
.or-form textarea { resize: vertical; min-height: 100px; }
.or-field--full { grid-column: 1 / -1; }
.or-required { color: var(--or-green); }

@media (max-width: 900px) {
  .or-contact-split { grid-template-columns: 1fr; }
  .or-contact-form-wrap, .or-contact-panel { padding: 32px 24px; }
}

/* ========== FOOTER: oscuro ----- */
.or-footer--dark {
  background: var(--or-green);
  color: #fff;
  padding: 72px 0 0;
  margin-top: 0;
}
.or-footer-grid {
  max-width: var(--or-max);
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}
.or-footer--dark .or-footer-brand { font-size: 1.25rem; font-weight: 800; color: #fff; margin: 0 0 0.5rem; }
.or-footer--dark .or-footer-tagline { font-size: 0.9375rem; color: rgba(255,255,255,.8); margin: 0; line-height: 1.5; }
.or-footer--dark h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.9);
  margin: 0 0 1rem;
}
.or-footer--dark a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s var(--or-ease);
}
.or-footer--dark a:hover { color: #fff; }
.or-footer--dark p { margin: 0 0 0.4rem; font-size: 0.9375rem; color: rgba(255,255,255,.85); }
.or-footer-bar {
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 28px 24px;
  text-align: center;
}
.or-footer-bar p { margin: 0; font-size: 0.8125rem; color: rgba(255,255,255,.7); }
@media (max-width: 768px) {
  .or-footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .or-section { padding: 56px 0; }
  .or-form-grid { grid-template-columns: 1fr; }
}
