/* =========================================================
   PROVEN CONSULTORA — Hoja de estilos global
   Paleta oficial (Manual de Marca 2023):
     Navy       #26598f  · primario
     Azul claro #8fb5de  · secundario / tintes
     Gris azul  #d6e3e5  · neutro
     Durazno    #f2c79c  · acento cálido
     Naranja    #f5a361  · acento cálido fuerte
   --pv-cyan es una variante más saturada del azul secundario,
   usada en botones/links para asegurar contraste accesible.
   Tipografías: Poppins (títulos) · Lato (texto de sistema)
   Nota: cada bloque está pensado para poder copiarse como
   widget HTML independiente en Elementor. Los estilos usan
   clases con prefijo "pv-" para evitar colisiones con el theme.
   ========================================================= */

:root {
  --pv-navy: #26598f;
  --pv-navy-dark: #12263f;
  --pv-cyan: #2b8fd4;
  --pv-blue-light: #8fb5de;
  --pv-gray-blue: #d6e3e5;
  --pv-peach: #f2c79c;
  --pv-orange: #f5a361;
  --pv-bg: #f7fafd;
  --pv-text: #1a1a2e;
  --pv-white: #ffffff;
  --pv-border: #e3ecf5;
  --pv-radius: 14px;
  --pv-shadow: 0 20px 45px -20px rgba(18, 38, 63, 0.25);
  --pv-container: 1180px;
  --pv-font: "Lato", "Helvetica Neue", Arial, sans-serif;
  --pv-font-heading: "Poppins", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.pv-body {
  margin: 0;
  font-family: var(--pv-font);
  color: var(--pv-text);
  background: var(--pv-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { margin: 0; padding: 0; }

.pv-container {
  width: 100%;
  max-width: var(--pv-container);
  margin: 0 auto;
  padding: 0 24px;
}

.pv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--pv-font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pv-cyan);
  margin-bottom: 18px;
}

.pv-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--pv-cyan);
  display: inline-block;
}

h1, h2, h3, h4 { margin: 0; font-family: var(--pv-font-heading); font-weight: 800; line-height: 1.15; letter-spacing: -0.01em; }
h1, h2, h3 { text-wrap: balance; }

p { margin: 0; }

.pv-section { padding: 88px 0; }
.pv-section--bg { background: var(--pv-bg); }
.pv-section--sm { padding: 64px 0; }
.pv-section--logos { padding: 48px 0; }

.pv-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--pv-font-heading);
  background: rgba(43, 143, 212, 0.1);
  color: var(--pv-cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- Botones ---------- */
.pv-btn {
  font-family: var(--pv-font-heading);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.pv-btn:hover { transform: translateY(-2px); }

.pv-btn--primary {
  background: var(--pv-navy);
  color: var(--pv-white);
  box-shadow: 0 14px 30px -12px rgba(26, 58, 107, 0.55);
}
.pv-btn--primary:hover { background: #142f58; }

.pv-btn--cyan {
  background: var(--pv-cyan);
  color: var(--pv-white);
  box-shadow: 0 14px 30px -12px rgba(43, 143, 212, 0.55);
}
.pv-btn--cyan:hover { background: #2380bd; }

.pv-btn--outline {
  background: transparent;
  border-color: var(--pv-navy);
  color: var(--pv-navy);
}
.pv-btn--outline:hover { background: var(--pv-navy); color: var(--pv-white); }

.pv-btn--outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--pv-white);
}
.pv-btn--outline-light:hover { background: var(--pv-white); color: var(--pv-navy); border-color: var(--pv-white); }

.pv-btn--white {
  background: var(--pv-white);
  color: var(--pv-cyan);
}
.pv-btn--white:hover { background: var(--pv-navy-dark); color: var(--pv-white); }

/* =========================================================
   HEADER / NAVBAR
   ========================================================= */
.pv-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--pv-border);
}

.pv-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.pv-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--pv-navy);
}

.pv-nav__logo span { color: var(--pv-cyan); }

.pv-nav__logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.pv-nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.pv-nav__links > li { position: relative; }

