/* ============================================================
   HNSC — Redesign Completo v3.0
   Novos seletores para não conflitar com screen.min.css
   ============================================================ */

:root {
  --n:  #1d2a4d;
  --b:  #004580;
  --lb: #0f70b7;
  --g:  #d0b63c;
  --bg: #f5f7fa;
  --tx: #2c3340;
  --mu: #6b7280;
  --w:  #fff;
  --e:  cubic-bezier(.4,0,.2,1);
  --s1: 0 1px 4px rgba(0,0,0,.05),0 4px 16px rgba(0,0,0,.07);
  --s2: 0 4px 16px rgba(0,0,0,.09),0 12px 36px rgba(0,0,0,.08);
  --s3: 0 8px 32px rgba(0,0,0,.13),0 20px 48px rgba(0,0,0,.09);
  --r:  12px;
}

/* BASE ────────────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:'Rubik',sans-serif;color:var(--tx);background:var(--w);line-height:1.6;margin:0}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
p{margin:0}
h1,h2,h3,h4,h5{margin:0;padding:0;letter-spacing:-.018em}

/* ── TOPBAR ─────────────────────────────────────────────────*/
#hn-topbar{
  background:var(--n);
  padding:7px 0;
  font-size:.77rem;
}
.tb-inner{
  display:flex;align-items:center;justify-content:space-between;gap:.75rem;
}
.tb-contacts{display:flex;align-items:center;gap:0;flex-wrap:wrap}
.tb-contacts a{
  color:rgba(255,255,255,.78);
  display:inline-flex;align-items:center;gap:5px;
  padding:0 1rem 0 0;
  transition:color .2s;
}
.tb-contacts a+a{border-left:1px solid rgba(255,255,255,.14);padding-left:1rem}
.tb-contacts a:hover{color:var(--g)}
.tb-contacts svg{color:var(--g);width:13px;height:13px;flex-shrink:0}
.tb-addr{
  color:rgba(255,255,255,.62);
  display:flex;align-items:center;gap:5px;
  font-size:.75rem;
}
.tb-addr svg{color:var(--g);width:13px;height:13px;flex-shrink:0}
.tb-social{display:flex;gap:5px;align-items:center}
.tb-social a{
  width:26px;height:26px;border-radius:50%;
  background:rgba(255,255,255,.09);
  display:inline-flex;align-items:center;justify-content:center;
  transition:background .2s;
}
.tb-social a:hover{background:var(--g)}
.tb-social svg{width:13px;height:13px;stroke:rgba(255,255,255,.75)}
.tb-social svg.icons-tabler-filled{fill:rgba(255,255,255,.75);stroke-width:0}
.tb-social a:hover svg{stroke:var(--n)}
.tb-social a:hover svg.icons-tabler-filled{fill:var(--n)}

/* ── MAIN NAV ───────────────────────────────────────────────*/
#hn-header{
  background:var(--w);
  box-shadow:0 1px 0 rgba(0,0,0,.07),0 2px 12px rgba(0,0,0,.04);
  position:sticky;top:0;z-index:9999;
}
#hn-nav{padding:10px 0}
.nav-inner{display:flex;align-items:center;gap:.5rem}

.nav-logo{
  display:flex;align-items:center;gap:8px;
  flex-shrink:0;margin-right:auto;
}
.nav-logo img{max-height:40px;width:auto;transition:opacity .2s}
.nav-logo:hover img{opacity:.82}

.nav-menu{
  display:flex;align-items:center;gap:0;
}
.nav-menu > a,
.nav-dd > .nav-trigger{
  font-size:.8rem;font-weight:500;color:var(--n);
  padding:.7rem .82rem;
  display:inline-flex;align-items:center;gap:4px;
  white-space:nowrap;cursor:pointer;
  border:none;background:none;
  border-bottom:2px solid transparent;
  transition:color .2s,border-color .2s;
}
.nav-menu > a:hover,
.nav-menu > a.ativo,
.nav-dd.ativo > .nav-trigger,
.nav-dd:hover > .nav-trigger{
  color:var(--lb);
  border-bottom-color:var(--g);
}
.nav-trigger svg{
  width:12px;height:12px;
  stroke:currentColor;stroke-width:2.5;
  transition:transform .2s;
}
.nav-dd:hover > .nav-trigger svg{transform:rotate(180deg)}

