/* ===========================
   CONFLEX — Corporate Clean
   =========================== */

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

:root {
  --white:    #ffffff;
  --off:      #f6f6f4;
  --border:   #e6e5e0;
  --text:     #1a1a18;
  --text-2:   #54534e;
  --text-3:   #9c9b95;
  --orange:   #e85c1a;
  --orange-2: #c44a10;
  --navy:     #0d1f3c;
  --r:        10px;
  --r-lg:     16px;
  --sh:       0 1px 3px rgba(0,0,0,.05), 0 8px 24px rgba(0,0,0,.06);
  --sh-lg:    0 4px 12px rgba(0,0,0,.07), 0 24px 64px rgba(0,0,0,.10);
  --ease:     cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Sora', sans-serif; line-height: 1.15; letter-spacing: -0.02em; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.section    { padding: 96px 0; }
.bg-off     { background: var(--off); }

/* ===========================
   REVEAL
   =========================== */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
  transition-delay: var(--d, 0s);
}
.fade-left {
  opacity: 0; transform: translateX(-32px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.fade-right {
  opacity: 0; transform: translateX(32px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.fade-3d {
  opacity: 0;
  transform: perspective(700px) rotateX(14deg) translateY(24px);
  transition: opacity .6s var(--ease), transform .7s cubic-bezier(.16,1,.3,1);
  transition-delay: var(--d, 0s);
}
.in { opacity: 1 !important; transform: none !important; }

/* ===========================
   TYPOGRAPHY
   =========================== */
.eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.eyebrow::before { content: ''; display: block; width: 18px; height: 1.5px; background: var(--orange); flex-shrink: 0; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }
.eyebrow.center::after  { content: ''; display: block; width: 18px; height: 1.5px; background: var(--orange); flex-shrink: 0; }

h2       { font-size: clamp(26px, 3.2vw, 40px); color: var(--text); margin-bottom: 20px; }
h2.center { text-align: center; }
.body    { font-size: 15.5px; color: var(--text-2); line-height: 1.75; margin-bottom: 14px; max-width: 500px; }
.sec-head { text-align: center; margin-bottom: 52px; }

/* ===========================
   BUTTONS
   =========================== */
.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--r);
  font-size: 14px; font-weight: 600; cursor: pointer; border: none;
  font-family: 'Inter', sans-serif; transition: all .22s var(--ease);
  white-space: nowrap;
}
.btn-primary  { background: var(--orange); color: #fff; }
.btn-primary:hover  { background: var(--orange-2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,92,26,.3); }
.btn-secondary { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-secondary:hover { border-color: var(--text); }
.full { width: 100%; justify-content: center; }

/* ===========================
   NAV — two-row, always white
   =========================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #fff;
  box-shadow: 0 1px 0 var(--border);
}
.nav.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,.08); }

/* Row 1 */
.nav-top { border-bottom: 1px solid var(--border); }
.nav-top-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; gap: 20px; height: 96px;
  width: 100%;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 80px; width: auto; object-fit: contain; }

.nav-search {
  flex: 1;
  display: flex; align-items: center;
  border: 1.5px solid var(--border); border-radius: 9px; overflow: hidden;
  transition: border-color .2s;
}
.nav-search:focus-within { border-color: var(--orange); }
.nav-search-input {
  flex: 1; padding: 10px 16px; border: none; outline: none;
  font-size: 14px; color: var(--text); font-family: 'Inter', sans-serif;
  background: transparent;
}
.nav-search-input::placeholder { color: var(--text-3); }
.nav-search-btn {
  padding: 0 16px; height: 100%; border: none; cursor: pointer;
  background: var(--orange); color: #fff; display: flex; align-items: center;
  transition: background .2s;
}
.nav-search-btn:hover { background: var(--orange-2); }

.nav-cta {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 22px; background: var(--orange); color: #fff !important;
  border-radius: 9px; font-size: 14px; font-weight: 600;
  white-space: nowrap; transition: background .2s, transform .15s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--orange-2); transform: translateY(-1px); }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto; flex-shrink: 0;
}
.burger span { display: block; width: 21px; height: 1.8px; background: var(--text); border-radius: 2px; }

/* Row 2 */
.nav-bottom { background: #fff; }
.nav-bottom-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: center;
}
.nav-links { display: flex; align-items: center; }
.nav-link {
  font-size: 13.5px; font-weight: 600; color: var(--text-2);
  padding: 18px 24px; display: block;
  border-bottom: 2.5px solid transparent;
  text-transform: uppercase; letter-spacing: .07em;
  transition: color .15s, border-color .15s;
}
.nav-link:hover { color: var(--text); }
.nav-link.active { color: var(--orange); border-bottom-color: var(--orange); }

.partner-logo-img {
  max-width: 140px; height: auto; object-fit: contain;
  filter: brightness(0) invert(1); opacity: .85;
}

/* Mobile drawer */
.nav-drawer {
  display: none; flex-direction: column; gap: 2px;
  background: #fff; border-bottom: 1px solid var(--border); padding: 12px 32px 18px;
}
.nav-drawer a { padding: 10px 12px; font-size: 15px; color: var(--text-2); border-radius: 8px; transition: .2s; }
.nav-drawer a:hover { color: var(--text); background: var(--off); }
.nav-drawer.open { display: flex; }

/* ===========================
   HERO — navy + animación SVG
   =========================== */
.hero {
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 180px 0 80px;
}
.hero-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 32px;
  width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
}

