:root{
  --azul:#173166;
  --amarillo:#fed71e;

  --bg:#ffffff;
  --alt:#f5f7fa;
  --text:#0f172a;
  --muted:#475569;
  --line:#e7e9f1;

  --shadow: 0 18px 40px rgba(2,6,23,.06);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height:1.55;
}
a{ color:inherit; }
.container{ width:min(1140px, 92%); margin:0 auto; }
.muted{ color: var(--muted); }

/* ===== HEADER TRANSPARENTE ===== */
.header{
  position: fixed;
  top:0; left:0;
  width:100%;
  z-index:100;
  background: transparent;
  transition: background .25s ease, backdrop-filter .25s ease, border-color .25s ease;
}
.header.header--solid{
  background: rgba(23,49,102,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(254,215,30,.25);
}

.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 0;
  gap: 12px;
}

.logo{ display:flex; align-items:center; text-decoration:none; }
.logo__img{ height: 74px; width:auto; display:block; }

.menuBtn{
  display:none;
  background: transparent;
  border: 0;
  color: var(--amarillo);
  font-size: 28px;
  cursor:pointer;
  padding: 10px 12px;
  border-radius: 12px;
}
.menuBtn:hover{ background: rgba(255,255,255,.08); }

.nav{
  display:flex;
  gap:22px;
  align-items:center;
  flex-wrap:wrap;
}
.nav a{
  text-decoration:none;
  color: var(--amarillo);
  font-weight: 800;
  letter-spacing:.2px;
  padding: 10px 0;
}
.nav a:hover{
  text-decoration: underline;
  text-underline-offset: 6px;
}
.nav__cta{
  padding: 10px 16px !important;
  border-radius: 999px;
  border: 2px solid var(--amarillo);
}
.nav__cta:hover{
  background: var(--amarillo);
  color:#000 !important;
  text-decoration:none;
}

/* ===== HERO ===== */
.hero{
  position: relative;
  height: 62vh;
  min-height: 420px;
  max-height: 620px;
  overflow: hidden;
  color: #fff;
  padding-top: 92px; /* espacio header fixed */
}
.hero-bg{
  position:absolute;
  inset:0;
  z-index: 1;
}
.hero-bg__video{
  position:absolute;
  top:50%;
  left:50%;
  min-width:110%;
  min-height:110%;
  width:auto;
  height:auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.hero-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(120deg, rgba(23,49,102,.86), rgba(23,49,102,.55));
  z-index: 2;
}
.hero-content{
  position: relative;
  z-index: 3;
  height: 100%;
  max-width: 780px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
}
.hero h1{
  margin:0 0 14px;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.05;
  max-width: 22ch;
}
.hero p{
  margin:0;
  color: rgba(255,255,255,.88);
  font-size: 1.05rem;
  max-width: 60ch;
}
.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  margin-top: 18px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--amarillo);
  color:#000;
  font-weight: 950;
  text-decoration:none;
  border: none;
  cursor:pointer;
  box-shadow: 0 10px 25px rgba(254,215,30,.28);
}
.btn:hover{ filter:brightness(.96); }
.btn--ghost{
  background: transparent;
  color:#fff;
  border: 2px solid rgba(255,255,255,.35);
  box-shadow:none;
}