/* Dropdown */
.nav-dd{position:relative;display:inline-flex;align-items:stretch}
.nav-dd-panel{
  position:absolute;top:100%;left:0;
  background:var(--w);
  border-top:3px solid var(--g);
  border-radius:0 0 10px 10px;
  box-shadow:0 8px 32px rgba(0,0,0,.14);
  padding:.4rem 0;min-width:215px;
  z-index:10000;
  opacity:0;visibility:hidden;
  transform:translateY(6px);
  transition:opacity .18s var(--e),transform .18s var(--e),visibility .18s;
  pointer-events:none;
}
/* Ponte invisível que elimina o dead-zone entre trigger e painel */
.nav-dd-panel::before{
  content:'';
  position:absolute;top:-10px;left:0;right:0;height:10px;
}
.nav-dd:hover .nav-dd-panel{
  opacity:1;visibility:visible;
  transform:translateY(0);
  pointer-events:auto;
}
.nav-dd-panel a{
  display:block;padding:.58rem 1.25rem;
  font-size:.8rem;color:var(--n);white-space:nowrap;
  transition:background .15s,color .15s,padding-left .15s;
  border-left:3px solid transparent;
}
.nav-dd-panel a:hover{
  background:var(--bg);color:var(--lb);
  border-left-color:var(--g);padding-left:1.5rem;
}

/* Dropdown CTA — Fale Conosco */
.nav-dd-cta{margin-left:.75rem}
.nav-dd-cta > .nav-trigger{
  background:var(--lb);color:var(--w);
  border-radius:50px;border-bottom:none;
  padding:.52rem 1.25rem;font-weight:600;
  transition:background .2s,box-shadow .2s;
}
.nav-dd-cta:hover > .nav-trigger,
.nav-dd-cta.ativo > .nav-trigger{
  background:var(--b);color:var(--w);
  border-bottom-color:transparent;
  box-shadow:0 4px 14px rgba(15,112,183,.35);
}
/* Painel do CTA alinhado à direita */
.nav-dd-cta .nav-dd-panel{left:auto;right:0}

/* Toggle mobile */
.nav-toggle{
  background:none;border:none;
  color:var(--n);cursor:pointer;
  padding:.38rem;
  display:flex;align-items:center;justify-content:center;
}
.nav-toggle svg{width:24px;height:24px;stroke:var(--n);stroke-width:2}

/* ── OFFCANVAS MOBILE ───────────────────────────────────────*/
#hn-drawer{
  position:fixed !important;
  top:0 !important;right:0 !important;bottom:0 !important;
  width:285px !important;
  background:var(--n) !important;
  z-index:99999 !important;
  transform:translateX(100%) !important;
  visibility:hidden !important;
  transition:transform .3s ease,visibility .3s !important;
}
#hn-drawer.show{
  transform:translateX(0) !important;
  visibility:visible !important;
}
#hn-drawer .offcanvas-header{
  border-bottom:1px solid rgba(255,255,255,.1);
  padding:1rem 1.4rem;
}
#hn-drawer .offcanvas-header img{max-height:34px;width:auto;display:inline}
#hn-drawer .btn-close{filter:invert(1) opacity(.65)}
#hn-drawer .btn-close:hover{filter:invert(1) opacity(1)}
#hn-drawer .offcanvas-body{padding:.5rem 0;overflow-y:auto}
.mob-label{
  display:block;
  font-size:.62rem;font-weight:600;letter-spacing:.12em;
  text-transform:uppercase;color:rgba(255,255,255,.28);
  padding:.85rem 1.4rem .28rem;
}
#hn-drawer a{
  display:block;padding:.65rem 1.4rem;
  color:rgba(255,255,255,.78);
  font-size:.87rem;font-weight:400;
  border-left:3px solid transparent;
  transition:color .2s,border-color .2s,padding-left .2s,background .2s;
}
#hn-drawer a:hover{
  color:var(--g);
  border-left-color:var(--g);
  background:rgba(255,255,255,.04);
  padding-left:1.75rem;
}
/* Backdrop do offcanvas */
.offcanvas-backdrop{
  position:fixed;inset:0;
  background:rgba(0,0,0,.5);
  z-index:99998;
}

