/* ===========================================================
   Sitio público de vacantes · Grupo Bari
   Formato de anuncio de empleo: se lee de corrido, sin cajas
   que compitan, y con el sueldo arriba de todo.
   =========================================================== */

:root {
  /* Muestreados del logotipo: azul #00549C, gris #848484 */
  --azul:    #00549C;
  --azul-d:  #003D73;
  --azul-cl: #0F76D1;
  --gris:    #848484;
  --tinta:   #17212E;
  --tinta2:  #5A6472;
  --fondo:   #F2F5F8;
  --linea:   #E1E7EE;
  --sombra:    0 18px 50px -22px rgba(23, 33, 46, .30);
  --sombra-sm: 0 6px 20px -12px rgba(23, 33, 46, .22);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  color: var(--tinta);
  background: var(--fondo);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Archivo', sans-serif; margin: 0; }
a { color: inherit; }
img { max-width: 100%; display: block; }

/* ---------- Navegación ---------- */
.nav {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; gap: 18px;
  padding: 14px 6vw;
  background: rgba(238, 242, 249, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--linea);
}
.nav .logo { display: flex; align-items: center; text-decoration: none; }
.nav .logo img { height: 42px; width: auto; }
.nav .links { margin-left: auto; display: flex; gap: 20px; flex-wrap: wrap; }
.nav .links a { color: var(--tinta2); text-decoration: none; font-weight: 600; font-size: 14px; }
.nav .links a:hover { color: var(--azul); }

/* ---------- Botones ---------- */
.btn-blue {
  display: inline-block;
  background: var(--azul); color: #fff;
  font: inherit; font-weight: 700; font-size: 15px;
  padding: 13px 26px; border: 0; border-radius: 10px;
  text-decoration: none; cursor: pointer;
  transition: background .15s;
}
.btn-blue:hover:not(:disabled) { background: var(--azul-d); }
.btn-blue:disabled { background: #9AA8C6; cursor: default; }
.btn-claro {
  display: inline-block; background: #fff; color: var(--azul);
  font-weight: 800; font-size: 15px; padding: 13px 26px;
  border-radius: 10px; text-decoration: none;
}

/* ---------- Portada ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% 10%, rgba(15,118,209,.55) 0%, transparent 60%),
    linear-gradient(135deg, #00549C 0%, #004585 50%, #002E58 100%);
  color: #fff;
  padding: clamp(70px, 11vw, 130px) 6vw clamp(50px, 7vw, 80px);
}
/* Trama diagonal: el mismo rayado del isotipo, muy tenue */
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(115deg,
    rgba(255,255,255,.055) 0 2px, transparent 2px 15px);
}
/* Arco de luz en la esquina */
.hero::before {
  content: ''; position: absolute; pointer-events: none;
  width: 58vw; height: 58vw; max-width: 760px; max-height: 760px;
  right: -14vw; top: -22vw; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 0 0 42px rgba(255,255,255,.035);
}
.hero > * { position: relative; z-index: 1; }

.hero__g { max-width: 1180px; margin: 0 auto; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px 7px 12px; margin-bottom: 26px;
  border: 1px solid rgba(255,255,255,.28); border-radius: 999px;
  background: rgba(255,255,255,.09);
  font-size: 13px; font-weight: 600; letter-spacing: .3px;
}
.hero__punto {
  width: 8px; height: 8px; border-radius: 50%; background: #4ADE80;
  box-shadow: 0 0 0 0 rgba(74,222,128,.7);
  animation: latido 2.2s infinite;
}
@keyframes latido {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,.6); }
  70%  { box-shadow: 0 0 0 9px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

.hero h1 {
  /* Los saltos de línea los marca el HTML; sin tope de ancho no se
     parten frases a media palabra. */
  font-size: clamp(34px, 5.6vw, 72px);
  line-height: 1.04; font-weight: 900; letter-spacing: -1.5px;
  margin: 0 0 22px; max-width: none; text-wrap: balance;
}
.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,.85);
  paint-order: stroke fill;
}
.hero p {
  font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6;
  opacity: .9; max-width: 50ch; margin: 0 0 32px;
}