.pv-nav__links a.pv-nav__link {
  font-family: var(--pv-font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--pv-text);
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.pv-nav__links a.pv-nav__link:hover,
.pv-nav__links li.pv-has-dropdown:hover a.pv-nav__link { color: var(--pv-cyan); }

.pv-nav__caret { width: 10px; height: 10px; transition: transform 0.2s ease; }
.pv-has-dropdown:hover .pv-nav__caret { transform: rotate(180deg); }

.pv-dropdown {
  position: absolute;
  top: 100%;
  left: -18px;
  min-width: 300px;
  background: var(--pv-white);
  border-radius: var(--pv-radius);
  box-shadow: var(--pv-shadow);
  border: 1px solid var(--pv-border);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.pv-has-dropdown:hover .pv-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pv-dropdown__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--pv-text);
  transition: background 0.15s ease, color 0.15s ease;
}

.pv-dropdown__item:hover { background: var(--pv-bg); color: var(--pv-cyan); }

.pv-dropdown__num {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--pv-bg);
  color: var(--pv-navy);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pv-nav__cta { display: flex; align-items: center; gap: 14px; }

.pv-mobile-cta { display: none; }

.pv-nav__close { display: none; }

.pv-nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.pv-nav__burger span { width: 24px; height: 2px; background: var(--pv-navy); border-radius: 2px; }

/* =========================================================
   HERO — HOME
   ========================================================= */
.pv-hero-home {
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  background-image: url("../assets/img/hero-home.png");
  background-size: 65%;
  background-position: 75% center;
  background-repeat: no-repeat;
}

.pv-hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 45%,
    rgba(255, 255, 255, 0) 65%
  );
}

.pv-hero-home__col--text {
  width: 50%;
  display: flex;
  align-items: center;
  align-self: center;
  padding-left: max(24px, calc((100% - var(--pv-container)) / 2 + 24px));
  padding-right: 40px;
  background: transparent;
  position: relative;
  z-index: 2;
}

.pv-hero-home__content {
  max-width: 560px;
  padding: 0;
  margin: auto 0;
}

.pv-hero-home h1 {
  font-size: 52px;
  color: var(--pv-navy);
  margin-bottom: 22px;
}

.pv-hero-home h1 em {
  font-style: normal;
  color: var(--pv-cyan);
}

.pv-hero-home__sub {
  font-size: 18px;
  color: #46506b;
  max-width: 520px;
  margin-bottom: 34px;
}

.pv-hero-home__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* =========================================================
   HERO — PÁGINAS INTERNAS
   ========================================================= */
.pv-hero-inner {
  background: var(--pv-navy-dark);
  background-image: radial-gradient(circle at 15% 20%, rgba(43, 143, 212, 0.25), transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(43, 143, 212, 0.18), transparent 50%);
  color: #fff;
  padding: 92px 0 70px;
  position: relative;
}

.pv-hero-inner .pv-eyebrow { color: var(--pv-blue-light); }
.pv-hero-inner .pv-eyebrow::before { background: var(--pv-blue-light); }

.pv-hero-inner h1 { font-size: 44px; color: #fff; max-width: 720px; }

.pv-hero-inner__sub {
  font-size: 17px;
  color: #b9cbe4;
  max-width: 620px;
  margin-top: 18px;
}

.pv-hero-inner__crumbs {
  margin-top: 28px;
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: #8ea6c9;
}
.pv-hero-inner__crumbs a:hover { color: #fff; }

/* =========================================================
   HERO — PHARMA (foto)
   ========================================================= */
.pv-hero-pharma {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.pv-hero-pharma .pv-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(30%) brightness(0.6);
  z-index: 0;
}

.pv-hero-pharma::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 35, 71, 0.88);
  z-index: 1;
}

.pv-hero-pharma .pv-container {
  position: relative;
  z-index: 2;
}

.pv-hero-pharma .pv-hero-content {
  max-width: 620px;
}

.pv-hero-pharma .pv-eyebrow { color: var(--pv-blue-light); }
.pv-hero-pharma .pv-eyebrow::before { background: var(--pv-blue-light); }

.pv-hero-pharma h1 {
  font-size: 44px;
  color: #fff;
  margin-top: 14px;
}

.pv-hero-pharma .pv-highlight { color: var(--pv-blue-light); }

.pv-hero-pharma .pv-hero-inner__sub {
  color: #d6e2f2;
}