/* ===== SECTIONS ===== */
.section{ padding: 58px 0; background:#fff; }
.section--alt{ background: var(--alt); }

.section__head{
  display:flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  margin-bottom: 20px;
}
.section__head h2{ margin:0; color: var(--azul); font-size: 28px; }
.section__head p{ margin:0; }

.cards3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.card{
  background:#fff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 26px rgba(2,6,23,.05);
}
.card h3{ margin:0 0 8px; color: var(--azul); }
.card p{ margin:0; color: var(--muted); }

/* ===== NOSOTROS SIMPLE ===== */
.tb-circles{
  padding: 70px 18px;
  text-align: center;
  background:#fff;
}
.tb-section-title{
  color: var(--azul);
  margin: 0 0 30px;
  font-size: 28px;
}
.circle-wrapper{
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.circle{
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--azul);
  color: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  cursor: pointer;
  transition: .25s;
  user-select:none;
}
.circle:hover{
  background: var(--amarillo);
  color: var(--azul);
  transform: translateY(-2px);
}
.circle-content{
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 26px rgba(2,6,23,.05);
  text-align:left;
}
.content{ display:none; }
.content.active{ display:block; }
.content h3{ margin:0 0 8px; color: var(--azul); }
.content p{ margin:0; color: var(--muted); line-height:1.6; }

/* ===== NOSOTROS ANIMADO (video style) ===== */
.tb-stage{
  background: var(--azul);
  padding: 70px 16px;
  overflow:hidden;
}
.tb-frame{
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  height: 520px;
}
.tb-center{
  position:absolute;
  left: 50%;
  top: 50%;
  width: 420px;
  height: 420px;
  transform: translate(-50%,-50%);
  background:#fff;
  border-radius: 999px;
  box-shadow: 0 26px 70px rgba(0,0,0,.25);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 34px;
  z-index: 2;
}
.tb-kicker{
  margin:0 0 8px;
  color:#6b7280;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
}
.tb-title{
  margin:0 0 10px;
  font-size: 30px;
  color:#111;
}
.tb-desc{
  margin:0 0 16px;
  color:#2b2b2b;
  line-height:1.6;
  font-size:14px;
}
.tb-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 22px;
  border-radius: 999px;
  border: 2px solid var(--azul);
  color: var(--azul);
  text-decoration:none;
  font-weight:950;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:12px;
}
.tb-btn:hover{
  background: rgba(23,49,102,.06);
}

.tb-bubbles{
  position:absolute;
  inset:0;
  z-index: 1;
}
.tb-bubble{
  position:absolute;
  left: 50%;
  top: 50%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  transform: translate(-50%,-50%) translate(var(--x), var(--y));
  transition: transform 900ms cubic-bezier(.2,.8,.2,1), opacity 300ms ease;
  will-change: transform;
}
.tb-bubble-img{
  display:block;
  width:100%;
  height:100%;
  border-radius: 999px;
  overflow:hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
  outline: 3px solid rgba(255,255,255,.10);
}
.tb-bubble.is-active .tb-bubble-img{
  outline: 4px solid rgba(254,215,30,.70);
}

/* ===== PRODUCTOS UI ===== */
.prodUI{
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 16px;
}

.prodTop{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
  padding: 6px 6px 14px;
  border-bottom: 1px solid rgba(15,23,42,.08);
}

.prodTop__left{
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.prodTop__title{
  margin:0;
  color: var(--azul);
  letter-spacing: -.02em;
}

.prodTabs{
  display:flex;
  gap: 8px;
  flex-wrap:wrap;
}

.prodTab{
  border: 1px solid rgba(15,23,42,.10);
  background: #fff;
  color: #0f172a;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 900;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.prodTab:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(2,6,23,.06);
}
.prodTab.is-active{
  background: rgba(254,215,30,.18);
  border-color: rgba(254,215,30,.45);
  color: var(--azul);
}

.prodTop__right{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap:wrap;
}

.prodSearch{
  display:flex;
  align-items:center;
  gap: 8px;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 999px;
  padding: 8px 12px;
  background:#fff;
  min-width: 260px;
}
.prodSearch__icon{ opacity:.7; }
.prodSearch input{
  border:0;
  outline:0;
  width:100%;
  background: transparent;
  font: inherit;
}

.prodBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 950;
  text-decoration:none;
  background: var(--azul);
  color:#fff;
  transition: transform .18s ease, opacity .18s ease;
}
.prodBtn:hover{
  transform: translateY(-1px);
  opacity:.92;
}

.prodGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  padding: 16px 6px 6px;
}
.prodCard{
  display:flex;
  flex-direction:column;
  background:#fff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 16px;
  overflow:hidden;
  box-shadow: 0 12px 26px rgba(2,6,23,.05);
  transition: transform .22s ease, box-shadow .22s ease;
}
.prodCard:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(2,6,23,.09);
}
.prodCard__media{
  height: 150px;
  background-size: cover;
  background-position: center;
  background-image: linear-gradient(135deg, rgba(23,49,102,.85), rgba(254,215,30,.18));
}
.prodCard__body{
  padding: 14px;
  display:flex;
  flex-direction:column;
  gap: 10px;
  flex:1;
}
.prodMeta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}
.prodBadge{
  font-size: 12px;
  font-weight: 950;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,.06);
  white-space:nowrap;
}
.prodBadge--ok{ background: rgba(34,197,94,.12); }
.prodBadge--new{ background: rgba(59,130,246,.12); }
.prodBadge--hot{
  background: rgba(254,215,30,.25);
  color: var(--azul);
}
.prodMini{ font-size: 12px; }
.prodCard__title{
  margin:0;
  color: var(--azul);
  letter-spacing: -.01em;
}
.prodCard__desc{
  margin:0;
  color:#475569;
  font-size: 14px;
  line-height:1.45;
}
.prodCard__foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:auto;
}
.prodPrice{ font-weight: 950; }
.prodLink{
  font-weight: 950;
  color: var(--azul);
  text-decoration:none;
}
.prodLink:hover{
  text-decoration: underline;
  text-underline-offset: 6px;
}
.prodCard.is-hidden{ display:none; }

/* ===== INDUSTRIAS ===== */
.apps{
  max-width:1200px;
  margin:0 auto;
  padding:70px 18px;
}
.apps-header{
  text-align:center;
  margin-bottom:30px;
}
.apps-header h2{
  color: var(--azul);
  font-size:32px;
  margin:0 0 6px;
}
.apps-header p{ color:#777; margin:0; }

.apps-filters{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
  margin-bottom:34px;
}

.pill{
  border:1px solid #e2e6ed;
  background:#f7f9fc;
  color:#0f172a;
  padding:10px 16px;
  border-radius:999px;
  font-weight:900;
  cursor:pointer;
  transition:.25s;
}
.pill:hover{ border-color: var(--azul); }
.pill.active{
  background: var(--azul);
  color:#fff;
  border-color: var(--azul);
}

.apps-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
  gap:22px;
}

.app-card{
  background:#fff;
  border-radius:18px;
  border:1px solid #e5e9f0;
  overflow:hidden;
  transition:.3s;
}
.app-card:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.app-visual{
  height:170px;
  background:var(--img) center/cover no-repeat;
  position:relative;
}
.app-visual::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.25));
}