/* ── HERO ────────────────────────────────────────────────── */
#hn-hero{
  position:relative;
  height:100vh;min-height:580px;max-height:900px;
  overflow:hidden;
}
@media(max-width:767px){
  #hn-hero{height:72vw;min-height:280px;max-height:520px}
}
/* Camada de slides (background) */
.hero-slides-wrap{
  position:absolute;inset:0;z-index:0;
}
.hero-slides-wrap .carousel-item{
  height:100%;width:100%;
  background-image:var(--bg-img);
  background-size:cover;background-position:center;
  position:relative;
}
.hero-slides-wrap .carousel-item::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(110deg,rgba(29,42,77,.9) 0%,rgba(29,42,77,.22) 100%);
}
.hero-slides-wrap .carousel-item video{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
}

/* Conteúdo sobre o hero */
.hero-content-layer{
  position:absolute;inset:0;z-index:10;
  display:flex;align-items:center;
}
.hero-box{max-width:600px;padding:1rem 0}
.hero-badge{
  display:inline-block;
  background:rgba(208,182,60,.14);
  border:1px solid rgba(208,182,60,.38);
  color:var(--g);
  font-size:.72rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;
  padding:.3rem 1rem;border-radius:50px;margin-bottom:1.2rem;
}
.hero-title{
  font-size:clamp(1.85rem,5vw,3.5rem);
  font-weight:700;color:var(--w);
  line-height:1.16;margin-bottom:.9rem;
  letter-spacing:-.025em;
}
.hero-sub{
  font-size:clamp(.85rem,1.5vw,1.05rem);
  color:rgba(255,255,255,.76);
  max-width:490px;line-height:1.75;margin-bottom:2rem;
}
.hero-actions{display:flex;gap:.85rem;flex-wrap:wrap}
.hbtn-primary{
  background:var(--g);color:var(--n);
  padding:.78rem 2rem;border-radius:50px;
  font-weight:700;font-size:.87rem;line-height:1;
  transition:all .22s var(--e);display:inline-block;
  margin-top: auto; margin-bottom: auto;
}
.hbtn-primary:hover{background:#c4aa36;color:var(--n);transform:translateY(-2px)}
.hbtn-outline{
  border:2px solid rgba(255,255,255,.5);color:var(--w);
  padding:.76rem 2rem;border-radius:50px;
  font-weight:500;font-size:.87rem;line-height:1;
  transition:all .22s var(--e);display:inline-block;
}
.hbtn-outline:hover{border-color:var(--w);background:rgba(255,255,255,.1);color:var(--w)}

/* Indicadores do carousel */
.hero-dots-layer{
  position:absolute;bottom:22px;width:100%;z-index:15;
  display:flex;justify-content:center;
}
.hero-dots-layer .carousel-indicators{
  position:relative;margin:0;justify-content:center;
}
.hero-dots-layer .carousel-indicators [data-bs-target]{
  width:8px;height:8px;border-radius:50%;
  background:transparent;border:2px solid var(--g);
  opacity:1;margin:0 4px;
  transition:background .2s,transform .2s;
}
.hero-dots-layer .carousel-indicators .active{
  background:var(--g);transform:scale(1.3);
}
/* Setas */
#hn-hero .carousel-control-prev,
#hn-hero .carousel-control-next{
  width:42px;height:42px;border-radius:50%;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.32);
  top:50%;transform:translateY(-50%);
  z-index:15;backdrop-filter:blur(4px);
  transition:background .2s,border-color .2s;
}
#hn-hero .carousel-control-prev{left:1.5%;right:auto}
#hn-hero .carousel-control-next{right:1.5%;left:auto}
#hn-hero .carousel-control-prev:hover,
#hn-hero .carousel-control-next:hover{background:var(--g);border-color:var(--g)}
#hn-hero .carousel-control-prev svg,
#hn-hero .carousel-control-next svg{stroke:var(--w);width:18px;height:18px}
@media(max-width:575px){
  #hn-hero .carousel-control-prev,
  #hn-hero .carousel-control-next{display:none}
}