.hero__acc { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn-linea {
  display: inline-block; padding: 13px 24px;
  border: 1px solid rgba(255,255,255,.35); border-radius: 10px;
  color: #fff; text-decoration: none; font-weight: 700; font-size: 15px;
  transition: background .15s, border-color .15s;
}
.btn-linea:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

.hero__datos {
  display: flex; gap: clamp(26px, 5vw, 64px); flex-wrap: wrap;
  margin-top: clamp(44px, 6vw, 70px); padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.hero__datos b {
  display: block; font-family: 'Archivo', sans-serif;
  font-size: clamp(26px, 3.4vw, 38px); font-weight: 900; line-height: 1;
}
.hero__datos span {
  display: block; margin-top: 7px;
  font-size: 13px; opacity: .78; letter-spacing: .3px;
}

.wrap { max-width: 1180px; margin: 0 auto; padding: 52px 6vw; }
.eyebrow {
  color: var(--azul); font-weight: 800; letter-spacing: 2px;
  font-size: 12px; text-transform: uppercase; text-align: center; margin-bottom: 8px;
}
.sectitle { font-size: clamp(26px, 3.4vw, 38px); margin: 0 0 6px; font-weight: 800; text-align: center; }
.sub { color: var(--tinta2); text-align: center; margin: 0 auto 30px; max-width: 580px; }

.tabs {
  display: flex; justify-content: center; gap: 8px; flex-wrap: wrap;
  margin: 0 auto 34px; padding: 5px; width: max-content;
  background: #fff; border: 1px solid var(--linea); border-radius: 999px;
  box-shadow: var(--sombra-sm);
}
.tabs a { padding: 11px 22px; border-radius: 999px; font-weight: 700; color: var(--tinta2); font-size: 14px; text-decoration: none; }
.tabs a.on { background: var(--azul); color: #fff; }

/* ---------- Tarjetas del listado ---------- */
/* La rejilla crece con la ventana: en un monitor ancho caben más tarjetas
   en lugar de dejar aire a los lados. */
/* En monitores grandes el 6vw de los lados se come el espacio: aquí el
   padding se topa y el contenedor sube, para ganar columnas. */
.wrap--ancho {
  max-width: 2160px;
  padding-left: clamp(18px, 4vw, 56px);
  padding-right: clamp(18px, 4vw, 56px);
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: 20px;
}
@media (min-width: 1500px) { .cards { gap: 22px; } }
@media (max-width: 420px)  { .cards { grid-template-columns: 1fr; } }
.vcard {
  display: flex; flex-direction: column; overflow: hidden;
  background: #fff; border: 1px solid var(--linea); border-radius: 16px;
  box-shadow: var(--sombra-sm); text-decoration: none; color: inherit;
  transition: transform .2s, box-shadow .2s;
}
.vcard:hover { transform: translateY(-5px); box-shadow: var(--sombra); }
.vcard__img {
  aspect-ratio: 16/10; display: flex; align-items: flex-end; padding: 14px;
  background: linear-gradient(135deg, #00549C, #003D73) center/cover no-repeat;
}
.vcard__tag {
  background: rgba(0, 0, 0, .45); color: #fff; padding: 5px 11px;
  border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: .5px;
}
.vcard__b { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.vcard__b h3 { font-size: 18px; font-weight: 800; margin: 0 0 4px; }
.vcard__sueldo { color: var(--azul); font-weight: 800; font-size: 15px; margin-bottom: 2px; }
.vcard__meta { color: var(--tinta2); font-size: 12.5px; margin-bottom: 10px; }
.vcard__b p { margin: 0 0 16px; color: var(--tinta2); font-size: 14px; line-height: 1.45; flex: 1; }
.vcard__cta {
  background: var(--azul); color: #fff; font-weight: 700;
  padding: 11px; border-radius: 10px; text-align: center; font-size: 14px;
}

.vacio { text-align: center; padding: 60px 20px; color: var(--tinta2); }
.vacio__ic { font-size: 46px; margin-bottom: 12px; }
.vacio h3 { font-size: 20px; margin-bottom: 6px; }

/* ===========================================================
   Formulario de postulación
   =========================================================== */
.dlg {
  width: min(720px, 94vw); max-height: 92vh; padding: 0;
  border: 0; border-radius: 18px; box-shadow: var(--sombra);
  overflow: auto; color: var(--tinta);
}
.dlg::backdrop { background: rgba(15, 27, 51, .55); backdrop-filter: blur(3px); }

.dlg__head {
  position: sticky; top: 0; z-index: 2;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding: 22px 26px 16px; background: #fff; border-bottom: 1px solid var(--linea);
}
.dlg__tag {
  color: var(--azul); font-size: 11px; font-weight: 800;
  letter-spacing: 1.4px; text-transform: uppercase; margin-bottom: 3px;
}
.dlg__head h2 { font-size: 20px; font-weight: 800; }
.dlg__x {
  width: 36px; height: 36px; flex-shrink: 0;
  border: 1px solid var(--linea); border-radius: 10px; background: #fff;
  color: var(--tinta2); font-size: 22px; line-height: 1; cursor: pointer;
}
.dlg__x:hover { background: #F6F8FC; }

.dlg__body { padding: 22px 26px 26px; }
.dlg__nota {
  margin: 0 0 20px; padding: 12px 14px;
  background: #F6F8FC; border-left: 3px solid var(--azul); border-radius: 0 8px 8px 0;
  color: var(--tinta2); font-size: 13.5px; line-height: 1.5;
}

.paso { margin-bottom: 24px; }
.paso__t {
  font-family: 'Archivo'; font-weight: 800; font-size: 14px;
  color: var(--azul); margin-bottom: 12px;
  padding-bottom: 8px; border-bottom: 1px solid var(--linea);
}

.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fld { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.fld.full { grid-column: 1 / -1; }
.fld label { font-size: 13px; font-weight: 700; color: var(--tinta); }
.fld label b { color: #DC2626; }
.fld .opt { color: #9AA8C6; font-weight: 500; }
.fld input, .fld select, .fld textarea {
  width: 100%; padding: 11px 13px;
  border: 1px solid var(--linea); border-radius: 10px;
  font: inherit; font-size: 15px; background: #fff; color: var(--tinta);
  min-height: 44px;
}
.fld textarea { min-height: 70px; resize: vertical; }
.fld input:focus, .fld select:focus, .fld textarea:focus {
  outline: 0; border-color: var(--azul); box-shadow: 0 0 0 3px rgba(27, 77, 216, .12);
}
.fld input[type="file"] { padding: 9px; font-size: 13px; }

/* Trampa para robots: fuera de pantalla, sin display:none para que la llenen */
input[name="hp"] { position: absolute; left: -9999px; opacity: 0; height: 0; }

.privacy {
  display: flex; gap: 11px; align-items: flex-start;
  margin: 6px 0 20px; padding: 14px;
  background: #F6F8FC; border-radius: 10px;
  font-size: 13px; color: var(--tinta2); line-height: 1.5; cursor: pointer;
}
.privacy input { width: 19px; height: 19px; margin-top: 1px; flex-shrink: 0; accent-color: var(--azul); }

.dlg__acts { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }
.dlg__acts .ghost {
  background: #fff; color: var(--tinta2);
  border: 1px solid var(--linea); border-radius: 10px;
  padding: 13px 22px; font: inherit; font-weight: 700; font-size: 15px; cursor: pointer;
}

/* ---------- Pie ---------- */
.foot {
  background: var(--tinta); color: #B9C3CF;
  padding: 36px 6vw; font-size: 13px; text-align: center;
}
.foot__logo { width: 74px; margin: 0 auto 14px; opacity: .85; }
.foot__legal { opacity: .7; margin-top: 8px; font-size: 12px; }

/* ---------- Responsivo ---------- */
@media (max-width: 880px) {
  .hero h1 { max-width: none; letter-spacing: -1px; }
  .hero__acc .btn-claro, .hero__acc .btn-linea { flex: 1; text-align: center; }
  .hero__datos { gap: 22px; }
  .hero__datos > div { flex: 1 1 28%; }
}
@media (max-width: 640px) {
  .ficha { margin: 14px 3vw 40px; border-radius: 14px; }
  .cab { flex-direction: column; gap: 18px; }
  .cab__lado { text-align: left; align-items: flex-start; width: 100%; }
  .btn-postular { width: 100%; text-align: center; }
  .cierre { flex-direction: column; align-items: stretch; text-align: center; }
  .cierre .btn-blue { width: 100%; }
  .grid { grid-template-columns: 1fr; }
  .dlg { width: 100vw; max-width: none; height: 100dvh; max-height: none; border-radius: 0; }
  .dlg__acts { flex-direction: column-reverse; }
  .dlg__acts button { width: 100%; }
  .tabs { width: 100%; justify-content: stretch; }
  .tabs a { flex: 1; text-align: center; padding: 11px 10px; font-size: 13px; }
}

[hidden] { display: none !important; }

/* ===========================================================
   MÓDULOS DE MARCA EMPLEADORA
   =========================================================== */

/* ---------- Manifiesto ---------- */
.manifiesto { background: #fff; padding: clamp(50px, 7vw, 80px) 6vw; }
.manifiesto__g {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 60px);
  align-items: center;
}
.manifiesto h2 {
  font-size: clamp(28px, 3.8vw, 42px); font-weight: 800;
  line-height: 1.12; margin-bottom: 18px; letter-spacing: -.5px;
}
.manifiesto h2 em { font-style: normal; color: var(--azul); }
.manifiesto p {
  color: var(--tinta2); font-size: 16.5px; line-height: 1.7; margin: 0 0 16px;
}
.manifiesto p:last-child { margin-bottom: 0; }
.manifiesto__cita {
  border-left: 4px solid var(--azul); padding: 4px 0 4px 22px;
  font-size: clamp(18px, 2.2vw, 22px); font-weight: 600;
  color: var(--tinta); line-height: 1.5;
}
.manifiesto__cita small {
  display: block; margin-top: 10px; font-size: 13px;
  font-weight: 600; color: var(--gris); letter-spacing: .5px; text-transform: uppercase;
}

/* ---------- Pilares ---------- */
.pilares { background: var(--fondo); padding: clamp(50px, 7vw, 80px) 6vw; }
.pilares__g {
  max-width: 1180px; margin: 30px auto 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px;
}
.pilar {
  background: #fff; border: 1px solid var(--linea); border-radius: 16px;
  padding: 28px 24px; box-shadow: var(--sombra-sm);
}
.pilar__n {
  width: 46px; height: 46px; margin-bottom: 16px;
  border-radius: 12px; background: rgba(0, 84, 156, .09);
  color: var(--azul); display: grid; place-items: center; font-size: 21px;
}
.pilar h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.pilar p { color: var(--tinta2); font-size: 14.5px; line-height: 1.6; margin: 0; }

/* ---------- Proceso ---------- */
.proceso { background: #fff; padding: clamp(50px, 7vw, 80px) 6vw; }
.proceso__g {
  max-width: 1080px; margin: 34px auto 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 22px;
}
.paso-c { position: relative; padding-top: 22px; }
.paso-c::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--linea); border-radius: 3px;
}
.paso-c::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 42px; height: 3px; background: var(--azul); border-radius: 3px;
}
.paso-c__n {
  font-family: 'Archivo'; font-size: 13px; font-weight: 800;
  color: var(--azul); letter-spacing: 1px; margin-bottom: 6px;
}
.paso-c h3 { font-size: 16px; font-weight: 800; margin-bottom: 6px; }
.paso-c p { color: var(--tinta2); font-size: 14px; line-height: 1.6; margin: 0; }

/* ---------- Franja de cierre ---------- */
.franja {
  background: linear-gradient(135deg, #00549C, #003D73);
  color: #fff; padding: clamp(44px, 6vw, 64px) 6vw; text-align: center;
}
.franja h2 { font-size: clamp(24px, 3.2vw, 34px); font-weight: 800; margin-bottom: 12px; }
.franja p { max-width: 620px; margin: 0 auto 26px; opacity: .92; font-size: 16px; line-height: 1.65; }

/* ---------- Cifras ---------- */
.cifras {
  display: flex; justify-content: center; gap: clamp(26px, 6vw, 70px);
  flex-wrap: wrap; margin-top: 34px; padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}
.cifra__n {
  font-family: 'Archivo'; font-size: clamp(30px, 4vw, 42px);
  font-weight: 900; line-height: 1;
}
.cifra__t { font-size: 13px; opacity: .8; margin-top: 6px; letter-spacing: .5px; }

@media (max-width: 880px) {
  .manifiesto__g { grid-template-columns: 1fr; }
}

/* ===========================================================
   FICHA DE LA VACANTE
   Dos columnas: el contenido se lee de corrido y los datos
   que decide el candidato (sueldo, horario, lugar) viajan
   con el scroll junto al botón de postularse.
   =========================================================== */

/* ---------- Encabezado ---------- */
.vhero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(110% 80% at 88% 0%, rgba(15,118,209,.5) 0%, transparent 62%),
    linear-gradient(135deg, #00549C 0%, #004585 55%, #002E58 100%);
  color: #fff; padding: clamp(28px, 5vw, 56px) 6vw clamp(36px, 5vw, 58px);
}
.vhero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,.05) 0 2px, transparent 2px 15px);
}
.vhero__g { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; }

.vhero__volver {
  display: inline-block; margin-bottom: 20px;
  color: rgba(255,255,255,.75); text-decoration: none;
  font-size: 13.5px; font-weight: 600;
}
.vhero__volver:hover { color: #fff; }

.vhero__tags { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 14px; }
.vtag {
  padding: 5px 12px; border-radius: 999px;
  background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.18);
  font-size: 11.5px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
}
.vtag--area { background: rgba(255,255,255,.95); color: var(--azul); border-color: transparent; }

.vhero h1 {
  font-size: clamp(28px, 4.6vw, 50px); font-weight: 900;
  line-height: 1.06; letter-spacing: -1px; margin: 0 0 10px; max-width: 18ch;
}
.vhero__sueldo {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(20px, 2.6vw, 28px); font-weight: 800;
  margin-bottom: 12px;
}
.vhero__pie { font-size: 14px; opacity: .8; display: flex; gap: 8px; flex-wrap: wrap; }
.vhero__sep { opacity: .5; }

/* ---------- Rejilla ---------- */
.vgrid {
  max-width: 1180px; margin: 0 auto;
  padding: clamp(28px, 4vw, 48px) 6vw clamp(50px, 7vw, 80px);
  display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(26px, 4vw, 52px);
  align-items: start;
}

/* ---------- Contenido ---------- */
.vmain { min-width: 0; }
.vsec { margin-bottom: clamp(30px, 4vw, 46px); }
.vsec h2 {
  font-size: clamp(19px, 2.2vw, 24px); font-weight: 800;
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 1px solid var(--linea); position: relative;
}
.vsec h2::after {
  content: ''; position: absolute; left: 0; bottom: -1px;
  width: 44px; height: 2px; background: var(--azul);
}
.vsec__p { margin: 0; color: var(--tinta2); font-size: 16.5px; line-height: 1.72; }

.vlista { list-style: none; margin: 0; padding: 0; counter-reset: v; }
.vlista li {
  counter-increment: v;
  display: flex; gap: 14px; align-items: flex-start;
  padding: 11px 0; border-bottom: 1px solid #F0F3F7;
  color: var(--tinta2); font-size: 15.5px; line-height: 1.6;
}
.vlista li:last-child { border-bottom: 0; }
.vlista__n {
  flex-shrink: 0; width: 26px; height: 26px; margin-top: 1px;
  border-radius: 8px; background: rgba(0,84,156,.08); color: var(--azul);
  font-family: 'Archivo', sans-serif; font-size: 12px; font-weight: 800;
  display: grid; place-items: center;
}
.vlista__n::before { content: counter(v, decimal-leading-zero); }

/* ---------- Oferta en cuadrícula ---------- */
.voferta {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 12px;
}
.voferta__i {
  display: flex; gap: 11px; align-items: flex-start;
  padding: 14px 16px; border-radius: 12px;
  background: #F6F9FC; border: 1px solid var(--linea);
}
.voferta__ok {
  position: relative; flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--azul); margin-top: 1px;
  font-size: 0;   /* el carácter ✓ depende de la fuente: se dibuja con CSS */
}
.voferta__ok::after {
  content: ''; position: absolute; left: 7px; top: 5px;
  width: 6px; height: 10px;
  border: solid #fff; border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.voferta__i b { display: block; font-size: 12px; color: var(--azul); margin-bottom: 2px; }
.voferta__i span { font-size: 14px; color: var(--tinta2); line-height: 1.5; }

/* ---------- Panel lateral ---------- */
.vlado { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 14px; }
.vcaja {
  background: #fff; border: 1px solid var(--linea); border-radius: 16px;
  padding: 22px; box-shadow: var(--sombra-sm);
}
.vcaja__t {
  font-size: 11.5px; font-weight: 800; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--gris); margin-bottom: 14px;
}
.vdatos { margin: 0 0 18px; }
.vdatos__i { padding: 11px 0; border-bottom: 1px solid #F0F3F7; }
.vdatos__i:last-child { border-bottom: 0; }
.vdatos dt { font-size: 12px; color: var(--gris); font-weight: 600; margin-bottom: 3px; }
.vdatos dd { margin: 0; font-size: 14.5px; color: var(--tinta); font-weight: 600; line-height: 1.45; }
.vdatos__i.is-fuerte dd {
  font-family: 'Archivo', sans-serif; font-size: 21px; font-weight: 800; color: var(--azul);
}
.vcaja__cta { width: 100%; text-align: center; }
.vcaja__nota { margin: 10px 0 0; font-size: 12px; color: var(--gris); text-align: center; }

.vcompartir { display: flex; gap: 8px; }
.vcomp__b {
  flex: 1; text-align: center; padding: 11px 10px;
  border: 1px solid var(--linea); border-radius: 10px; background: #fff;
  color: var(--tinta2); font: inherit; font-size: 13px; font-weight: 700;
  text-decoration: none; cursor: pointer; transition: border-color .15s, color .15s;
}
.vcomp__b:hover { border-color: var(--azul); color: var(--azul); }

/* ---------- Barra fija de celular ---------- */
.vbarra {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: #fff; border-top: 1px solid var(--linea);
  box-shadow: 0 -8px 24px -14px rgba(23,33,46,.35);
  transform: translateY(110%); transition: transform .25s;
}
.vbarra b { display: block; font-family: 'Archivo', sans-serif; font-size: 16px; color: var(--azul); }
.vbarra span {
  display: block; font-size: 12px; color: var(--tinta2);
  max-width: 44vw; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.vbarra .btn-blue { padding: 12px 20px; font-size: 14px; flex-shrink: 0; }

.ficha2 { max-width: 760px; margin: 40px auto 70px; background: #fff;
          border-radius: 18px; box-shadow: var(--sombra-sm); }

/* ---------- Responsivo ---------- */
@media (max-width: 980px) {
  .vgrid { grid-template-columns: 1fr; }
  .vlado { position: static; order: -1; }
  .vcaja--compartir { order: 2; }
}
@media (max-width: 640px) {
  .vhero h1 { max-width: none; }
  .vbarra { display: flex; }
  body.con-barra .vbarra { transform: translateY(0); }
  .vgrid { padding-bottom: 110px; }
  .voferta { grid-template-columns: 1fr; }
  .vcaja__cta { min-height: 52px; }
}