.app-body{ padding:18px; }
.tag{
  display:inline-block;
  background: rgba(254,215,30,.22);
  color: var(--azul);
  font-size:12px;
  font-weight:950;
  padding:4px 10px;
  border-radius:999px;
  margin-bottom:8px;
}
.app-body h3{ margin:0 0 6px; color:#0f172a; }
.app-body p{ margin:0; font-size:14px; color:#555; }

/* ===== PROVEEDORES 3D ===== */
.providers h2{ text-align:center; margin:0 0 6px; color:var(--azul); }
.providers .sub{ text-align:center; color:#475569; margin:0 0 16px; }

/* ===== PROVEEDORES 3D (SIEMPRE GIRA + LOGOS AL DERECHO) ===== */
.ring3d{
  position:relative;
  height:260px;
  perspective:1200px;
  display:grid;
  place-items:center;
  margin-top:6px;
  transform-style:preserve-3d;
  /* quitamos animation aquí: ahora gira con JS */
}

.ring3d::before{
  content:"";
  position:absolute;
  inset:auto 0 28px 0;
  height:60px;
  background:radial-gradient(ellipse at center, rgba(0,0,0,.18), transparent 70%);
  filter:blur(6px);
}

.ring3d .item{
  position:absolute;
  width:180px;
  height:120px;
  display:grid;
  place-items:center;
  transform-style:preserve-3d;
  backface-visibility:hidden;
}

.ring3d .item img{
  backface-visibility:hidden;
  object-fit: contain;
  max-width: 85%;
  max-height: 80%;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.25));
  transform-style:preserve-3d;
}


/* ===== CONTACTO (MINIMAL) ===== */
.tb-min{
  background: var(--bg);
  padding: 70px 18px;
}
.tb-min-wrap{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.tb-min-kicker{
  margin: 0 0 10px;
  color: #667085;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
}
.tb-min-title{
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.08;
  color: var(--azul);
  letter-spacing: -0.02em;
}
.tb-min-title span{
  box-shadow: inset 0 -0.55em 0 rgba(254,215,30,.85);
  padding: 0 .2em;
  border-radius: 6px;
}
.tb-min-text{
  margin: 0 0 22px;
  color: var(--text);
  line-height: 1.65;
}
.tb-min-lines{
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 14px;
  display: grid;
  gap: 10px;
}
.tb-line{
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  align-items: baseline;
}
.tb-line-label{
  color: #667085;
  font-weight: 800;
  font-size: 13px;
}
.tb-line-value{
  color: var(--azul);
  font-weight: 950;
  font-size: 14px;
}
.tb-min-actions{
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.tb-min-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 950;
  border: 1px solid transparent;
}
.tb-min-btn-primary{
  background: var(--amarillo);
  color: var(--azul);
}
.tb-min-btn-ghost{
  background: transparent;
  border-color: rgba(23,49,102,.18);
  color: var(--azul);
}
.tb-min-note{
  margin: 14px 0 0;
  color: #667085;
  font-size: 13px;
}
.tb-min-form-title{
  margin: 0 0 16px;
  color: var(--azul);
  font-size: 20px;
}
.tb-form-min{ width: 100%; }

.tb-min-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.tb-f{
  position: relative;
  display: block;
}
.tb-f input,
.tb-f textarea{
  width: 100%;
  padding: 14px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: transparent;
  outline: none;
  font-size: 14px;
  color: var(--text);
  transition: border-color .15s, box-shadow .15s;
}
.tb-f span{
  position: absolute;
  left: 10px;
  top: 12px;
  padding: 0 6px;
  color: #667085;
  pointer-events: none;
  transition: top .15s, transform .15s, background .15s, color .15s;
}
.tb-f input:focus,
.tb-f textarea:focus{
  border-color: rgba(23,49,102,.45);
  box-shadow: 0 0 0 5px rgba(23,49,102,.08);
}
.tb-f input:focus + span,
.tb-f input:not(:placeholder-shown) + span,
.tb-f textarea:focus + span,
.tb-f textarea:not(:placeholder-shown) + span{
  top: -9px;
  background: var(--bg);
  color: var(--azul);
  transform: scale(.92);
}
.tb-f-full{ margin-top: 12px; }
.tb-min-submit{
  width: 100%;
  margin-top: 14px;
  padding: 13px 14px;
  border: none;
  border-radius: 12px;
  background: var(--azul);
  color: #fff;
  font-weight: 950;
  cursor: pointer;
}
.tb-min-privacy{
  margin: 10px 0 0;
  color: #667085;
  font-size: 12px;
}

/* ===== FOOTER ===== */
.footer{
  background: rgba(23,49,102,.96);
  color:#fff;
  padding: 18px 0;
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  flex-wrap:wrap;
}
.footer .muted{ color: rgba(255,255,255,.75); }

/* ===== Responsive ===== */
@media (max-width: 980px){
  .cards3{ grid-template-columns: 1fr; }

  .tb-min-wrap{ grid-template-columns: 1fr; gap: 26px; }
  .tb-min-grid{ grid-template-columns: 1fr; }

  .prodGrid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 720px){
  .prodGrid{ grid-template-columns: 1fr; }
  .prodSearch{ width:100%; min-width:0; }
}

@media (max-width: 920px){
  .menuBtn{ display:inline-flex; }
  .nav{
    display:none;
    position:absolute;
    left:0; right:0;
    top: 88px;
    background: rgba(23,49,102,.98);
    border-top: 1px solid rgba(254,215,30,.25);
    padding: 14px 0;
    flex-direction: column;
    gap: 14px;
    z-index: 110;
  }
  .nav.open{ display:flex; }
  .nav a{ width:min(1140px, 92%); padding: 10px 0; }
}









:root{
  --tb-blue:#173166;
  --tb-yellow:#fed71e;
  --tb-bg:#0b122a;
  --tb-card:#0f1b3f;
  --tb-line:rgba(255,255,255,.12);
}

.tb-belt{
  padding: 76px 18px;
  background: #fff;
}

.tb-belt-head{
  max-width: 1100px;
  margin: 0 auto 18px;
  text-align: center;
}

.tb-belt-head h2{
  margin: 0 0 6px;
  color: var(--tb-blue);
  font-size: clamp(24px, 3.2vw, 34px);
  letter-spacing: -.02em;
}

.tb-belt-head p{
  margin: 0;
  color: #64748b;
}

.tb-belt-stage{
  max-width: 1200px;
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 20px;
  align-items: start;
}

.tb-belt-track{
  position: relative;
  height: 260px;
  border-radius: 24px;
  background: linear-gradient(180deg, #0b122a, #0a1024);
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 22px 60px rgba(2,6,23,.12);
}

.tb-belt-track::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 20%, rgba(254,215,30,.10), transparent 45%),
    radial-gradient(circle at 85% 65%, rgba(254,215,30,.08), transparent 50%);
  pointer-events:none;
}

/* “rodillos” abajo */
.tb-belt-track::after{
  content:"";
  position:absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
  opacity: .9;
}

/* listones de la banda */
.tb-belt-strips{
  position:absolute;
  inset: 26px 18px 40px 18px;
  border-radius: 18px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.06) 0px,
      rgba(255,255,255,.06) 22px,
      rgba(255,255,255,.10) 22px,
      rgba(255,255,255,.10) 24px
    );
  filter: contrast(1.05);
  opacity: .95;
}