.hero-label {
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 24px;
  display: flex; align-items: center; gap: 8px;
}
.hero-label::before { content: ''; display: block; width: 16px; height: 1px; background: rgba(255,255,255,.25); }

.hero h1 { font-size: clamp(34px, 5vw, 62px); color: #fff; margin-bottom: 22px; font-weight: 700; }
.hero h1 span {
  background: linear-gradient(135deg, #ffb08a, #e85c1a);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc { font-size: 16px; color: rgba(255,255,255,.5); line-height: 1.8; margin-bottom: 36px; max-width: 440px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-btns .btn-secondary { color: rgba(255,255,255,.65); border-color: rgba(255,255,255,.2); }
.hero-btns .btn-secondary:hover { color: #fff; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.05); }

/* ===========================
   HERO VISUAL — SVG animation
   =========================== */
.hero-visual {
  position: relative;
  height: 100%;
  min-height: 420px;
  align-self: stretch;
}
.hero-img-wrap {
  position: relative;
  height: 100%;
  min-height: 420px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}
.pv-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.pv-caption {
  position: absolute; bottom: 12px; left: 0; right: 0;
  text-align: center; font-size: 10px; font-family: 'Inter', sans-serif;
  color: rgba(255,255,255,.2); letter-spacing: .03em; pointer-events: none;
  padding: 0 16px;
}

/* Cards flotantes */
.hcard {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px; padding: 12px 16px;
  animation: hcard-enter .7s var(--ease) both; z-index: 3;
}
.hcard-1 { top: 24px; right: 24px; animation-delay: 1.9s; }
.hcard-2 { bottom: 24px; left: 24px; animation-delay: 2.1s; }
@keyframes hcard-enter {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hcard:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); transition: all .2s; }
.hcard-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(255,255,255,.15); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.hcard-icon svg { width: 18px; height: 18px; }
.hcard-icon-orange { background: var(--orange); }
.hcard strong { font-size: 13px; font-weight: 700; color: #fff; display: block; }
.hcard span   { font-size: 11px; color: rgba(255,255,255,.55); display: block; margin-top: 1px; }

/* ===========================
   STATS BAR
   =========================== */
.stats-bar {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.stats-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
}
.stat { text-align: center; padding: 8px 16px; }
.stat strong { font-family: 'Sora', sans-serif; font-size: 36px; font-weight: 700; color: var(--text); }
.count-sfx   { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 600; color: var(--orange); }
.stat p      { font-size: 13px; color: var(--text-3); margin-top: 4px; }
.stat-div    { width: 1px; height: 40px; background: var(--border); }

/* ===========================
   NOSOTROS
   =========================== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.check-list { display: flex; flex-direction: column; gap: 11px; margin-top: 24px; }
.check-list li { font-size: 14.5px; color: var(--text-2); display: flex; align-items: center; gap: 10px; }
.check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; background: #fdf0e8;
  border-radius: 50%; color: var(--orange); font-size: 11px; font-weight: 700; flex-shrink: 0;
}

.nos-cards { display: flex; flex-direction: column; gap: 14px; padding-top: 8px; }
.nos-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px 22px;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.nos-card:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); border-color: transparent; }
.nos-card-alt { background: var(--off); }
.nos-num { font-size: 11px; font-weight: 700; letter-spacing: .1em; color: var(--text-3); margin-bottom: 10px; }
.nos-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; font-family: 'Inter', sans-serif; }
.nos-card p  { font-size: 13.5px; color: var(--text-3); line-height: 1.6; }

/* fotos en nosotros */
.nos-photos { display: flex; flex-direction: column; gap: 12px; }
.nos-photo-wrap { border-radius: var(--r-lg); overflow: hidden; flex: 1; }
.nos-photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nos-photo-wrap:first-child { flex: 1.4; min-height: 260px; }
.nos-photo-sm { min-height: 160px; }

/* ===========================
   PRODUCTOS
   =========================== */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.prod {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 26px 22px;
  display: flex; flex-direction: column; gap: 12px;
  transition: box-shadow .25s var(--ease), transform .3s cubic-bezier(.16,1,.3,1), border-color .25s;
  position: relative; overflow: hidden;
}
.prod:hover { box-shadow: var(--sh-lg); transform: translateY(-5px); border-color: transparent; }
.prod-hl { background: var(--text); border-color: var(--text); }
.prod-hl:hover { background: #2d2d29; }

.prod-tag {
  position: absolute; top: 14px; right: 14px;
  font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: #fff; background: var(--orange); padding: 3px 10px; border-radius: 100px;
}
.prod-ico {
  width: 44px; height: 44px; background: var(--off); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center; color: var(--orange);
}
.prod-hl .prod-ico { background: rgba(255,255,255,.08); color: #ffb08a; }
.prod-ico svg { width: 22px; height: 22px; }
.prod h3 { font-size: 16px; font-weight: 700; font-family: 'Sora', sans-serif; }
.prod-hl h3 { color: #fff; }
.prod p { font-size: 13.5px; color: var(--text-2); line-height: 1.65; }
.prod-hl p { color: rgba(255,255,255,.45); }
.prod ul { display: flex; flex-direction: column; gap: 5px; border-top: 1px solid var(--border); padding-top: 12px; margin-top: 2px; }
.prod-hl ul { border-color: rgba(255,255,255,.1); }
.prod li { font-size: 12.5px; color: var(--text-3); padding-left: 12px; position: relative; }
.prod li::before { content: ''; position: absolute; left: 0; top: 6px; width: 4px; height: 4px; border-radius: 50%; background: var(--orange); }
.prod-hl li { color: rgba(255,255,255,.35); }
.prod-hl li::before { background: #ffb08a; }
.prod a { font-size: 13px; font-weight: 600; color: var(--orange); margin-top: auto; transition: letter-spacing .2s; }
.prod-hl a { color: #ffb08a; }
.prod a:hover { letter-spacing: .03em; }

/* ===========================
   INDUSTRIAS
   =========================== */
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ind {
  border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px 22px;
  transition: box-shadow .25s var(--ease), transform .3s cubic-bezier(.16,1,.3,1), border-color .25s;
  position: relative; overflow: hidden;
}
.ind::after {
  content: ''; position: absolute; left: 0; bottom: 0; right: 0; height: 2px;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.ind:hover { box-shadow: var(--sh); transform: translateY(-3px); border-color: transparent; }
.ind:hover::after { transform: scaleX(1); }
.ind-n  { font-size: 11px; font-weight: 600; letter-spacing: .1em; color: var(--text-3); margin-bottom: 12px; display: block; }
.ind h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; font-family: 'Sora', sans-serif; }
.ind p  { font-size: 13.5px; color: var(--text-2); line-height: 1.65; }

/* ===========================
   PARTNER
   =========================== */
.partner-section { background: var(--white); }
.partner-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
  background: var(--navy); border-radius: 24px; padding: 64px 60px;
}
.partner-left .eyebrow { color: rgba(255,255,255,.4); }
.partner-left .eyebrow::before { background: rgba(255,255,255,.25); }
.partner-left h2 { color: #fff; }
.partner-left h2 strong { color: #ffb08a; font-weight: 700; }
.partner-left .body { color: rgba(255,255,255,.5); max-width: 100%; }
.partner-items { display: flex; flex-direction: column; gap: 10px; margin: 22px 0 32px; }
.pi { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: rgba(255,255,255,.7); }
.pi-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.partner-left .btn-primary { background: #fff; color: var(--text); }
.partner-left .btn-primary:hover { background: var(--off); box-shadow: 0 6px 20px rgba(0,0,0,.18); }

.partner-right { display: flex; justify-content: center; }
.partner-badge {
  position: relative; width: 200px; height: 200px;
  display: flex; align-items: center; justify-content: center;
}
.pb-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  animation: pb-spin 20s linear infinite;
}
.pb-ring::before {
  content: '';
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: var(--orange); top: -5px; left: 50%; margin-left: -5px;
  box-shadow: 0 0 10px rgba(232,92,26,.8);
}
@keyframes pb-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.pb-inner { text-align: center; z-index: 1; }
.pb-small { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 6px; }
.pb-brand { font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 700; color: #fff; }
.pb-sub   { font-size: 13px; color: rgba(255,255,255,.3); margin-top: 4px; }

/* ===========================
   CONTACTO
   =========================== */
.contacto-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
.c-info .body { margin-bottom: 28px; }
.c-links { display: flex; flex-direction: column; gap: 12px; }
.c-link {
  display: flex; align-items: center; gap: 12px;
  font-size: 14.5px; color: var(--text-2);
  padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--r); transition: .2s;
}
.c-link svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; }
.c-link:hover { border-color: var(--text); color: var(--text); background: var(--off); }

.c-form {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px;
  box-shadow: var(--sh);
  display: flex; flex-direction: column; gap: 16px;
}
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-f { display: flex; flex-direction: column; gap: 6px; }
.cf-f label { font-size: 13px; font-weight: 600; color: var(--text-2); }
.cf-f input, .cf-f textarea {
  background: var(--off); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 10px 14px;
  font-size: 14px; color: var(--text); font-family: 'Inter', sans-serif;
  transition: .2s; resize: vertical; outline: none;
}
.cf-f input::placeholder, .cf-f textarea::placeholder { color: var(--text-3); }
.cf-f input:focus, .cf-f textarea:focus {
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(232,92,26,.07);
}
.form-ok {
  text-align: center; padding: 13px;
  background: #edf7f2; border: 1px solid #bce0cf;
  border-radius: var(--r); font-size: 14px; color: #1a6640; font-weight: 500;
}

/* ===========================
   EQUIPO / FOTOS
   =========================== */
.team-photos {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 12px;
}
.team-photo-wrap {
  border-radius: var(--r-lg); overflow: hidden; position: relative; background: var(--border);
}
.team-photo-wrap img {
  width: 100%; height: 340px; object-fit: cover; display: block;
  transition: transform .5s var(--ease);
}
.team-photo-wrap:hover img { transform: scale(1.03); }
.photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 18px;
  background: linear-gradient(to top, rgba(0,0,0,.55), transparent);
  color: rgba(255,255,255,.85); font-size: 13px; font-weight: 500;
}

/* ===========================
   VIDEO
   =========================== */
.video-section { background: var(--navy); }
.video-section .eyebrow { color: rgba(255,255,255,.4); }
.video-section .eyebrow::before { background: rgba(255,255,255,.3); }
.video-section h2 { color: #fff; }
.video-section .body { color: rgba(255,255,255,.5); }

.video-wrap {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: center;
}
/* video player */
.video-player {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.45); aspect-ratio: 16/9;
}
.vp-thumb {
  position: absolute; inset: 0; cursor: pointer;
}
.vp-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s var(--ease), filter .4s; filter: brightness(.82);
}
.vp-thumb:hover img { transform: scale(1.03); filter: brightness(.65); }
.vp-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform .25s var(--ease);
  pointer-events: none;
}
.vp-play svg { width: 80px; height: 80px; }
.vp-thumb:hover .vp-play { transform: translate(-50%, -50%) scale(1.08); }
.vp-label {
  position: absolute; bottom: 16px; right: 16px;
  background: rgba(0,0,0,.55); color: #fff;
  font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 100px;
  backdrop-filter: blur(4px); pointer-events: none;
}
.vp-iframe {
  position: absolute; inset: 0;
}
.vp-iframe iframe {
  width: 100%; height: 100%; border: none; display: block;
}

/* ===========================
   CLIENTES
   =========================== */
.logos-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
}
.logo-item {
  background: var(--white); padding: 24px 20px;
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.logo-item:hover { background: var(--off); }
.logo-item img {
  max-height: 52px; max-width: 140px; width: auto; height: auto;
  object-fit: contain; filter: grayscale(1); opacity: .6;
  transition: filter .25s, opacity .25s;
}
.logo-item:hover img { filter: grayscale(0); opacity: 1; }

/* ===========================
   CERTIFICACIONES
   =========================== */
.certs-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.certs-logos { display: flex; gap: 24px; }
.cert-item {
  flex: 1; background: var(--off); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px 24px; text-align: center;
  display: flex; flex-direction: column; gap: 14px; align-items: center;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s;
}
.cert-item:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); border-color: transparent; }
.cert-ico { width: 140px; height: 64px; display: flex; align-items: center; justify-content: center; }
.cert-ico img { max-width: 140px; max-height: 64px; width: auto; height: auto; object-fit: contain; }
.cert-item strong { font-size: 18px; font-family: 'Sora', sans-serif; font-weight: 700; color: #1e40af; }
.cert-item p { font-size: 13px; color: var(--text-3); font-weight: 500; }

/* ===========================
   FOOTER
   =========================== */
.footer { background: var(--off); border-top: 1px solid var(--border); padding: 60px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 2fr; gap: 64px; margin-bottom: 48px; }
.footer-top > div:first-child .logo { margin-bottom: 14px; pointer-events: none; }
.footer-top > div:first-child p { font-size: 13.5px; color: var(--text-3); line-height: 1.7; max-width: 240px; margin-top: 8px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-cols > div { display: flex; flex-direction: column; gap: 8px; }
.footer-cols h4 { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text); margin-bottom: 4px; }
.footer-cols a, .footer-cols span { font-size: 13.5px; color: var(--text-3); transition: .15s; }
.footer-cols a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 22px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 6px;
}
.footer-bottom p { font-size: 12.5px; color: var(--text-3); }
.footer-bottom strong { color: var(--orange); font-weight: 600; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .logos-grid { grid-template-columns: repeat(3, 1fr); }
  .video-wrap { grid-template-columns: 1fr; gap: 36px; }
  .certs-wrap { grid-template-columns: 1fr; gap: 40px; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-wrap { grid-template-columns: 1fr; padding: 44px 36px; gap: 40px; }
  .partner-right { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .nos-cards { display: none; }
  .contacto-wrap { grid-template-columns: 1fr; gap: 40px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-div { display: none; }
  .stat { border-bottom: 1px solid var(--border); }
  .nav-bottom { display: none; }
  .nav-search { display: none; }
  .nav-cta { display: none; }
  .burger { display: flex; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .team-photos { grid-template-columns: 1fr; }
  .logos-grid { grid-template-columns: repeat(2, 1fr); }
  .certs-logos { flex-direction: column; }
  .video-wrap { gap: 28px; }
  .prod-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .c-form { padding: 22px 16px; }
  .cf-row { grid-template-columns: 1fr; }
}

/* ===========================
   PAGE HEADER (subpáginas)
   =========================== */
.page-header {
  background: var(--navy);
  padding: 180px 0 60px;
  text-align: center;
}
.page-header .eyebrow {
  color: rgba(255,255,255,.5);
  justify-content: center;
}
.page-header .eyebrow::before { display: none; }
.page-header .eyebrow::after { content: ''; display: block; width: 18px; height: 1.5px; background: var(--orange); flex-shrink: 0; }
.page-header h1 { color: #fff; font-size: clamp(30px, 4.5vw, 52px); margin-bottom: 0; }

/* CTA section */
.section-cta { text-align: center; padding: 56px 0; border-top: 1px solid var(--border); margin-top: 48px; }
.section-cta p { font-size: 18px; color: var(--text-2); margin-bottom: 24px; }

/* ===========================
   EXPLORE GRID (home)
   =========================== */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.explore-card {
  display: flex; flex-direction: column;
  padding: 28px 22px; border-radius: var(--r-lg);
  border: 1.5px solid var(--border);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s, transform .2s;
  color: inherit;
}
.explore-card:hover {
  border-color: var(--orange);
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
}
.explore-card-cta { background: var(--navy); border-color: var(--navy); }
.explore-card-cta h3, .explore-card-cta p, .explore-card-cta .explore-link { color: #fff; }
.explore-card-cta .explore-ico { color: rgba(255,255,255,.7); }
.explore-card-cta:hover { border-color: var(--orange); background: var(--navy); }

.explore-ico {
  width: 44px; height: 44px; margin-bottom: 16px;
  color: var(--orange);
}
.explore-ico svg { width: 100%; height: 100%; }
.explore-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; font-family: 'Inter', sans-serif; }
.explore-card p  { font-size: 13px; color: var(--text-3); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.explore-link { font-size: 12.5px; font-weight: 600; color: var(--orange); letter-spacing: .03em; }
.explore-card-cta .explore-link { color: rgba(255,255,255,.8); }

@media (max-width: 900px) {
  .explore-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===========================
   HOME — secciones de contenido
   =========================== */
.home-cta { text-align: center; padding: 88px 0; }
.home-cta .eyebrow { justify-content: center; }
.home-cta .eyebrow::before { display: none; }
.home-cta .eyebrow::after { content: ''; display: block; width: 18px; height: 1.5px; background: var(--orange); flex-shrink: 0; }
.home-cta h2 { color: #fff; margin-bottom: 16px; }
.home-cta p  { font-size: 17px; color: rgba(255,255,255,.55); margin-bottom: 36px; max-width: 460px; margin-left: auto; margin-right: auto; }
.btn-white { background: #fff; color: var(--navy); font-size: 15px; padding: 14px 32px; }
.btn-white:hover { background: rgba(255,255,255,.9); transform: translateY(-1px); }
.prod-cta-row { text-align: center; margin-top: 36px; }
.ind-cta-row  { text-align: center; margin-top: 36px; }
.home-fab-right { display: flex; flex-direction: column; justify-content: center; }