.pv-hero-pharma__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.pv-btn--pharma-white {
  background: #ffffff;
  color: #1a3a6b;
  border: none;
}
.pv-btn--pharma-white:hover { background: #e6edf6; }

.pv-btn--pharma-ghost {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.pv-btn--pharma-ghost:hover { background: rgba(255, 255, 255, 0.15); border-color: #fff; }

/* =========================================================
   HERO — CONSUMER ELECTRONICS (foto)
   ========================================================= */
.pv-hero-consumer {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.pv-hero-consumer .pv-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(30%) brightness(0.6);
  z-index: 0;
}

.pv-hero-consumer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 35, 71, 0.88);
  z-index: 1;
}

.pv-hero-consumer .pv-container {
  position: relative;
  z-index: 2;
}

.pv-hero-consumer .pv-hero-content {
  max-width: 620px;
}

.pv-hero-consumer .pv-eyebrow { color: var(--pv-blue-light); }
.pv-hero-consumer .pv-eyebrow::before { background: var(--pv-blue-light); }

.pv-hero-consumer h1 {
  font-size: 44px;
  color: #fff;
  margin-top: 14px;
}

.pv-hero-consumer .pv-highlight { color: var(--pv-blue-light); }

.pv-hero-consumer .pv-hero-inner__sub {
  color: #d6e2f2;
}

.pv-hero-consumer__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.pv-btn--consumer-white {
  background: #ffffff;
  color: #1a3a6b;
  border: none;
}
.pv-btn--consumer-white:hover { background: #e6edf6; }

.pv-btn--consumer-ghost {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.pv-btn--consumer-ghost:hover { background: rgba(255, 255, 255, 0.15); border-color: #fff; }

/* =========================================================
   HERO — CLIENTES (foto)
   ========================================================= */
.pv-hero-clientes {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.pv-hero-clientes .pv-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(30%) brightness(0.6);
  z-index: 0;
}

.pv-hero-clientes::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 35, 71, 0.92);
  z-index: 1;
}

.pv-hero-clientes .pv-container {
  position: relative;
  z-index: 2;
}

.pv-hero-clientes .pv-hero-content {
  max-width: 620px;
}

.pv-hero-clientes .pv-eyebrow { color: var(--pv-blue-light); }
.pv-hero-clientes .pv-eyebrow::before { background: var(--pv-blue-light); }

.pv-hero-clientes h1 {
  font-size: 44px;
  color: #fff;
  margin-top: 14px;
}

.pv-hero-clientes .pv-highlight { color: var(--pv-blue-light); }

.pv-hero-clientes .pv-hero-inner__sub {
  color: #d6e2f2;
}

.pv-hero-clientes__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.pv-btn--clientes-white {
  background: #ffffff;
  color: #1a3a6b;
  border: none;
}
.pv-btn--clientes-white:hover { background: #e6edf6; }

.pv-btn--clientes-ghost {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.pv-btn--clientes-ghost:hover { background: rgba(255, 255, 255, 0.15); border-color: #fff; }

/* =========================================================
   SUBNAV — anclas de servicios (Pharma)
   ========================================================= */
.pv-subnav {
  position: sticky;
  top: 84px;
  z-index: 900;
  background: #fff;
  border-bottom: 1px solid var(--pv-border);
}

.pv-subnav__row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 16px 0;
  scrollbar-width: none;
}
.pv-subnav__row::-webkit-scrollbar { display: none; }

.pv-subnav__row a {
  white-space: nowrap;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--pv-navy);
  background: var(--pv-bg);
  border: 1px solid var(--pv-border);
  transition: background 0.2s ease, color 0.2s ease;
}
.pv-subnav__row a:hover { background: var(--pv-navy); color: #fff; border-color: var(--pv-navy); }

/* =========================================================
   SERVICE BLOCK — secciones detalladas Pharma
   ========================================================= */
.pv-service { scroll-margin-top: 150px; }

/* Scopeado a pharma.html (body.pv-page-pharma) para no afectar a
   consumer.html, que también usa la clase .pv-service. */
.pv-page-pharma .pv-service { padding: 64px 0; }

/* Cadenas — tira de logos entre Reposición y Auditores.
   Reutiliza las clases .pv-logos-strip (mismo diseño que la tira de
   logos del home) para mantener consistencia visual. */
.pv-chains-strip {
  background: #ffffff;
  padding: 16px 0 40px;
}

.pv-service__grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.pv-service--reverse .pv-service__grid { grid-template-columns: 0.85fr 1fr; }
.pv-service--reverse .pv-service__text { order: 2; }
.pv-service--reverse .pv-service__card { order: 1; }

.pv-service__num-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--pv-cyan);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pv-service__num-badge span {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(43,143,212,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pv-navy);
  font-size: 13px;
}

.pv-service__text h2 { font-size: 30px; color: var(--pv-navy); margin-bottom: 16px; }
.pv-service__text > p { font-size: 16px; color: #4a5678; margin-bottom: 26px; max-width: 520px; }

.pv-service__list { list-style: none; display: grid; gap: 14px; }
.pv-service__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  font-weight: 600;
  color: #33405e;
}
.pv-service__list li::before {
  content: "";
  flex-shrink: 0;
  margin-top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pv-cyan);
}

.pv-service__card {
  background: linear-gradient(135deg, var(--pv-navy) 0%, #0d2347 100%);
  border-radius: 22px;
  padding: 44px;
  color: #fff;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--pv-shadow);
  position: relative;
  overflow: hidden;
}
.pv-service__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(43,143,212,0.35), transparent 55%);
}
.pv-service__card-num {
  font-family: var(--pv-font-heading);
  font-size: 74px;
  font-weight: 800;
  color: rgba(255,255,255,0.16);
  line-height: 1;
  position: relative;
}
.pv-service__card-stat { position: relative; }
.pv-service__card-stat b {
  font-family: var(--pv-font-heading);
  display: block;
  font-size: 36px;
  color: var(--pv-orange);
  margin-bottom: 6px;
}
.pv-service__card-stat span { font-size: 14px; color: rgba(255, 255, 255, 1); font-weight: 600; }

/* Inteligencia comercial — grid transversal */
.pv-intel {
  background: var(--pv-navy-dark);
  border-radius: 26px;
  padding: 56px;
  color: #fff;
}
.pv-intel__head { max-width: 640px; margin-bottom: 40px; }
.pv-intel__head h2 { font-size: 30px; color: #fff; margin-bottom: 14px; }
.pv-intel__head p { color: #b9cbe4; font-size: 16px; }
.pv-intel__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pv-intel__item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 24px;
}
.pv-intel__item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(143,181,222,0.2);
  color: var(--pv-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 16px;
  font-size: 14px;
}
.pv-intel__item h4 { font-size: 15.5px; color: #fff; margin-bottom: 8px; }
.pv-intel__item p { font-size: 13.5px; color: #b9cbe4; }

/* =========================================================
   STATS BAR
   ========================================================= */
.pv-stats {
  background: var(--pv-navy);
  padding: 46px 0;
}

.pv-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pv-stats__item { text-align: center; color: #fff; padding: 0 12px; }
.pv-stats__item + .pv-stats__item { border-left: 1px solid rgba(255,255,255,0.14); }

.pv-stats__num {
  font-family: var(--pv-font-heading);
  font-size: 38px;
  font-weight: 800;
  color: var(--pv-orange);
  display: block;
  margin-bottom: 6px;
}

.pv-stats__label {
  font-size: 13.5px;
  color: #d7e4f5;
  font-weight: 600;
}

/* =========================================================
   SECTION HEADINGS reutilizables
   ========================================================= */
.pv-section__head { max-width: 680px; margin-bottom: 50px; }
#marcas .pv-section__head { max-width: none; }
#marcas .pv-section__head p { white-space: nowrap; }
.pv-section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.pv-section__head h2 { font-size: 34px; color: var(--pv-navy); margin-bottom: 14px; }
.pv-section__head p { font-size: 16px; color: #5a6684; }

/* =========================================================
   CARDS — Verticales (Home)
   ========================================================= */
.pv-verticals {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.pv-vcard {
  border-radius: var(--pv-radius);
  padding: 38px;
  border: 1px solid var(--pv-border);
  background: var(--pv-white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pv-vcard:hover { transform: translateY(-6px); box-shadow: var(--pv-shadow); }

.pv-vcard--navy { background: var(--pv-navy); color: #fff; border-color: transparent; }
.pv-vcard--navy .pv-vcard__tag { background: rgba(255,255,255,0.12); color: var(--pv-blue-light); }
.pv-vcard--navy .pv-vcard__list li { color: #dbe7f7; }
.pv-vcard--navy .pv-vcard__list li::before { color: var(--pv-blue-light); }

.pv-vcard__tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(43,143,212,0.1);
  color: var(--pv-cyan);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

.pv-vcard h3 { font-size: 24px; margin-bottom: 12px; }
.pv-vcard p { color: #5a6684; font-size: 15px; margin-bottom: 22px; }
.pv-vcard--navy p { color: #c3d3ec; }

.pv-vcard__list { list-style: none; margin-bottom: 26px; display: grid; gap: 10px; }
.pv-vcard__list li {
  font-size: 14.5px;
  font-weight: 600;
  color: #33405e;
  padding-left: 22px;
  position: relative;
}
.pv-vcard__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pv-cyan);
  font-weight: 800;
}

/* =========================================================
   SERVICE GRID (usado en home resumen + pharma anchors)
   ========================================================= */
.pv-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pv-service-mini {
  border: 1px solid var(--pv-border);
  border-radius: 12px;
  padding: 26px 20px;
  background: #fff;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.pv-service-mini:hover { transform: translateY(-4px); border-color: var(--pv-cyan); }

.pv-service-mini__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--pv-bg);
  color: var(--pv-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 16px;
  font-size: 15px;
}

.pv-service-mini h4 { font-size: 15.5px; color: var(--pv-navy); margin-bottom: 8px; }
.pv-service-mini p { font-size: 13.5px; color: #5a6684; }

/* =========================================================
   PAÍSES — cards horizontales
   ========================================================= */
.pv-countries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

/* Scope ".pv-countries--home" porque contacto.html reutiliza las mismas
   clases .pv-country-card / __flag para su propio diseño (caja navy con
   AR/CL/PE). Se scopea para no pisar ese estilo ni depender del orden
   de las reglas en el archivo. */
.pv-countries--home .pv-country-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--pv-border);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 4px 14px rgba(20, 30, 60, 0.05);
}

.pv-countries--home .pv-country-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.pv-countries--home .pv-country-card__flag {
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  font-size: 44px;
  line-height: 1;
  flex-shrink: 0;
}
.pv-countries--home .pv-country-card h4 { font-size: 15.5px; color: var(--pv-navy); }
.pv-countries--home .pv-country-card p { font-size: 13.5px; color: #5a6684; }

@media (max-width: 700px) {
  .pv-countries { grid-template-columns: 1fr; }
}

/* =========================================================
   TESTIMONIAL / LOGOS STRIP
   ========================================================= */
.pv-logos-strip { text-align: center; }
.pv-logos-strip__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8494b3;
  margin-bottom: 24px;
}

.pv-logos-strip__group-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pv-cyan);
  margin-bottom: 18px;
}
.pv-logos-strip__group-label:not(:first-of-type) { margin-top: 32px; }

.pv-logos-strip__row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 46px;
}

.pv-logos-strip__row img {
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.2s ease;
}
.pv-logos-strip__row img:hover { filter: none; }

/* LG (SVG cuadrado) y Roemmers (mucho margen blanco alrededor del
   isotipo) se ven más chicos que el resto con la misma altura fija,
   así que se les da un poco más de alto para emparejar el tamaño visual. */
.pv-logos-strip__row img[src*="roemmers"] {
  height: 68px;
}

.pv-logos-strip__row img[src*="lg-electronics"] {
  height: 82px;
}

/* Electrolux viene con mucho margen horizontal en el SVG, se ve
   demasiado grande respecto al resto con la misma altura fija. */
.pv-logos-strip__row img[src*="electrolux"] {
  height: 32px;
}

/* Candy se ve más grande que el resto con la misma altura fija. */
.pv-logos-strip__row img[src*="candy"] {
  height: 33px;
}

/* =========================================================
   CLIENTES — grid de logos por vertical
   ========================================================= */
.pv-clients-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.pv-clients-tabs a {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--pv-border);
  color: var(--pv-navy);
  background: #fff;
}
.pv-clients-tabs a:hover { background: var(--pv-navy); color: #fff; border-color: var(--pv-navy); }

.pv-clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.pv-logo-card {
  aspect-ratio: 4 / 3;
  background: #fff;
  border: 1px solid var(--pv-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.pv-logo-card:hover { transform: translateY(-4px); box-shadow: var(--pv-shadow); border-color: var(--pv-cyan); }
.pv-logo-card img { max-height: 44px; width: auto; object-fit: contain; }

/* El logo de LG viene en un SVG cuadrado (mucho margen alrededor del
   isotipo), por eso se ve más chico que los demás logos, que son
   isologos horizontales. Se le da más alto para que se perciba del
   mismo tamaño que el resto. */
.pv-logo-card img[src*="lg-electronics"] { max-height: 64px; }

.pv-logo-card--placeholder {
  border-style: dashed;
  border-color: #c7d6ea;
  background: var(--pv-bg);
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.pv-logo-card--placeholder span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #8494b3;
}
.pv-logo-card--placeholder .pv-logo-card__mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #dfe9f6;
  color: var(--pv-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
}

/* =========================================================
   CONTACTO — formulario + datos por país
   ========================================================= */
.pv-contact-section { display: flex; }
.pv-contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  width: 100%;
}

.pv-form-card {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--pv-border);
  border-radius: var(--pv-radius);
  padding: 40px;
  box-shadow: var(--pv-shadow);
}
.pv-form-card h3 { font-size: 22px; color: var(--pv-navy); margin-bottom: 8px; }
.pv-form-card > p { font-size: 14.5px; color: #5a6684; margin-bottom: 28px; }

.pv-form { display: grid; gap: 18px; }
.pv-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.pv-form__group { display: grid; gap: 8px; }
.pv-form__group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--pv-navy);
}
.pv-form__group input,
.pv-form__group select,
.pv-form__group textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 9px;
  border: 1px solid var(--pv-border);
  background: var(--pv-bg);
  font-family: var(--pv-font);
  font-size: 14.5px;
  color: var(--pv-text);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.pv-form__group input:focus,
.pv-form__group select:focus,
.pv-form__group textarea:focus {
  outline: none;
  border-color: var(--pv-cyan);
  background: #fff;
}
.pv-form__group textarea { resize: vertical; min-height: 120px; }

.pv-form__submit { margin-top: 6px; }
.pv-form__submit .pv-btn { width: 100%; }
.pv-form__note { font-size: 12.5px; color: #8494b3; margin-top: 4px; }

/* =========================================================
   CTA FINAL (celeste)
   ========================================================= */
.pv-cta {
  background: linear-gradient(120deg, var(--pv-cyan), #1f78ba);
  color: #fff;
  padding: 70px 0;
}

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

.pv-cta h2 { font-size: 30px; color: #fff; margin-bottom: 10px; }
.pv-cta p { color: #eaf5ff; font-size: 15.5px; max-width: 480px; }
.pv-cta__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* =========================================================
   FOOTER
   ========================================================= */
.pv-footer {
  background: var(--pv-navy-dark);
  color: #b9cbe4;
  padding: 70px 0 26px;
  position: relative;
  overflow: hidden;
}

.pv-footer__icon-mark {
  position: absolute;
  top: -70px;
  right: -60px;
  width: 340px;
  height: 340px;
  opacity: 0.06;
  filter: brightness(0) invert(1);
  pointer-events: none;
  z-index: 0;
}

.pv-footer > .pv-container { position: relative; z-index: 1; }

.pv-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.pv-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.pv-footer__logo span { color: var(--pv-blue-light); }

.pv-footer__logo-icon {
  height: 32px;
  width: auto;
  display: block;
}

.pv-footer p.pv-footer__desc { font-size: 14px; color: #8ea6c9; max-width: 280px; }

.pv-footer h5 {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.pv-footer ul { list-style: none; display: grid; gap: 11px; }
.pv-footer ul a { font-size: 14px; color: #b9cbe4; transition: color 0.2s ease; }
.pv-footer ul a:hover { color: var(--pv-blue-light); }

.pv-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #7188aa;
}

.pv-footer__social { display: flex; gap: 12px; }
.pv-footer__social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #b9cbe4;
}
.pv-footer__social a:hover { background: var(--pv-cyan); color: #fff; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 992px) {
  .pv-hero-home {
    min-height: 85vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-position: center top;
  }
  .pv-hero-home::before {
    background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.97) 55%, #ffffff 75%);
  }
  .pv-hero-home__col--text {
    width: 100%;
    padding: 0 24px;
  }
  .pv-hero-home__content { max-width: none; padding: 0; margin: 0; }
  .pv-hero-home h1 { font-size: 40px; }
  .pv-verticals { grid-template-columns: 1fr; }
  .pv-services-grid { grid-template-columns: repeat(2, 1fr); }
  .pv-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .pv-footer__grid { grid-template-columns: 1fr 1fr; }
  .pv-nav__links { display: none; }
  .pv-nav__burger { display: flex; }

  /* Menú mobile — overlay fullscreen */
  .pv-nav__links.pv-nav__links--open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 999;
    padding: 80px 32px 32px;
    overflow-y: auto;
  }

  .pv-nav__links--open > li { width: 100%; }

  .pv-nav__links--open a.pv-nav__link {
    font-size: 20px;
    padding: 16px 0;
    border-bottom: 0.5px solid #d0e4f5;
    color: #1a3a6b;
    justify-content: space-between;
    width: 100%;
  }

  .pv-nav__links--open .pv-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    min-width: 0;
    padding: 0;
    display: none;
  }

  .pv-nav__links--open .pv-has-dropdown--open .pv-dropdown {
    display: block;
  }

  .pv-nav__links--open .pv-dropdown__item {
    font-size: 15px;
    padding: 12px 8px;
    border-bottom: none;
  }

  .pv-nav__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 30px;
    line-height: 1;
    color: #1a3a6b;
  }

  .pv-nav__links--open .pv-mobile-cta {
    display: block;
    text-align: center;
    margin-top: 24px;
    width: 100%;
  }
  .pv-service__grid,
  .pv-service--reverse .pv-service__grid { grid-template-columns: 1fr; }
  .pv-service--reverse .pv-service__text,
  .pv-service--reverse .pv-service__card { order: initial; }
  .pv-service__card { order: -1; }
  .pv-intel__grid { grid-template-columns: repeat(2, 1fr); }
  .pv-intel { padding: 36px 24px; }
  .pv-clients-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .pv-hero-home {
    background-image: none;
    background-color: #f7fafd;
    min-height: auto;
    padding: 40px 24px;
  }
  .pv-hero-home::before { display: none; }
  .pv-hero-home__col--text { width: 100%; padding: 0; }
  .pv-hero-home h1 { font-size: 32px; }
  .pv-hero-home__actions { gap: 8px; }
  .pv-hero-home__actions .pv-btn { width: 100%; }

  .pv-verticals .pv-vcard:not(.pv-vcard--navy) {
    background: #e8f4fd;
    border: 1.5px solid #2b8fd4;
  }
  .pv-verticals .pv-vcard:not(.pv-vcard--navy) h3,
  .pv-verticals .pv-vcard:not(.pv-vcard--navy) .pv-vcard__list { color: #1a3a6b; }
  .pv-verticals .pv-vcard:not(.pv-vcard--navy) .pv-btn {
    background: #1a3a6b;
    color: #fff;
    border: none;
  }
}

@media (max-width: 600px) {
  .pv-section { padding: 60px 0; }
  .pv-hero-home h1 { font-size: 32px; }
  .pv-hero-inner h1 { font-size: 30px; }
  .pv-services-grid { grid-template-columns: 1fr; }
  .pv-cta__box { flex-direction: column; align-items: flex-start; }
  .pv-footer__grid { grid-template-columns: 1fr; }
  .pv-nav__cta .pv-btn--outline { display: none; }
  .pv-stats__grid { grid-template-columns: 1fr 1fr; }
  .pv-stats__item + .pv-stats__item { border-left: none; }
  .pv-intel__grid { grid-template-columns: 1fr; }
  .pv-subnav { top: 0; }
  .pv-clients-grid { grid-template-columns: repeat(2, 1fr); }
  .pv-form__row { grid-template-columns: 1fr; }
  .pv-form-card { padding: 28px 22px; }
}

/* =========================================================
   SCROLL ANIMATIONS — Intersection Observer (js/main.js)
   Estado inicial oculto solo si JS corrió (body.js-loaded),
   así se evita el flash de contenido invisible si JS falla.
   ========================================================= */
body.js-loaded .pv-animate {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

body.js-loaded .pv-animate.pv-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  body.js-loaded .pv-animate {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================================================
   BOTÓN FLOTANTE — WhatsApp
   ========================================================= */
.pv-whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37,211,102,0.4);
  transition: transform 0.2s;
  animation: whatsappFadeIn 0.5s ease 2s both;
}
.pv-whatsapp-btn:hover { transform: scale(1.1); }
@keyframes whatsappFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