/* Carga (cajas) */
.tb-belt-cargo{
  position:absolute;
  left: 0;
  top: 54px;
  height: 150px;
  width: 100%;
  display:flex;
  gap: 18px;
  align-items: center;
  padding-left: 18px;
  will-change: transform;
}

.tb-box{
  width: 210px;
  height: 120px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(15,27,63,.92), rgba(11,18,42,.96));
  color: #fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: 6px;
  padding: 14px 14px;
  cursor:pointer;
  text-align:left;
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.tb-box:hover{
  transform: translateY(-2px);
  border-color: rgba(254,215,30,.45);
  box-shadow: 0 22px 60px rgba(0,0,0,.28);
}

.tb-box.is-active{
  border-color: rgba(254,215,30,.85);
  box-shadow: 0 22px 70px rgba(254,215,30,.12), 0 22px 60px rgba(0,0,0,.30);
}

.tb-box-top{
  font-weight: 950;
  letter-spacing: .01em;
  font-size: 16px;
}

.tb-box-sub{
  font-weight: 700;
  font-size: 12px;
  color: rgba(255,255,255,.70);
}

.tb-box::before{
  content:"";
  position:absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--tb-yellow);
  box-shadow: 0 0 0 6px rgba(254,215,30,.15);
  transform: translate(10px, -18px);
  opacity: .9;
}

/* Panel */
.tb-belt-panel{
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,.10);
  background: #fff;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(2,6,23,.06);
}

.tb-belt-kicker{
  margin: 0 0 8px;
  color: #64748b;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
}

.tb-belt-title{
  margin: 0 0 10px;
  color: var(--tb-blue);
  font-size: 22px;
  letter-spacing: -.01em;
}