/* ── STATS BAR ──────────────────────────────────────────────*/
#hn-stats{background:var(--n);padding:0}
.stats-inner{
  display:flex;align-items:stretch;justify-content:center;
  flex-wrap:wrap;
}
.stat-item{
  display:flex;flex-direction:column;align-items:center;
  justify-content:center;text-align:center;
  padding:22px 3rem;
  border-right:1px solid rgba(255,255,255,.1);
}
.stat-item:last-child{border-right:none}
.stat-num{
  font-size:1.9rem;font-weight:700;color:var(--g);
  line-height:1;margin-bottom:.2rem;
}
.stat-lbl{font-size:.74rem;color:rgba(255,255,255,.58);letter-spacing:.04em}
@media(max-width:575px){
  .stat-item{padding:18px 1.5rem;border-right:none;border-bottom:1px solid rgba(255,255,255,.08)}
  .stat-item:last-child{border-bottom:none}
  .stats-inner{flex-direction:column}
}

/* ── SOBRE ──────────────────────────────────────────────────*/
#hn-sobre{padding:88px 0;overflow:hidden}
@media(max-width:767px){#hn-sobre{padding:52px 0}}

.about-img-col{padding-right:2.5rem}
@media(max-width:991px){.about-img-col{padding-right:0;margin-bottom:2.5rem}}
.about-img-frame{
  position:relative;padding:0 0 1.75rem 1.75rem;
}
.about-img-frame::before{
  content:'';position:absolute;bottom:0;left:0;
  width:72%;height:82%;
  background:var(--g);border-radius:12px;opacity:.16;
}
.about-img-frame img{
  position:relative;z-index:2;border-radius:12px;width:100%;
  box-shadow:0 20px 56px rgba(29,42,77,.2);
  transition:transform .4s var(--e);
}
.about-img-frame:hover img{transform:scale(1.015)}
.about-play-btn{
  position:absolute;top:50%;left:50%;
  transform:translate(-50%,-50%);z-index:5;
  transition:transform .3s;
}
.about-play-btn:hover{transform:translate(-50%,-50%) scale(1.1)}
.about-play-btn img{width:68px;filter:drop-shadow(0 4px 14px rgba(0,0,0,.3))}

.about-text-col{display:flex;flex-direction:column;justify-content:center}
.sec-tag{
  display:inline-block;
  font-size:.7rem;font-weight:600;letter-spacing:.12em;
  text-transform:uppercase;color:var(--lb);
  background:rgba(15,112,183,.08);border-radius:50px;
  padding:.28rem .9rem;margin-bottom:1rem;
}
.sec-title{
  font-size:clamp(1.55rem,3vw,2.25rem);
  font-weight:700;color:var(--n);line-height:1.22;margin-bottom:.9rem;
}
.sec-title em{color:var(--g);font-style:normal}
.about-lead{
  font-size:.97rem;font-weight:500;color:var(--n);
  line-height:1.75;border-left:4px solid var(--g);
  padding-left:.9rem;margin-bottom:1rem;
}
.about-body{font-size:.88rem;color:var(--mu);line-height:1.85;margin-bottom:1.85rem}
.hn-btn{
  display:inline-block;
  padding:.72rem 2rem;border-radius:50px;
  font-size:.87rem;font-weight:600;line-height:1;
  transition:all .22s var(--e);
}
.hn-btn-primary{background:var(--lb);color:var(--w)}
.hn-btn-primary:hover{background:var(--b);color:var(--w);transform:translateY(-2px)}

/* ── SERVIÇOS ───────────────────────────────────────────────*/
#hn-servicos{padding:88px 0;background:var(--bg)}
@media(max-width:767px){#hn-servicos{padding:52px 0}}

.sec-header{text-align:center;margin-bottom:3rem}
.sec-header .sec-title{margin-top:.4rem}
.sec-sub{font-size:.88rem;color:var(--mu);margin-top:.5rem}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.25rem;
}
@media(max-width:991px){.services-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:575px){.services-grid{grid-template-columns:repeat(2,1fr);gap:.75rem}}

.svc-card{
  display:flex;flex-direction:column;align-items:center;
  text-align:center;padding:2rem 1.25rem 1.6rem;
  background:var(--w);border-radius:var(--r);
  box-shadow:var(--s1);
  border-top:3px solid transparent;
  transition:all .22s var(--e);
  cursor:pointer;
}
.svc-card:hover{
  border-top-color:var(--g);
  transform:translateY(-6px);
  box-shadow:var(--s2);
}
.svc-icon{
  width:64px;height:64px;
  background:rgba(15,112,183,.08);
  border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:1.1rem;
  transition:background .22s;
}
.svc-card:hover .svc-icon{background:var(--n)}
.svc-icon img{
  width:32px;height:32px;object-fit:contain;
  transition:filter .22s;
}
.svc-card:hover .svc-icon img{filter:brightness(0) invert(1)}
.svc-name{
  font-size:.88rem;font-weight:600;color:var(--n);
  margin-bottom:.45rem;line-height:1.35;
}
.svc-desc{font-size:.76rem;color:var(--mu);line-height:1.65;flex:1}
.svc-more{
  margin-top:.9rem;
  font-size:.76rem;font-weight:600;color:var(--lb);
  display:inline-flex;align-items:center;gap:4px;
  transition:gap .2s,color .2s;
}
.svc-card:hover .svc-more{gap:8px;color:var(--n)}
.svc-more svg{width:14px;height:14px;stroke:currentColor;transition:transform .2s}
.svc-card:hover .svc-more svg{transform:translateX(2px)}

/* ── NOVIDADES ──────────────────────────────────────────────*/
#hn-news{padding:88px 0;background:var(--w)}
@media(max-width:767px){#hn-news{padding:52px 0}}

.sec-header-row{
  display:flex;align-items:flex-end;
  justify-content:space-between;
  margin-bottom:2.5rem;flex-wrap:wrap;gap:.75rem;
}
.sec-all-link{
  font-size:.8rem;font-weight:600;color:var(--lb);
  display:inline-flex;align-items:center;gap:4px;
  white-space:nowrap;transition:gap .2s,color .2s;
}
.sec-all-link:hover{color:var(--n);gap:8px}
.sec-all-link svg{width:15px;height:15px;transition:transform .2s}
.sec-all-link:hover svg{transform:translateX(3px)}

.news-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
}
@media(max-width:991px){.news-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:575px){.news-grid{grid-template-columns:1fr}}

.news-card{
  border-radius:var(--r);overflow:hidden;background:var(--w);
  box-shadow:var(--s1);
  transition:transform .22s,box-shadow .22s;
  display:flex;flex-direction:column;
}
.news-card:hover{transform:translateY(-5px);box-shadow:var(--s3)}
.news-card-img{position:relative;overflow:hidden;aspect-ratio:16/9}
.news-card-img img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .4s ease;
}
.news-card:hover .news-card-img img{transform:scale(1.06)}
.news-card-date{
  position:absolute;top:.72rem;left:.72rem;
  background:var(--n);color:var(--w);
  font-size:.65rem;font-weight:600;letter-spacing:.04em;
  text-transform:uppercase;
  padding:.3rem .72rem;border-radius:6px;z-index:5;
}
.news-card-body{
  padding:1.2rem;flex:1;
  display:flex;flex-direction:column;
}
.news-card-title{
  font-size:.9rem;font-weight:600;color:var(--n);
  line-height:1.42;margin-bottom:.55rem;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.news-card-text{
  font-size:.78rem;color:var(--mu);line-height:1.68;flex:1;
  display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;
  margin-bottom:.9rem;
}
.news-card-link{
  font-size:.78rem;font-weight:600;color:var(--lb);
  display:inline-flex;align-items:center;gap:4px;
  align-self:flex-start;transition:gap .2s,color .2s;
}
.news-card-link:hover{color:var(--n);gap:8px}
.news-card-link svg{width:15px;height:15px;transition:transform .2s}
.news-card-link:hover svg{transform:translateX(3px)}

/* ── BANNER MEIO ────────────────────────────────────────────*/
.hn-mid-banner{
  background-image:var(--bg-img);
  background-size:cover;background-position:center;
  height:300px;
}
@media(max-width:575px){.hn-mid-banner{height:120px}}

/* ── FOOTER ─────────────────────────────────────────────────*/
#hn-footer{
  background:var(--n);
  border-top:4px solid var(--g);
}
.footer-main{padding:60px 0 40px}
.footer-grid{
  display:grid;
  grid-template-columns:1.1fr 1.2fr 1fr;
  gap:2.5rem;
}
@media(max-width:991px){.footer-grid{grid-template-columns:1fr 1fr;gap:2rem}}
@media(max-width:575px){.footer-grid{grid-template-columns:1fr;gap:2rem}}

