:root {
  --primary: #014e7c;
  --primary-light: #0176c0;
  --secondary: #f39200;
  --text: #212529;
  --bg: #ffffff;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
body{font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif;line-height:1.6;color:var(--text);background:var(--bg)}
header{background:var(--primary);color:#fff;position:sticky;top:0;z-index:1000}

.container{width:90%;max-width:1080px;margin:0 auto}
/* —— Productos · desktop à 2 colonnes —— */
/* mobile (<900 px) : 1 colonne (règles déjà en place)  */
/* desktop (≥900 px) : 2 colonnes                       */
@media (min-width:900px){
  /* cible uniquement la grille de productos.html */
  #productos .grid-3{
    grid-template-columns:repeat(2,1fr);
  }
}

.flex{display:flex;align-items:center}

/* ——— BANNER INFORMATIVO (au-dessus du header) ——— */
.site-banner{
  display:flex;align-items:center;justify-content:center;gap:.75rem;
  padding:.65rem 1rem;
  background:var(--secondary);       /* orange corporate */
  color:#fff;font-weight:600;
  text-align:center;
  position:sticky;top:0;z-index:1001;/* au-dessus du header */
  box-shadow:0 2px 6px rgba(0,0,0,.15);
}
.site-banner strong{text-decoration:underline;}
.banner-close{
  background:none;border:0;color:#fff;font-size:1.25rem;
  line-height:1;cursor:pointer;padding:0 .25rem;
}
.banner-close:hover{opacity:.8;}
@media(max-width:600px){
  .site-banner{flex-direction:column;gap:.5rem;} /* texte + bouton passent à la ligne */
}

/* ——— Masquer la bannière sur mobile & tablette ——— */
@media (max-width: 992px){    /* 992 px ≈ fin du “tablet-landscape” */
  .site-banner{display:none;}
}

/* ——— HEADER & BURGER ——— */
.site-header{
  background:rgba(1,78,124,.95);      /* bleu primaire semi-transparent */
  box-shadow:0 2px 6px rgba(0,0,0,.15);
  position:sticky;top:0;z-index:999;
}

.header-inner{
  display:flex;align-items:center;
  justify-content:space-between;      /* espace entre logo & burger */
  padding:.5rem 0;
}

/* —— Alignement vertical parfait dans le header —— */
.header-inner{
  padding:.75rem 0;               /* un peu plus d’air */
}

.nav-list{
  display:flex;
  gap:1.5rem;
  align-items:center;             /* ⬅️ centre les <li> sur l’axe Y */
}

.nav-list li{display:flex;}       /* pour que <a> & .btn héritent du centrage */

/* (facultatif) apaise la hauteur du bouton pour qu’il n’empiète pas */
.nav-cta .btn-sm{
  line-height:1;
  padding:.55rem 1.25rem;
}

/* logo avec dégagement autour */
.logo img{height:48px;width:auto;margin:0 .5rem;}

/* burger bouton */
.burger{
  display:flex;flex-direction:column;
  gap:5px;padding:.5rem;
  background:none;border:0;cursor:pointer;
}
.burger span{
  width:26px;height:3px;background:#fff;
  transition:transform .3s,opacity .3s;
  border-radius:3px;
}

/* état “open” du burger → X */
.burger.open span:nth-child(1){transform:translateY(8px) rotate(45deg);}
.burger.open span:nth-child(2){opacity:0;}
.burger.open span:nth-child(3){transform:translateY(-8px) rotate(-45deg);}

/* menu commun */
.nav-list{
  list-style:none;margin:0;padding:0;
  display:flex;gap:1.5rem;            /* espace suffisant desktop */
}
.nav-list a{
  color:#fff;text-decoration:none;font-weight:500;
}
.nav-list a:hover{color:#f39200;}

/* — burger invisible ≥ 769 px — */
@media(min-width:769px){
  .burger{display:none;}
}

/* — mobile (<768 px) — */
@media(max-width:768px){
  .nav-list{
    position:fixed;inset:0 0 0 40%;          /* slide depuis la droite */
    background:#002b45;flex-direction:column;
    padding:6rem 2rem;gap:2rem;
    transform:translateX(100%);transition:.35s;
  }
  .nav-list.open{transform:translateX(0);}    /* révélé */
}

/* ——— FIN HEADER ——— */

/* ——— CTA HEADER ——— */
.nav-cta{margin-left:1rem;}           /* espace sur desktop */
.nav-cta .btn-sm{
  padding:.55rem 1.25rem;font-size:.85rem;
  white-space:nowrap;                 /* texte sur une ligne */
}

/* largeur complète & centrage dans le volet mobile */
@media(max-width:768px){
  .nav-cta{margin:0;}
  .nav-cta .btn-sm{
    width:100%;text-align:center;
  }
}

/* ——— Bouton CTA header : texte reste blanc même au survol ——— */
.nav-cta .btn-sm,
.nav-cta .btn-sm:hover,
.nav-cta .btn-sm:focus{
  color:#fff !important;    /* force la couleur blanche */
  text-decoration:none;     /* empêche soulignement éventuel */
}

/* —— ALIGNEMENT VERTICAL PARFAIT DU HEADER —— */

/* la barre principale */
.header-inner{
  display:flex;align-items:center;       /* logo + menu centrés sur l’axe Y */
  padding:.65rem 0;                      /* fine marge haut/bas */
}

/* la liste de navigation */
.nav-list{
  display:flex;gap:1.5rem;
  align-items:center;                    /* centre chaque <li> (texte + bouton) */
}

/* chaque <li> devient flex pour centrer son contenu */
.nav-list li{display:flex;align-items:center;}

/* bouton CTA : même hauteur “pill” et aucun décalage */
.nav-cta .btn-sm{
  display:inline-flex;align-items:center;justify-content:center;
  padding:.55rem 1.25rem;line-height:1;
  margin:0;                              /* retire tout offset vertical */
}

/* (mobile) panneau coulissant : rien ne change */
@media(max-width:768px){
  .nav-list{flex-direction:column;gap:2rem;}
  .nav-cta .btn-sm{width:100%;text-align:center;}
}
/* ——— FIN HEADER ——— */

/* ——— HERO REMASTERED ——— */
.hero{
  position:relative;
  padding:6rem 0 4rem;
  text-align:center;
  color:#fff;
  overflow:hidden;
}

.hero::before{               /* image de fond */
  content:"";
  position:absolute;inset:0;
  background:url('assets/img/hero-industrial.jpg') center/cover no-repeat;
  z-index:-2;
}
.hero::after{                /* voile couleur pour contraste */
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(135deg,
              rgba(1,78,124,.88) 0%,
              rgba(0,43,69,.88) 100%);
  z-index:-1;
}

.hero h1{
  font-size:clamp(2.5rem,6vw,3.5rem);
  line-height:1.2;
}
.hero .accent{color:#f39200;}
.hero p{
  max-width:720px;
  margin:1rem auto 2rem;
  font-size:1.125rem;
}
.btn-lg{padding:1rem 2rem;font-size:1.125rem}

.wave{                       /* vague blanche de séparation */
  position:absolute;
  bottom:-1px;left:0;width:100%;height:90px;
  fill:#fff;                /* s’accorde avec le fond du body */
  z-index:-1;
}
/* ——— fin HERO ——— */

/* ——— BOUTON AMÉLIORÉ ——— */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:.5rem;

  padding:.85rem 1.75rem;
  font-weight:600;font-size:1rem;line-height:1;
  color:#fff;text-decoration:none;

  background:linear-gradient(135deg,var(--secondary) 0%,#ffb24d 100%);
  border-radius:999px;                 /* look “pill” moderne */
  box-shadow:0 4px 12px rgba(0,0,0,.15);

  transition:background .25s ease,box-shadow .25s ease,
             transform .25s cubic-bezier(.215,.61,.355,1);
}

/* état survol */
.btn:hover{
  background:linear-gradient(135deg,#ffb24d 0%,var(--secondary) 100%);
  box-shadow:0 6px 18px rgba(0,0,0,.18);
  transform:translateY(-3px);
}

/* clic */
.btn:active{
  transform:translateY(-1px) scale(.98);
  box-shadow:0 3px 10px rgba(0,0,0,.16);
}

/* focus clavier */
.btn:focus-visible{
  outline:3px solid #fff;outline-offset:2px;
}

/* petite flèche animée (optionnelle) */
.btn::after{
  content:"→";
  font-size:1.2em;transition:transform .25s;
}
.btn:hover::after{transform:translateX(4px);}

/* ——— ABOUT SPOTLIGHT 2025 ——— */
.about-spotlight{
  position:relative;padding:5rem 0;
  background:linear-gradient(135deg,#002b45 0%,#014e7c 100%);
  color:#fff;overflow:hidden;
}

.about-grid{
  display:grid;gap:3rem;align-items:center;
}
@media(min-width:900px){.about-grid{grid-template-columns:1fr 1fr;}}

/* — texte — */
.about-text .lead{
  font-size:1.125rem;margin:1rem 0 2rem;
}
.badge-list{
  display:flex;flex-wrap:wrap;gap:.5rem 1rem;
  margin-bottom:2rem;padding:0;list-style:none;
}
.badge-list li{
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.25);
  border-radius:999px;padding:.25rem .75rem;
  font-size:.875rem;
}

/* titre souligné dynamique */
.accent-bg{
  background:linear-gradient(90deg,var(--secondary) 0%,var(--secondary) 100%);
  background-size:100% 35%;
  background-repeat:no-repeat;
  background-position:0 70%;
  padding-bottom:.2em;
}
/* titre souligné dynamique orange */
.accent-bw{
  background:linear-gradient(90deg,var(--secondary) 0%,var(--secondary) 100%);
  background-size:100% 35%;
  background-repeat:no-repeat;
  background-position:0 70%;
  padding-bottom:.2em;

      color:#fff;              /* ← texte en blanc */
}

/* — bouton outline — */
.btn-outline{
  padding:.75rem 1.5rem;border:2px solid var(--secondary);
  background:transparent;color:#fff;transition:.25s;
}
.btn-outline:hover{
  background:var(--secondary);color:#fff;
}

/* — image + blob — */
.about-img{position:relative;}
.about-img img{
  width:100%;height:auto;border-radius:1rem;display:block;
  filter:brightness(.9) contrast(1.05);
}
.about-img .blob{
  position:absolute;top:-10%;left:-10%;width:120%;height:120%;
  fill:var(--secondary);opacity:.05;z-index:-1;
}
/* ——— FIN ABOUT ——— */

/* ——— CTA CONTACTO 2025 ——— */
.cta-section{
  position:relative;padding:5rem 0 4rem;
  background:linear-gradient(135deg,var(--secondary) 0%,#ffaf3d 100%);
  color:#fff;text-align:center;overflow:hidden;
}
.cta-wave-top,.cta-wave-bottom{
  position:absolute;width:100%;height:60px;left:0;fill:#fff;z-index:-1;
}
.cta-wave-top{top:0;transform:translateY(-100%);}
.cta-wave-bottom{bottom:0;}

.cta-inner .lead{
  font-size:1.125rem;margin:1rem auto 2.5rem;
  max-width:640px;
}
.cta-actions{
  display:flex;flex-wrap:wrap;justify-content:center;gap:1rem;
}
.cta-chip{
  display:inline-block;padding:.65rem 1.25rem;
  background:rgba(255,255,255,.15);
  border:1px solid rgba(255,255,255,.35);
  border-radius:999px;font-size:.95rem;color:#fff;
  text-decoration:none;transition:.25s;
}
.cta-chip:hover{background:rgba(255,255,255,.25);}
/* ——— FIN CTA ——— */

/* ——— INFO SECTION ——— */
.info-section{padding:4rem 0;background:#f8fafc;}   /* gris très clair */
.info-grid{
  display:grid;gap:2.5rem;text-align:center;
}
@media(min-width:600px){.info-grid{grid-template-columns:repeat(2,1fr);}}
@media(min-width:992px){.info-grid{grid-template-columns:repeat(3,1fr);}}

.info-item img{
  width:60px;height:auto;margin-bottom:1rem;
}
.info-item h3{
  font-size:1.05rem;font-weight:600;margin-bottom:.5rem;color:var(--primary);
}
.info-item p{
  font-size:.9rem;line-height:1.45;
}

/* accessibilité : dissimule le h2 visuellement mais pas aux lecteurs d’écran */
.sr-only{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);border:0;
}
/* ——— FIN INFO ——— */

/* ——— CONTACTO BLOCK ——— */
.contacto-block{
  position:relative;padding:5rem 0 4rem;
  background:#f8fafc;color:var(--text);text-align:center;overflow:hidden;
}
.wave-top,.wave-bottom{
  position:absolute;left:0;width:100%;height:60px;fill:#fff;z-index:-1;
}
.wave-top{top:0;transform:translateY(-100%);}
.wave-bottom{bottom:0;}

/* Titre réutilise .accent-bg déjà défini */
.contacto-heading{font-size:clamp(1.8rem,5vw,2.4rem);margin-bottom:2.5rem;}

.contact-list{
  list-style:none;margin:0 auto;max-width:640px;padding:0;
  display:grid;gap:1.5rem;
}
.contact-list li{
  display:flex;align-items:center;justify-content:center;gap:1rem;
  font-size:1rem;
}
.contact-list a{
  color:var(--primary);font-weight:600;text-decoration:none;
}
.contact-list a:hover{color:var(--secondary);}

.icon{
  background:var(--primary);color:#fff;border-radius:50%;
  width:46px;height:46px;display:flex;align-items:center;justify-content:center;
}
.icon svg{width:22px;height:22px;fill:#fff;}
/* ——— FIN CONTACTO ——— */

/* ——— ABOUT INTRO ——— */
.about-intro{
  position:relative;padding:4.5rem 0 3.5rem;
  background:#e9f2f8;                       /* bleu très pâle compatible charte */
  color:var(--text);text-align:center;
}
.about-intro .lead{
  font-size:1.125rem;max-width:720px;margin:1rem auto 2.5rem;
}
/* ——— STATS GRID ——— */
.stats-grid{
  margin:2rem 0 1rem;display:grid;gap:2rem;justify-content:center;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  list-style:none;padding:0;
}
.stat{
  position:relative;text-align:center;padding-top:4rem;
}
.stat-value{
  display:block;font-size:1.5rem;font-weight:700;color:var(--primary);
  margin:.25rem 0;
}
.stat small{font-size:.9rem;opacity:.8;}

/* anneau animé */
.stat-ring{
  position:absolute;top:0;left:50%;transform:translateX(-50%);
  width:64px;height:64px;
}
.stat-ring svg{width:100%;height:100%;transform:rotate(-90deg);}
.stat-ring .bg{
  fill:none;stroke:#e9ecef;stroke-width:4;
}
.stat-ring .fg{
  fill:none;stroke:var(--secondary);stroke-width:4;stroke-linecap:round;
  animation:dash 2s ease-out forwards;
}
@keyframes dash{
  from{stroke-dasharray:0 100;}
  to  {stroke-dasharray:var(--value,100) 0;}
}

/* couleurs adaptatives si thème sombre (facultatif) */
@media (prefers-color-scheme: dark){
  .stat-ring .bg{stroke:#334155;}
  .stat small{opacity:.7;}
}
/* ——— FIN STATS GRID ——— */

/* vague de transition vers la prochaine section */
.about-wave{
  position:absolute;bottom:0;left:0;width:100%;height:60px;
  fill:#fff;                                /* fond blanc suivant */
  z-index:-1;
}
/* ——— FIN ABOUT INTRO ——— */

/* ——— TIMELINE MODERN ——— */
.timeline-modern{padding:4.5rem 0;background:#fff;}
.tl-list{
  list-style:none;margin:0;padding:0;position:relative;
}
.tl-list::before{          /* ligne verticale (mobile) */
  content:"";position:absolute;left:24px;top:0;bottom:0;
  width:3px;background:var(--primary);
}
.tl-list li{
  position:relative;padding:0 0 2.25rem 70px; /* push le texte à droite de la puce */
}
/* Puce – année */
.tl-year{
  position:absolute;left:0;top:.2rem;
  width:48px;height:48px;border-radius:50%;
  background:var(--secondary);color:#fff;font-weight:700;
  display:flex;align-items:center;justify-content:center;
  font-size:1rem;
}

/* —— Amélioration desktop ≥ 768 px —— */
@media(min-width:768px){
  .tl-list{padding:0 0 0 0;}
  .tl-list::before{left:50%;transform:translateX(-50%);}
  .tl-list li{
    width:50%;padding:0 2.5rem 2.5rem 2.5rem;
  }
  .tl-list li:nth-child(odd){
    text-align:right;
  }
  .tl-list li:nth-child(even){
    margin-left:50%;           /* pousse à droite de l’axe */
  }
  .tl-list li:nth-child(odd) .tl-year{
    left:auto;right:-24px;     /* positionne la puce sur l’axe */
  }
  .tl-list li:nth-child(even) .tl-year{
    left:-24px;
  }
}
/* ——— FIN TIMELINE ——— */

/* ——— PRODUCT TILE ——— */
.product-tile{
  display:flex;flex-direction:column;align-items:center;
  background:#fff;border:1px solid #e9ecef;border-radius:1rem;
  box-shadow:0 4px 16px rgba(0,0,0,.06);
  transition:transform .25s ease,box-shadow .25s ease;
  overflow:hidden;             /* garde l’arrondi */
}
.product-tile:hover{
  transform:translateY(-6px);
  box-shadow:0 8px 22px rgba(0,0,0,.08);
}

/* vignette */
.product-thumb{
  width:100%;background:#f8fafc;    /* fond neutre */
  display:flex;align-items:center;justify-content:center;
  aspect-ratio:1/1;                 /* carré responsive */
}
.product-thumb img{
  max-width:80%;max-height:80%;
  object-fit:contain;               /* image entière, non coupée */
}

/* texte */
.product-info{
  text-align:center;padding:1rem .75rem;
}
.product-info h3{font-size:1.15rem;color:var(--primary);margin-bottom:.25rem;}
.product-info p{font-size:.9rem;}

/* CTA */
.btn-sm{
  padding:.5rem 1.25rem;font-size:.9rem;margin-bottom:1.25rem;
}
.product-cta{margin-top:auto;}      /* colle le bouton en bas */

/* responsive grille : si tu l’utilises dans .grid grid-3 existante, rien à changer */

/* réutilise .accent-bg du bloc “Quiénes somos” pour souligner le titre */

section{padding:4rem 0}

h2{font-size:clamp(1.5rem,4vw,2.25rem);margin-bottom:2rem;text-align:center;color:var(--primary)}
.grid{display:grid;gap:2rem}

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

.card{border:1px solid #e9ecef;border-radius:8px;overflow:hidden;box-shadow:0 4px 8px rgba(0,0,0,.05);transition:transform .3s}
.card:hover{transform:translateY(-4px)}
.card img{width:100%;height:auto;aspect-ratio:3/2;object-fit:cover;}
.card-body{padding:1rem}
.card-body h3{font-size:1.25rem;color:var(--primary);margin-bottom:.5rem}
.card-body p{font-size:.95rem}

form{display:grid;gap:1rem;max-width:600px;margin:0 auto}

input,textarea{padding:.75rem;border:1px solid #ced4da;border-radius:4px;width:100%}

textarea{min-height:140px}

footer{background:#002b45;color:#fff;padding:2rem 0}
footer .links{display:flex;flex-wrap:wrap;gap:1rem;justify-content:center;margin-top:1rem}
footer a{color:#fff;text-decoration:none;font-size:.875rem}

.card-link{display:block;text-decoration:none;color:inherit}
/* Ajoutez ceci dans style.css (en bas, par ex.) */
.tile{
  display:flex;
  flex-direction:column;
}
.tile .card{ flex:1; }          /* carte prend toute la hauteur disponible */
.tile-btn{ margin-top:.75rem; } /* petit espacement sous la carte           */

/* ——— AMX5 ——— */
/* ——— PRODUCT SPOTLIGHT ——— */
.product-spotlight{padding:4rem 0;}
.ps-grid{
  display:flex;flex-direction:column;gap:2rem;
}
/* —— Desktop ≥ 768 px —— */
@media(min-width:768px){
  .ps-grid{
    flex-direction:row;
    align-items:flex-start;   /* ⬅️  aligne les deux colonnes en haut */
    gap:3rem;
  }
  .ps-img{align-self:flex-start;}     /* l’image ne recentre plus */
  .ps-img{max-width:45%;}             /* (option) limite la largeur colonne image */
}

/* visuel */
.ps-img{
  flex:1;display:flex;justify-content:center;align-items:center;
  background:#f8fafc;border-radius:1rem;padding:1.5rem;
}
.ps-img img{
  max-width:100%;height:auto;object-fit:contain;
}

/* contenu */
.ps-content{flex:1;display:flex;flex-direction:column;gap:1rem;}
.ps-tagline{font-size:1.05rem;}
.ps-features{list-style:disc;padding-left:1.1rem;margin:0 0 1rem;}
.ps-features li{margin-bottom:.35rem;}

.ps-specs summary{
  cursor:pointer;font-weight:600;color:var(--primary);
  margin:.5rem 0 1rem;
}
.ps-specs table{
  width:100%;border-collapse:collapse;font-size:.9rem;
}
.ps-specs th{padding:.4rem 0;text-align:left;font-weight:600;}
.ps-specs td{padding:.4rem 0;}
.ps-specs tr+tr th,
.ps-specs tr+tr td{border-top:1px solid #e9ecef;}

.ps-cta{margin-top:1rem;align-self:flex-start;}

/* ——— CAMPO DE APLICACIÓN ——— */
.app-field-section{
  padding:4rem 0;background:#f8fafc;
  border-top:4px solid var(--primary);
}

.app-grid{
  display:flex;flex-direction:column;gap:2rem;
}

.app-icon{
  max-width:120px;align-self:center;
}
.app-icon svg{width:100%;height:auto;}

.app-content h2{
  font-size:1.5rem;margin-bottom:1rem;color:var(--primary);
}
.app-content p{margin-bottom:1rem;font-size:1rem;line-height:1.55;}

.app-note{
  background:rgba(243,146,0,.1);
  border-left:4px solid var(--secondary);
  padding:.75rem 1rem;border-radius:.25rem;
  font-size:.9rem;
}

/* desktop ≥ 768 px : icône à gauche, texte à droite */
@media(min-width:768px){
  .app-grid{
    flex-direction:row;align-items:center;
  }
  .app-icon{flex:0 0 140px;}
  .app-content{flex:1;}
}
/* ——— FIN CAMPO ——— */
/* ——— FIN PRODUCT SPOTLIGHT ——— */

/* —— Désactive les liens tél. auto-générés —— */
a[href^="tel"],
a[x-apple-data-detectors]{
  pointer-events:none;      /* plus cliquable                */
  text-decoration:none;     /* enlève le soulignement        */
  color:inherit;            /* garde la couleur du texte     */
  cursor:default;
}

/* ——— TECH SECTION ——— */
.tech-section{padding:4rem 0;}
.tech-section h2{text-align:center;margin-bottom:3rem;}

/* carte générique */
.tech-card{
  display:flex;flex-direction:column;gap:2rem;
  border-radius:1rem;padding:2rem;margin-bottom:3rem;
  box-shadow:0 4px 16px rgba(0,0,0,.05);
}
.tech-card.light{background:#f4f5f7;}
.tech-card.green{background:linear-gradient(135deg,#017a45 0%,#02683b 100%);
                 color:#fff;}
.tech-card.reverse{flex-direction:column-reverse;}
@media(min-width:900px){
  .tech-card{flex-direction:row;align-items:center;}
  .tech-card.reverse{flex-direction:row-reverse;}
}

/* image */
.tech-img{
  flex:0 0 220px;max-width:220px;width:100%;
  object-fit:contain;
}

/* contenu */
.tech-body{flex:1;display:flex;flex-direction:column;gap:1rem;}
.tech-body h3{font-size:1.125rem;margin:0 0 .5rem;}
.tech-list{
  list-style:none;padding:0;margin:0 0 1.5rem;
  display:flex;flex-wrap:wrap;gap:0.5rem 1.25rem;
}
.tech-list li{
  position:relative;padding-left:20px;font-size:.92rem;
}
.tech-list li::before{
  content:"✓";position:absolute;left:0;top:0;
  color:var(--secondary);font-weight:700;
}
.tech-card.green .tech-list li::before{color:#fff;}

/* boutons */
.tech-btn{align-self:flex-start;font-size:.9rem;padding:.75rem 1.5rem;}
.tech-btn.red{background:#e32222;color:#fff;}
.tech-btn.red:hover{background:#c91d1d;}
.tech-btn.yellow{background:#f8d44c;color:#000;}
.tech-btn.yellow:hover{background:#f4c933;}
/* ——— FIN TECH SECTION ——— */

/* ——— RFID INTRO (bandeau texte centré) ——— */
.rfid-intro{
  padding:3rem 0;
  background:#f8fafc;          /* gris très clair pour se détacher */
  font-size:1.05rem;
}
.rfid-intro p{
  max-width:860px;margin-inline:auto;text-align:center;
  line-height:1.55;font-weight:500;color:var(--text);
}

/* petite coupure de ligne seulement desktop : évite le long paragraphe */
.hide-mobile{display:none;}
@media(min-width:768px){.hide-mobile{display:inline;}}

/* accessibilité : .sr-only comme déjà défini dans ta feuille */

/* ——— PRINCIPIO RFID (3 tarjetas) ——— */
.rfid-principio{
  padding:4rem 0;
  background:#f8fafc;                   /* gris muy claro acorde al sitio */
  border-top:4px solid var(--primary);  /* franja azul superior */
  border-bottom:4px solid var(--primary);
}

.rfid-principio h2{
  text-align:center;
  color:var(--primary);
  margin-bottom:2.5rem;
}

/* contenedor tarjetas */
.rfid-cards{
  list-style:none;padding:0;margin:0;
  display:grid;gap:2rem;
}
@media(min-width:900px){
  .rfid-cards{grid-template-columns:repeat(3,1fr);}
}

/* tarjeta individual */
.rfid-card{
  background:#fff;
  border:2px solid var(--secondary);    /* contorno naranja corporate */
  border-radius:12px;
  padding:2rem 1.5rem;text-align:center;
  box-shadow:0 4px 12px rgba(0,0,0,.06);
  transition:transform .25s;
}
.rfid-card:hover{transform:translateY(-4px);} /* pequeño lift */

.rfid-card h3{
  font-size:1.05rem;font-weight:700;color:var(--primary);margin-bottom:1rem;
}
.rfid-card p{font-size:.95rem;line-height:1.4;}

/* ——— BENEFICIOS RFID ——— */
.rfid-beneficios{
  padding:4rem 0;
}
.rfid-beneficios h2{
  text-align:center;margin-bottom:3rem;color:var(--primary);
}

/* layout */
.beneficio{
  display:flex;flex-direction:column;gap:2rem;margin-bottom:3rem;
}
.beneficio-img{
  flex:0 0 320px;             /* reserva ancho fijo para la imagen */
}
.beneficio-img img{
  width:100%;height:auto;object-fit:cover;border-radius:12px;
  box-shadow:0 4px 12px rgba(0,0,0,.08);
}
.beneficio-txt{flex:1;display:flex;flex-direction:column;justify-content:center;}
.beneficio-txt h3{
  font-size:1.15rem;color:var(--primary);margin-bottom:1rem;font-weight:700;
}
.beneficio-txt p{font-size:.95rem;line-height:1.55;}

/* alternar imagen izquierda / derecha */
@media(min-width:900px){
  .beneficio{flex-direction:row;align-items:center;}
  .beneficio:nth-child(even){flex-direction:row-reverse;}
}

/* ajuste móvil / tablet */
@media(max-width:899px){
  .beneficio-img{max-width:100%;}
}

/* —— Section “rfid-aplicaciones” —— */
.rfid-aplicaciones{
  background:#008ec283;          /* ou background:transparent; */
}

.rfid-aplicaciones h2{
  text-align:center;margin-bottom:2.5rem;
  font-size:1.25rem;line-height:1.4;
}

.apli-cards{
  list-style:none;padding:0;margin:0;
  display:grid;gap:2rem;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
}

.apli-card{
  background:#fff;color:var(--text);
  border:2px solid var(--secondary);     /* contorno naranja corporativo */
  border-radius:10px;
  padding:2rem 1rem;text-align:center;
  box-shadow:0 4px 12px rgba(0,0,0,.06);
  transition:transform .25s ease;
}
.apli-card:hover{transform:translateY(-4px);} /* pequeño « lift » */

.apli-card h3{
  font-size:1.05rem;margin-bottom:.75rem;color:var(--primary);font-weight:700;
}
.apli-card p{font-size:.9rem;line-height:1.55;}

/* ——— COMPARATIVA RFID VS CONVENCIONAL ——— */
.rfid-comp{
  padding:4rem 0;
}
.rfid-comp h2{
  text-align:center;margin-bottom:2.5rem;color:var(--primary);
}

/* tabla */
.comp-table{
  width:100%;border-collapse:collapse;font-size:.95rem;margin-bottom:2.5rem;
}
.comp-table thead th{
  background:var(--primary);color:#fff;font-weight:600;
  padding:.9rem .5rem;text-align:center;
}
.comp-table th, .comp-table td{
  border:1px solid #e0e0e0;padding:1rem .75rem;text-align:left;
}
.comp-table tbody th{              /* primera columna destacada */
  background:var(--secondary);color:#000;font-weight:700;width:180px;
}
.comp-table td{vertical-align:top;}

/* párrafo final */
.comp-lead{
  max-width:920px;margin-inline:auto;text-align:center;
  font-size:1.05rem;line-height:1.55;
}

/* responsive: tabla desplazable en móviles */
@media(max-width:768px){
  .comp-table{display:block;overflow-x:auto;}
  .comp-table thead{display:none;}        /* encabezados simplificados */
  .comp-table tr{display:block;border:1px solid #e0e0e0;margin-bottom:1rem;}
  .comp-table tbody th,
  .comp-table td{display:block;width:100%;border:none;border-bottom:1px solid #e9ecef;}
  .comp-table tbody th{background:var(--secondary);color:#000;}
}

/* =======================================================================
   🔧 PROCESS ACOTOM ® - DESIGN
   ======================================================================= */

/* Section */

.hero-acotom{
  padding:4rem 0 3.5rem;
  background:#f5f7fa;
  color:#003A70;
}
.hero-acotom .hero-grid{
  max-width:1200px;
  margin:0 auto;
  padding:0 2rem;
  display:grid;
  grid-template-columns:minmax(0, 640px) minmax(240px, 1fr);
  gap:3rem 2.5rem;
  align-items:center;
}
.hero-copy{ text-align:left; }
.hero-copy h1{
  font-size:clamp(2rem, 3vw, 2.6rem);
  line-height:1.15;
  margin:0 0 1rem;
  font-weight:700;
}
.subtitle{ font-size:1.1rem; line-height:1.55; margin:0 0 1.6rem; }
.more-link{ text-decoration:underline; }

.highlights{ list-style:none; margin:0 0 2rem; padding:0; }
.highlights li{
  position:relative; padding-left:1.6rem; margin:.4rem 0; font-size:.98rem; line-height:1.45;
}
.highlights li::before{
  content:"✔"; position:absolute; left:0; top:0; color:#00A0E0; font-weight:700;
}

.cta-group{ display:flex; flex-wrap:wrap; gap:1rem; justify-content:flex-start; }
.btn{ display:inline-block; padding:.9rem 1.6rem; border-radius:6px; font-weight:600; text-decoration:none; transition:background .15s; }
.btn-primary{ background:#003A70; color:#fff; }
.btn-primary:hover{ background:#00264d; }
.btn-secondary{ background:#00A0E0; color:#fff; }
.btn-secondary:hover{ background:#0079ad; }

.hero-visual{
  text-align:right;
}
.hero-visual img{
  max-width:100%;
  height:auto;
}

/* Mobile */
@media (max-width:860px){
  .hero-acotom .hero-grid{
    grid-template-columns:1fr;
    gap:2rem;
  }
  .hero-visual{ text-align:center; }
}



/* Hauteur du header fixe (à ajuster) */
:root{ --header-h:72px; }

/* décale le contenu sous le header fixe + notch iOS */
main, .site-content{
  padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
}

/* évite que les cartes passent au-dessus du header */
.family-card{ position:relative; z-index:0; }

/* MOBILE : on enlève le margin négatif du bandeau bleu */
@media (max-width:768px){
  .family-card .family-head{
    margin:0 -1.6rem 1.2rem;       /* plus de marge négative en haut */
    padding:0.9rem 1.6rem;
  }
  .family-card{ padding-top:1.8rem; }  /* compense visuellement si besoin */
}

.why-acotom {
  padding: 3rem 0;
  background: #ffffff;
  color: #003A70;
}
.why-acotom .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.why-acotom h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
/* 2 colonnes desktop, 1 mobile */
.why-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(2, minmax(320px, 1fr));
  gap:2rem 2.5rem;
}
@media (max-width:768px){
  .why-list{ grid-template-columns:1fr; gap:1.4rem; }
}

/* Cadres + contenu */
.why-item{
  background:#f5f7fa;
  border:2px solid #003A70;
  border-radius:10px;
  padding:1.5rem 1.8rem 1.6rem 1.6rem; /* ajuste selon l’icône */
  position:relative;
  box-sizing:border-box;
  overflow-wrap:break-word;
  hyphens:auto;
  min-height:180px; /* optionnel pour harmoniser la hauteur */
}

/* Icône à droite (si tu l’utilises) */
.why-icon{
  position:absolute;
  right:1rem;
  top:1rem;
  font-size:1.6rem;
  line-height:1;
}

/* Titres / textes (inchangés) */
.why-item h3{
  margin:0 0 .6rem;
  font-size:1.1rem;
  font-weight:700;
  color:#003A70;
}
.why-item p{
  margin:0;
  font-size:.97rem;
  line-height:1.45;
  color:#003A70;
}

.acotom-working {
  padding: 3.5rem 0;
  background: #f5f7fa;
  color: #003A70;
}
.acotom-working .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.acotom-working h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
.working-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
  display: grid;
  gap: 1.8rem;
}
.step {
  background: #fff;
  border: 2px solid #003A70;
  border-radius: 10px;
  padding: 1.6rem 1.4rem 1.5rem 3.8rem;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1.2rem;
  top: 1.2rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: #00A0E0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
/* ===== mobile fix (≤768px) ===== */
@media (max-width:768px){
  .step{                /* ton bloc .step */
    padding-right:1.2rem;          /* on retire la réserve inutile */
  }
  .step-icon{           /* l’emoji cadenas */
    position:static;               /* plus d'absolu */
    display:inline-block;
    margin:0 0 .35rem 0;           /* icône au-dessus du titre */
    font-size:1.6rem;
    line-height:1;
    float:none;
  }
}
.step-icon {
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  font-size: 1.4rem;
}
.step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
}
.step p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.45;
}

.acotom-families {
  padding: 3.5rem 0;
  background: #ffffff;
  color: #003A70;
}
.acotom-families .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.acotom-families h2 {
  font-size: 2rem;
  margin-bottom: 2.2rem;
  font-weight: 700;
}

/* Cards */

/* Bandeau titre : même style, meilleur alignement texte + tag */
.family-card header{
  background:#003A70;
  color:#fff;
  margin:-1.8rem -1.6rem 1.2rem;
  padding:0.8rem 1.6rem;
  border-radius:10px 10px 0 0;

  display:flex;          /* aligne sur une ligne */
  align-items:center;    /* centre verticalement */
  gap:.7rem;             /* espace entre titre et tag */
  flex-wrap:wrap;        /* tag passe dessous si trop long */
}

/* Titre blanc, sans marge parasite */
.family-card header h3{
  margin:0;
  font-size:1.18rem;
  font-weight:700;
  line-height:1.25;
  color:#fff;
}

/* Tag bleu clair, même style, juste aligné */
.family-card header .tag{
  background:#00A0E0;
  color:#fff;
  padding:.28rem .7rem;
  border-radius:4px;
  font-size:.8rem;
  font-weight:600;
  white-space:nowrap;    /* évite la coupure en 2 mots */
}

.families-cards {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-bottom: 2.5rem;
}
.family-card {
  background: #f5f7fa;
  border: 2px solid #003A70;
  border-radius: 12px;
  padding: 1.8rem 1.6rem 1.6rem;
  position: relative;
}
.family-card header h3 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
}
.family-card .tag {
  display: inline-block;
  margin-left: .4rem;
  font-size: .8rem;
  background: #00A0E0;
  color: #fff;
  padding: .2rem .5rem;
  border-radius: 4px;
  font-weight: 600;
}

.features {
  list-style: none;
  margin: 0;
  padding: 0;
}
.features li {
  margin: .55rem 0;
  padding-left: 1.6rem;
  position: relative;
  font-size: .98rem;
  line-height: 1.45;
}
.features li span {
  position: absolute;
  left: 0;
  top: 0;
}

/* Table */
.compare-table-wrapper {
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}
.compare-table caption {
  text-align: left;
  font-weight: 600;
  margin-bottom: .6rem;
  color: #003A70;
}
.compare-table th,
.compare-table td {
  border: 1px solid #003A70;
  padding: .8rem .9rem;
  vertical-align: top;
}
.compare-table thead th {
  background: #003A70;
  color: #fff;
}
.compare-table tbody tr:nth-child(even) td {
  background: #f5f7fa;
}

.acotom-specs {
  padding: 3rem 0;
  background: #f5f7fa;
  color: #003A70;
}
.acotom-specs .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.acotom-specs h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
/* 3 colonnes desktop, 2 tablette, 1 mobile */
.spec-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:1.6rem 2rem;
  grid-template-columns:repeat(3, minmax(240px, 1fr));
}

@media (max-width:1024px){
  .spec-list{
    grid-template-columns:repeat(2, minmax(240px, 1fr));
  }
}
@media (max-width:640px){
  .spec-list{
    grid-template-columns:1fr;
  }
}

/* (Garde tes styles existants) */
.spec-item{
  background:#fff;
  border:2px solid #003A70;
  border-radius:10px;
  padding:1.3rem 1.2rem 1.4rem;
  box-sizing:border-box;
  min-height:160px;          /* optionnel pour harmoniser la hauteur */
}
.spec-item h3{
  margin:0 0 .4rem;
  font-size:1.05rem;
  font-weight:700;
  color:#003A70;
}
.spec-item p{
  margin:0;
  font-size:.95rem;
  line-height:1.45;
  color:#003A70;
}

.acotom-standards{
  padding:3rem 0;
  background:#ffffff;
  color:#003A70;
}
.acotom-standards .container{
  max-width:1100px;
  margin:0 auto;
  padding:0 1.5rem;
}
.acotom-standards h2{
  font-size:2rem;
  margin-bottom:2rem;
  font-weight:700;
  text-align:center;
}

/* Grid : 2 colonnes desktop, 1 mobile */
.standards-grid{
  display:grid;
  gap:1.6rem;
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
@media (max-width:768px){
  .standards-grid{
    grid-template-columns:1fr;
  }
}

/* (Le reste de ton CSS existant pour .std-card, .std-logo, .note, etc. reste identique) */

/* Carte */
.std-card{
  background:#f5f7fa;
  border:2px solid #003A70;
  border-radius:12px;
  padding:1.4rem 1.2rem 1.6rem;
  text-align:center;
  transition:transform .15s, box-shadow .15s;
}
.std-card:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 14px rgba(0,0,0,.08);
}

/* Logo zone */
.std-logo{
  width:72px;
  height:72px;
  margin:0 auto 1rem;
  display:flex;
  align-items:center;
  justify-content:center;
}
.std-logo svg,
.std-logo img{
  max-width:100%;
  max-height:100%;
  display:block;
}
.std-logo.dual{
  gap:.5rem;
}
.std-logo.dual img{
  max-width:44%;
}

/* Titres & notes */
.std-card h3{
  margin:.2rem 0 .3rem;
  font-size:1rem;
  font-weight:700;
}
.std-card .note{
  margin:0;
  font-size:.9rem;
  color:#00A0E0;
}

/* Variante bullets, si tu veux garder la liste (désactivez grid ci-dessus) */
.acotom-standards .standards-list{ /* optionnel */
  list-style:none;
  margin:0;
  padding:0;
}

.acotom-archi {
  padding: 3.5rem 0;
  background: #f5f7fa;
  color: #003A70;
}
.acotom-archi .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.acotom-archi h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
/* Grille : 2 colonnes (≥768px), 1 colonne en mobile */
.archi-steps{
  list-style:none;
  margin:0 0 2.2rem;
  padding:0;
  counter-reset:archi;
  display:grid;
  grid-template-columns:repeat(2, minmax(300px, 1fr));
  gap:2rem 2.5rem;                 /* vertical / horizontal */
}

@media (max-width:768px){
  .archi-steps{
    grid-template-columns:1fr;
    gap:1.4rem;
  }
}

/* Cartes (inchangé sauf min-height pour homogénéiser) */
.archi-step{
  background:#fff;
  border:2px solid #003A70;
  border-radius:10px;
  padding:1.4rem 1.2rem 1.3rem 3.6rem;
  position:relative;
  min-height:170px;                /* optionnel pour aligner les hauteurs */
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

/* Pastille numérotée (inchangé) */
.archi-step::before{
  counter-increment:archi;
  content:counter(archi);
  position:absolute;
  left:1.1rem;
  top:1.1rem;
  width:2.1rem;
  height:2.1rem;
  border-radius:50%;
  background:#00A0E0;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
}

/* Titres / textes (inchangé) */
.archi-step h3{
  margin:0 0 .45rem;
  font-size:1.08rem;
  font-weight:700;
  color:#003A70;
}
.archi-step p{
  margin:0;
  font-size:.96rem;
  line-height:1.45;
  color:#003A70;
}

.acotom-usecases {
  padding: 3rem 0;
  background: #ffffff;
  color: #003A70;
}
.acotom-usecases .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.acotom-usecases h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

/* 2 colonnes desktop, 1 en mobile */
.usecase-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:2rem 2.5rem;
  grid-template-columns:repeat(2, minmax(320px, 1fr));
}
@media(max-width:768px){
  .usecase-list{ grid-template-columns:1fr; gap:1.4rem; }
}

/* Card */
.usecase-item{
  box-sizing:border-box;
  background:#f5f7fa;
  border:2px solid #003A70;
  border-radius:10px;
  padding:1.6rem 1.4rem 1.7rem;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:.55rem;
  overflow-wrap:break-word;
  hyphens:auto;
}

/* Icône au-dessus */
.usecase-icon{
  font-size:1.7rem;
  line-height:1;
  margin-bottom:.2rem;
}

/* Titre au-dessus du texte */
.usecase-item h3{
  margin:0;
  font-size:1.08rem;
  font-weight:700;
  color:#003A70;
  line-height:1.3;
  word-break:normal;
}

.usecase-item p{
  margin:0;
  font-size:.96rem;
  line-height:1.45;
  color:#003A70;
}

/* Si tu avais encore l'ancien position:absolute, supprime/override : */
.usecase-item{ position:static; }
.usecase-icon{ position:static; }

.acotom-faq {
  padding: 3rem 0;
  background: #f5f7fa;
  color: #003A70;
}
.acotom-faq .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.acotom-faq h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
.faq-list details {
  background: #fff;
  border: 2px solid #003A70;
  border-radius: 10px;
  margin-bottom: 1rem;
  padding: 1rem 1.2rem;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 1.05rem;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span {
  padding-right: 2rem;
  display: inline-block;
}
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2rem;
  color: #00A0E0;
  transition: transform .2s;
}
.faq-list details[open] summary::after {
  content: "–";
  transform: rotate(0deg);
}
.faq-list p {
  margin: .8rem 0 0;
  font-size: .96rem;
  line-height: 1.45;
}