/* ==========================================================================
   POLNAC — reconstrucción visual
   Tokens extraídos directamente de https://polnacmx.com/ (CSS computado +
   hoja de estilos embebida del sitio original).
   ========================================================================== */

:root{
  /* --- color: primary / secondary / accent --- */
  --primary: #773DBD;         /* botón secundario, cifras destacadas */
  --primary-hover: #6533A3;
  --accent: #19D3C5;          /* botón primario, underline de tabs, focus ring */
  --accent-hover: #1EC2B6;
  --whatsapp: #25D366;        /* CTAs de cotización */
  --cyan-text: #4DE6E6;       /* "38 años de innovación", "alcance mundial" */
  --purple-text: #994DE6;     /* "100% mexicana" */
  --yellow-text: #E6E64D;     /* keywords en alianzas */

  /* --- background / surface --- */
  --bg: #ffffff;
  --surface: #ffffff;
  --bg-dark: #130A1F;         /* botón "default" */
  --bg-topbar: #0C0D19;

  /* --- text --- */
  --text: rgba(0,0,0,.87);
  --muted: rgba(0,0,0,.6);
  --muted-2: rgba(0,0,0,.55);
  --border: rgba(0,0,0,.38);

  /* --- tipografía --- */
  --font-display: 'Archivo', sans-serif;
  --font-body: 'Roboto', sans-serif;

  /* --- radii / shadow --- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --shadow-elevation: 0 3px 1px -2px rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12);
  --shadow-card: 0 2px 12px rgba(19,10,31,.12);
  --shadow-header: 0 1px 0 rgba(0,0,0,.06), 0 4px 16px -8px rgba(19,10,31,.18);
}

/* ---------- reset / base ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body{ margin: 0; }
img{ max-width: 100%; }
h1,h2,h3,p{ margin: 0; }
button{ font: inherit; color: inherit; }
a{ color: inherit; text-decoration: inherit; }

.polnac-root{
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.polnac-root ::selection{ background: rgba(25,211,197,.35); }
.polnac-root section{ content-visibility: auto; contain-intrinsic-size: auto 600px; }
.polnac-root button, .polnac-root a{
  transition: opacity .18s ease, transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.polnac-root button:focus-visible, .polnac-root a:focus-visible{
  outline: 2px solid var(--accent); outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce){
  .polnac-root *, .polnac-root *::before, .polnac-root *::after{ animation: none !important; transition: none !important; }
}

.font-archivo{ font-family: var(--font-display) !important; }
.font-title{ font-size: 40px; font-weight: 700; line-height: 52px; letter-spacing: 0; }
.font-size-40{ font-size: 2.5rem !important; line-height: 1.2; }
.text-body-all{ font-size: 1.125rem !important; }
.truncate-lines{
  display: -webkit-box; max-width: 100%; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

main{ padding-top: 64px; } /* compensa el header fixed */

/* ---------- botones ---------- */
.polnac-btn{
  border-radius: var(--radius-md);
  font-size: 1rem; font-weight: 400; letter-spacing: .009375em;
  box-shadow: var(--shadow-elevation);
  cursor: pointer; border: none;
  display: inline-flex; align-items: center; justify-content: center;
}
.polnac-btn:hover{ transform: translateY(-1px); }
.polnac-btn:active{ transform: translateY(0); }

.polnac-btn-primary{ background: var(--accent); color: #000; }
.polnac-btn-primary:hover{ background: var(--accent-hover); }

.polnac-btn-secondary{ background: var(--primary); color: #fff; border-radius: 24px; padding: 14px 40px; }
.polnac-btn-secondary:hover{ background: var(--primary-hover); }

.polnac-btn-default{ background: var(--bg-dark); color: #fff; padding: 16px 40px; }
.polnac-btn-default:hover{ background: #fff; color: #000; box-shadow: var(--shadow-elevation), inset 0 0 0 1px rgba(0,0,0,.12); }

.wa-btn{
  background: var(--whatsapp); color: #fff; border-radius: 26px; padding: 12px 20px;
  font-weight: 700; font-size: .95rem; gap: 10px; width: 100%;
}
.wa-btn:hover{ background: #1fb955; }

/* ---------- scroller genérico (categorías / testimonios / blog) ---------- */
.polnac-scroll{ display: flex; overflow-x: auto; scrollbar-width: thin; -webkit-overflow-scrolling: touch; }
.polnac-scroll::-webkit-scrollbar{ height: 6px; }
.polnac-scroll::-webkit-scrollbar-thumb{ background: #ccc; border-radius: 3px; }
.polnac-scroll-center{ justify-content: safe center; }

.center-btn-row{ display: flex; justify-content: center; margin: 40px 0; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header{
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  backdrop-filter: saturate(1.4) blur(10px);
  box-shadow: var(--shadow-header);
}
.topbar{
  display: none; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 4px; padding: 5px 14px; background: var(--bg-topbar);
}
.topbar-phone{ display: flex; align-items: center; gap: 6px; color: var(--whatsapp); font-weight: 700; font-size: .8rem; }
.topbar-email{ color: #C084FC; font-weight: 600; font-size: .74rem; }
.topbar-ship{ flex-basis: 100%; text-align: center; color: rgba(255,255,255,.75); font-weight: 600; font-size: .7rem; padding-top: 2px; }

.header-row{
  height: 64px; max-width: 1400px; margin: 0 auto; padding: 0 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.header-left{ display: flex; align-items: center; gap: 18px; min-width: 0; }
.header-logo-btn{ background: none; border: none; cursor: pointer; padding-top: 12px; }
.header-logo{ height: 30px; display: block; }
.header-contact{ line-height: 1.35; }
.header-phone{ display: flex; align-items: center; gap: 6px; color: #128C7E; font-weight: 700; font-size: .88rem; }
.header-email{ display: block; color: var(--primary); font-weight: 600; font-size: .8rem; }
.header-ship{ display: block; color: var(--muted-2); font-weight: 600; font-size: .72rem; }

.nav-desktop{ display: flex; align-items: center; gap: 18px; }
.polnac-tabs{ display: flex; gap: 18px; }
.polnac-tab{
  color: var(--text); font-size: 14px; text-transform: none; padding: 0 4px; height: 64px;
  display: inline-flex; align-items: center; position: relative;
  background: none; border: none; font-family: var(--font-body); letter-spacing: .0892857143em; cursor: pointer;
}
.polnac-tab::after{
  content: ''; position: absolute; bottom: 0; left: 50%; right: 50%; height: 2px; background: var(--accent);
  transition: left .22s ease, right .22s ease;
}
.polnac-tab:hover::after{ left: 20%; right: 20%; }
.lang-badge{
  font-size: 14px; color: var(--muted); border: 1px solid var(--border); border-radius: 16px; padding: 4px 14px;
  white-space: nowrap;
}
.burger{ background: none; border: none; cursor: pointer; display: none; }

.nav-mobile{
  display: none; flex-direction: column; background: #fff; border-top: 1px solid rgba(0,0,0,.08);
  max-width: 1400px; margin: 0 auto;
}
.nav-mobile .polnac-tab{ height: 48px; justify-content: flex-start; padding: 0 20px; width: 100%; }
.nav-mobile .polnac-tab::after{ display: none; }
.site-header.menu-open .nav-mobile{ display: flex; }

@media (max-width: 1000px){
  .nav-desktop{ display: none; }
  .burger{ display: block; }
}
@media (max-width: 560px){
  .header-contact{ display: none; }
  .topbar{ display: flex; }
  main{ padding-top: 112px; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero-video-wrap{
  height: 560px; position: relative; overflow: hidden;
  background: linear-gradient(to right, rgba(46,46,101,.9), rgba(119,61,189,.9));
}
.hero-video{ width: 100%; height: 560px; object-fit: cover; display: block; opacity: .85; mix-blend-mode: luminosity; }
.hero-video-dot{ position: absolute; bottom: 8px; left: 0; right: 0; text-align: center; }
.hero-video-dot span{ display: inline-block; width: 18px; height: 18px; border-radius: 50%; background: #fff; opacity: .9; }

.hero-text-section{ background: #fff; }
.hero-text-inner{
  max-width: 1185px; margin: 0 auto; padding: 40px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 24px;
}
.hero-text-col{ flex: 1 1 420px; }
.hero-h1{ text-align: left; margin: 0; font-weight: 700; }
.hero-h1-line{ display: block; }
.hero-h1-accent{ color: var(--cyan-text); }
.hero-p{ margin: 20px 0; text-align: left; }
.hero-cta-row{ display: flex; justify-content: flex-start; }
.hero-media-col{ flex: 1 1 420px; }
.hero-iframe{ border-radius: 8px; display: block; border: none; }

@media (max-width: 960px){
  .font-title{ font-size: 30px; line-height: 40px; }
}
@media (max-width: 640px){
  .hero-video-wrap, .hero-video{ height: 320px; }
  .hero-text-inner{ padding: 28px 20px; }
}

/* ==========================================================================
   DESTACADOS
   ========================================================================== */
.section-destacados{ margin: 40px 0; }
.section-title{ font-weight: 700; text-align: center; margin: 40px 0; }
.destacados-grid{
  display: flex; flex-wrap: wrap; justify-content: center; gap: 28px;
  padding: 0 20px; max-width: 1250px; margin: 0 auto;
}
.polnac-card{
  flex: 1 1 300px; max-width: 360px; border-radius: var(--radius-lg); overflow: hidden;
  background: #fff; box-shadow: var(--shadow-card); display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.polnac-card:hover{ transform: translateY(-4px); box-shadow: 0 14px 32px -12px rgba(119,61,189,.35); }
.card-img-btn{ background: none; border: none; padding: 0; cursor: pointer; position: relative; display: block; width: 100%; }
.card-img{ width: 100%; height: 190px; object-fit: cover; display: block; }
.price-badge{
  position: absolute; top: 12px; left: 12px; background: var(--accent); color: #06312D;
  font-weight: 800; font-size: .92rem; border-radius: var(--radius-sm); padding: 6px 12px;
}
.card-body{ padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.card-title{ font-weight: 800; font-size: 1.2rem; margin: 0; }
.card-desc{ font-size: .88rem; color: var(--muted); margin: 6px 0 16px; line-height: 1.5; }
.card-cta-wrap{ margin-top: auto; }

/* ==========================================================================
   CATEGORÍAS
   ========================================================================== */
.cat-title{ color: #000; }
.cat-scroll-wrap{ max-width: 1400px; margin: 0 auto; }
.cat-scroll{ padding: 20px 16px; }
.cat-btn{ background: none; border: none; padding: 0; cursor: pointer; flex-shrink: 0; }
.cat-item{ margin: 20px; width: 220px; }
.cat-tile{ width: 220px; height: 123px; border-radius: var(--radius-sm); background-size: cover; background-position: center; }
.cat-label{ font-weight: 700; text-align: center; color: var(--text); margin-top: 12px; }
.cat-cta{ border-radius: 24px; padding: 16px 40px; }

@media (max-width: 640px){
  .cat-item, .cat-tile{ width: 170px; }
  .cat-item{ margin: 12px; }
}

/* ==========================================================================
   TESTIMONIOS
   ========================================================================== */
.section-testimonios{
  padding-bottom: 40px;
  background-image: linear-gradient(rgba(61,124,201,.7), rgba(101,93,198,.7)), url('../assets/bg-testimonios.png');
  background-size: cover; background-repeat: no-repeat; background-position: center;
}
.testi-title{ color: #fff; text-align: center; margin: 0; padding-top: 40px; }
.testi-scroll{ padding: 16px; align-items: center; }
.testi-card{
  margin: 8px 20px; flex-shrink: 0; width: 440px; max-width: 85vw; min-height: 300px;
  border-radius: var(--radius-sm); box-shadow: var(--shadow-elevation);
}
.testi-card--white{ background: #fff; }
.testi-card--teal{ background: #09BBAE; min-height: 330px; }
.testi-card-inner{ padding: 16px; }
.testi-company{
  font-size: 24px; text-transform: uppercase; text-align: center; font-weight: 700;
  margin-top: 8px; margin-bottom: 0;
}
.testi-card--white .testi-company, .testi-card--white .testi-person, .testi-card--white .testi-role{ color: #655DC6; }
.testi-card--teal .testi-company, .testi-card--teal .testi-person, .testi-card--teal .testi-role{ color: #000; }
.testi-person{ font-size: 20px; margin: 0; font-weight: 700; text-align: center; }
.testi-role{ margin: 0; text-align: center; }
.testi-stars{ text-align: center; margin-top: 4px; }
.testi-stars svg{ display: inline-block; vertical-align: middle; }
.testi-quote{ margin-top: 8px; text-align: center; color: var(--muted); font-size: 14px; }
.testi-quote--dark{ color: #000; }

/* ==========================================================================
   EMPRESA 100% MEXICANA
   ========================================================================== */
.empresa-inner{ max-width: 1185px; margin: 0 auto; padding: 0 16px; }
.empresa-top{
  display: flex; flex-wrap: wrap; align-items: center; margin-top: 40px;
  justify-content: center; gap: 16px;
}
.empresa-col-text{ flex: 1 1 400px; }
.empresa-heading{ font-size: 2.6rem; line-height: 1.2; text-align: left; font-weight: 300; }
.empresa-purple{ color: var(--purple-text); }
.empresa-cyan{ color: var(--cyan-text); }
.empresa-desc{ margin-top: 8px; text-align: justify; }
.empresa-col-map{ flex: 1 1 400px; text-align: center; }
.empresa-map-img{ max-height: 450px; max-width: 100%; width: 450px; }

.empresa-stats{ display: flex; flex-wrap: wrap; margin: 20px 0; align-items: center; }
.empresa-stat{ flex: 1 1 220px; padding: 12px; }
.empresa-stat--wide{ flex: 2 1 340px; }
.empresa-stat-num{ color: var(--primary); font-weight: 700; text-align: center; font-size: 2.1rem; margin: 0; }
.empresa-stat-cap{ text-align: center; }
.empresa-stat-text{ text-align: left; }

.empresa-icons{ display: flex; flex-wrap: wrap; justify-content: center; margin: 0 20px 40px; }
.empresa-icon-item{ flex: 1 1 240px; max-width: 300px; text-align: center; padding: 12px; }
.empresa-icon-img{ max-height: 70px; width: 90px; object-fit: contain; }
.empresa-icon-cap{ text-align: center; margin-top: 8px; }

/* ==========================================================================
   ALIANZAS
   ========================================================================== */
.section-alianzas{
  background-image: linear-gradient(rgba(46,46,101,.7), rgba(46,46,101,.7)), url('../assets/bg-alianzas.png');
  background-size: cover; background-repeat: no-repeat; background-position: center;
}
.alianzas-inner{ max-width: 1185px; margin: 0 auto; padding: 0 16px; }
.alianzas-title{ text-align: center; color: #fff; font-weight: 700; margin: 0; padding: 40px 0; }
.alianzas-text{ color: #fff; text-align: center; padding: 0 60px; }
.alianzas-yellow{ color: var(--yellow-text); }
.alianzas-cta{ margin: 40px 0; padding: 18px 40px; }

@media (max-width: 640px){
  .alianzas-text{ padding: 0 16px; }
}

/* ==========================================================================
   BLOG
   ========================================================================== */
.blog-scroll-wrap{ max-width: 1600px; margin: 0 auto; }
.blog-scroll{ padding: 16px 8px; }
.blog-card{ margin: 4px; max-width: 345px; flex-shrink: 0; border-radius: var(--radius-sm); background: #fff; }
.blog-img{ width: 100%; display: block; }
.blog-title{
  font-size: 1rem; font-weight: 700; text-align: left; padding: 0 4px; margin: 8px 0 0; line-height: 1.5;
}
.blog-excerpt{ padding: 8px 16px 16px; text-align: left; color: var(--muted); font-size: 14px; }
.blog-btn-row{ margin: 24px 0 64px; }

/* ==========================================================================
   AGENDA UNA CITA
   ========================================================================== */
.section-cita{ overflow: hidden; }
.cita-row{ display: flex; flex-wrap: wrap; }
.cita-col-text{
  flex: 1 1 400px;
  background-image: url('../assets/footer-cita.png');
  background-size: cover; background-repeat: no-repeat; background-position: center;
  min-height: 510px;
}
.cita-inner{ max-width: 560px; margin: 0 auto; padding: 40px 32px 64px; }
.cita-title{ font-size: 2.125rem; font-weight: 700; margin: 40px 0; color: #fff; }
.cita-desc{ color: #fff; }
.cita-cta-link{ display: inline-block; }
.cita-cta{ padding: 18px 40px; margin-top: 16px; }
.cita-col-img{
  flex: 1 1 400px;
  background-image: url('../assets/footer-img.png');
  background-size: cover; background-repeat: no-repeat; background-position: center;
  min-height: 510px;
}

@media (max-width: 960px){
  .cita-col-img{ display: none; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{
  background-image: url('../assets/footer-d.png');
  background-size: cover; background-repeat: no-repeat; background-position: center;
  margin-top: -45px; min-height: 540px;
}
.footer-inner{ max-width: 1300px; margin: 0 auto; padding: 0 32px; }
.footer-row{ display: flex; flex-wrap: wrap; padding-top: 130px; }
.footer-col{ flex: 1 1 140px; margin-top: 40px; }
.footer-col-brand{ flex: 2 1 280px; }
.footer-logo{ height: 34px; }
.footer-address{ color: #1DE9B6; font-size: 1rem; text-align: left; margin-top: 16px; padding-right: 16px; }
.footer-link{ color: #fff; font-size: 1rem; cursor: pointer; margin: 0 0 16px; }
.footer-col-social{ flex: 1 1 220px; }
.footer-social-row{ display: flex; gap: 14px; }
.footer-social-icon{ height: 28px; width: auto; display: block; }
.footer-wa-link{ color: #fff; font-size: 1rem; margin-top: 20px; display: inline-flex; align-items: center; gap: 8px; }
.footer-tel-link{ color: #fff; font-size: 1rem; display: block; margin-top: 10px; }
.footer-mail-link{ color: #1DE9B6; font-size: .95rem; display: block; margin-top: 8px; }

.footer-hr{ border: none; border-top: 1px solid rgba(255,255,255,.25); margin: 28px 0 20px; }
.footer-bottom{ display: flex; flex-wrap: wrap; justify-content: space-between; padding-bottom: 28px; gap: 8px; }
.footer-copy{ color: #1DE9B6; font-size: 1rem; margin: 4px 0; }
.footer-credit{ display: block; color: rgba(255,255,255,.35); font-size: .75rem; margin-top: 6px; }
.footer-credit a{ color: rgba(255,255,255,.5); text-decoration: underline; text-underline-offset: 2px; }
.footer-terms{ color: #1DE9B6; font-size: 1rem; margin: 4px 0; text-align: right; }
.footer-terms a{ color: #1DE9B6; }

.footer-acceso-row{ text-align: center; padding: 10px 0 18px; background: #fff; }
.footer-acceso-link{ font-size: 11px; color: #888; opacity: .7; }

/* ---------- WhatsApp flotante ---------- */
.wa-float{
  position: fixed; right: 16px; bottom: 18px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%; background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 5px -1px rgba(0,0,0,.2), 0 6px 10px 0 rgba(0,0,0,.14), 0 1px 18px 0 rgba(0,0,0,.12);
}
.wa-float:hover{ transform: scale(1.06); }

/* ==========================================================================
   RESPONSIVE — ajustes generales por breakpoint
   (1440 / 1280 / 1024 desktop fluido vía flex-wrap; 768 / 480 / 375 abajo)
   ========================================================================== */
@media (max-width: 768px){
  .font-size-40{ font-size: 2rem !important; }
  .empresa-heading{ font-size: 2rem; text-align: center; }
  .empresa-col-text, .empresa-col-map{ text-align: center; }
  .footer-row{ padding-top: 90px; }
  .site-footer{ min-height: 460px; }
}

@media (max-width: 480px){
  .hero-text-inner{ padding: 24px 16px; }
  .hero-cta-row{ justify-content: center; }
  .hero-h1, .hero-p{ text-align: center; }
  .destacados-grid{ gap: 18px; padding: 0 12px; }
  .polnac-card{ max-width: 100%; }
  .empresa-stats{ flex-direction: column; }
  .empresa-stat--wide{ order: 3; }
  .testi-card{ width: 90vw; }
  .footer-terms{ text-align: left; }
  .footer-bottom{ flex-direction: column; }
}

@media (max-width: 375px){
  .font-title{ font-size: 26px; line-height: 34px; }
  .cita-inner{ padding: 32px 20px 48px; }
}

/* ==========================================================================
   PÁGINAS INTERNAS
   Contenido real extraído del CMS del sitio (nunca publicado en el front
   original) — componentes nuevos, mismo sistema de diseño que el Home.
   ========================================================================== */

/* --- banner de cabecera (todas las páginas internas) --- */
.page-banner{
  position: relative; min-height: 300px; display: flex; align-items: center;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  overflow: hidden;
}
.page-banner::before{
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(rgba(19,10,31,.62), rgba(46,46,101,.62));
}
.page-banner-inner{
  position: relative; z-index: 1; max-width: 900px; margin: 0 auto; padding: 118px 24px 44px; text-align: center; color: #fff;
}
.page-banner-eyebrow{ font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .8rem; color: var(--accent); }
.page-banner h1{ font-weight: 700; font-size: 2.3rem; line-height: 1.2; margin-top: 8px; }
.page-banner p{ margin-top: 14px; font-size: 1.05rem; opacity: .95; max-width: 720px; margin-left: auto; margin-right: auto; }

/* --- breadcrumbs --- */
.breadcrumbs{ max-width: 1185px; margin: 0 auto; padding: 14px 20px; font-size: .82rem; color: var(--muted); }
.breadcrumbs a{ color: var(--primary); }
.breadcrumbs a:hover{ text-decoration: underline; }
.breadcrumbs .sep{ margin: 0 6px; opacity: .5; }

/* --- prose / artículo largo --- */
.prose{ max-width: 780px; margin: 0 auto; padding: 8px 20px 48px; line-height: 1.75; font-size: 1.05rem; color: var(--text); }
.prose h2{ font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; margin: 32px 0 12px; }
.prose h3{ font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; margin: 24px 0 10px; color: var(--primary); }
.prose p{ margin: 0 0 16px; }
.prose strong{ color: var(--primary); }
.prose a{ color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.prose img{ max-width: 100%; border-radius: 12px; margin: 8px 0 20px; display: block; }
.prose figure{ margin: 0 0 20px; }
.prose ul{ padding-left: 1.2em; margin: 0 0 16px; }

/* --- tarjetas de valores / listado genérico en grid --- */
.value-grid{ display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 20px; max-width: 1185px; margin: 0 auto; padding: 8px 20px 48px; }
.value-card{ background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); padding: 22px; }
.value-card h3{ font-family: var(--font-display); color: var(--primary); font-weight: 800; font-size: 1.05rem; margin: 0 0 8px; }
.value-card p{ font-size: .92rem; color: var(--muted); line-height: 1.55; margin: 0; }

/* --- directorio en grid (productos / mercados / blog / sucursales) --- */
.directory-grid{ display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 24px; max-width: 1250px; margin: 0 auto; padding: 28px 20px 48px; }
a.directory-card{ background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); display: flex; flex-direction: column; transition: transform .22s ease, box-shadow .22s ease; }
a.directory-card:hover{ transform: translateY(-4px); box-shadow: 0 14px 32px -12px rgba(119,61,189,.35); }
.directory-card img{ width: 100%; height: 170px; object-fit: cover; display: block; background: #f2f2f5; }
.directory-card-body{ padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.directory-card-title{ font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; margin: 0 0 6px; color: var(--text); }
.directory-card-desc{ font-size: .88rem; color: var(--muted); line-height: 1.5; margin: 0; }
.directory-card-tag{ margin-top: auto; padding-top: 12px; color: var(--primary); font-weight: 700; font-size: .82rem; }

/* --- FAQ acordeón --- */
.accordion-wrap{ max-width: 820px; margin: 0 auto; padding: 8px 20px 56px; }
.accordion-cat{ margin-bottom: 28px; }
.accordion-cat-title{ font-family: var(--font-display); color: var(--primary); font-weight: 800; font-size: 1.2rem; margin: 0 0 4px; }
.accordion-item{ border-bottom: 1px solid rgba(0,0,0,.1); }
.accordion-q{
  width: 100%; text-align: left; background: none; border: none; padding: 16px 2px;
  font-weight: 700; font-size: .98rem; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 12px; color: var(--text); font-family: var(--font-body);
}
.accordion-q .chev{ flex-shrink: 0; transition: transform .2s ease; color: var(--primary); }
.accordion-item.open .accordion-q .chev{ transform: rotate(180deg); }
.accordion-a{ max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.accordion-a p{ font-size: .92rem; color: var(--muted); line-height: 1.65; padding: 0 2px 18px; margin: 0; white-space: pre-line; }
.accordion-item.open .accordion-a{ max-height: 1200px; }

/* --- directorio de sucursales --- */
.branch-grid{ display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 20px; max-width: 1250px; margin: 0 auto; padding: 28px 20px 48px; }
.branch-card{ background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); padding: 22px; }
.branch-card h3{ font-family: var(--font-display); font-weight: 800; color: var(--primary); margin: 0 0 10px; font-size: 1.05rem; }
.branch-card p{ margin: 4px 0; font-size: .88rem; color: var(--muted); line-height: 1.5; }
.branch-card a{ color: var(--primary); }

/* --- artículo de blog --- */
.article-header{ max-width: 780px; margin: 0 auto; padding: 40px 20px 0; }
.article-eyebrow{ color: var(--primary); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; }
.article-title{ font-family: var(--font-display); font-weight: 700; font-size: 2rem; line-height: 1.25; margin: 10px 0; }
.article-meta{ color: var(--muted); font-size: .88rem; }
.article-cover{ width: 100%; max-height: 420px; object-fit: cover; border-radius: var(--radius-lg); margin: 24px 0 8px; display: block; }

/* --- ficha de marca --- */
.brand-block{ max-width: 1020px; margin: 0 auto; padding: 40px 20px; display: flex; gap: 36px; flex-wrap: wrap; align-items: center; }
.brand-block:nth-child(even){ flex-direction: row-reverse; }
.brand-block-img{ flex: 1 1 220px; text-align: center; }
.brand-block-img img{ max-width: 220px; width: 100%; }
.brand-block-text{ flex: 2 1 380px; }
.brand-block-title{ font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--primary); margin: 0 0 6px; }
.brand-block-subtitle{ font-weight: 700; margin: 0 0 12px; color: var(--text); }
.brand-block-desc{ font-size: .95rem; color: var(--muted); line-height: 1.65; white-space: pre-line; }

/* --- alianzas: tarjetas de socios --- */
.partner-grid{ display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 22px; max-width: 1185px; margin: 0 auto; padding: 8px 20px 48px; }
.partner-card{ background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.partner-card img{ max-height: 46px; max-width: 160px; object-fit: contain; align-self: flex-start; }
.partner-card p{ font-size: .88rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* --- banda CTA reutilizable (morado, texto blanco) --- */
.cta-band{ background: linear-gradient(120deg, #2E2E65, #773DBD); padding: 56px 20px; text-align: center; color: #fff; }
.cta-band h2{ font-family: var(--font-display); font-weight: 700; font-size: 1.8rem; margin: 0 0 12px; }
.cta-band p{ max-width: 620px; margin: 0 auto 22px; opacity: .95; }

/* --- tabla técnica (laboratorio) --- */
.tech-table-wrap{ max-width: 780px; margin: 0 auto; padding: 8px 20px 24px; overflow-x: auto; }
.tech-table{ width: 100%; border-collapse: collapse; font-size: .9rem; }
.tech-table th{ background: var(--primary); color: #fff; text-align: left; padding: 10px 14px; font-weight: 700; }
.tech-table td{ padding: 10px 14px; border-bottom: 1px solid rgba(0,0,0,.08); }
.tech-table tr:nth-child(even) td{ background: #FAF8FC; }

/* --- lista simple con check (otras pruebas, servicios) --- */
.check-list{ max-width: 780px; margin: 0 auto; padding: 0 20px 32px; list-style: none; display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 10px 20px; }
.check-list li{ font-size: .92rem; color: var(--text); padding-left: 26px; position: relative; }
.check-list li::before{ content: '✓'; position: absolute; left: 0; color: var(--accent-hover); font-weight: 700; }

/* --- página de contacto --- */
.contact-grid{ max-width: 1085px; margin: 0 auto; padding: 8px 20px 56px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; }
.contact-card{ background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); padding: 28px; }
.contact-card h2{ font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; margin: 0 0 16px; color: var(--primary); }
.contact-line{ display: flex; align-items: center; gap: 10px; margin: 0 0 14px; font-size: .95rem; }
.contact-line a{ color: var(--text); }
.contact-line a:hover{ color: var(--primary); }
.contact-map{ border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); border: 0; width: 100%; min-height: 320px; display: block; }

@media (max-width: 860px){
  .contact-grid{ grid-template-columns: 1fr; }
  .brand-block, .brand-block:nth-child(even){ flex-direction: column; text-align: center; }
}
@media (max-width: 640px){
  .page-banner-inner{ padding: 108px 20px 32px; }
  .page-banner h1{ font-size: 1.7rem; }
}