.footer-brand .footer-logos{
  display:flex;align-items:center;gap:12px;margin-bottom:.9rem;
}
.footer-brand .footer-logos img{max-height:44px;width:auto}
.footer-brand p{
  font-size:.82rem;color:rgba(255,255,255,.5);
  line-height:1.7;margin-bottom:1.2rem;
}
.footer-soc{display:flex;gap:6px;flex-wrap:wrap}
.footer-soc a{
  width:34px;height:34px;border-radius:50%;
  background:rgba(255,255,255,.1);
  display:inline-flex;align-items:center;justify-content:center;
  transition:background .2s,transform .2s;
}
.footer-soc a:hover{background:var(--g);transform:translateY(-2px)}
.footer-soc svg{width:16px;height:16px;stroke:rgba(255,255,255,.75)}
.footer-soc svg.icons-tabler-filled{fill:rgba(255,255,255,.75);stroke-width:0}
.footer-soc a:hover svg{stroke:var(--n)}
.footer-soc a:hover svg.icons-tabler-filled{fill:var(--n)}

.footer-col-ttl{
  font-size:.66rem;font-weight:600;letter-spacing:.13em;
  text-transform:uppercase;color:var(--g);
  display:block;margin-bottom:.9rem;
}
.footer-contact-item{
  display:flex;align-items:flex-start;gap:.5rem;
  font-size:.82rem;color:rgba(255,255,255,.6);
  line-height:1.6;margin-bottom:.55rem;
}
.footer-contact-item svg{width:15px;height:15px;stroke:var(--g);flex-shrink:0;margin-top:2px}
.footer-contact-item a{color:rgba(255,255,255,.6);transition:color .2s}
.footer-contact-item a:hover{color:var(--g)}