.tb-belt-desc{
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

.tb-belt-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.tb-belt-btn{
  border: none;
  background: var(--tb-blue);
  color: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 950;
  cursor: pointer;
  text-decoration:none;
}

.tb-belt-btn--ghost{
  background: transparent;
  color: var(--tb-blue);
  border: 1px solid rgba(23,49,102,.18);
}

@media (max-width: 980px){
  .tb-belt-stage{
    grid-template-columns: 1fr;
  }
  .tb-belt-track{
    height: 280px;
  }
}









:root{
  --tb-blue:#173166;
  --tb-yellow:#fed71e;
  --ink:#0f172a;
  --muted:#64748b;
}

/* Layout */
.tb-openconv{
  padding: 76px 18px;
  background:#fff;
}
.tb-openconv-head{
  max-width: 1100px;
  margin: 0 auto 22px;
  text-align:center;
}
.tb-openconv-head h2{
  margin:0 0 6px;
  color: var(--tb-blue);
  font-size: clamp(24px, 3.1vw, 34px);
  letter-spacing:-.02em;
}
.tb-openconv-head p{
  margin:0;
  color: var(--muted);
}
.tb-openconv-grid{
  max-width: 1200px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1fr 380px;
  gap: 22px;
  align-items:start;
}
@media (max-width: 980px){
  .tb-openconv-grid{ grid-template-columns: 1fr; }
}

/* Stage */
.tb-openconv-stage{
  position: relative;
  height: 260px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 18px 40px rgba(2,6,23,.06);
  overflow:hidden;
}

/* Belt */
.tb-openconv-belt{
  position:absolute;
  left: 28px;
  right: 28px;
  bottom: 46px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(180deg,#f3f4f6,#e5e7eb);
  border: 1px solid rgba(15,23,42,.14);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    inset 0 -4px 10px rgba(0,0,0,.10),
    0 18px 30px rgba(2,6,23,.08);
  transform: perspective(900px) rotateX(10deg);
}
.tb-openconv-rollers{
  position:absolute;
  inset: 5px 12px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(15,23,42,.35) 0px,
      rgba(15,23,42,.35) 4px,
      rgba(15,23,42,.06) 4px,
      rgba(15,23,42,.06) 14px
    );
  opacity:.45;
}
.tb-openconv-shine{
  position:absolute;
  inset:0;
  border-radius:999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.65), transparent);
  opacity:.25;
  mix-blend-mode: overlay;
}

/* Cargo row */
.tb-openconv-cargo{
  position:absolute;
  left:0;
  top: 60px;
  height: 140px;
  width: 100%;
  display:flex;
  gap: 24px;
  align-items:flex-end;
  padding-left: 28px;
  will-change: transform;
}

/* Box button */
.tb-boxopen{
  position: relative;
  width: 150px;
  height: 112px;
  border: 0;
  background: transparent;
  padding:0;
  cursor:pointer;
  transform: translateZ(0);
}
.tb-boxopen:hover{ transform: translateY(-2px); }

/* Body */
.tb-boxopen .body{
  position:absolute;
  inset: 14px 0 0 0;
  border-radius: 12px;
  background: linear-gradient(135deg,#f7e2bf 0%,#e9c287 40%,#d6a665 100%);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 18px 34px rgba(2,6,23,.14);
}

/* Lid (tapa) */
.tb-boxopen .lid{
  position:absolute;
  left: 8px;
  right: 8px;
  top: 0px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.10));
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 10px 20px rgba(2,6,23,.12);
  transform-origin: bottom;
  transform: perspective(700px) rotateX(55deg);
  transition: transform 260ms ease;
}

/* Tape */
.tb-boxopen .tape{
  position:absolute;
  top: 18px;
  left: 50%;
  width: 34px;
  height: 12px;
  transform: translateX(-50%);
  border-radius: 5px;
  background: rgba(255,255,255,.50);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
  opacity:.95;
}

/* Label */
.tb-boxopen .label{
  position:absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 7px 10px;
  border-radius: 12px;
  background: rgba(23,49,102,.92);
  color:#fff;
  font-weight: 950;
  font-size: 12px;
  text-align:center;
  box-shadow: 0 12px 26px rgba(2,6,23,.20);
}

/* Open state: lid lifts */
.tb-boxopen.is-open .lid{
  transform: perspective(700px) rotateX(-15deg) translateY(-2px);
}