.footer-links a{
  display:block;padding:.2rem 0;
  font-size:.82rem;color:rgba(255,255,255,.6);
  border-left:2px solid transparent;
  transition:all .2s;
}
.footer-links a:hover{
  color:var(--g);
  border-left-color:var(--g);
  padding-left:6px;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.07);
  padding:16px 0;
}
.footer-bottom-inner{
  display:flex;align-items:center;
  justify-content:space-between;flex-wrap:wrap;gap:.75rem;
}
.footer-copy{font-size:.75rem;color:rgba(255,255,255,.32)}
.footer-partner img{
  max-height:24px;opacity:.5;
  transition:opacity .2s;
}
.footer-partner img:hover{opacity:.85}

/* ── PÁGINAS INTERNAS ───────────────────────────────────────*/
#hn-banner{
  position:relative;
  min-height:260px;max-height:400px;height:28vw;
  background-image:var(--bg-img);
  background-size:cover;background-position:center;
  display:flex;align-items:flex-end;
  padding-bottom:2.25rem;overflow:hidden;
}
#hn-banner::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(to right,rgba(29,42,77,.9) 0%,rgba(29,42,77,.38) 65%,transparent 100%);
}
.banner-content{position:relative;z-index:5;width:100%}
.banner-bread{
  display:flex;align-items:center;flex-wrap:wrap;gap:.45rem;
  font-size:.76rem;color:rgba(255,255,255,.65);margin-bottom:.5rem;
}
.banner-bread a{color:var(--g)}
.banner-bread .sep{opacity:.38}
#hn-banner h1{
  font-size:clamp(1.3rem,4vw,2.25rem);
  font-weight:700;color:var(--w);
  text-shadow:0 2px 10px rgba(0,0,0,.22);
}
@media(max-width:575px){
  #hn-banner{height:auto;min-height:180px;padding:3rem 0 1.5rem}
  #hn-banner::after{background:rgba(29,42,77,.84)}
  #hn-banner h1{text-align:center}
  .banner-bread{justify-content:center}
}

#hn-main{padding:60px 0}
@media(max-width:767px){#hn-main{padding:36px 0}}

.pg-section-head{margin-bottom:1.75rem}
.pg-section-head h4{
  font-size:1rem;font-weight:600;color:var(--n);
  border-left:4px solid var(--g);padding-left:.75rem;margin-bottom:.28rem;
}
.pg-section-head p{font-size:.86rem;color:var(--mu);padding-left:1rem}

.pg-text{font-size:.95rem;color:var(--tx);line-height:1.85}
.pg-text p+p{margin-top:.75rem}

/* Galeria interna */
.pg-gallery-wrap{background:var(--bg);padding:48px 0;margin:2rem 0}
.pg-gallery-title{
  text-align:center;font-size:1.1rem;font-weight:600;color:var(--n);margin-bottom:1.5rem;
}
.pg-gallery-title span{color:var(--g)}
.pg-gallery-item{margin-bottom:1rem}
.pg-gallery-frame{
  border-radius:10px;overflow:hidden;
  box-shadow:var(--s1);
  transition:transform .22s,box-shadow .22s;
}
.pg-gallery-frame:hover{transform:translateY(-3px);box-shadow:var(--s2)}
.pg-gallery-frame a{
  display:block;
  background-image:var(--bg-img);
  background-size:cover;background-position:center;
  aspect-ratio:4/3;
  transition:opacity .2s;
}
.pg-gallery-frame:hover a{opacity:.88}
.pg-gallery-info{padding:.85rem;background:var(--w)}
.pg-gallery-info h6{font-size:.82rem;font-weight:600;color:var(--n);margin-bottom:.18rem}
.pg-gallery-info p{font-size:.74rem;color:var(--mu);margin:0}

/* Anexos */
.pg-attachments{margin-top:2rem}
.pg-attachments h4{font-size:.95rem;font-weight:600;color:var(--n);margin-bottom:.9rem}
.pg-attach-link{
  display:inline-flex;align-items:center;gap:.4rem;
  border:1px solid var(--lb);border-radius:50px;
  color:var(--lb);font-size:.78rem;
  padding:.4rem 1rem;margin:0 .4rem .4rem 0;
  transition:all .2s;
}
.pg-attach-link:hover{background:var(--lb);color:var(--w)}
.pg-attach-link svg{width:13px;height:13px;flex-shrink:0}