/* Popover card (sale arriba) */
.tb-pop{
  position:absolute;
  left: 50%;
  bottom: 118px;
  transform: translateX(-50%) translateY(6px);
  width: 260px;
  border-radius: 16px;
  background:#fff;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 24px 70px rgba(2,6,23,.16);
  padding: 14px;
  opacity: 0;
  pointer-events:none;
  transition: opacity 200ms ease, transform 200ms ease;
  z-index: 20;
}
.tb-boxopen.is-open .tb-pop{
  opacity: 1;
  pointer-events:auto;
  transform: translateX(-50%) translateY(0px);
}
.tb-pop-k{
  margin:0 0 6px;
  color:#64748b;
  font-weight: 900;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size: 11px;
}
.tb-pop h4{
  margin:0 0 8px;
  color: var(--tb-blue);
  font-size: 16px;
}
.tb-pop p{
  margin:0;
  color:#475569;
  line-height:1.55;
  font-size: 13px;
}
.tb-pop-actions{
  display:flex;
  gap: 8px;
  margin-top: 10px;
}
.tb-mini{
  border: none;
  border-radius: 10px;
  padding: 8px 10px;
  font-weight: 900;
  cursor:pointer;
  background: var(--tb-blue);
  color:#fff;
}
.tb-mini--ghost{
  background: transparent;
  color: var(--tb-blue);
  border: 1px solid rgba(23,49,102,.18);
}

/* Active highlight */
.tb-boxopen.is-active .body{
  outline: 3px solid rgba(254,215,30,.85);
  outline-offset: 3px;
}

/* Panel right */
.tb-openconv-panel{
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.08);
  background:#fff;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(2,6,23,.06);
}
.tb-openconv-kicker{
  margin:0 0 8px;
  color: var(--muted);
  font-weight: 950;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size: 12px;
}
.tb-openconv-help{
  margin:0;
  color:#475569;
  line-height:1.7;
}
.tb-openconv-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 14px;
}
.tb-openconv-btn{
  border: none;
  background: var(--tb-blue);
  color:#fff;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 950;
  cursor:pointer;
  text-decoration:none;
}
.tb-openconv-btn--ghost{
  background: transparent;
  color: var(--tb-blue);
  border: 1px solid rgba(23,49,102,.18);
}





/* Acciones en el footer de cada tarjeta */
.prodActions{
  display:flex;
  gap:.75rem;
  align-items:center;
  flex-wrap:wrap;
}

/* Botón PDF (opcional, se ve más claro) */
.prodLink--pdf{
  padding:.35rem .65rem;
  border:1px solid rgba(15,23,42,.18);
  border-radius:.6rem;
  text-decoration:none;
  font-weight:600;
}

/* Hover */
.prodLink--pdf:hover{
  transform: translateY(-1px);
}







:root{
  --azul:#173166;
  --amarillo:#fed71e;
}

/* CONTACTO */
.contact{
  background: var(--azul);
  color: #fff;
  padding: 80px 20px;
}

.contact_wrap{
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* INFO */
.contact_kicker{
  font-size: 12px;
  letter-spacing: 2px;
  opacity: .85;
}

.contact_title{
  font-size: 36px;
  margin: 10px 0;
}

.contact_title span{
  color: var(--amarillo);
}

.contact_text{
  max-width: 420px;
  margin-bottom: 20px;
  opacity: .9;
}

.contact_data p{
  margin: 6px 0;
}

.contact_buttons{
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.contact_buttons a{
  background: var(--amarillo);
  color: #000;
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

.contact_buttons .btn_outline{
  background: transparent;
  color: #fff;
  border: 2px solid var(--amarillo);
}

.contact_note{
  margin-top: 20px;
  font-size: 14px;
  opacity: .85;
}

/* FORMULARIO */
.contact_formulario{
  background: var(--amarillo);
  color: #000;
  padding: 40px;
  border-radius: 16px;
}

.contact_formulario h3{
  color: var(--azul);
  margin-bottom: 20px;
}

.contact_formulario input,
.contact_formulario textarea{
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border: none;
  border-radius: 6px;
}

.contact_formulario button{
  width: 100%;
  padding: 14px;
  background: var(--azul);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

/* FOOTER */
.footer{
  background: #000;
  color: #fff;
  text-align: center;
  padding: 18px;
}

/* RESPONSIVE */
@media (max-width: 768px){
  .contact_wrap{
    grid-template-columns: 1fr;
  }
}
