/* Apoena Bio - Premium UI */
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{font-family:Outfit,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu; color:#0d1216; background:#fff}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(1140px, 92vw); margin:0 auto}

/* Utilities (Apoena Biotech-like helpers used in templates) */
.text-light{color:#fff !important;}
.text-light *{color:inherit;}
.bg-dark{background:#0b1f18;}

/* Buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:12px 16px;border-radius:999px;border:1px solid transparent;font-weight:700;cursor:pointer;transition:.2s}
.btn-primary{background:var(--primary);color:#fff}
.btn-accent{background:var(--accent);color:#102015}
.btn-ghost{background:transparent;border-color:rgba(255,255,255,.45);color:#fff}
.btn:hover{transform:translateY(-1px)}

/* Apoena Biotech-like CTA button used in the imported home template */
.animated-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 18px;
  border-radius:999px;
  background:#fff;
  color:#0d1216 !important;
  font-weight:900;
  letter-spacing:.2px;
}
.animated-btn i{color:inherit;}
.animated-btn:hover{transform:translateY(-1px); filter:brightness(.98);}

/* Topbar + nav */
.topbar{background:var(--primary);color:#e8fff5;font-size:13px}
.topbar__wrap{display:flex;align-items:center;justify-content:space-between;padding:10px 0;gap:12px}
.topbar__left{display:flex;align-items:center;gap:10px;opacity:.95}
.dot{width:8px;height:8px;border-radius:999px;background:var(--accent);display:inline-block}
.topbar__right{display:flex;align-items:center;gap:14px}
.toplink{display:inline-flex;align-items:center;gap:8px;color:inherit;text-decoration:none;font-weight:600}
.toplink:hover{opacity:.92}
.toplink__icon,.toplink .icon-svg{display:inline-flex;align-items:center;justify-content:center;width:14px;height:14px;line-height:0;flex:0 0 14px}
.toplink__icon svg,.toplink .icon-svg svg{width:14px;height:14px;display:block}
.toplink{opacity:.95}
.social{display:flex;gap:8px}
.social a{width:32px;height:32px;border-radius:999px;background:rgba(255,255,255,.12);display:grid;place-items:center;font-weight:800;transition:background .2s ease, transform .2s ease}
.social a svg{width:16px;height:16px;display:block;fill:currentColor}
.social a:hover{transform:translateY(-1px)}
.social a:hover{background:rgba(255,255,255,.22)}

.nav{position:sticky;top:0;z-index:20;background:#fff;box-shadow:0 6px 24px rgba(0,0,0,.06)}
.nav__wrap{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:14px 0}
.brand{display:flex;align-items:center;gap:10px}
.brand__mark{width:34px;height:34px;border-radius:12px;background:linear-gradient(135deg,var(--primary),#0fa86c)}
.brand__name{font-weight:900;letter-spacing:.3px}
.nav__menu{display:flex;gap:18px;flex:1;justify-content:center;margin:0 18px}
.nav__menu a{padding:10px 12px;border-radius:999px;font-weight:600;opacity:.9}
.nav__menu a.active,.nav__menu a:hover{background:rgba(11,95,69,.08);opacity:1}
.nav__icons{display:flex;gap:10px;align-items:center}
.nav__icons--mobile{display:none}
.nav__icons--mobilebar{display:none}
.iconbtn{display:flex;align-items:center;gap:8px;padding:8px 12px;border-radius:999px;border:1px solid #eef0f2;background:#fff}
.iconbtn--icon{padding:8px 10px}
.iconbtn--icon .lbl{display:none}
.iconbtn .lbl{font-size:13px;font-weight:700}
.iconbtn:hover{border-color:rgba(11,95,69,.35)}
.iconbtn[data-disabled="1"]{opacity:.5;pointer-events:none}
.iconbtn--colored{background:var(--btn,#0b5f45);border-color:transparent;color:#fff}
.iconbtn--colored:hover{filter:brightness(.95)}
.iconbtn--colored .lbl{color:inherit}
.iconbtn .icon,.iconbtn .icon-svg{display:inline-flex;align-items:center;justify-content:center;width:18px;height:18px;line-height:0;flex:0 0 18px}
.iconbtn .icon svg,.iconbtn .icon-svg svg{width:18px;height:18px;display:block}
.nav__toggle{display:none;border:1px solid #e6e8eb;background:#fff;border-radius:12px;padding:8px 10px;font-size:16px}

/* ==========================
   HOME (Agrica-like) HEADER
   ========================== */
.navbar-brand{display:flex;align-items:center;gap:10px}
.brand-mark{width:34px;height:34px;border-radius:12px;background:linear-gradient(135deg,var(--primary),#0fa86c);display:inline-block}
.brand-text{font-weight:900;letter-spacing:.2px;color:#fff}
.brand-text strong{font-weight:900}

/* Menu hover (requested) */
.navbar .navbar-nav > li > a{
  border-radius:999px;
  transition:background .2s ease, opacity .2s ease;
}
.navbar .navbar-nav > li > a:hover{
  background:rgba(255,255,255,.14);
  opacity:1;
}

/* Mobile header improvements */
@media (max-width: 980px){
  .navbar-toggle{display:inline-flex;align-items:center;justify-content:center;border:1px solid rgba(255,255,255,.22);background:rgba(0,0,0,.25);color:#fff;border-radius:12px;padding:10px 12px;}
  .navbar-collapse{position:fixed;left:12px;right:12px;top:72px;max-height:calc(100vh - 92px);overflow:auto;background:rgba(12,14,14,.92)!important;border:1px solid rgba(255,255,255,.12);border-radius:18px;padding:14px 14px;backdrop-filter: blur(10px);display:none;}
  .navbar-collapse.is-open{display:block;}
  body.nav-open{overflow:hidden;}
  .navbar .navbar-nav{display:flex;flex-direction:column;gap:10px;align-items:stretch;}
  .navbar .navbar-nav > li > a{padding:12px 14px;}
  .attr-right{display:none;}
}

/* Hero button icon spacing */
.btn-ic{display:inline-block;transform:translateY(-1px);margin-right:6px;font-weight:900}
.play-ic{display:grid;place-items:center;width:42px;height:42px;border-radius:999px;background:rgba(255,255,255,.18);backdrop-filter:blur(6px)}


/* Hero */
.hero{min-height:68vh;display:grid;align-items:center;position:relative;background-size:cover;background-position:center}
.hero__overlay{position:absolute;inset:0;background:linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.25))}
.hero__content{position:relative;color:#fff;padding:64px 0}
.hero__kicker{display:inline-flex;gap:8px;align-items:center;padding:8px 12px;border-radius:999px;background:rgba(255,255,255,.16);width:max-content;margin-bottom:14px}
.hero__title{font-size:clamp(34px,4vw,56px);margin:0 0 10px;letter-spacing:-.5px}
.hero__text{max-width:62ch;opacity:.93;line-height:1.7}
.hero__actions{display:flex;gap:12px;margin-top:18px;flex-wrap:wrap}

/* Sections */
.section{padding:78px 0}
.section--soft{background:#e9f3f0}
.section-head{margin-bottom:26px}
.section-head.center{text-align:center}
.kicker{font-family:"Shadows Into Light Two",cursive;color:var(--accent);font-size:22px}
h2{font-size:clamp(26px,3vw,40px);margin:10px 0 12px;letter-spacing:-.4px}
h3{margin:0 0 8px}
.muted{color:#4a5963;line-height:1.7}

/* Split */
.split{display:grid;grid-template-columns:1.1fr .9fr;gap:36px;align-items:center}
.split__media img{border-radius:18px;box-shadow:0 18px 50px rgba(0,0,0,.12)}
.checklist{padding-left:18px}
.checklist li{margin:8px 0}

/* Cards */
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.card{background:#fff;border-radius:18px;overflow:hidden;border:1px solid rgba(0,0,0,.06);box-shadow:0 12px 30px rgba(0,0,0,.06)}
.card__media img{height:180px;width:100%;object-fit:cover}
.card__body{padding:18px}
.link{font-weight:800;color:var(--primary)}

/* Stats */
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.stat{padding:18px;border:1px solid rgba(0,0,0,.06);border-radius:18px;background:#fff}
.stat__value{font-size:34px;font-weight:900;color:var(--primary)}
.stat__label{color:#4a5963;font-weight:600}

/* Timeline */
.timeline{display:flex;gap:14px;flex-wrap:wrap;justify-content:center}
.timeline__item{flex:1;min-width:180px;max-width:240px;background:#fff;border-radius:18px;border:1px solid rgba(0,0,0,.06);padding:18px;text-align:center}
.timeline__year{font-size:34px;font-weight:900;color:var(--primary)}
.timeline__title{font-weight:700}

/* FAQ */
.faq{display:grid;grid-template-columns:1fr 1.05fr;gap:26px;align-items:center}
.faq__media img{border-radius:18px}
.accordion{display:grid;gap:10px;margin-top:14px}
.acc{background:#fff;border:1px solid rgba(0,0,0,.06);border-radius:14px;padding:10px 14px}
.acc summary{cursor:pointer;font-weight:800}
.acc__body{padding:10px 0 0}

/* Gallery */
.gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.gallery__item{position:relative;border-radius:18px;overflow:hidden;min-height:220px;background:#ddd}
.gallery__item img{width:100%;height:100%;object-fit:cover}
.gallery__overlay{position:absolute;inset:0;background:linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.65));display:flex;flex-direction:column;justify-content:flex-end;padding:16px;color:#fff}
.gallery__k{opacity:.9;font-weight:700}
.gallery__t{font-size:18px;font-weight:900}

/* Testimonials */
.testimonials{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.testimonial{background:#fff;border:1px solid rgba(0,0,0,.06);border-radius:18px;padding:18px}
.stars{color:var(--accent);letter-spacing:1px}
.testimonial__who{display:flex;flex-direction:column;margin-top:12px}

/* CTA */
.cta{background:linear-gradient(135deg,var(--primary),#0c8a5e);color:#fff;padding:54px 0}
.cta__wrap{display:flex;justify-content:space-between;gap:18px;align-items:center;flex-wrap:wrap}
.cta__actions{display:flex;gap:10px}

/* Contact */
.contact{display:grid;grid-template-columns:1.05fr .95fr;gap:18px;align-items:flex-start}
.contact__form,.contact__info{background:#fff;border:1px solid rgba(0,0,0,.06);border-radius:18px;padding:18px}
.contact__intro{margin:0 0 16px}
.contact__info{display:grid;gap:14px}
.contact__info h3{margin:0}
.contact__info .muted{margin:0}
.contact__map{margin-top:4px;border-radius:16px;overflow:hidden;border:1px solid rgba(0,0,0,.08);background:#f3f5f7;min-height:260px}
.contact__map iframe{display:block;width:100%;min-height:260px;border:0}
.info-list{margin:0;padding-left:18px}
.info-list li+li{margin-top:6px}
input,textarea,select{width:100%;padding:12px 14px;border-radius:12px;border:1px solid #e6e8eb;font:inherit}
textarea{resize:vertical}
.grid2{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.form-msg{margin-top:10px;font-weight:700}

/* Footer */
.footer{background:#083c2c;color:#e8fff5;position:relative}
.footer__grid{display:grid;grid-template-columns:1.2fr .7fr .9fr;gap:22px;padding:56px 0}
.footer__col h4{margin:0 0 12px}
.footer__col a{display:block;opacity:.9;margin:8px 0}
.footer__col a:hover{opacity:1}
.footer__bottom{border-top:1px solid rgba(255,255,255,.12);padding:14px 0}
.newsletter{display:flex;gap:10px;margin-top:12px}
.newsletter input{border-color:rgba(255,255,255,.2);background:rgba(255,255,255,.08);color:#fff}
.newsletter input::placeholder{color:rgba(255,255,255,.8)}
.footer__social{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px}
.footer__social a{display:inline-flex;align-items:center;gap:8px;padding:10px 12px;border-radius:999px;background:rgba(255,255,255,.08)}
.footer__social a svg{width:16px;height:16px;display:block;fill:currentColor}

/* Responsive */
@media (max-width: 980px){
  .nav__menu{display:none;position:absolute;left:0;right:0;top:100%;background:#fff;flex-direction:column;padding:12px 16px;border-top:1px solid #eef0f2}
  .nav__menu.open{display:flex}
  .nav__toggle{display:inline-flex;margin-left:auto}
  /* On mobile we keep the colored external buttons inside the collapsible menu */
  .nav__icons{display:none}
  .nav__icons--mobilebar{display:flex;gap:8px;align-items:center;margin-left:10px}
  .nav__icons--mobile{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px;justify-content:flex-start}
  .split,.faq,.contact{grid-template-columns:1fr}
  .cards,.gallery,.testimonials{grid-template-columns:1fr}
  .stats{grid-template-columns:repeat(2,1fr)}
  .footer__grid{grid-template-columns:1fr}
}

/* ==========================
   HOME: desktop header vs mobile header
   - Desktop uses Agrica-like transparent header on top of hero
   - Mobile reuses the standard site header (same as internal pages)
   ========================== */
.home-mobile-header{display:none;}
.home-desktop-header{display:block;}

/* Prevent duplicated buttons and hamburger on desktop home */
.home-desktop-header .apoena-mobile-actions{display:none !important;}
.home-desktop-header .navbar-toggle{display:none !important;}

/* Keep the home brand/logo at a sane size */
.home-desktop-header .navbar-brand .logo{height:60px; width:auto;}
.home-desktop-header .navbar-brand .logo.logo-mobile{height:34px; width:auto;}

@media (max-width: 980px){
  .home-mobile-header{display:block;}
  .home-desktop-header{display:none;}
}



/* --- Apoena Biotech Home: Topbar + Header stacking fix --- */
:root{
  --topbar-h: 44px;
  --nav-h: 86px;
}

/* Home (Apoena Biotech reference) does NOT use topbar */
.home-apoena{
  --topbar-h: 0px;
  display:flex;
  flex-direction:column;
}
.home-apoena .top-bar-area{display:none !important;}
.home-apoena .navbar.navbar-fixed,
.home-apoena .navbar.navbar-sticky,
.home-apoena .navbar.navbar-default{top:0;}

/* On the home hero, content starts behind the header (like reference) */
body.home-apoena-body main{padding-top:0 !important;}

/* Remove any white background coming from collapses/containers on transparent header */
.home-apoena #navbar-menu,
.home-apoena #navbar-menu .nav,
.home-apoena .navbar-collapse{
  background: transparent !important;
}

/* Top bar should sit above header and never overlap it */
.top-bar-area{
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--topbar-h);
  z-index: 10050;
  display: flex;
  align-items: center;
}
.top-bar-area .container-full{width:100%; padding:0 24px;}
.top-bar-area ul{list-style:none; margin:0; padding:0; display:flex; gap:16px; align-items:center;}
.top-bar-area a{color:inherit; opacity:.95}
.top-bar-area a:hover{opacity:1}

/* Header/nav must start below the top bar (pixel like reference) */
.navbar.navbar-fixed,
.navbar.navbar-sticky,
.navbar.navbar-default{
  position: fixed;
  top: var(--topbar-h);
  left: 0; right: 0;
  z-index: 10040;
}

/* Keep header transparent over the hero, like the reference */
.navbar.no-background{background: transparent !important; box-shadow:none !important;}
.navbar .navbar-nav > li > a{color:#fff !important;}
.navbar .navbar-brand{color:#fff !important;}

/* Menu hover/active (Home header) */
.navbar .navbar-nav > li > a{
  border-radius: 999px;
  transition: background .18s ease, opacity .18s ease;
  opacity: .92;
}
.navbar .navbar-nav > li > a:hover{
  background: rgba(255,255,255,.14);
  opacity: 1;
}
.navbar .navbar-nav > li.active > a,
.navbar .navbar-nav > li > a.active{
  background: rgba(255,255,255,.18);
  opacity: 1;
}

/* Ensure hero keeps full height even with fixed bars */
.banner-area{min-height:100vh;}
.banner-area .banner-thumb{min-height:100vh; position:relative;}
.banner-area .container{position:relative; z-index:2;}
.banner-area .banner-thumb::after{
  content:"";
  position:absolute; inset:0;
  background: rgba(0,0,0,.35);
}

/* Make sure banner texts are visible even without external theme CSS */
.banner-area .content{color:#fff; text-align:center;}
.banner-area .content .vt-title,
.banner-area .content h1,
.banner-area .content h2{color:#fff;}
.banner-area .content p{color:rgba(255,255,255,.92);}
.banner-area .content a{color:#fff;}

/* Add breathing room between sections */
.default-padding{padding:120px 0;}
.default-padding-top{padding-top:120px;}
.pb-120{padding-bottom:120px;}

/* ===========================
   HOME – FIX HERO 100VH + HEADER TRANSPARENTE
   (não afeta páginas internas)
   =========================== */

/* Ajuste: garante que NÃO haja offset empurrando o hero para baixo */
body.home,
body.home main,
body.home .page-wrapper,
body.home .builder-page-wrapper,
body.home .content-wrapper {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Home also uses the topbar (same as internal pages) */
body.home .topbar{display:block !important;}

/* Header sobre o banner (sem fundo branco) */
body.home header,
body.home .site-header,
body.home .main-header,
body.home .navbar,
body.home nav {
  background: transparent !important;
}

/* Remover qualquer “caixa” branca/strip que esteja sendo aplicada no menu */
body.home header *,
body.home .site-header *,
body.home .main-header *,
body.home .navbar * {
  /* não mexe em cor do texto, só remove fundos brancos involuntários */
}
body.home .navbar,
body.home .navbar .container,
body.home .navbar .container-full,
body.home .navbar-collapse,
body.home .navbar-nav,
body.home .nav,
body.home .header-wrap,
body.home .header-inner {
  background: transparent !important;
  box-shadow: none !important;
}

/* Header fixo sobre o banner, igual ao modelo Apoena Biotech */
body.home .site-header,
body.home .main-header,
body.home .navbar {
  position: absolute !important;
  top: 0 !important;
  left: 0;
  right: 0;
  z-index: 9999 !important;
}

/* HERO: força 100vh no elemento certo (swiper + wrappers) */
body.home .banner-area,
body.home .hero,
body.home .home-hero,
body.home .banner-style-two,
body.home .banner-fade,
body.home .swiper,
body.home .swiper-wrapper,
body.home .swiper-slide {
  height: 100vh !important;
  min-height: 100vh !important;
}

/* Caso o banner use background-image no slide (bg-cover) */
body.home .banner-thumb,
body.home .bg-cover {
  height: 100vh !important;
  min-height: 100vh !important;
  background-size: cover !important;
  background-position: center center !important;
}

/* O conteúdo do banner centralizado como no modelo */
body.home .banner-area .content,
body.home .banner-style-two .content {
  margin-top: 0 !important;
}

/* Evita que a próxima seção “suba”/cole no hero */
body.home .banner-area + section,
body.home .banner-area + .section,
body.home .banner-area + .default-padding,
body.home .banner-area + .default-padding-top {
  padding-top: 80px !important;
}

/* ===========================
   HOME – HERO CENTRALIZADO (igual modelo)
   - sem colar no header
   - sem mexer nas outras páginas
   =========================== */

/* Altura aproximada do header sobre o hero (ajuste fino aqui) */
:root{ --home-hero-header-gap: 86px; }

/* Garanta que na HOME o header fique transparente e sobre o hero */
body.home header,
body.home .navbar{
  background: transparent !important;
  box-shadow: none !important;
}

/* HERO sempre 100vh (wrappers do swiper + banner) */
body.home .banner-area,
body.home .banner-style-two,
body.home .banner-fade,
body.home .swiper,
body.home .swiper-wrapper,
body.home .swiper-slide,
body.home .banner-thumb{
  height: 100vh !important;
  min-height: 100vh !important;
}

/* Overlay escuro padrão (mantém leitura) */
body.home .banner-thumb{ position: relative !important; }
body.home .banner-thumb::after{
  content:"";
  position:absolute; inset:0;
  background: rgba(0,0,0,.35);
  pointer-events:none;
}

/* >>> O PULO DO GATO <<< 
   Centraliza pelo CONTAINER (não pelo .row) e cria espaço do header
*/
body.home .banner-area .container,
body.home .banner-style-two .container{
  height: 100% !important;
  display: flex !important;
  align-items: center !important;     /* centro vertical */
  justify-content: center !important; /* centro horizontal */
  text-align: center !important;
  padding-top: var(--home-hero-header-gap) !important; /* distância do header */
  box-sizing: border-box !important;
  position: relative !important;
  z-index: 2 !important;
}

/* Garanta que o conteúdo não tenha margem extra empurrando pra cima */
body.home .banner-area .content,
body.home .banner-style-two .content{
  margin: 0 auto !important;
  max-width: 880px;
  transform: none !important;
}

/* Linha/colunas não podem “quebrar” o flex do container */
body.home .banner-area .row,
body.home .banner-style-two .row{
  width: 100% !important;
  margin: 0 auto !important;
  justify-content: center !important;
}

body.home .banner-area .col-lg-8,
body.home .banner-style-two .col-lg-8{
  float: none !important;
  margin: 0 auto !important;
}

/* Responsivo: header ocupa mais espaço */
@media (max-width: 1024px){
  :root{ --home-hero-header-gap: 110px; }
}
@media (max-width: 768px){
  :root{ --home-hero-header-gap: 130px; }
  body.home .banner-area .content,
  body.home .banner-style-two .content{ max-width: 92vw; }
}

/* ============
   CORREÇÃO REAL (Apoena): a HOME usa a classe body.home-apoena-body
   então repetimos as regras com o seletor correto.
   ============ */

/* Altura aproximada do header sobre o hero (ajuste fino aqui) */
:root{ --apoena-home-hero-header-gap: 86px; }

body.home-apoena-body header,
body.home-apoena-body .navbar{
  background: transparent !important;
  box-shadow: none !important;
}

body.home-apoena-body .banner-area,
body.home-apoena-body .banner-style-two,
body.home-apoena-body .banner-fade,
body.home-apoena-body .swiper,
body.home-apoena-body .swiper-wrapper,
body.home-apoena-body .swiper-slide,
body.home-apoena-body .banner-thumb{
  height: 100vh !important;
  min-height: 100vh !important;
}

body.home-apoena-body .banner-thumb{ position: relative !important; }
body.home-apoena-body .banner-thumb::after{
  content:"";
  position:absolute; inset:0;
  background: rgba(0,0,0,.35);
  pointer-events:none;
}

body.home-apoena-body .banner-area .container,
body.home-apoena-body .banner-style-two .container{
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding-top: var(--apoena-home-hero-header-gap) !important;
  box-sizing: border-box !important;
  position: relative !important;
  z-index: 2 !important;
}

body.home-apoena-body .banner-area .content,
body.home-apoena-body .banner-style-two .content{
  margin: 0 auto !important;
  max-width: 880px;
  transform: none !important;
}

body.home-apoena-body .banner-area .row,
body.home-apoena-body .banner-style-two .row{
  width: 100% !important;
  margin: 0 auto !important;
  justify-content: center !important;
}

body.home-apoena-body .banner-area .col-lg-8,
body.home-apoena-body .banner-style-two .col-lg-8{
  float: none !important;
  margin: 0 auto !important;
}

@media (max-width: 1024px){
  :root{ --apoena-home-hero-header-gap: 110px; }
}
@media (max-width: 768px){
  :root{ --apoena-home-hero-header-gap: 130px; }
  body.home-apoena-body .banner-area .content,
  body.home-apoena-body .banner-style-two .content{ max-width: 92vw; }
}


/* === FIX: HERO TEXT VISÍVEL + MENU HOVER (HOME) === */
.banner-style-two{position:relative;}
.banner-style-two .banner-thumb{position:absolute; inset:0; z-index:1;}
.banner-style-two .container,
.banner-style-two .row,
.banner-style-two .content{position:relative; z-index:2;}
.banner-style-two .content{opacity:1 !important; visibility:visible !important;}

.navbar .navbar-nav > li > a{transition:background .2s ease, opacity .2s ease;}
.navbar .navbar-nav > li > a:hover{
  background: rgba(255,255,255,.12);
  border-radius: 999px;
  opacity: 1 !important;
}


/* =====================================
   HOTFIX (Hostinger/Cloudflare cache + hero text)
   - Force banner text to be visible (some theme animations hide it until JS runs)
   - Add hover state to menu items
   ===================================== */

/* Ensure banner content is always visible */
.banner-area .container,
.banner-style-two .container{
  position: relative;
  z-index: 5;
}
.banner-area .content,
.banner-style-two .content{
  position: relative;
  z-index: 6;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
.banner-area .content *,
.banner-style-two .content *{
  opacity: 1 !important;
  visibility: visible !important;
}

/* Menu hover (pill like) */
.navbar .navbar-nav > li > a{
  border-radius: 999px;
  transition: background .18s ease, opacity .18s ease;
}
.navbar .navbar-nav > li > a:hover{
  background: rgba(255,255,255,.14) !important;
  opacity: 1 !important;
}
.navbar .navbar-nav > li.active > a,
.navbar .navbar-nav > li > a.active{
  background: rgba(255,255,255,.18) !important;
  opacity: 1 !important;
}

/* ===========================
   APOENA HOME (Agrica-style) – FIX HERO OVERLAY + MOBILE HEADER
   Motivo: alguns overrides anteriores deixavam .banner-thumb relative,
   empurrando o conteúdo para baixo. Aqui forçamos o overlay correto.
   =========================== */

.home-apoena-body .banner-style-two,
.home-apoena-body .banner-area{
  position: relative;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
}

.home-apoena-body .banner-style-two .banner-thumb,
.home-apoena-body .banner-area .banner-thumb{
  position: absolute !important;
  inset: 0;
  height: 100% !important;
  min-height: 100% !important;
}

.home-apoena-body .banner-style-two .banner-thumb::after,
.home-apoena-body .banner-area .banner-thumb::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.35);
}

.home-apoena-body .banner-style-two .container,
.home-apoena-body .banner-area .container{
  position: relative;
  z-index: 3;
  height: 100%;
}

.home-apoena-body .banner-style-two .row,
.home-apoena-body .banner-area .row{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: clamp(84px, 9vh, 140px);
  box-sizing: border-box;
}

.home-apoena-body .banner-style-two .content{ 
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

/* Hamburger (sem FontAwesome) */
.navbar-toggle{display:inline-flex;align-items:center;justify-content:center;}
.hamburger{display:inline-grid;gap:4px;}
.hamburger span{display:block;width:20px;height:2px;background:#fff;border-radius:2px;}
.hamburger.is-x span:nth-child(1){transform:translateY(6px) rotate(45deg);}
.hamburger.is-x span:nth-child(2){opacity:0;}
.hamburger.is-x span:nth-child(3){transform:translateY(-6px) rotate(-45deg);}

/* Header mobile: evita logo sobrepor os botões (Biotech/Agro/Biocare/Admin) */
@media (max-width: 820px){
  .navbar-toggle{display:inline-flex !important;}
  .navbar .container-full{flex-wrap:wrap; gap:10px;}
  .navbar-header{flex: 1 1 220px; min-width: 220px;}
  .navbar-brand .logo{font-size: 16px; line-height: 1.1;}
  .attr-right{flex: 1 1 100%; justify-content: flex-end;}
  .attr-nav ul{flex-wrap:wrap; justify-content:flex-end; gap:8px;}
  .navbar-toggle{border:1px solid rgba(255,255,255,.35); border-radius:10px; padding:10px 12px; background:rgba(0,0,0,.18);}

  /* HOME: no mobile, não mostra os botões do topo (evita sobreposição com o logo).
     As ações ficam dentro do drawer: .apoena-mobile-actions */
  .home-apoena .attr-right{display:none !important;}
  .home-apoena .navbar-header{flex:1 1 100%; min-width: 0; display:flex; align-items:center; justify-content:space-between;}
  .home-apoena .navbar-header .navbar-brand{max-width: 70vw;}
  .home-apoena .navbar-collapse{position:absolute;left:0;right:0;top:100%;background:rgba(12,16,20,.96) !important;border-top:1px solid rgba(255,255,255,.08);padding:14px 14px 18px;}
  .home-apoena .apoena-mobile-actions{display:flex;flex-wrap:wrap;gap:10px;margin:6px 0 14px;}
  .home-apoena .apoena-mobile-actions a{display:inline-flex;align-items:center;gap:8px;padding:10px 12px;border-radius:999px;color:#fff;font-weight:800;text-decoration:none;white-space:nowrap;}
  .home-apoena .apoena-mobile-actions a svg{width:16px;height:16px;fill:currentColor;}
  .home-apoena .apoena-mobile-actions .admin-link{background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.18);}
}

/* Hover do menu (desktop) */
.navbar .navbar-nav > li > a{transition: .18s ease;}
.navbar .navbar-nav > li > a:hover{opacity:1; transform: translateY(-1px);}

/* Dynamic home sections */
.choose-us-style-one-area{background-size:cover;background-position:center;}
.choose-us-style-one-thumb{position:relative;border-radius:24px;overflow:hidden;box-shadow:0 24px 60px rgba(0,0,0,.16)}
.choose-us-style-one-thumb img{width:100%;display:block;object-fit:cover;min-height:420px}
.choose-us-style-one-info .list-style-one{list-style:none;padding:0;margin:0}
.choose-us-style-one-info .list-style-one li{padding:0 0 18px 0;margin:0 0 18px 0;border-bottom:1px solid rgba(255,255,255,.08)}
.choose-us-style-one-info .list-style-one li:last-child{border-bottom:0;margin-bottom:0;padding-bottom:0}
.fun-fact-style-flex{display:flex;gap:18px;flex-wrap:wrap}
.fun-fact-style-flex .counter{flex:1 1 180px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);border-radius:18px;padding:18px 20px}
.fun-fact-style-flex .fun-fact{display:flex;align-items:flex-end;gap:4px;font-size:34px;font-weight:800;line-height:1;color:#fff}
.fun-fact-style-flex .medium{display:block;margin-top:8px;color:rgba(255,255,255,.8)}
.brand-style-one-area{position:relative;overflow:hidden;background-size:cover;background-position:center}
.brand-style-one-items{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}
.brand-style-one-items img{width:100%;max-width:180px;justify-self:center;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);border-radius:18px;padding:18px}
.home-blog-area{background-size:cover;background-position:center}
.home-blog-card{height:100%;background:#fff;border-radius:22px;overflow:hidden;box-shadow:0 18px 45px rgba(15,23,42,.08);border:1px solid rgba(15,23,42,.06)}
.home-blog-card .thumb{display:block;aspect-ratio:16/10;overflow:hidden}
.home-blog-card .thumb img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .35s ease}
.home-blog-card:hover .thumb img{transform:scale(1.04)}
.home-blog-card .info{padding:22px}
.home-blog-card .meta{font-size:13px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--primary);margin-bottom:10px}
.home-blog-card h4{font-size:22px;line-height:1.3;margin-bottom:12px}
.home-blog-card p{margin:0;color:#5b6470}
.home-blog-empty{padding:24px 28px;background:rgba(255,255,255,.9);border-radius:18px;text-align:center;color:#334155}
.footer-logo{max-height:56px;width:auto;display:block}
.footer-item .menu{padding-left:0;list-style:none}
.footer-item .menu li{margin-bottom:10px}
@media (max-width: 767px){
  .choose-us-style-one-thumb img{min-height:280px}
  .brand-style-one-items{grid-template-columns:1fr 1fr}
}

.brand__logo{max-height:54px;width:auto;display:block}
.brand__picture{display:flex;align-items:center}


/* Internal header/footer builder */
.brand{min-width:clamp(180px,18vw,260px);}
.brand--has-logo{display:flex;align-items:center;min-height:58px;}
.brand__media{display:flex;align-items:center;min-height:58px;}
.brand__picture{display:flex;align-items:center;justify-content:flex-start;min-height:58px;}
.brand__logo{max-height:62px;max-width:min(220px,18vw);width:auto;height:auto;object-fit:contain;display:block;}
.brand__name--fallback{font-size:1.05rem;font-weight:800;color:#102015;}
.topbar .social:empty{display:none;}
.topbar .social a{color:#fff;}

.site-footer{position:relative;overflow:hidden;color:var(--footer-text,#eef8f2);background:linear-gradient(135deg,var(--footer-bg-start,#083c2c) 0%, color-mix(in srgb, var(--footer-bg-start,#083c2c) 40%, var(--footer-bg-end,#0b5f45) 60%) 55%, var(--footer-bg-end,#0b5f45) 100%);}
.site-footer::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at top right, rgba(244,180,0,.16), transparent 28%),linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,0));pointer-events:none;}
.site-footer--inner{background:linear-gradient(135deg,var(--footer-bg-start,#083c2c) 0%, color-mix(in srgb, var(--footer-bg-start,#083c2c) 40%, var(--footer-bg-end,#0b5f45) 60%) 55%, var(--footer-bg-end,#0b5f45) 100%);}
.site-footer--home{background:linear-gradient(135deg,var(--footer-bg-start,#083c2c) 0%, color-mix(in srgb, var(--footer-bg-start,#083c2c) 40%, var(--footer-bg-end,#0b5f45) 60%) 55%, var(--footer-bg-end,#0b5f45) 100%);}
.site-footer .footer__grid{position:relative;z-index:1;display:grid;grid-template-columns:minmax(260px,1.2fr) minmax(180px,.8fr) minmax(180px,.8fr) minmax(180px,.8fr);gap:28px;padding:62px 0 34px;align-items:start;}
.site-footer .footer__col{min-width:0;}
.site-footer .footer__col h4{margin:0 0 14px;color:var(--footer-text,#fff);font-size:1.1rem;}
.site-footer .footer__col p,.site-footer .footer__col li,.site-footer .footer__col a,.site-footer .footer__col span{color:var(--footer-text,rgba(255,255,255,.9));}
.site-footer .footer__col p{margin:0 0 12px;line-height:1.7;}
.site-footer .footer__menu{list-style:none;padding:0;margin:0;display:grid;gap:10px;}
.site-footer .footer__menu a{display:inline-flex;opacity:.92;transition:opacity .2s ease,transform .2s ease;}
.site-footer .footer__menu a:hover{opacity:1;transform:translateX(2px);}
.site-footer .footer__logo{max-height:78px;max-width:260px;width:auto;height:auto;object-fit:contain;display:block;margin:0 0 18px;filter:drop-shadow(0 10px 20px rgba(0,0,0,.12));}
.site-footer .footer__col--about h4{margin-top:0;}
.site-footer .footer__social{display:flex;flex-wrap:wrap;gap:10px;margin-top:12px;}
.site-footer .footer__social a{display:inline-flex;align-items:center;gap:8px;padding:10px 12px;border-radius:999px;background:color-mix(in srgb, var(--footer-text,#fff) 10%, transparent);border:1px solid color-mix(in srgb, var(--footer-border,#ffffff) 18%, transparent);color:var(--footer-text,#fff);transition:transform .2s ease,background .2s ease,border-color .2s ease;}
.site-footer .footer__social a:hover{transform:translateY(-1px);background:color-mix(in srgb, var(--footer-text,#fff) 16%, transparent);border-color:color-mix(in srgb, var(--footer-border,#ffffff) 28%, transparent);}
.site-footer .footer__social a span{font-size:.92rem;font-weight:600;}
.site-footer .footer__social a svg{width:16px;height:16px;display:block;fill:currentColor;}
.site-footer .footer__bottom{position:relative;z-index:1;border-top:1px solid color-mix(in srgb, var(--footer-border,#ffffff) 24%, transparent);padding:16px 0 18px;background:rgba(0,0,0,.08);}
.site-footer .footer__bottom small{display:block;color:var(--footer-text,rgba(255,255,255,.82));opacity:.82;}
.site-footer__art{position:absolute;right:0;bottom:0;width:min(28vw,360px);max-width:32%;opacity:.18;pointer-events:none;z-index:0;}
.site-footer__art img{width:100%;height:auto;display:block;object-fit:contain;filter:drop-shadow(0 20px 30px rgba(0,0,0,.12));}

@media (max-width: 980px){
  .brand{min-width:auto;}
  .brand__logo{max-height:54px;max-width:180px;}
  .site-footer .footer__grid{grid-template-columns:1fr 1fr;}
}
@media (max-width: 700px){
  .site-footer .footer__grid{grid-template-columns:1fr;padding:42px 0 24px;}
  .site-footer .footer__logo{max-height:62px;max-width:220px;}
}


.layout-builder-topbar .topbar__right{display:flex;align-items:center;gap:12px;flex-wrap:wrap;justify-content:flex-end;}
.layout-builder-topbar .social--topbar{display:flex !important;align-items:center;gap:8px;flex-wrap:wrap;}
.layout-builder-topbar .social--topbar a{background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.18);color:#fff;box-shadow:0 8px 18px rgba(0,0,0,.08);}
.layout-builder-topbar .social--topbar a:hover{background:rgba(255,255,255,.24);}
.layout-builder-nav:not(.layout-builder-nav--home) .brand--inner{min-width:clamp(190px,20vw,280px);display:flex;align-items:center;}
.layout-builder-nav:not(.layout-builder-nav--home) .brand__media{flex:0 0 auto;display:flex;align-items:center;min-width:0;}
.layout-builder-nav:not(.layout-builder-nav--home) .brand__picture--inner{display:inline-flex;align-items:center;justify-content:flex-start;min-height:56px;min-width:220px;padding:8px 14px;border-radius:18px;background:transparent;box-shadow:none;border:0;}
.layout-builder-nav:not(.layout-builder-nav--home) .brand__logo--inner{width:min(220px,16vw);min-width:180px;max-width:240px;height:48px;max-height:none;object-fit:contain;object-position:left center;display:block;filter:none;}
.layout-builder-nav:not(.layout-builder-nav--home) .brand__picture--inner source,.layout-builder-nav:not(.layout-builder-nav--home) .brand__picture--inner img[src$=".svg"]{image-rendering:auto;}
.layout-builder-nav:not(.layout-builder-nav--home) .brand__name--fallback{color:#0b5f45;font-weight:900;}
.site-footer--inner{background-image:radial-gradient(circle at top right, rgba(244,180,0,.16), transparent 28%),linear-gradient(135deg,var(--footer-bg-start,#083c2c) 0%, color-mix(in srgb, var(--footer-bg-start,#083c2c) 40%, var(--footer-bg-end,#0b5f45) 60%) 55%, var(--footer-bg-end,#0b5f45) 100%);}
.site-footer--inner .footer__logo--inner{width:190px;max-width:190px;height:56px;max-height:none;padding:0;border-radius:0;background:transparent;border:0;object-fit:contain;object-position:left center;}
.site-footer--inner .footer__grid{padding-top:56px;}
@media (max-width: 980px){
  .layout-builder-nav:not(.layout-builder-nav--home) .brand__picture--inner{min-width:170px;padding:6px 0;}
  .layout-builder-nav:not(.layout-builder-nav--home) .brand__logo--inner{width:170px;min-width:170px;height:42px;}
}
@media (max-width: 640px){
  .layout-builder-topbar .topbar__wrap{align-items:flex-start;}
  .layout-builder-topbar .topbar__left{width:100%;}
  .layout-builder-topbar .topbar__right{width:100%;justify-content:flex-start;gap:10px;}
}

/* Home feature section below hero */
.feature-style-one-area--apoena{padding-top:110px;padding-bottom:110px;background:#f7f7f2;overflow:hidden;position:relative}
.feature-style-one-grid{display:grid;grid-template-columns:minmax(240px,270px) minmax(320px,1fr) minmax(260px,360px);gap:56px;align-items:center;position:relative}
.feature-style-one-photo{border-radius:24px;overflow:hidden;box-shadow:0 18px 40px rgba(15,23,42,.08)}
.feature-style-one-photo img{width:100%;display:block;object-fit:cover;border-radius:24px;box-shadow:none}
.feature-style-one-copy .title{font-size:68px;line-height:1.02;letter-spacing:-.03em;margin-bottom:24px;color:#0d0916}
.feature-style-one-copy .vt-desc{font-size:18px;line-height:1.7;color:#55515d;max-width:720px;margin-bottom:28px}
.feature-style-one-bullets{list-style:none;padding:0;margin:0 0 18px}
.feature-style-one-bullets li{position:relative;padding-left:36px;margin:0 0 16px;font-size:16px;font-weight:700;color:#11101a}
.feature-style-one-bullets li::before{content:'✓';position:absolute;left:0;top:0;width:22px;height:22px;border-radius:999px;border:1.5px solid #72b66b;color:#72b66b;display:inline-flex;align-items:center;justify-content:center;font-size:13px;line-height:1;font-weight:900}
.feature-style-one-area--apoena .btn-theme{background:#e8b74f;border-color:#e8b74f;color:#13111b;padding:18px 34px;border-radius:12px;font-weight:800;box-shadow:none}
.feature-style-one-area--apoena .btn-theme:hover{transform:translateY(-1px)}
.feature-style-one-side{position:relative;min-height:520px;display:flex;align-items:flex-start;justify-content:flex-start}
.feature-style-one-card{position:relative;z-index:2;background:#fff;border-radius:18px;padding:28px 34px;box-shadow:0 20px 50px rgba(15,23,42,.08);width:min(100%,320px);margin:0 auto}
.feature-style-one-card__item{display:flex;align-items:center;gap:18px;text-decoration:none;color:#13111b;padding:14px 0}
.feature-style-one-card__item + .feature-style-one-card__item{border-top:1px solid rgba(17,16,26,.08)}
.feature-style-one-card__icon{width:56px;height:56px;display:inline-flex;align-items:center;justify-content:center;flex:0 0 56px}
.feature-style-one-card__icon img{max-width:100%;max-height:100%;object-fit:contain;display:block}
.feature-style-one-card__title{font-size:24px;line-height:1.2;font-weight:700;color:#11101a;font-family:'Montserrat',sans-serif}
.feature-style-one-decor{position:absolute;right:-150px;bottom:-84px;max-width:360px;width:78%;z-index:1;pointer-events:none;opacity:.95}
@media (max-width: 1399px){
  .feature-style-one-grid{grid-template-columns:minmax(220px,250px) minmax(320px,1fr) minmax(240px,320px);gap:42px}
  .feature-style-one-copy .title{font-size:56px}
  .feature-style-one-decor{right:-110px;max-width:300px}
}
@media (max-width: 991px){
  .feature-style-one-area--apoena{padding-top:80px;padding-bottom:80px}
  .feature-style-one-grid{grid-template-columns:1fr;gap:36px}
  .feature-style-one-photo{max-width:380px}
  .feature-style-one-copy .title{font-size:44px}
  .feature-style-one-side{min-height:0;justify-content:flex-start;padding-bottom:110px}
  .feature-style-one-card{margin:0}
  .feature-style-one-decor{right:0;bottom:-24px;max-width:220px;width:50%}
}
@media (max-width: 575px){
  .feature-style-one-area--apoena{padding-top:56px;padding-bottom:56px}
  .feature-style-one-copy .title{font-size:34px}
  .feature-style-one-copy .vt-desc{font-size:16px}
  .feature-style-one-card{padding:22px}
  .feature-style-one-card__icon{width:42px;height:42px;flex-basis:42px}
  .feature-style-one-card__title{font-size:20px}
  .feature-style-one-side{padding-bottom:84px}
  .feature-style-one-decor{max-width:170px;width:46%;right:-12px}
}


/* 2026 premium stabilization patch */
:root{
  --surface-elevated:rgba(255,255,255,.88);
  --shadow-premium:0 18px 60px rgba(11,95,69,.12);
}
.navbar-nav .nav-link,
nav .nav-link,
.main-menu a{
  position:relative;
  transition:color .25s ease, opacity .25s ease, transform .25s ease;
}
.navbar-nav .nav-link::after,
nav .nav-link::after,
.main-menu a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-6px;
  width:100%;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--accent),rgba(255,255,255,.85));
  transform:scaleX(0);
  transform-origin:left center;
  transition:transform .28s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after,
nav .nav-link:hover::after,
.main-menu a:hover::after{
  transform:scaleX(1);
}
.navbar-nav .nav-link:hover,
nav .nav-link:hover,
.main-menu a:hover{
  transform:translateY(-1px);
}
.panel,
.card,
.hb-section,
.branding-upload-card,
.team-style-one-item,
.gallery-style-one,
.blog-style-one,
.faq-style-one,
.quick-link{
  border-radius:20px;
  box-shadow:var(--shadow-premium);
}
.branding-preview img,
.hb-preview,
.team-style-one-item .thumb img,
.gallery-style-one img{
  border-radius:18px;
}
@media (max-width: 991px){
  .navbar-brand img,
  .logo-mobile{
    max-height:56px;
    width:auto;
  }
}

/* Home menu + accordion + loader hardening */
.home-apoena .overlay-screen{position:fixed;inset:0;background:rgba(0,0,0,.45);opacity:0;pointer-events:none;transition:opacity .2s ease;z-index:10030}
.home-apoena .overlay-screen.open{opacity:1;pointer-events:auto}
#preloader.loaded{transition:opacity .4s ease}

@media (max-width: 980px){
  .home-apoena .navbar-collapse{display:none !important}
  .home-apoena .navbar-collapse.open{display:block !important}
  .home-apoena #navbar-menu .nav{display:flex !important;flex-direction:column;gap:6px}
  .home-apoena #navbar-menu .dropdown-menu{display:block;position:static;float:none;background:transparent;border:0;box-shadow:none;padding-left:12px}
}

/* Home fine tuning 2026-03-11 */
.home-apoena-body .home-section-gap{margin-top:42px;}
.home-apoena-body .feature-style-one-area--apoena{position:relative;z-index:1;}
.home-apoena-body .service-style-two-area,
.home-apoena-body .timeline-area,
.home-apoena-body .feq-style-one-area,
.home-apoena-body .choose-us-style-one-area,
.home-apoena-body .gallery-style-one-area,
.home-apoena-body .team-style-one-area,
.home-apoena-body .brand-style-one-area,
.home-apoena-body .home-blog-area{position:relative;}

.home-apoena-body .service-style-two-carousel{overflow:hidden;position:relative;}
.home-apoena-body .service-style-two-carousel .swiper-wrapper{display:flex;gap:24px;align-items:stretch;transition:transform .45s ease;will-change:transform;}
.home-apoena-body .service-style-two-carousel .swiper-slide{display:block !important;opacity:1 !important;flex:0 0 calc((100% - 48px) / 3);max-width:calc((100% - 48px) / 3);}
.home-apoena-body .service-style-two{height:100%;background:#fff;border-radius:24px;overflow:hidden;box-shadow:0 20px 48px rgba(15,23,42,.08);}
.home-apoena-body .service-style-two .thumb img{width:100%;height:320px;object-fit:cover;display:block;}
.home-apoena-body .service-style-two .overlay{padding:24px;display:flex;gap:18px;align-items:flex-start;background:#fff;}
.home-apoena-body .service-style-two .icon{width:58px;height:58px;flex:0 0 58px;border-radius:16px;background:#f5f8f3;display:flex;align-items:center;justify-content:center;overflow:hidden;}
.home-apoena-body .service-style-two .icon img{max-width:32px;max-height:32px;object-fit:contain;display:block;}
.home-apoena-body .service-style-two .info h4{margin:0 0 8px;font-size:24px;line-height:1.2;}
.home-apoena-body .service-style-two .info span{display:block;color:#5b6470;line-height:1.6;}
.home-apoena-body .service-style-two-carousel .swiper-button-prev,
.home-apoena-body .service-style-two-carousel .swiper-button-next{position:absolute;top:calc(50% - 26px);width:52px;height:52px;border-radius:999px;background:rgba(12,63,48,.88);backdrop-filter:blur(8px);z-index:3;cursor:pointer;box-shadow:0 16px 30px rgba(12,63,48,.18);}
.home-apoena-body .service-style-two-carousel .swiper-button-prev{left:12px;}
.home-apoena-body .service-style-two-carousel .swiper-button-next{right:12px;}
.home-apoena-body .service-style-two-carousel .swiper-button-prev::before,
.home-apoena-body .service-style-two-carousel .swiper-button-next::before{content:'';position:absolute;inset:0;margin:auto;width:12px;height:12px;border-top:2px solid #fff;border-right:2px solid #fff;}
.home-apoena-body .service-style-two-carousel .swiper-button-prev::before{transform:rotate(-135deg);left:4px;}
.home-apoena-body .service-style-two-carousel .swiper-button-next::before{transform:rotate(45deg);right:4px;}

.home-apoena-body .team-style-one-area .site-heading{margin-bottom:22px;}
.home-apoena-body .team-style-one-item{height:100%;background:rgba(255,255,255,.96);border:1px solid rgba(15,23,42,.06);overflow:hidden;display:flex;flex-direction:column;}
.home-apoena-body .team-style-one-item .thumb{position:relative;padding:0;overflow:hidden;}
.home-apoena-body .team-style-one-item .thumb img{width:100%;height:360px;object-fit:cover;display:block;border-radius:0;}
.home-apoena-body .team-style-one-item .social-overlay{position:absolute;left:18px;right:18px;bottom:18px;display:flex;gap:10px;flex-wrap:wrap;z-index:2;opacity:0;transform:translateY(12px);transition:all .28s ease;}
.home-apoena-body .team-style-one-item .social-overlay a{display:inline-flex;align-items:center;justify-content:center;min-width:42px;height:42px;padding:0 14px;border-radius:999px;background:rgba(255,255,255,.94);color:#102015;font-weight:800;font-size:14px;text-decoration:none;box-shadow:0 10px 24px rgba(0,0,0,.12);}
.home-apoena-body .team-style-one-item .thumb::after{content:'';position:absolute;inset:auto 0 0;height:45%;background:linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.45));opacity:.8;pointer-events:none;}
.home-apoena-body .team-style-one-item:hover .social-overlay{opacity:1;transform:translateY(0);}
.home-apoena-body .team-style-one-item .info{padding:24px 24px 26px;display:flex;flex-direction:column;gap:8px;}
.home-apoena-body .team-style-one-item .info h4{margin:0;font-size:34px;line-height:1.1;letter-spacing:-.02em;word-break:break-word;}
.home-apoena-body .team-style-one-item .info h4 a{color:#0f1220;text-decoration:none;}
.home-apoena-body .team-style-one-item .info span{display:block;font-size:17px;line-height:1.5;color:#5a6370;word-break:break-word;}

.home-apoena-body .brand-style-one-area{background-size:cover;background-position:center;color:#fff;}
.home-apoena-body .brand-style-one-info{position:relative;z-index:2;}
.home-apoena-body .brand-style-one-info h2{display:block !important;margin:0 0 16px;font-size:46px;line-height:1.08;color:#fff !important;letter-spacing:-.03em;}
.home-apoena-body .brand-style-one-info p{display:block !important;margin:0;color:rgba(255,255,255,.9) !important;font-size:17px;line-height:1.75;max-width:560px;}
.home-apoena-body .brand-style-one-info .btn{margin-top:22px;}
.home-apoena-body .brand-style-one-items{align-items:center;}
.home-apoena-body .brand-style-one-items img{display:block;}

@media (max-width: 991px){
  .home-apoena-body .home-section-gap{margin-top:30px;}
  .home-apoena-body .service-style-two-carousel .swiper-slide{flex-basis:calc((100% - 24px) / 2);max-width:calc((100% - 24px) / 2);}
  .home-apoena-body .team-style-one-item .thumb img{height:320px;}
  .home-apoena-body .team-style-one-item .info h4{font-size:28px;}
  .home-apoena-body .brand-style-one-info h2{font-size:38px;}
}
@media (max-width: 767px){
  .home-apoena-body .service-style-two-carousel .swiper-wrapper{gap:18px;}
  .home-apoena-body .service-style-two-carousel .swiper-slide{flex-basis:100%;max-width:100%;}
  .home-apoena-body .service-style-two .thumb img{height:260px;}
  .home-apoena-body .service-style-two .overlay{padding:20px;}
  .home-apoena-body .team-style-one-item .social-overlay{opacity:1;transform:none;}
  .home-apoena-body .team-style-one-item .thumb img{height:300px;}
  .home-apoena-body .team-style-one-item .info{padding:20px 20px 22px;}
  .home-apoena-body .team-style-one-item .info h4{font-size:24px;}
  .home-apoena-body .team-style-one-item .info span{font-size:15px;}
  .home-apoena-body .brand-style-one-info h2{font-size:30px;}
}


/* Home final polish 2026-03-11 v3 */
.home-apoena-body .home-section-gap{margin-top:36px;}
.home-apoena-body .service-style-two-area{padding-bottom:70px;}
.home-apoena-body .service-style-two-carousel{padding:6px 2px 10px;}
.home-apoena-body .service-style-two-carousel .swiper-wrapper{align-items:stretch;}
.home-apoena-body .service-style-two-carousel .swiper-slide{height:auto;align-self:stretch;}
.home-apoena-body .service-style-two{display:flex;flex-direction:column;height:auto;min-height:100%;border-radius:26px;}
.home-apoena-body .service-style-two .thumb{display:block;line-height:0;flex:0 0 auto;}
.home-apoena-body .service-style-two .thumb img{height:290px;}
.home-apoena-body .service-style-two .overlay{display:flex;align-items:flex-start;gap:16px;flex:0 0 auto;padding:22px 22px 24px;min-height:0;position:relative;}
.home-apoena-body .service-style-two .info{flex:1 1 auto;min-width:0;}
.home-apoena-body .service-style-two .info h4{font-size:22px;margin:0 0 6px;}
.home-apoena-body .service-style-two .info h4 a{color:#111827;text-decoration:none;}
.home-apoena-body .service-style-two .info span{font-size:15px;line-height:1.55;}
.home-apoena-body .choose-us-style-one-area{padding-bottom:46px !important;margin-bottom:0 !important;}
.home-apoena-body .choose-us-style-one-area + .gallery-style-two-area{padding-top:38px !important;margin-top:0 !important;}
.home-apoena-body .gallery-style-two-area{position:relative;z-index:1;}
.home-apoena-body .brand-style-one-area{overflow:hidden;}
.home-apoena-body .brand-style-one-row{row-gap:28px;}
.home-apoena-body .brand-style-one-info{display:block !important;visibility:visible !important;opacity:1 !important;}
.home-apoena-body .brand-style-one-info .cta-visible-title,
.home-apoena-body .brand-style-one-info .cta-visible-desc{display:block !important;visibility:visible !important;opacity:1 !important;}
.home-apoena-body .brand-style-one-items{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;}
.home-apoena-body .brand-logo-card{min-height:110px;border-radius:20px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.14);display:flex;align-items:center;justify-content:center;padding:22px;backdrop-filter:blur(8px);}
.home-apoena-body .brand-logo-card img{max-width:100%;max-height:46px;width:auto;height:auto;filter:none;}
.home-apoena-body .site-heading .title,
.home-apoena-body .brand-style-one-info h2,
.home-apoena-body .choose-us-style-one-info .title{word-break:break-word;}

@media (max-width: 991px){
  .home-apoena-body .home-section-gap{margin-top:28px;}
  .home-apoena-body .choose-us-style-one-area{padding-bottom:36px !important;}
  .home-apoena-body .choose-us-style-one-area + .gallery-style-two-area{padding-top:28px !important;}
  .home-apoena-body .service-style-two .thumb img{height:250px;}
  .home-apoena-body .brand-style-one-items{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width: 767px){
  .home-apoena-body .service-style-two-carousel{padding-bottom:0;}
  .home-apoena-body .service-style-two .thumb img{height:220px;}
  .home-apoena-body .service-style-two .overlay{padding:18px;gap:14px;}
  .home-apoena-body .brand-style-one-items{grid-template-columns:1fr;}
  .home-apoena-body .brand-logo-card{min-height:88px;padding:18px;}
}

/* Home premium rebuild 2026-03-11 v4 */
.home-apoena-body .home-section-gap{margin-top:48px;}
.home-apoena-body .services-premium-area,
.home-apoena-body .choose-premium-area,
.home-apoena-body .gallery-premium-area,
.home-apoena-body .team-premium-area,
.home-apoena-body .cta-premium-area{background-repeat:no-repeat;background-size:cover;background-position:center;}

/* Services */
.home-apoena-body .services-premium-area{padding-top:36px;padding-bottom:24px;}
.home-apoena-body .services-premium-area .service-style-two-carousel{overflow:hidden;padding:8px 4px 20px;}
.home-apoena-body .services-premium-area .service-style-two-carousel .swiper-wrapper{display:flex;align-items:flex-start !important;gap:26px;transform:none;}
.home-apoena-body .services-premium-area .service-style-two-carousel .swiper-slide,
.home-apoena-body .services-premium-area .service-slide-premium{height:auto !important;min-height:0 !important;align-self:flex-start !important;background:transparent !important;}
.home-apoena-body .services-premium-area .service-card-premium{display:flex;flex-direction:column;height:auto !important;min-height:0 !important;background:#fff;border:1px solid rgba(15,23,42,.06);border-radius:28px;overflow:hidden;box-shadow:0 20px 50px rgba(15,23,42,.08);}
.home-apoena-body .services-premium-area .service-card-premium .thumb{line-height:0;aspect-ratio: 4 / 3;overflow:hidden;background:#eef4ef;}
.home-apoena-body .services-premium-area .service-card-premium .thumb img{width:100%;height:100% !important;min-height:0 !important;object-fit:cover;display:block;}
.home-apoena-body .services-premium-area .service-card-premium .overlay{display:grid;grid-template-columns:62px minmax(0,1fr);gap:16px;padding:22px 22px 24px;background:#fff;position:static;}
.home-apoena-body .services-premium-area .service-card-premium .icon{width:62px;height:62px;min-width:62px;border-radius:18px;background:linear-gradient(180deg,#f4f8f3,#edf4ef);border:1px solid rgba(35,107,75,.08);box-shadow:none;}
.home-apoena-body .services-premium-area .service-card-premium .icon img{max-width:30px;max-height:30px;opacity:.88;}
.home-apoena-body .services-premium-area .service-card-premium__fallback-icon{font-size:26px;line-height:1;color:#236b4b;}
.home-apoena-body .services-premium-area .service-card-premium .info{min-width:0;}
.home-apoena-body .services-premium-area .service-card-premium .info h4{margin:0 0 6px;font-size:24px;line-height:1.18;letter-spacing:-.02em;}
.home-apoena-body .services-premium-area .service-card-premium .info h4 a{color:#101828;text-decoration:none;}
.home-apoena-body .services-premium-area .service-card-premium .info span{display:block;margin:0;color:#667085;font-size:15px;line-height:1.55;text-transform:uppercase;letter-spacing:.04em;}
.home-apoena-body .services-premium-area .swiper-button-prev,
.home-apoena-body .services-premium-area .swiper-button-next{top:38%;}

/* Choose us */
.home-apoena-body .choose-premium-area{padding-top:72px !important;padding-bottom:40px !important;}
.home-apoena-body .choose-premium-area .row.align-center{align-items:center !important;}
.home-apoena-body .choose-premium-area .choose-us-style-one-thumb{border-radius:32px;overflow:hidden;background:#e9efe9;box-shadow:0 28px 70px rgba(15,23,42,.12);}
.home-apoena-body .choose-premium-area .choose-us-style-one-thumb img{display:block;width:100%;min-height:0 !important;aspect-ratio: 5 / 6;object-fit:cover;}
.home-apoena-body .choose-premium-area .choose-us-style-one-info{background:rgba(255,255,255,.92);border:1px solid rgba(15,23,42,.06);border-radius:28px;padding:34px 34px 30px;box-shadow:0 24px 54px rgba(15,23,42,.08);backdrop-filter:blur(8px);}
.home-apoena-body .choose-premium-area .choose-us-style-one-info .title{margin-bottom:12px;line-height:1.08;}
.home-apoena-body .choose-premium-area .choose-us-style-one-info .sub-title{margin-bottom:12px;}
.home-apoena-body .choose-premium-area .list-style-one{display:grid;gap:16px;margin-top:24px !important;}
.home-apoena-body .choose-premium-area .list-style-one li{margin:0 !important;padding:0 0 16px !important;border-bottom:1px solid rgba(15,23,42,.08) !important;}
.home-apoena-body .choose-premium-area .list-style-one li:last-child{padding-bottom:0 !important;border-bottom:0 !important;}
.home-apoena-body .choose-premium-area .list-style-one h4{margin:0 0 6px;font-size:21px;line-height:1.25;color:#101828;}
.home-apoena-body .choose-premium-area .list-style-one p{margin:0;color:#667085;line-height:1.65;}
.home-apoena-body .choose-premium-area .fun-fact-style-flex{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin-top:26px !important;}
.home-apoena-body .choose-premium-area .fun-fact-style-flex .counter{background:#0f5132;border:0;padding:18px 20px;}
.home-apoena-body .choose-premium-area .fun-fact-style-flex .medium{color:rgba(255,255,255,.82);}
.home-apoena-body .choose-premium-area .video-play-button{left:22px;bottom:22px;top:auto;transform:none;}
.home-apoena-body .choose-premium-area + .gallery-premium-area{padding-top:24px !important;margin-top:0 !important;}

/* Gallery */
.home-apoena-body .gallery-premium-area{padding-top:24px !important;padding-bottom:48px !important;}
.home-apoena-body .gallery-premium-area .site-heading{margin-bottom:34px;}
.home-apoena-body .gallery-premium-area .gallery-items{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;}
.home-apoena-body .gallery-premium-area .gallery-item,
.home-apoena-body .gallery-premium-area .gallery-item.width{width:auto !important;}
.home-apoena-body .gallery-premium-area .gallery-card-premium{height:100%;border-radius:26px;overflow:hidden;background:#fff;box-shadow:0 22px 52px rgba(15,23,42,.08);border:1px solid rgba(15,23,42,.06);}
.home-apoena-body .gallery-premium-area .gallery-card-premium img{display:block;width:100%;aspect-ratio: 4 / 3;object-fit:cover;}
.home-apoena-body .gallery-premium-area .gallery-card-premium .overlay{position:static;padding:20px 22px 22px;background:#fff;}
.home-apoena-body .gallery-premium-area .gallery-card-premium .vt-f-title{margin:0 0 8px;color:#236b4b;font-weight:800;text-transform:uppercase;letter-spacing:.08em;font-size:12px;}
.home-apoena-body .gallery-premium-area .gallery-card-premium .vt-f-text,
.home-apoena-body .gallery-premium-area .gallery-card-premium .vt-f-text a{margin:0;color:#111827;font-size:24px;line-height:1.2;text-decoration:none;}

/* Team */
.home-apoena-body .team-premium-area{padding-top:44px !important;padding-bottom:58px !important;}
.home-apoena-body .team-premium-area .site-heading{margin-bottom:18px;}
.home-apoena-body .team-premium-area .team-style-one-item{border-radius:28px;background:#fff;box-shadow:0 24px 54px rgba(15,23,42,.08);border:1px solid rgba(15,23,42,.06);}
.home-apoena-body .team-premium-area .team-style-one-item .thumb{position:relative;aspect-ratio: 4 / 4.5;background:#edf3ed;}
.home-apoena-body .team-premium-area .team-style-one-item .thumb img{height:100% !important;min-height:0 !important;object-fit:cover;}
.home-apoena-body .team-premium-area .team-style-one-item .thumb::after{height:42%;}
.home-apoena-body .team-premium-area .team-style-one-item .info{padding:24px 24px 26px;gap:6px;}
.home-apoena-body .team-premium-area .team-style-one-item .info h4{font-size:22px;line-height:1.22;}
.home-apoena-body .team-premium-area .team-style-one-item .info span{font-size:15px;line-height:1.6;}
.home-apoena-body .team-premium-area .social-overlay a{font-size:13px;height:40px;min-width:40px;padding:0 12px;}

/* CTA / brands */
.home-apoena-body .cta-premium-area{padding-top:58px !important;padding-bottom:58px !important;position:relative;overflow:hidden;border-radius:0;}
.home-apoena-body .cta-premium-area--default{color:#fff;}
.home-apoena-body .cta-premium-area--custom{color:#fff;}
.home-apoena-body .cta-premium-area .shape-right-top{opacity:.22;pointer-events:none;}
.home-apoena-body .cta-premium-area .brand-style-one-row{align-items:center !important;row-gap:30px;}
.home-apoena-body .cta-premium-area .brand-style-one-info{position:relative;z-index:2;display:flex !important;flex-direction:column;justify-content:center;min-height:100%;}
.home-apoena-body .cta-premium-area .brand-style-one-info .cta-visible-title{display:block !important;visibility:visible !important;opacity:1 !important;margin:0 0 14px;font-size:44px;line-height:1.05;letter-spacing:-.03em;color:#fff !important;}
.home-apoena-body .cta-premium-area .brand-style-one-info .cta-visible-desc{display:block !important;visibility:visible !important;opacity:1 !important;margin:0;color:rgba(255,255,255,.9) !important;font-size:17px;line-height:1.75;max-width:560px;}
.home-apoena-body .cta-premium-area .brand-style-one-info .btn{align-self:flex-start;margin-top:22px;}
.home-apoena-body .cta-premium-area .brand-style-one-items{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;position:relative;z-index:2;}
.home-apoena-body .cta-premium-area .brand-logo-card{min-height:108px;border-radius:22px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.16);box-shadow:0 18px 42px rgba(0,0,0,.12);display:flex;align-items:center;justify-content:center;padding:20px;text-align:center;}
.home-apoena-body .cta-premium-area .brand-logo-card img{display:block;max-width:150px;max-height:48px;width:auto;height:auto;background:none;border:0;padding:0;}
.home-apoena-body .cta-premium-area .brand-logo-card span{font-size:16px;font-weight:800;letter-spacing:.02em;color:#fff;display:block;}
.home-apoena-body .cta-premium-area .brand-logo-card--text{background:rgba(255,255,255,.16);}
.home-apoena-body .cta-premium-area.cta-premium-area--default::before{content:'';position:absolute;inset:auto -120px -120px auto;width:360px;height:360px;background:radial-gradient(circle at center, rgba(255,255,255,.14), transparent 68%);}
.home-apoena-body .cta-premium-area.cta-premium-area--default::after{content:'';position:absolute;inset:-120px auto auto -120px;width:280px;height:280px;background:radial-gradient(circle at center, rgba(255,255,255,.12), transparent 70%);}

/* Better spacing coherence */
.home-apoena-body .team-premium-area + .cta-premium-area{margin-top:22px;}
.home-apoena-body .gallery-premium-area + .team-premium-area{margin-top:10px;}

@media (max-width: 991px){
  .home-apoena-body .home-section-gap{margin-top:34px;}
  .home-apoena-body .services-premium-area .service-style-two-carousel .swiper-wrapper{gap:20px;}
  .home-apoena-body .choose-premium-area{padding-top:54px !important;padding-bottom:26px !important;}
  .home-apoena-body .choose-premium-area .choose-us-style-one-info{padding:28px 24px 24px;}
  .home-apoena-body .gallery-premium-area .gallery-items{grid-template-columns:repeat(2,minmax(0,1fr));}
  .home-apoena-body .cta-premium-area .brand-style-one-info .cta-visible-title{font-size:36px;}
}
@media (max-width: 767px){
  .home-apoena-body .home-section-gap{margin-top:26px;}
  .home-apoena-body .services-premium-area{padding-top:18px;padding-bottom:10px;}
  .home-apoena-body .services-premium-area .service-card-premium .overlay{grid-template-columns:52px minmax(0,1fr);padding:18px;}
  .home-apoena-body .services-premium-area .service-card-premium .icon{width:52px;height:52px;min-width:52px;}
  .home-apoena-body .services-premium-area .service-card-premium .info h4{font-size:20px;}
  .home-apoena-body .choose-premium-area .choose-us-style-one-thumb img{aspect-ratio: 4 / 3;}
  .home-apoena-body .choose-premium-area .fun-fact-style-flex{grid-template-columns:1fr;}
  .home-apoena-body .gallery-premium-area .gallery-items{grid-template-columns:1fr;gap:18px;}
  .home-apoena-body .gallery-premium-area .gallery-card-premium .vt-f-text,
  .home-apoena-body .gallery-premium-area .gallery-card-premium .vt-f-text a{font-size:21px;}
  .home-apoena-body .team-premium-area .team-style-one-item .info h4{font-size:20px;}
  .home-apoena-body .cta-premium-area{padding-top:42px !important;padding-bottom:42px !important;}
  .home-apoena-body .cta-premium-area .brand-style-one-info .cta-visible-title{font-size:30px;}
  .home-apoena-body .cta-premium-area .brand-style-one-items{grid-template-columns:1fr;}
}


/* ==========================
   PREMIUM SCROLL REVEAL
   ========================== */
:root{
  --reveal-distance: 30px;
  --reveal-duration: 820ms;
  --reveal-ease: cubic-bezier(.22, 1, .36, 1);
}

.reveal{
  opacity: 0;
  will-change: transform, opacity, filter;
  transition:
    opacity var(--reveal-duration) var(--reveal-ease) var(--reveal-delay, 0ms),
    transform var(--reveal-duration) var(--reveal-ease) var(--reveal-delay, 0ms),
    filter var(--reveal-duration) var(--reveal-ease) var(--reveal-delay, 0ms);
  backface-visibility: hidden;
}

.reveal--fade-up{
  transform: translate3d(0, var(--reveal-distance), 0);
  filter: blur(8px);
}

.reveal--fade-right{
  transform: translate3d(calc(var(--reveal-distance) * -1), 0, 0);
  filter: blur(8px);
}

.reveal--fade-left{
  transform: translate3d(var(--reveal-distance), 0, 0);
  filter: blur(8px);
}

.reveal--zoom-in{
  transform: translate3d(0, 22px, 0) scale(.94);
  filter: blur(10px);
}

.reveal.is-visible{
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.footer .reveal,
footer .reveal{
  transition-duration: 760ms;
}

@media (prefers-reduced-motion: reduce){
  .reveal{
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}


/* ==========================
   HOME PREMIUM FIXES - FINAL
   ========================== */
.home-apoena-body .services-premium-area,
.home-apoena-body .timeline-area,
.home-apoena-body .choose-premium-area,
.home-apoena-body .gallery-premium-area,
.home-apoena-body .team-premium-area,
.home-apoena-body .cta-premium-area,
.home-apoena-body .home-blog-area{
  position:relative;
  z-index:1;
}

.home-apoena-body .services-premium-area{
  padding-top:26px !important;
  padding-bottom:14px !important;
  margin-bottom:0 !important;
}

.home-apoena-body .services-premium-area .swiper,
.home-apoena-body .services-premium-area .swiper-horizontal,
.home-apoena-body .services-premium-area .service-style-two-carousel,
.home-apoena-body .services-premium-area .service-style-two-carousel .swiper-wrapper,
.home-apoena-body .services-premium-area .service-style-two-carousel .swiper-slide,
.home-apoena-body .services-premium-area .service-slide-premium{
  height:auto !important;
  min-height:0 !important;
}

.home-apoena-body .services-premium-area .service-style-two-carousel{
  margin-bottom:0 !important;
  padding-bottom:4px !important;
}

.home-apoena-body .services-premium-area .service-style-two-carousel .swiper-wrapper{
  align-items:stretch !important;
}

.home-apoena-body .services-premium-area .service-style-two-carousel .swiper-slide,
.home-apoena-body .services-premium-area .service-slide-premium{
  background:transparent !important;
  align-self:stretch !important;
}

.home-apoena-body .services-premium-area .service-card-premium{
  height:100% !important;
}

.home-apoena-body .services-premium-area + .timeline-area{
  margin-top:0 !important;
}

.home-apoena-body .timeline-area{
  padding-top:26px !important;
  padding-bottom:44px !important;
  margin-top:0 !important;
}

.home-apoena-body .timeline-area .site-heading{
  margin-bottom:28px !important;
}

.home-apoena-body .timeline-area .timeline-items{
  margin-top:0 !important;
}

.home-apoena-body .choose-premium-area{
  padding-top:42px !important;
  padding-bottom:24px !important;
}

.home-apoena-body .choose-premium-area + .gallery-premium-area{
  padding-top:12px !important;
}

.home-apoena-body .gallery-premium-area{
  padding-top:12px !important;
}

.home-apoena-body .cta-premium-area .brand-style-one-info,
.home-apoena-body .cta-premium-area .brand-style-one-info *{
  visibility:visible !important;
}

.home-apoena-body .cta-premium-area .brand-style-one-info .cta-visible-title,
.home-apoena-body .cta-premium-area .brand-style-one-info .cta-visible-desc{
  color:#fff !important;
  text-shadow:0 4px 20px rgba(0,0,0,.18);
}

.home-apoena-body .cta-premium-area::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(8,28,21,.34), rgba(8,28,21,.16));
  pointer-events:none;
}

.home-apoena-body .cta-premium-area .container,
.home-apoena-body .cta-premium-area .shape-right-top{
  position:relative;
  z-index:1;
}

@media (max-width: 991.98px){
  .home-apoena-body .timeline-area{
    padding-top:20px !important;
    padding-bottom:34px !important;
  }
  .home-apoena-body .choose-premium-area{
    padding-top:34px !important;
    padding-bottom:18px !important;
  }
}

@media (max-width: 767.98px){
  .home-apoena-body .services-premium-area{
    padding-top:12px !important;
    padding-bottom:8px !important;
  }
  .home-apoena-body .timeline-area{
    padding-top:14px !important;
    padding-bottom:28px !important;
  }
  .home-apoena-body .gallery-premium-area{
    padding-top:8px !important;
  }
}


/* 2026-03-15 — Header da home e paleta configurável */
body{color:var(--site-text,#0d1216);background:var(--site-surface,#ffffff);}
.nav{background:var(--site-surface,#ffffff);}
.home-desktop-header{position:relative;z-index:10040;}
.home-desktop-header .navbar,
.home-desktop-header .navbar.no-background,
.home-desktop-header .navbar.navbar-fixed,
.home-desktop-header .navbar.navbar-sticky,
.home-desktop-header .navbar.navbar-default{
  background:var(--home-header-bg,#ffffff) !important;
  box-shadow:0 14px 34px rgba(15,23,42,.08) !important;
  backdrop-filter:none !important;
}
.home-desktop-header .navbar .container-full{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:24px !important;
  padding:16px 28px !important;
}
.home-desktop-header .navbar-header,
.home-desktop-header .attr-right{
  flex:0 0 auto !important;
}
.home-desktop-header .navbar-collapse{
  flex:1 1 auto !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:transparent !important;
}
.home-desktop-header .navbar .navbar-brand,
.home-desktop-header .navbar .navbar-brand:hover,
.home-desktop-header .navbar .navbar-brand:focus,
.home-desktop-header .navbar .navbar-brand img,
.home-desktop-header .navbar .navbar-brand .logo,
.home-desktop-header .navbar .navbar-brand .logo-desktop,
.home-desktop-header .navbar .navbar-brand .logo-mobile,
.home-desktop-header .navbar-header{
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  outline:0 !important;
}
.home-desktop-header .navbar .navbar-brand{
  padding:0 !important;
  max-width:none !important;
}
.home-desktop-header .navbar .navbar-brand .logo.logo-desktop{
  height:56px !important;
  width:auto !important;
  max-width:220px !important;
  object-fit:contain !important;
}
.home-desktop-header .navbar .navbar-brand .logo.logo-mobile{
  display:none !important;
}
.home-desktop-header .navbar .navbar-nav{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:8px !important;
  width:100% !important;
  margin:0 !important;
  padding:0 !important;
  background:transparent !important;
}
.home-desktop-header .navbar .navbar-nav > li{
  float:none !important;
  display:block !important;
}
.home-desktop-header .navbar .navbar-nav > li > a,
.home-desktop-header .navbar .navbar-nav > li.active > a,
.home-desktop-header .navbar .navbar-nav > li > a.active,
.home-desktop-header .navbar .navbar-brand,
.home-desktop-header .navbar .brand-text,
.home-desktop-header .navbar .navbar-toggle,
.home-desktop-header .navbar .navbar-nav > li > a *,
.home-desktop-header .navbar .dropdown > a,
.home-desktop-header .navbar .dropdown-menu > li > a{
  color:var(--home-header-menu,#374151) !important;
}
.home-desktop-header .navbar .navbar-nav > li > a{
  font-weight:700 !important;
  letter-spacing:.01em !important;
  padding:12px 16px !important;
  border-radius:999px !important;
  opacity:1 !important;
}
.home-desktop-header .navbar .navbar-nav > li > a:hover,
.home-desktop-header .navbar .navbar-nav > li.active > a,
.home-desktop-header .navbar .navbar-nav > li > a.active{
  background:var(--home-header-hover,#eef3ef) !important;
  color:var(--home-header-menu,#374151) !important;
}
.home-desktop-header .navbar .dropdown-menu{
  background:#ffffff !important;
  border:1px solid rgba(15,23,42,.08) !important;
  box-shadow:0 20px 36px rgba(15,23,42,.12) !important;
  border-radius:16px !important;
  padding:10px !important;
}
.home-desktop-header .navbar .dropdown-menu > li > a{
  border-radius:10px !important;
  padding:10px 12px !important;
}
.home-desktop-header .navbar .dropdown-menu > li > a:hover{
  background:var(--home-header-hover,#eef3ef) !important;
}
.home-desktop-header .navbar .navbar-toggle{
  border-color:rgba(55,65,81,.18) !important;
  background:#fff !important;
}
.home-desktop-header .apoena-ext-btns{
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
}
.home-desktop-header .apoena-ext-btns a,
.home-desktop-header .apoena-mobile-actions a{
  display:inline-flex !important;
  align-items:center !important;
  gap:9px !important;
  min-height:46px !important;
  padding:11px 16px !important;
  border-radius:999px !important;
  border:0 !important;
  text-decoration:none !important;
  font-weight:800 !important;
  line-height:1 !important;
  white-space:nowrap !important;
  box-shadow:0 12px 24px rgba(15,23,42,.12) !important;
}
.home-desktop-header .apoena-ext-btns a,
.home-desktop-header .apoena-ext-btns a .lbl,
.home-desktop-header .apoena-ext-btns a svg,
.home-desktop-header .apoena-mobile-actions a,
.home-desktop-header .apoena-mobile-actions a .lbl,
.home-desktop-header .apoena-mobile-actions a svg{
  color:var(--home-header-action-text,#ffffff) !important;
  fill:currentColor !important;
}
.home-desktop-header .apoena-ext-btns a svg,
.home-desktop-header .apoena-mobile-actions a svg{
  width:16px !important;
  height:16px !important;
  flex:0 0 16px !important;
  opacity:.98 !important;
}
.home-desktop-header .apoena-ext-btns .admin-link,
.home-desktop-header .apoena-mobile-actions .admin-link{
  color:var(--home-header-menu,#374151) !important;
  background:#f8fafc !important;
  border:1px solid rgba(55,65,81,.14) !important;
  box-shadow:none !important;
}
.home-desktop-header .apoena-ext-btns .admin-link .lbl,
.home-desktop-header .apoena-ext-btns .admin-link svg,
.home-desktop-header .apoena-mobile-actions .admin-link .lbl,
.home-desktop-header .apoena-mobile-actions .admin-link svg{color:var(--home-header-menu,#374151) !important;fill:currentColor !important;}
@media (max-width: 820px){
  .home-apoena .navbar-toggle{
    border:1px solid rgba(55,65,81,.22) !important;
    background:#fff !important;
    color:var(--home-header-menu,#374151) !important;
  }
}


/* Home header hotfix v4 */
.home-desktop-header .navbar,
.home-desktop-header .navbar *{
  box-sizing:border-box;
}
.home-desktop-header .navbar .container-full{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  flex-wrap:nowrap !important;
  gap:28px !important;
}
.home-desktop-header .navbar-header{
  width:auto !important;
  min-width:auto !important;
  flex:0 0 auto !important;
  display:flex !important;
  align-items:center !important;
}
.home-desktop-header .navbar .navbar-brand,
.home-desktop-header .navbar .navbar-brand:hover,
.home-desktop-header .navbar .navbar-brand:focus{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  width:auto !important;
  min-width:auto !important;
  margin:0 !important;
  padding:0 !important;
  background:transparent !important;
}
.home-desktop-header .navbar .navbar-brand img,
.home-desktop-header .navbar .navbar-brand .logo,
.home-desktop-header .navbar .navbar-brand .logo-desktop{
  display:block !important;
  width:auto !important;
  height:58px !important;
  max-width:240px !important;
  object-fit:contain !important;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
}
.home-desktop-header .navbar .navbar-brand::before,
.home-desktop-header .navbar .navbar-brand::after,
.home-desktop-header .navbar-header::before,
.home-desktop-header .navbar-header::after{
  display:none !important;
  content:none !important;
}
.home-desktop-header .navbar-collapse,
.home-desktop-header .navbar .navbar-collapse.collapse{
  position:static !important;
  left:auto !important;
  right:auto !important;
  top:auto !important;
  flex:1 1 auto !important;
  width:auto !important;
  min-width:0 !important;
  height:auto !important;
  min-height:0 !important;
  margin:0 !important;
  padding:0 !important;
  overflow:visible !important;
  background:transparent !important;
  border:0 !important;
  border-radius:0 !important;
  box-shadow:none !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
}
.home-desktop-header .navbar .navbar-nav,
.home-desktop-header .navbar .navbar-nav.navbar-center{
  display:flex !important;
  flex-direction:row !important;
  flex-wrap:nowrap !important;
  align-items:center !important;
  justify-content:center !important;
  gap:6px !important;
  width:auto !important;
  max-width:none !important;
  min-width:0 !important;
  height:auto !important;
  margin:0 !important;
  padding:0 !important;
  list-style:none !important;
  background:transparent !important;
}
.home-desktop-header .navbar .navbar-nav > li,
.home-desktop-header .navbar .navbar-nav.navbar-center > li{
  float:none !important;
  display:inline-flex !important;
  align-items:center !important;
  width:auto !important;
  min-width:auto !important;
  max-width:none !important;
  margin:0 !important;
  padding:0 !important;
}
.home-desktop-header .navbar .navbar-nav > li > a,
.home-desktop-header .navbar .navbar-nav.navbar-center > li > a,
.home-desktop-header .navbar .dropdown > a,
.home-desktop-header .navbar .navbar-nav > li > a span,
.home-desktop-header .navbar .navbar-nav > li > a strong,
.home-desktop-header .navbar .navbar-nav > li > a small{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:auto !important;
  min-height:44px !important;
  padding:10px 15px !important;
  margin:0 !important;
  color:var(--home-header-menu,#4b5563) !important;
  font-size:15px !important;
  font-weight:700 !important;
  text-decoration:none !important;
  white-space:nowrap !important;
  opacity:1 !important;
  writing-mode:horizontal-tb !important;
}
.home-desktop-header .navbar .navbar-nav > li > a:hover,
.home-desktop-header .navbar .navbar-nav > li.active > a,
.home-desktop-header .navbar .navbar-nav > li > a.active{
  color:var(--home-header-menu,#374151) !important;
  background:var(--home-header-hover,#eef3ef) !important;
}
.home-desktop-header .attr-right{
  flex:0 0 auto !important;
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
}
.home-desktop-header .apoena-ext-btns{
  display:flex !important;
  flex-wrap:nowrap !important;
  align-items:center !important;
  justify-content:flex-end !important;
  gap:10px !important;
}
.home-desktop-header .apoena-ext-btns a{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height:42px !important;
  padding:10px 16px !important;
  border-radius:999px !important;
}
.home-desktop-header .apoena-ext-btns a svg,
.home-desktop-header .apoena-mobile-actions a svg{
  stroke:currentColor !important;
  fill:none !important;
  stroke-width:2.15 !important;
}
@media (max-width: 1180px){
  .home-desktop-header .navbar .container-full{gap:18px !important;padding:14px 18px !important;}
  .home-desktop-header .navbar .navbar-nav > li > a{padding:10px 12px !important;font-size:14px !important;}
  .home-desktop-header .apoena-ext-btns a{padding:10px 13px !important;}
}


/* ===== Apoena home header premium desktop fix ===== */
@media (min-width: 981px){
  .home-apoena .home-desktop-header{position:absolute;left:0;right:0;top:0;z-index:100;display:block;}
  .home-apoena .home-desktop-header nav.navbar{background:var(--home-header-bg) !important;border:none !important;box-shadow:0 14px 34px rgba(15,23,42,.08) !important;}
  .home-apoena .home-desktop-header .container-full{display:grid !important;grid-template-columns:minmax(180px,240px) minmax(420px,1fr) auto !important;align-items:center !important;gap:28px !important;padding:18px 32px !important;max-width:100% !important;}
  .home-apoena .home-desktop-header .navbar-header{display:flex !important;align-items:center !important;justify-content:flex-start !important;min-width:0;}
  .home-apoena .home-desktop-header .navbar-brand{display:inline-flex !important;align-items:center !important;justify-content:flex-start !important;padding:0 !important;margin:0 !important;background:transparent !important;box-shadow:none !important;border:none !important;max-width:none !important;}
  .home-apoena .home-desktop-header .navbar-brand::before,
  .home-apoena .home-desktop-header .navbar-brand::after{display:none !important;content:none !important;}
  .home-apoena .home-desktop-header .navbar-brand .logo{display:block !important;height:54px !important;width:auto !important;max-width:220px !important;object-fit:contain !important;background:transparent !important;filter:none !important;box-shadow:none !important;border:none !important;padding:0 !important;}
  .home-apoena .home-desktop-header .navbar-brand .logo.logo-mobile{display:none !important;}

  .home-apoena .home-desktop-header .navbar-collapse{display:flex !important;position:static !important;left:auto !important;right:auto !important;top:auto !important;overflow:visible !important;background:transparent !important;border:none !important;border-radius:0 !important;box-shadow:none !important;padding:0 !important;backdrop-filter:none !important;justify-content:center !important;}
  .home-apoena .home-desktop-header #navbar-menu{background:transparent !important;}
  .home-apoena .home-desktop-header #navbar-menu > ul.navbar-nav,
  .home-apoena .home-desktop-header #navbar-menu > ul.nav,
  .home-apoena .home-desktop-header ul.navbar-center{display:flex !important;flex-direction:row !important;align-items:center !important;justify-content:center !important;gap:8px !important;float:none !important;width:100% !important;margin:0 !important;padding:0 !important;list-style:none !important;background:transparent !important;border:none !important;box-shadow:none !important;}
  .home-apoena .home-desktop-header #navbar-menu > ul > li{display:flex !important;align-items:center !important;float:none !important;position:relative !important;margin:0 !important;padding:0 !important;}
  .home-apoena .home-desktop-header #navbar-menu > ul > li > a{display:inline-flex !important;align-items:center !important;justify-content:center !important;height:46px !important;padding:0 18px !important;border-radius:999px !important;background:transparent !important;color:var(--home-header-menu) !important;font-size:15px !important;font-weight:700 !important;letter-spacing:.01em !important;text-decoration:none !important;text-shadow:none !important;box-shadow:none !important;border:none !important;white-space:nowrap !important;opacity:1 !important;visibility:visible !important;}
  .home-apoena .home-desktop-header #navbar-menu > ul > li > a:hover,
  .home-apoena .home-desktop-header #navbar-menu > ul > li.active > a,
  .home-apoena .home-desktop-header #navbar-menu > ul > li.current-menu-item > a{background:var(--home-header-hover) !important;color:var(--home-header-menu) !important;box-shadow:none !important;}
  .home-apoena .home-desktop-header #navbar-menu > ul > li.dropdown > a::after{content:'▾';font-size:11px;margin-left:8px;line-height:1;opacity:.65;}
  .home-apoena .home-desktop-header #navbar-menu .dropdown-menu{min-width:220px !important;border:none !important;border-radius:18px !important;padding:10px !important;margin-top:10px !important;background:#fff !important;box-shadow:0 22px 48px rgba(15,23,42,.14) !important;}
  .home-apoena .home-desktop-header #navbar-menu .dropdown-menu li{display:block !important;}
  .home-apoena .home-desktop-header #navbar-menu .dropdown-menu li a{display:block !important;padding:10px 14px !important;color:#374151 !important;border-radius:12px !important;font-weight:600 !important;background:transparent !important;}
  .home-apoena .home-desktop-header #navbar-menu .dropdown-menu li a:hover{background:#f4f7f5 !important;color:#111827 !important;}

  .home-apoena .home-desktop-header .attr-right{display:flex !important;align-items:center !important;justify-content:flex-end !important;gap:12px !important;}
  .home-apoena .home-desktop-header .apoena-ext-btns{display:flex !important;align-items:center !important;justify-content:flex-end !important;gap:10px !important;flex-wrap:nowrap !important;}
  .home-apoena .home-desktop-header .apoena-ext-btns a{min-height:44px !important;padding:0 16px !important;border-radius:999px !important;box-shadow:0 10px 24px rgba(15,23,42,.08) !important;line-height:1 !important;transition:transform .2s ease, box-shadow .2s ease, filter .2s ease !important;}
  .home-apoena .home-desktop-header .apoena-ext-btns a:hover{transform:translateY(-1px) !important;box-shadow:0 16px 30px rgba(15,23,42,.12) !important;filter:saturate(1.04);}
  .home-apoena .home-desktop-header .apoena-ext-btns a svg{width:16px !important;height:16px !important;stroke:currentColor !important;fill:none !important;opacity:.98;}
  .home-apoena .home-desktop-header .apoena-ext-btns .lbl{font-size:15px !important;font-weight:800 !important;}
  .home-apoena .home-desktop-header .apoena-ext-btns .admin-link{background:#fff !important;color:#374151 !important;border:1px solid rgba(15,23,42,.10) !important;box-shadow:none !important;}
}


/* Header home premium refinements */
.home-apoena .home-desktop-header nav.navbar{
  border-bottom:1px solid rgba(15,23,42,.06) !important;
}
.home-apoena .home-desktop-header .container-full{
  min-height:96px !important;
}
.home-apoena .home-desktop-header .navbar-header{
  min-height:64px !important;
}
.home-apoena .home-desktop-header .navbar-brand{
  min-height:64px !important;
  align-items:center !important;
}
.home-apoena .home-desktop-header .navbar-brand .logo,
.home-apoena .home-desktop-header .navbar-brand .logo.logo-desktop{
  height:58px !important;
  max-height:58px !important;
  vertical-align:middle !important;
}
.home-apoena .home-desktop-header #navbar-menu > ul.navbar-nav,
.home-apoena .home-desktop-header #navbar-menu > ul.nav,
.home-apoena .home-desktop-header ul.navbar-center{
  background:transparent !important;
  box-shadow:none !important;
}
.home-apoena .home-desktop-header #navbar-menu > ul > li > a{
  background:transparent !important;
  box-shadow:none !important;
  color:var(--home-header-menu,#374151) !important;
}
.home-apoena .home-desktop-header #navbar-menu > ul > li > a:hover,
.home-apoena .home-desktop-header #navbar-menu > ul > li.active > a,
.home-apoena .home-desktop-header #navbar-menu > ul > li.current-menu-item > a{
  background:rgba(67,160,71,.10) !important;
  color:#1f2937 !important;
}
.home-apoena .home-desktop-header .apoena-ext-btns a{
  position:relative !important;
  overflow:hidden !important;
}
.home-apoena .home-desktop-header .apoena-ext-btns .biotech-btn,
.home-apoena .home-desktop-header .apoena-ext-btns .agro-btn,
.home-apoena .home-desktop-header .apoena-ext-btns .biocare-btn,
.home-apoena .home-desktop-header .apoena-mobile-actions .biotech-btn,
.home-apoena .home-desktop-header .apoena-mobile-actions .agro-btn,
.home-apoena .home-desktop-header .apoena-mobile-actions .biocare-btn{
  color:#fff !important;
  border:1px solid rgba(255,255,255,.16) !important;
}
.home-apoena .home-desktop-header .apoena-ext-btns .biotech-btn:hover,
.home-apoena .home-desktop-header .apoena-mobile-actions .biotech-btn:hover{
  background:linear-gradient(135deg,#59d80d,#36b30d) !important;
  color:#fff !important;
  filter:none !important;
}
.home-apoena .home-desktop-header .apoena-ext-btns .agro-btn:hover,
.home-apoena .home-desktop-header .apoena-mobile-actions .agro-btn:hover{
  background:linear-gradient(135deg,#f07b1a,#d95f07) !important;
  color:#fff !important;
  filter:none !important;
}
.home-apoena .home-desktop-header .apoena-ext-btns .biocare-btn:hover,
.home-apoena .home-desktop-header .apoena-mobile-actions .biocare-btn:hover{
  background:linear-gradient(135deg,#c428c1,#a51fb0) !important;
  color:#fff !important;
  filter:none !important;
}
.home-apoena .home-desktop-header .apoena-ext-btns .biotech-btn:hover .lbl,
.home-apoena .home-desktop-header .apoena-ext-btns .agro-btn:hover .lbl,
.home-apoena .home-desktop-header .apoena-ext-btns .biocare-btn:hover .lbl,
.home-apoena .home-desktop-header .apoena-ext-btns .biotech-btn:hover svg,
.home-apoena .home-desktop-header .apoena-ext-btns .agro-btn:hover svg,
.home-apoena .home-desktop-header .apoena-ext-btns .biocare-btn:hover svg{
  color:#fff !important;
  stroke:currentColor !important;
}
.home-apoena .home-desktop-header .apoena-ext-btns .admin-link:hover{
  background:#f3f4f6 !important;
  color:#111827 !important;
  border-color:rgba(15,23,42,.16) !important;
  filter:none !important;
}


/* Final home header/mobile fixes */
.home-mobile-header{display:none !important;}
.home-apoena .home-desktop-header .navbar-brand{
  min-height:58px !important;
}
.home-apoena .home-desktop-header .navbar-brand .logo,
.home-apoena .home-desktop-header .navbar-brand .logo.logo-desktop{
  height:50px !important;
  max-height:50px !important;
  max-width:250px !important;
}
.home-apoena .banner-style-one .button,
.home-apoena .banner-style-one .button a{
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
}
.home-apoena .banner-style-one .button .animated-btn{
  min-width:176px !important;
  min-height:56px !important;
  padding:0 28px !important;
  justify-content:center !important;
  text-align:center !important;
}
.home-apoena .banner-style-one .button .animated-btn .btn-ic{
  display:none !important;
}

@media (max-width: 820px){
  .home-mobile-header{display:none !important;}
  .home-desktop-header{display:block !important;position:absolute !important;left:0;right:0;top:0;z-index:10050 !important;}
  .home-apoena .home-desktop-header nav.navbar{
    background:var(--home-header-bg,#fff) !important;
    box-shadow:0 12px 28px rgba(15,23,42,.10) !important;
  }
  .home-apoena .home-desktop-header .container-full{
    display:grid !important;
    grid-template-columns:minmax(0,1fr) auto !important;
    align-items:center !important;
    gap:12px !important;
    padding:14px 16px !important;
    min-height:84px !important;
    position:relative !important;
  }
  .home-apoena .home-desktop-header .navbar-header{
    min-height:56px !important;
    width:100% !important;
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:12px !important;
  }
  .home-apoena .home-desktop-header .navbar-brand{
    display:inline-flex !important;
    align-items:center !important;
    min-height:56px !important;
    max-width:calc(100vw - 108px) !important;
    overflow:visible !important;
  }
  .home-apoena .home-desktop-header .navbar-brand .logo.logo-desktop{display:none !important;}
  .home-apoena .home-desktop-header .navbar-brand .logo.logo-mobile,
  .home-apoena .home-desktop-header .navbar-brand .logo{
    display:block !important;
    height:40px !important;
    max-height:40px !important;
    width:auto !important;
    max-width:190px !important;
    object-fit:contain !important;
  }
  .home-apoena .home-desktop-header .navbar-brand .logo.logo-mobile{display:block !important;}
  .home-apoena .home-desktop-header .navbar-toggle{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    width:46px !important;
    height:46px !important;
    margin:0 !important;
    padding:0 !important;
    border:1px solid rgba(15,23,42,.12) !important;
    border-radius:14px !important;
    background:#ffffff !important;
    color:var(--home-header-menu,#374151) !important;
    box-shadow:none !important;
    flex:0 0 46px !important;
  }
  .home-apoena .home-desktop-header .navbar-toggle svg,
  .home-apoena .home-desktop-header .navbar-toggle path{
    stroke:currentColor !important;
    color:currentColor !important;
  }
  .home-apoena .home-desktop-header .attr-right{
    display:none !important;
  }
  .home-apoena .home-desktop-header .navbar-collapse,
  .home-apoena .home-desktop-header .navbar .navbar-collapse.collapse{
    display:none !important;
    position:absolute !important;
    left:16px !important;
    right:16px !important;
    top:calc(100% + 10px) !important;
    width:auto !important;
    background:#ffffff !important;
    border:1px solid rgba(15,23,42,.08) !important;
    border-radius:20px !important;
    box-shadow:0 22px 48px rgba(15,23,42,.16) !important;
    padding:14px !important;
    z-index:10060 !important;
  }
  .home-apoena .home-desktop-header .navbar-collapse.open,
  .home-apoena .home-desktop-header .navbar .navbar-collapse.collapse.open{
    display:block !important;
  }
  .home-apoena .home-desktop-header .apoena-mobile-actions{
    display:flex !important;
    flex-wrap:wrap !important;
    gap:10px !important;
    margin:2px 0 14px !important;
  }
  .home-apoena .home-desktop-header .apoena-mobile-actions a{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    min-height:42px !important;
    padding:0 14px !important;
    border-radius:999px !important;
  }
  .home-apoena .home-desktop-header #navbar-menu > ul.navbar-nav,
  .home-apoena .home-desktop-header #navbar-menu > ul.nav,
  .home-apoena .home-desktop-header ul.navbar-center{
    display:flex !important;
    flex-direction:column !important;
    align-items:stretch !important;
    justify-content:flex-start !important;
    width:100% !important;
    gap:6px !important;
  }
  .home-apoena .home-desktop-header #navbar-menu > ul > li,
  .home-apoena .home-desktop-header #navbar-menu > ul > li > a{
    width:100% !important;
  }
  .home-apoena .home-desktop-header #navbar-menu > ul > li > a{
    justify-content:flex-start !important;
    height:auto !important;
    min-height:46px !important;
    padding:12px 14px !important;
    font-size:15px !important;
  }
  .home-apoena .home-desktop-header #navbar-menu > ul > li.dropdown > a::after{
    margin-left:auto !important;
  }
  .home-apoena .home-desktop-header #navbar-menu .dropdown-menu{
    position:static !important;
    float:none !important;
    margin:6px 0 0 !important;
    width:100% !important;
    box-shadow:none !important;
    border:1px solid rgba(15,23,42,.06) !important;
    background:#f8fafc !important;
  }
}


/* Final header polish v8 */
.home-apoena .home-desktop-header .navbar-brand{
  min-height:64px !important;
  padding:0 !important;
}
.home-apoena .home-desktop-header .navbar-brand .logo,
.home-apoena .home-desktop-header .navbar-brand .logo.logo-desktop{
  height:46px !important;
  max-height:46px !important;
  max-width:250px !important;
  width:auto !important;
  object-fit:contain !important;
}
@media (max-width: 820px){
  .home-apoena .home-desktop-header nav.navbar{overflow:visible !important;}
  .home-apoena .home-desktop-header .container-full{min-height:78px !important;padding:12px 16px !important;}
  .home-apoena .home-desktop-header .navbar-header,
  .home-apoena .home-desktop-header .navbar-brand,
  .home-apoena .home-desktop-header .navbar-toggle{position:relative !important;z-index:10080 !important;}
  .home-apoena .home-desktop-header .navbar-brand .logo.logo-mobile,
  .home-apoena .home-desktop-header .navbar-brand .logo{
    height:34px !important;
    max-height:34px !important;
    max-width:180px !important;
  }
  .home-apoena .home-desktop-header .navbar-collapse,
  .home-apoena .home-desktop-header .navbar .navbar-collapse.collapse{
    z-index:10090 !important;
    pointer-events:none !important;
  }
  .home-apoena .home-desktop-header .navbar-collapse.open,
  .home-apoena .home-desktop-header .navbar .navbar-collapse.collapse.open{
    pointer-events:auto !important;
  }
  .home-apoena .home-desktop-header #navbar-menu,
  .home-apoena .home-desktop-header #navbar-menu *{
    pointer-events:auto !important;
  }
  .home-apoena .home-desktop-header #navbar-menu > ul > li > a,
  .home-apoena .home-desktop-header #navbar-menu .dropdown-menu li a{
    position:relative !important;
    z-index:10091 !important;
    cursor:pointer !important;
    color:#374151 !important;
    background:transparent !important;
    border-radius:14px !important;
    transition:background .18s ease, color .18s ease, transform .18s ease !important;
    -webkit-tap-highlight-color: rgba(67,160,71,.16) !important;
  }
  .home-apoena .home-desktop-header #navbar-menu > ul > li > a:hover,
  .home-apoena .home-desktop-header #navbar-menu > ul > li > a:focus,
  .home-apoena .home-desktop-header #navbar-menu > ul > li > a:active,
  .home-apoena .home-desktop-header #navbar-menu > ul > li.menu-open > a,
  .home-apoena .home-desktop-header #navbar-menu .dropdown-menu li a:hover,
  .home-apoena .home-desktop-header #navbar-menu .dropdown-menu li a:focus,
  .home-apoena .home-desktop-header #navbar-menu .dropdown-menu li a:active{
    background:rgba(67,160,71,.10) !important;
    color:#1f2937 !important;
    transform:none !important;
  }
  .home-apoena .home-desktop-header #navbar-menu .dropdown-menu{
    display:none !important;
  }
  .home-apoena .home-desktop-header #navbar-menu > ul > li.menu-open > .dropdown-menu{
    display:block !important;
  }
  .home-apoena .overlay-screen{z-index:10040 !important;}
}



/* ===== Final definitive home header cleanup ===== */
.home-apoena .home-desktop-header,
.home-apoena .home-desktop-header *{box-sizing:border-box;}
.home-apoena .home-desktop-header nav.navbar{
  background:var(--home-header-bg,#fff) !important;
  box-shadow:0 14px 34px rgba(15,23,42,.08) !important;
  border-bottom:1px solid rgba(15,23,42,.06) !important;
}
.home-apoena .home-desktop-header .container-full{
  min-height:92px !important;
  padding:14px 28px !important;
  align-items:center !important;
}
.home-apoena .home-desktop-header .navbar-header{
  min-height:64px !important;
  display:flex !important;
  align-items:center !important;
}
.home-apoena .home-desktop-header .navbar-brand{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  min-height:64px !important;
  margin:0 !important;
  padding:0 !important;
  line-height:0 !important;
}
.home-apoena .home-desktop-header .navbar-brand img,
.home-apoena .home-desktop-header .navbar-brand .logo,
.home-apoena .home-desktop-header .navbar-brand .logo.logo-desktop{
  display:block !important;
  width:auto !important;
  height:52px !important;
  max-height:52px !important;
  max-width:260px !important;
  object-fit:contain !important;
  object-position:left center !important;
  vertical-align:middle !important;
  margin:0 !important;
}
.home-apoena .home-desktop-header .navbar-collapse,
.home-apoena .home-desktop-header #navbar-menu,
.home-apoena .home-desktop-header #navbar-menu > ul{
  background:transparent !important;
  box-shadow:none !important;
}
.home-apoena .home-desktop-header #navbar-menu > ul > li > a{
  color:var(--home-header-menu,#374151) !important;
  background:transparent !important;
  box-shadow:none !important;
}
.home-apoena .home-desktop-header #navbar-menu > ul > li > a:hover,
.home-apoena .home-desktop-header #navbar-menu > ul > li.active > a,
.home-apoena .home-desktop-header #navbar-menu > ul > li.current-menu-item > a{
  background:rgba(67,160,71,.10) !important;
  color:#1f2937 !important;
}
.home-apoena .banner-style-two .button,
.home-apoena .banner-style-two .button a,
.home-apoena .banner-style-two .button .animated-btn{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
}
.home-apoena .banner-style-two .button .animated-btn{
  min-width:176px !important;
  min-height:56px !important;
  padding:0 28px !important;
  gap:0 !important;
}
.home-apoena .banner-style-two .button .animated-btn .btn-ic{display:none !important;}

@media (max-width: 820px){
  .home-apoena .home-desktop-header .container-full{
    min-height:84px !important;
    padding:12px 16px !important;
    grid-template-columns:minmax(0,1fr) auto !important;
  }
  .home-apoena .home-desktop-header .navbar-header{
    min-height:56px !important;
    width:100% !important;
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:12px !important;
  }
  .home-apoena .home-desktop-header .navbar-brand{
    min-height:56px !important;
    max-width:calc(100vw - 104px) !important;
    flex:1 1 auto !important;
  }
  .home-apoena .home-desktop-header .navbar-brand .logo.logo-desktop{display:none !important;}
  .home-apoena .home-desktop-header .navbar-brand .logo.logo-mobile,
  .home-apoena .home-desktop-header .navbar-brand img.logo-mobile{
    display:block !important;
    width:auto !important;
    height:36px !important;
    max-height:36px !important;
    max-width:176px !important;
    object-fit:contain !important;
    object-position:left center !important;
    margin:0 !important;
  }
  .home-apoena .home-desktop-header .navbar-toggle{
    position:relative !important;
    z-index:10071 !important;
    flex:0 0 46px !important;
  }
  .home-apoena .home-desktop-header .navbar-collapse,
  .home-apoena .home-desktop-header .navbar .navbar-collapse.collapse{
    z-index:10070 !important;
    pointer-events:auto !important;
  }
  .home-apoena .home-desktop-header #navbar-menu > ul > li,
  .home-apoena .home-desktop-header #navbar-menu .dropdown-menu li,
  .home-apoena .home-desktop-header #navbar-menu a{
    pointer-events:auto !important;
  }
  .home-apoena .home-desktop-header #navbar-menu > ul > li > a,
  .home-apoena .home-desktop-header #navbar-menu .dropdown-menu li a{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
    min-height:46px !important;
    padding:12px 14px !important;
    border-radius:14px !important;
    background:transparent !important;
    color:#374151 !important;
    font-weight:700 !important;
    text-decoration:none !important;
    box-shadow:none !important;
    -webkit-tap-highlight-color:rgba(67,160,71,.12) !important;
  }
  .home-apoena .home-desktop-header #navbar-menu > ul > li > a:hover,
  .home-apoena .home-desktop-header #navbar-menu > ul > li > a:focus,
  .home-apoena .home-desktop-header #navbar-menu > ul > li > a:active,
  .home-apoena .home-desktop-header #navbar-menu .dropdown-menu li a:hover,
  .home-apoena .home-desktop-header #navbar-menu .dropdown-menu li a:focus,
  .home-apoena .home-desktop-header #navbar-menu .dropdown-menu li a:active{
    background:#f1f5f2 !important;
    color:#1f2937 !important;
  }
  .home-apoena .home-desktop-header #navbar-menu .dropdown-menu{
    position:static !important;
    display:none !important;
    margin:6px 0 0 !important;
    padding:6px !important;
    border:none !important;
    border-radius:14px !important;
    background:#f8faf8 !important;
    box-shadow:none !important;
  }
  .home-apoena .home-desktop-header #navbar-menu .dropdown.menu-open > .dropdown-menu{display:block !important;}
  .home-apoena .home-desktop-header .apoena-mobile-actions a{
    transition:background-color .18s ease,color .18s ease,transform .18s ease !important;
  }
  .home-apoena .home-desktop-header .apoena-mobile-actions a:hover,
  .home-apoena .home-desktop-header .apoena-mobile-actions a:focus,
  .home-apoena .home-desktop-header .apoena-mobile-actions a:active{transform:translateY(-1px) !important;}
}



/* Final header alignment fix: prevent logo brand from being offset downward */
.home-apoena .home-desktop-header nav.navbar .navbar-brand,
.home-apoena .home-desktop-header nav.navbar.navbar-style-one .navbar-brand,
.home-apoena .home-desktop-header nav.navbar .navbar-header .navbar-brand{
  position: static !important;
  top: auto !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
}

/* Final mobile overlay removal + interaction fix */
@media (max-width: 820px){
  .home-apoena .overlay-screen,
  .home-apoena .overlay-screen.open{
    display:none !important;
    opacity:0 !important;
    visibility:hidden !important;
    pointer-events:none !important;
  }
  .home-apoena .home-desktop-header .navbar-collapse,
  .home-apoena .home-desktop-header .navbar .navbar-collapse.collapse,
  .home-apoena .home-desktop-header #navbar-menu{
    pointer-events:none !important;
  }
  .home-apoena .home-desktop-header .navbar-collapse.open,
  .home-apoena .home-desktop-header .navbar .navbar-collapse.collapse.open,
  .home-apoena .home-desktop-header #navbar-menu.open{
    pointer-events:auto !important;
  }
  .home-apoena .home-desktop-header .navbar-collapse:not(.open),
  .home-apoena .home-desktop-header .navbar .navbar-collapse.collapse:not(.open){
    display:none !important;
  }
  .home-apoena .home-desktop-header .navbar-collapse.open,
  .home-apoena .home-desktop-header .navbar .navbar-collapse.collapse.open{
    display:block !important;
  }
}


/* ===== Logo size controls from admin ===== */
:root{
  --logo-home-desktop-width:220px;
  --logo-home-mobile-width:140px;
  --logo-inner-desktop-width:220px;
  --logo-inner-mobile-width:140px;
}

.home-apoena .home-desktop-header .navbar-brand .logo,
.home-apoena .home-desktop-header .navbar-brand .logo.logo-desktop{
  width:var(--logo-home-desktop-width) !important;
  max-width:var(--logo-home-desktop-width) !important;
  height:auto !important;
  max-height:none !important;
  object-fit:contain !important;
}

.layout-builder-nav:not(.layout-builder-nav--home) .brand__picture--inner{
  min-width:0 !important;
  width:auto !important;
}

.layout-builder-nav:not(.layout-builder-nav--home) .brand__logo--inner{
  width:var(--logo-inner-desktop-width) !important;
  max-width:var(--logo-inner-desktop-width) !important;
  min-width:0 !important;
  height:auto !important;
  max-height:72px !important;
  object-fit:contain !important;
}

@media (max-width: 980px){
  .home-apoena .home-desktop-header .navbar-brand .logo.logo-desktop{display:none !important;}
  .home-apoena .home-desktop-header .navbar-brand .logo.logo-mobile,
  .home-apoena .home-desktop-header .navbar-brand .logo{
    width:var(--logo-home-mobile-width) !important;
    max-width:var(--logo-home-mobile-width) !important;
    height:auto !important;
    max-height:none !important;
  }

  .layout-builder-nav:not(.layout-builder-nav--home) .brand__logo--inner{
    width:var(--logo-inner-mobile-width) !important;
    max-width:var(--logo-inner-mobile-width) !important;
    height:auto !important;
    max-height:56px !important;
  }
}


/* 2026-03-20 — Ajustes institucionais Apoena */
.home-desktop-header .apoena-ext-btns .admin-link,
.home-desktop-header .apoena-mobile-actions .admin-link,
.nav__icons .iconbtn[href="/admin"],
.nav__icons--mobile .iconbtn[href="/admin"]{display:none !important;}

.choose-premium-area--dashboard .choose-us-style-one-info .title{max-width:14ch;}
.choose-us-style-one-thumb--dashboard img{border-radius:28px;box-shadow:0 24px 54px rgba(15,23,42,.10);}
.impact-copy-grid,
.impact-stats-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;}
.impact-copy-card,
.impact-stat-card,
.institutional-summary-card{background:rgba(255,255,255,.96);border:1px solid rgba(15,23,42,.06);border-radius:24px;box-shadow:0 18px 42px rgba(15,23,42,.08);padding:22px;}
.impact-copy-card h4,
.institutional-summary-card h3{margin:0 0 8px;font-size:1.1rem;color:#113a2b;}
.impact-copy-card p,
.institutional-summary-card p{margin:0;color:#4b5563;line-height:1.7;}
.impact-stat-card{display:flex;flex-direction:column;justify-content:center;min-height:150px;background:linear-gradient(180deg,#ffffff 0%,#f4faf6 100%);}
.impact-stat-value-wrap{display:flex;align-items:flex-start;gap:4px;line-height:1;}
.impact-stat-value{font-size:3rem;font-weight:800;letter-spacing:-.04em;color:#0b5f45;}
.impact-stat-suffix{font-size:1.15rem;font-weight:800;color:#236b4b;margin-top:6px;}
.impact-stat-label{display:block;margin-top:10px;color:#374151;font-weight:600;line-height:1.5;}

.brand-style-one-items--summary{display:block;}
.institutional-summary-card{min-height:100%;display:flex;flex-direction:column;justify-content:center;background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.18);color:#fff;}
.institutional-summary-card h3,.institutional-summary-card p{color:#fff;}

.floating-whatsapp{position:fixed;right:22px;bottom:22px;z-index:10050;display:inline-flex;align-items:center;gap:10px;padding:14px 16px;border-radius:999px;background:#25d366;color:#fff;text-decoration:none;font-weight:800;box-shadow:0 18px 42px rgba(0,0,0,.18);}
.floating-whatsapp svg{width:20px;height:20px;display:block;fill:currentColor;}
.floating-whatsapp:hover{color:#fff;transform:translateY(-1px);}

@media (max-width: 991px){
  .impact-copy-grid,
  .impact-stats-grid{grid-template-columns:1fr;}
}

@media (max-width: 767px){
  .floating-whatsapp{right:14px;bottom:14px;padding:12px 14px;}
  .floating-whatsapp span{display:none;}
  .impact-stat-value{font-size:2.4rem;}
}

/* 2026-03-20 — Ajustes finos home Apoena */
.home-apoena-body .feature-style-one-area--apoena .feature-style-one-copy .title{
  font-size:clamp(44px,5vw,58px) !important;
  line-height:1.05 !important;
  letter-spacing:-.02em !important;
  font-family:'Montserrat',sans-serif !important;
  font-weight:800 !important;
}
.home-apoena-body .feature-style-one-card{
  background:linear-gradient(180deg,#ffffff 0%,#fbfcfa 100%) !important;
  border:1px solid rgba(15,23,42,.08) !important;
  box-shadow:0 24px 58px rgba(15,23,42,.10) !important;
}
.home-apoena-body .feature-style-one-card__item{
  gap:16px !important;
}
.home-apoena-body .feature-style-one-card__icon{
  width:64px !important;
  height:64px !important;
  flex:0 0 64px !important;
  border-radius:18px !important;
  background:linear-gradient(180deg,#2d7a57 0%,#1f5f43 100%) !important;
  box-shadow:0 12px 24px rgba(31,95,67,.22) !important;
  border:1px solid rgba(255,255,255,.28) !important;
}
.home-apoena-body .feature-style-one-card__icon img{
  max-width:34px !important;
  max-height:34px !important;
  filter:brightness(0) invert(1) contrast(1.15) !important;
  opacity:1 !important;
}
.home-apoena-body .feature-style-one-card__title{
  font-size:22px !important;
  font-family:'Montserrat',sans-serif !important;
  font-weight:700 !important;
}

.home-apoena-body .gallery-premium-area .site-heading{
  margin-bottom:42px !important;
}
.home-apoena-body .gallery-premium-area .gallery-items{
  gap:28px !important;
}
.home-apoena-body .gallery-premium-area .gallery-item-premium-wrap{
  height:100%;
}
.home-apoena-body .gallery-premium-area .gallery-card-premium{
  display:flex !important;
  flex-direction:column !important;
  border-radius:28px !important;
  overflow:hidden !important;
  background:#ffffff !important;
  border:1px solid rgba(15,23,42,.08) !important;
  box-shadow:0 24px 60px rgba(15,23,42,.10) !important;
  transform:translateY(0);
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.home-apoena-body .gallery-premium-area .gallery-card-premium:hover{
  transform:translateY(-6px);
  box-shadow:0 30px 70px rgba(15,23,42,.14) !important;
  border-color:rgba(35,107,75,.18) !important;
}
.home-apoena-body .gallery-premium-area .gallery-card-premium img{
  aspect-ratio:4 / 3 !important;
  min-height:280px;
}
.home-apoena-body .gallery-premium-area .gallery-card-premium .overlay{
  position:relative !important;
  padding:22px 24px 26px !important;
  background:linear-gradient(180deg,#ffffff 0%,#f7faf8 100%) !important;
  border-top:1px solid rgba(15,23,42,.06) !important;
  min-height:118px;
}
.home-apoena-body .gallery-premium-area .gallery-card-premium .overlay::before{
  content:'';
  position:absolute;
  left:24px;
  right:24px;
  top:0;
  height:1px;
  background:linear-gradient(90deg,rgba(35,107,75,0),rgba(35,107,75,.18),rgba(35,107,75,0));
}
.home-apoena-body .gallery-premium-area .gallery-card-premium .vt-f-title{
  color:#2d7a57 !important;
  font-size:12px !important;
  letter-spacing:.12em !important;
  margin-bottom:10px !important;
}
.home-apoena-body .gallery-premium-area .gallery-card-premium .vt-f-text,
.home-apoena-body .gallery-premium-area .gallery-card-premium .vt-f-text a{
  display:block;
  color:#0f1720 !important;
  font-size:20px !important;
  line-height:1.28 !important;
  font-weight:700 !important;
}
@media (max-width: 991px){
  .home-apoena-body .feature-style-one-area--apoena .feature-style-one-copy .title{
    font-size:clamp(38px,6vw,48px) !important;
  }
  .home-apoena-body .gallery-premium-area .gallery-card-premium img{
    min-height:240px;
  }
}
@media (max-width: 767px){
  .home-apoena-body .feature-style-one-card__icon{
    width:56px !important;
    height:56px !important;
    flex-basis:56px !important;
  }
  .home-apoena-body .feature-style-one-card__icon img{
    max-width:28px !important;
    max-height:28px !important;
  }
  .home-apoena-body .gallery-premium-area .gallery-items{
    gap:20px !important;
  }
  .home-apoena-body .gallery-premium-area .gallery-card-premium img{
    min-height:220px;
  }
  .home-apoena-body .gallery-premium-area .gallery-card-premium .overlay{
    padding:18px 20px 22px !important;
    min-height:auto;
  }
}


/* 2026-03-20 — Ajuste premium final: Áreas de atuação + Galeria */
.home-apoena-body .services-premium-area .mask-text.large{
  font-size: clamp(56px, 7vw, 102px) !important;
  line-height: 1.12 !important;
  letter-spacing: -.03em !important;
  margin: 0 auto 14px !important;
  padding: .08em 0 .16em !important;
  max-width: 980px !important;
  overflow: visible !important;
  background-size: cover !important;
  background-position: center !important;
}
.home-apoena-body .services-premium-area .service-card-premium{
  border-radius: 30px !important;
  border: 1px solid rgba(22, 45, 33, .08) !important;
  box-shadow: 0 26px 65px rgba(15,23,42,.10) !important;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease !important;
}
.home-apoena-body .services-premium-area .service-card-premium:hover{
  transform: translateY(-8px) !important;
  box-shadow: 0 34px 80px rgba(15,23,42,.16) !important;
  border-color: rgba(35,107,75,.22) !important;
}
.home-apoena-body .services-premium-area .service-card-premium .thumb{
  position: relative !important;
}
.home-apoena-body .services-premium-area .service-card-premium .thumb::after{
  content:'';
  position:absolute;
  inset:auto 0 0 0;
  height: 32%;
  background: linear-gradient(180deg, rgba(9,18,14,0) 0%, rgba(9,18,14,.22) 100%);
  pointer-events:none;
}
.home-apoena-body .services-premium-area .service-card-premium .overlay{
  grid-template-columns: 70px minmax(0,1fr) !important;
  gap: 18px !important;
  padding: 24px !important;
  background: linear-gradient(180deg,#ffffff 0%, #f7faf8 100%) !important;
}
.home-apoena-body .services-premium-area .service-card-premium .icon{
  width: 70px !important;
  height: 70px !important;
  min-width: 70px !important;
  border-radius: 22px !important;
  background: linear-gradient(180deg,#2f855a 0%, #1f5f43 100%) !important;
  border: 1px solid rgba(255,255,255,.28) !important;
  box-shadow: 0 14px 28px rgba(31,95,67,.24) !important;
}
.home-apoena-body .services-premium-area .service-card-premium .icon img{
  max-width: 34px !important;
  max-height: 34px !important;
  opacity: 1 !important;
  filter: brightness(0) invert(1) contrast(1.18) !important;
}
.home-apoena-body .services-premium-area .service-card-premium__fallback-icon{
  color: #fff !important;
}
.home-apoena-body .services-premium-area .service-card-premium .info h4{
  margin: 2px 0 6px !important;
  font-size: 26px !important;
  line-height: 1.15 !important;
}
.home-apoena-body .services-premium-area .service-card-premium .info span{
  color: #5e6a62 !important;
  font-size: 13px !important;
  letter-spacing: .12em !important;
  font-weight: 700 !important;
}

.home-apoena-body .gallery-premium-area .site-heading .title{
  font-size: clamp(44px, 5vw, 74px) !important;
  line-height: 1.02 !important;
  letter-spacing: -.03em !important;
}
.home-apoena-body .gallery-premium-area .site-heading .sub-title{
  margin-bottom: 10px !important;
  letter-spacing: .06em !important;
}
.home-apoena-body .gallery-premium-area .gallery-items{
  gap: 30px !important;
}
.home-apoena-body .gallery-premium-area .gallery-item-premium-wrap{
  min-height: 0;
}
.home-apoena-body .gallery-premium-area .gallery-card-premium{
  position: relative !important;
  min-height: 460px !important;
  border-radius: 32px !important;
  overflow: hidden !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  background: #102017 !important;
  box-shadow: 0 28px 80px rgba(15,23,42,.16) !important;
  isolation: isolate;
}
.home-apoena-body .gallery-premium-area .gallery-card-premium::before{
  content:'';
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(8,16,12,.02) 0%, rgba(8,16,12,.18) 34%, rgba(8,16,12,.82) 100%);
  z-index:1;
  pointer-events:none;
}
.home-apoena-body .gallery-premium-area .gallery-card-premium:hover{
  transform: translateY(-10px) scale(1.01) !important;
  box-shadow: 0 36px 90px rgba(15,23,42,.22) !important;
}
.home-apoena-body .gallery-premium-area .gallery-card-premium img{
  width:100% !important;
  height:100% !important;
  min-height:460px !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  transform: scale(1.0);
  transition: transform .45s ease !important;
}
.home-apoena-body .gallery-premium-area .gallery-card-premium:hover img{
  transform: scale(1.06);
}
.home-apoena-body .gallery-premium-area .gallery-card-premium .overlay{
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 2 !important;
  padding: 26px 26px 28px !important;
  min-height: 0 !important;
  background: transparent !important;
  border-top: 0 !important;
}
.home-apoena-body .gallery-premium-area .gallery-card-premium .overlay::before{
  display:none !important;
}
.home-apoena-body .gallery-premium-area .gallery-card-premium .vt-f-title{
  color: rgba(212, 246, 220, .92) !important;
  font-size: 12px !important;
  letter-spacing: .16em !important;
  margin: 0 0 12px !important;
}
.home-apoena-body .gallery-premium-area .gallery-card-premium .vt-f-text,
.home-apoena-body .gallery-premium-area .gallery-card-premium .vt-f-text a{
  color: #ffffff !important;
  font-size: 30px !important;
  line-height: 1.06 !important;
  font-weight: 800 !important;
  text-shadow: 0 8px 24px rgba(0,0,0,.28);
}
@media (max-width: 991px){
  .home-apoena-body .services-premium-area .mask-text.large{
    font-size: clamp(44px, 9vw, 76px) !important;
    line-height: 1.1 !important;
    padding-bottom: .14em !important;
  }
  .home-apoena-body .services-premium-area .service-card-premium .overlay{
    grid-template-columns: 60px minmax(0,1fr) !important;
  }
  .home-apoena-body .services-premium-area .service-card-premium .icon{
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
  }
  .home-apoena-body .gallery-premium-area .gallery-card-premium,
  .home-apoena-body .gallery-premium-area .gallery-card-premium img{
    min-height: 400px !important;
  }
  .home-apoena-body .gallery-premium-area .gallery-card-premium .vt-f-text,
  .home-apoena-body .gallery-premium-area .gallery-card-premium .vt-f-text a{
    font-size: 24px !important;
  }
}
@media (max-width: 767px){
  .home-apoena-body .services-premium-area .mask-text.large{
    font-size: clamp(34px, 12vw, 54px) !important;
    line-height: 1.08 !important;
    padding-bottom: .16em !important;
  }
  .home-apoena-body .services-premium-area .service-card-premium .overlay{
    grid-template-columns: 52px minmax(0,1fr) !important;
    padding: 18px !important;
  }
  .home-apoena-body .services-premium-area .service-card-premium .icon{
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    border-radius: 16px !important;
  }
  .home-apoena-body .services-premium-area .service-card-premium .icon img{
    max-width: 26px !important;
    max-height: 26px !important;
  }
  .home-apoena-body .services-premium-area .service-card-premium .info h4{
    font-size: 21px !important;
  }
  .home-apoena-body .gallery-premium-area .gallery-card-premium,
  .home-apoena-body .gallery-premium-area .gallery-card-premium img{
    min-height: 340px !important;
  }
  .home-apoena-body .gallery-premium-area .gallery-card-premium .overlay{
    padding: 20px 20px 22px !important;
  }
  .home-apoena-body .gallery-premium-area .gallery-card-premium .vt-f-text,
  .home-apoena-body .gallery-premium-area .gallery-card-premium .vt-f-text a{
    font-size: 22px !important;
  }
}


/* 2026-03-20 — Fix definitivo: título Áreas de atuação sem corte */
.home-apoena-body .services-premium-area .site-heading{
  overflow: visible !important;
}
.home-apoena-body .services-premium-area .site-heading .mask-text.large{
  display: inline-block !important;
  white-space: normal !important;
  max-width: min(100%, 1080px) !important;
  padding: .14em .16em .24em !important;
  margin-left: auto !important;
  margin-right: auto !important;
  overflow: visible !important;
  text-rendering: geometricPrecision;
}
@media (max-width: 991px){
  .home-apoena-body .services-premium-area .site-heading .mask-text.large{
    padding: .12em .12em .22em !important;
  }
}
@media (max-width: 767px){
  .home-apoena-body .services-premium-area .site-heading .mask-text.large{
    padding: .1em .08em .2em !important;
  }
}


/* =====================================================
   HOME PREMIUM REVIEW 2026-03-20
   Revisão visual completa da home Apoena
   ===================================================== */
.home-apoena-body{
  --apoena-surface:#ffffff;
  --apoena-surface-soft:#f6faf7;
  --apoena-ink:#0f1728;
  --apoena-muted:#667085;
  --apoena-line:rgba(15,23,42,.08);
  --apoena-shadow-soft:0 18px 50px rgba(15,23,42,.07);
  --apoena-shadow-card:0 24px 64px rgba(11,95,69,.10);
  --apoena-radius-lg:30px;
  --apoena-radius-md:22px;
}

.home-apoena-body .default-padding{
  padding-top:92px;
  padding-bottom:92px;
}

.home-apoena-body .site-heading{
  margin-bottom:40px;
}

.home-apoena-body .site-heading .sub-title{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(11,95,69,.08);
  color:#0b5f45;
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.home-apoena-body .site-heading .title{
  margin:0;
  color:var(--apoena-ink);
  letter-spacing:-.04em;
  line-height:1.04;
}

.home-apoena-body .btn,
.home-apoena-body .btn-theme,
.home-apoena-body .btn.btn-theme{
  border-radius:16px;
  font-weight:800;
  letter-spacing:.01em;
  transition:transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.home-apoena-body .btn:hover,
.home-apoena-body .btn-theme:hover,
.home-apoena-body .btn.btn-theme:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 36px rgba(11,95,69,.18);
}

.home-apoena-body .banner-style-two .content h2,
.home-apoena-body .banner-area .content h2{
  text-shadow:0 14px 40px rgba(0,0,0,.22);
}

.home-apoena-body .banner-style-two .content p,
.home-apoena-body .banner-area .content p{
  max-width:62ch;
  color:rgba(255,255,255,.92);
}

.home-apoena-body .feature-style-one-area--apoena{
  background:
    radial-gradient(circle at top right, rgba(232,183,79,.12), transparent 28%),
    linear-gradient(180deg, #f7fbf8 0%, #f5f7f1 100%);
}

.home-apoena-body .feature-style-one-copy .title{
  max-width:12ch;
}

.home-apoena-body .feature-style-one-card{
  border:1px solid rgba(15,23,42,.06);
  box-shadow:var(--apoena-shadow-card);
}

.home-apoena-body .feature-style-one-card__item{
  transition:transform .22s ease;
}

.home-apoena-body .feature-style-one-card__item:hover{
  transform:translateX(4px);
}

.home-apoena-body .services-premium-area,
.home-apoena-body .choose-premium-area,
.home-apoena-body .gallery-premium-area,
.home-apoena-body .home-blog-area{
  background-image:
    radial-gradient(circle at top left, rgba(11,95,69,.04), transparent 26%),
    radial-gradient(circle at bottom right, rgba(232,183,79,.08), transparent 24%);
}

.home-apoena-body .services-premium-area .service-card-premium,
.home-apoena-body .gallery-premium-area .gallery-card-premium,
.home-apoena-body .home-blog-card,
.home-apoena-body .choose-premium-area .choose-us-style-one-info,
.home-apoena-body .cta-premium-area .institutional-summary-card{
  box-shadow:var(--apoena-shadow-soft);
}

.home-apoena-body .services-premium-area .service-card-premium,
.home-apoena-body .gallery-premium-area .gallery-card-premium,
.home-apoena-body .home-blog-card{
  transition:transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.home-apoena-body .services-premium-area .service-card-premium:hover,
.home-apoena-body .gallery-premium-area .gallery-card-premium:hover,
.home-apoena-body .home-blog-card:hover{
  transform:translateY(-6px);
  box-shadow:0 28px 70px rgba(15,23,42,.11);
  border-color:rgba(11,95,69,.14);
}

.home-apoena-body .services-premium-area .service-card-premium .info h4 a,
.home-apoena-body .gallery-premium-area .gallery-card-premium .vt-f-text a,
.home-apoena-body .home-blog-card h4 a{
  transition:color .2s ease;
}

.home-apoena-body .services-premium-area .service-card-premium:hover .info h4 a,
.home-apoena-body .gallery-premium-area .gallery-card-premium:hover .vt-f-text a,
.home-apoena-body .home-blog-card:hover h4 a{
  color:#0b5f45;
}

.home-apoena-body .services-premium-area .service-card-premium .overlay{
  min-height:156px;
}

.home-apoena-body .services-premium-area .swiper-button-prev,
.home-apoena-body .services-premium-area .swiper-button-next{
  border:1px solid rgba(255,255,255,.18);
}

.home-apoena-body .timeline-area{
  padding-top:18px !important;
  padding-bottom:54px !important;
}

.home-apoena-body .timeline-area .item,
.home-apoena-body .timeline__item,
.home-apoena-body .time-line-box,
.home-apoena-body .timeline-items .single-item{
  border-radius:22px;
}

.home-apoena-body .choose-premium-area .choose-us-style-one-info{
  background:rgba(255,255,255,.94);
}

.home-apoena-body .choose-premium-area .fun-fact-style-flex .counter{
  border-radius:20px;
  box-shadow:0 16px 32px rgba(8,60,44,.16);
}

.home-apoena-body .gallery-premium-area .gallery-card-premium img,
.home-apoena-body .home-blog-card .thumb img{
  transition:transform .35s ease;
}

.home-apoena-body .gallery-premium-area .gallery-card-premium:hover img,
.home-apoena-body .home-blog-card:hover .thumb img{
  transform:scale(1.04);
}

.home-apoena-body .cta-premium-area{
  position:relative;
  overflow:hidden;
}

.home-apoena-body .cta-premium-area .brand-style-one-info .cta-visible-title{
  text-shadow:0 14px 36px rgba(0,0,0,.12);
}

.home-apoena-body .cta-premium-area .institutional-summary-card{
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(10px);
}

.home-apoena-body .home-blog-area{
  padding-bottom:76px !important;
}

.home-apoena-body .home-blog-card{
  border-radius:26px;
}

.home-apoena-body .home-blog-card .info{
  padding:24px;
}

.home-apoena-body .home-blog-empty{
  padding:24px 28px;
  border-radius:20px;
  background:#fff;
  border:1px dashed rgba(11,95,69,.22);
  color:#475467;
  text-align:center;
}

.footer-custom-style{
  color:var(--footer-text,#eef8f2);
  background:
    radial-gradient(circle at top right, rgba(232,183,79,.16), transparent 24%),
    linear-gradient(135deg,var(--footer-bg-start,#083c2c) 0%, color-mix(in srgb, var(--footer-bg-start,#083c2c) 48%, var(--footer-bg-end,#0b5f45) 52%) 52%, var(--footer-bg-end,#0b5f45) 100%);
}


.footer-custom-style,
.footer-custom-style .widget-title,
.footer-custom-style p,
.footer-custom-style a,
.footer-custom-style li,
.footer-custom-style strong,
.footer-custom-style .content{color:var(--footer-text,#eef8f2);}
.footer-custom-style .f-items{
  padding-top:88px;
  padding-bottom:48px;
}

.footer-custom-style .footer-premium-grid{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(180px,.72fr) minmax(280px,1fr);
  gap:34px;
  align-items:start;
}

.footer-custom-style .footer-item{
  min-width:0;
}

.footer-custom-style .footer-item--about{
  padding-right:34px;
  border-right:1px solid color-mix(in srgb, var(--footer-border,#ffffff) 22%, transparent);
}

.footer-custom-style .footer-item--nav{
  padding-left:4px;
}

.footer-custom-style .footer-item--contact{
  display:block;
}

.footer-custom-style .footer-contact-card{
  width:100%;
  max-width:100%;
  padding:28px 30px;
  border-radius:26px;
  background:color-mix(in srgb, var(--footer-text,#fff) 10%, transparent);
  border:1px solid color-mix(in srgb, var(--footer-border,#ffffff) 22%, transparent);
  box-shadow:0 24px 60px rgba(0,0,0,.12);
}

.footer-custom-style .footer-item.contact,
.footer-custom-style .footer-item.contact ul,
.footer-custom-style .footer-item.contact .content,
.footer-custom-style .footer-item.contact .widget-title{
  width:100%;
  max-width:100%;
}

.footer-custom-style .footer-item.contact{
  padding-left:0;
}

.footer-custom-style .footer-item.contact .widget-title{
  margin:0 0 20px;
}

.footer-custom-style .footer-contact-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:16px;
}

.footer-custom-style .footer-contact-list li{
  display:grid;
  grid-template-columns:22px minmax(0,1fr);
  gap:14px;
  align-items:flex-start;
}

.footer-custom-style .footer-item.contact .icon{
  width:22px;
  min-width:22px;
  justify-content:flex-start;
}

.footer-custom-style .footer-item.contact .content{
  line-height:1.7;
  color:var(--footer-text,#eef8f2);
}

.footer-custom-style .widget_nav_menu .menu{
  gap:12px;
}

.footer-custom-style .widget_nav_menu .menu a{
  opacity:.9;
  color:var(--footer-text,#eef8f2);
}

.footer-custom-style .widget_nav_menu .menu a:hover{
  opacity:1;
}

.footer-custom-style .footer-bottom{
  margin-top:10px;
  border-top:1px solid color-mix(in srgb, var(--footer-border,#ffffff) 24%, transparent);
}

.footer-custom-style .footer-bottom p{
  letter-spacing:.01em;
  color:var(--footer-text,#eef8f2);
}

@media (max-width: 1199px){
  .home-apoena-body .default-padding{
    padding-top:78px;
    padding-bottom:78px;
  }

  .footer-custom-style .footer-premium-grid{
    grid-template-columns:minmax(0,1fr) minmax(170px,.7fr) minmax(240px,.95fr);
    gap:26px;
  }

  .footer-custom-style .footer-item--about{
    padding-right:22px;
  }

  .footer-custom-style .footer-contact-card{
    padding:24px 24px;
  }
}

@media (max-width: 991px){
  .home-apoena-body .default-padding{
    padding-top:64px;
    padding-bottom:64px;
  }

  .home-apoena-body .site-heading{
    margin-bottom:32px;
  }

  .home-apoena-body .feature-style-one-copy .title{
    max-width:none;
  }

  .footer-custom-style .f-items{
    padding-top:66px;
    padding-bottom:36px;
  }

  .footer-custom-style .footer-premium-grid{
    grid-template-columns:1fr 1fr;
  }

  .footer-custom-style .footer-item--about{
    grid-column:1 / -1;
    border-right:0;
    padding-right:0;
    padding-bottom:8px;
    border-bottom:1px solid rgba(255,255,255,.12);
  }
}

@media (max-width: 767px){
  .home-apoena-body .default-padding{
    padding-top:52px;
    padding-bottom:52px;
  }

  .home-apoena-body .site-heading .sub-title{
    padding:7px 12px;
    font-size:12px;
  }

  .home-apoena-body .site-heading .title{
    line-height:1.08;
  }

  .home-apoena-body .services-premium-area .service-card-premium .overlay{
    min-height:0;
  }

  .footer-custom-style .footer-premium-grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  .footer-custom-style .footer-item--about{
    padding-bottom:22px;
  }

  .footer-custom-style .footer-contact-card{
    padding:22px 20px;
    border-radius:22px;
  }

  .footer-custom-style .footer-contact-list li{
    grid-template-columns:20px minmax(0,1fr);
    gap:12px;
  }
}


/* Premium hero transition without changing the visual language */
.home-apoena-body .banner-fade.is-fade-slider{
  position: relative;
}
.home-apoena-body .banner-fade.is-fade-slider .swiper-wrapper{
  position: relative;
  min-height: inherit;
}
.home-apoena-body .banner-fade.is-fade-slider .swiper-slide.fade-slide{
  position: absolute;
  inset: 0;
  display: block !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--hero-fade-duration, 950ms) cubic-bezier(.22,.61,.36,1),
    visibility 0s linear var(--hero-fade-duration, 950ms);
}
.home-apoena-body .banner-fade.is-fade-slider .swiper-slide.fade-slide.is-active{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
  transition:
    opacity var(--hero-fade-duration, 950ms) cubic-bezier(.22,.61,.36,1),
    visibility 0s linear 0s;
}
.home-apoena-body .banner-fade.is-fade-slider .swiper-slide.fade-slide .banner-thumb{
  transform: scale(1.02);
  transition: transform 6200ms cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.home-apoena-body .banner-fade.is-fade-slider .swiper-slide.fade-slide.is-active .banner-thumb{
  transform: scale(1.08);
}
.home-apoena-body .banner-fade.is-fade-slider .swiper-slide.fade-slide .content > *{
  transform: translate3d(0, 22px, 0);
  opacity: 0;
  transition:
    opacity 650ms ease,
    transform 850ms cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.home-apoena-body .banner-fade.is-fade-slider .swiper-slide.fade-slide.is-active .content > *{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.home-apoena-body .banner-fade.is-fade-slider .swiper-slide.fade-slide.is-active .content > *:nth-child(1){ transition-delay: 120ms; }
.home-apoena-body .banner-fade.is-fade-slider .swiper-slide.fade-slide.is-active .content > *:nth-child(2){ transition-delay: 220ms; }
.home-apoena-body .banner-fade.is-fade-slider .swiper-slide.fade-slide.is-active .content > *:nth-child(3){ transition-delay: 320ms; }
.home-apoena-body .banner-fade.is-fade-slider .swiper-button-prev,
.home-apoena-body .banner-fade.is-fade-slider .swiper-button-next{
  transition: transform .28s ease, opacity .28s ease, background-color .28s ease;
}
.home-apoena-body .banner-fade.is-fade-slider .swiper-button-prev:hover,
.home-apoena-body .banner-fade.is-fade-slider .swiper-button-next:hover{
  transform: translateY(-2px) scale(1.03);
}
@media (prefers-reduced-motion: reduce){
  .home-apoena-body .banner-fade.is-fade-slider .swiper-slide.fade-slide,
  .home-apoena-body .banner-fade.is-fade-slider .swiper-slide.fade-slide .banner-thumb,
  .home-apoena-body .banner-fade.is-fade-slider .swiper-slide.fade-slide .content > *{
    transition: none !important;
    transform: none !important;
  }
}


.pb-colorize, .pb-colorize .muted, .pb-colorize .kicker, .pb-colorize .link, .pb-colorize .stat__label, .pb-colorize .gallery__k, .pb-colorize .gallery__t, .pb-colorize .numbers-strip__item span, .pb-colorize .logo-strip__item span, .pb-colorize .timeline__title, .pb-colorize .info-list li, .pb-colorize .contact__intro, .pb-colorize .acc summary, .pb-colorize .acc__body p{color:var(--pb-text-color) !important;}
.pb-colorize h1, .pb-colorize h2, .pb-colorize h3, .pb-colorize h4, .pb-colorize h5, .pb-colorize h6, .pb-colorize strong, .pb-colorize .hero__title, .pb-colorize .hero__kicker, .pb-colorize .timeline__year, .pb-colorize .stat__value, .pb-colorize .numbers-strip__item strong, .pb-colorize .step-card__number{color:var(--pb-heading-color) !important;}
.pb-colorize a:not(.btn){color:var(--pb-link-color) !important;}
.pb-colorize .contact__map iframe{box-shadow:0 24px 60px rgba(15,23,42,.12);}


.instagram-feed-section .section-actions{margin-top:28px}
.instagram-feed-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;align-items:start}
.instagram-feed-card{background:rgba(255,255,255,.94);border:1px solid rgba(11,95,69,.12);border-radius:24px;overflow:hidden;box-shadow:0 18px 40px rgba(7,27,20,.08);transition:transform .25s ease,box-shadow .25s ease}
.instagram-feed-card:hover{transform:translateY(-6px);box-shadow:0 24px 48px rgba(7,27,20,.12)}
.instagram-feed-card__frame{position:relative;background:#fff;min-height:540px}
.instagram-feed-card__frame iframe{display:block;width:100%;height:100%;min-height:540px;border:0;background:#fff}
.instagram-feed-card__meta{display:flex;justify-content:space-between;gap:16px;align-items:center;padding:16px 18px 18px;flex-wrap:wrap}
.instagram-feed-card__meta strong{font-size:1rem;line-height:1.4;color:#11231c}
@media (max-width: 1100px){.instagram-feed-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width: 767px){.instagram-feed-grid{grid-template-columns:1fr}.instagram-feed-card__frame,.instagram-feed-card__frame iframe{min-height:460px}}


.home-apoena-body .timeline-area .timeline-items{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:22px;
  position:relative;
}

.home-apoena-body .timeline-area .timeline-item{
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,251,248,.98));
  border:1px solid rgba(11,95,69,.08);
  box-shadow:0 18px 44px rgba(8,60,44,.10);
  border-radius:24px;
  padding:18px;
  transition:transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease, border-color .35s ease;
}

.home-apoena-body .timeline-area .timeline-item::before{
  content:'';
  position:absolute;
  inset:0 0 auto 0;
  height:4px;
  background:linear-gradient(90deg, #0b5f45, #f7b500);
  opacity:.92;
}

.home-apoena-body .timeline-area .timeline-item:hover{
  transform:translateY(-8px);
  box-shadow:0 26px 56px rgba(8,60,44,.16);
  border-color:rgba(11,95,69,.18);
}

.home-apoena-body .timeline-area .timeline-item__media{
  position:relative;
  height:180px;
  border-radius:18px;
  overflow:hidden;
  margin-bottom:16px;
  background:linear-gradient(135deg, rgba(11,95,69,.12), rgba(247,181,0,.12));
}

.home-apoena-body .timeline-area .timeline-item__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s cubic-bezier(.22,1,.36,1), filter .45s ease;
}

.home-apoena-body .timeline-area .timeline-item:hover .timeline-item__media img{
  transform:scale(1.06);
  filter:saturate(1.04);
}

.home-apoena-body .timeline-area .timeline-item__content{
  position:relative;
}

.home-apoena-body .timeline-area .timeline-item .vt-year{
  margin-bottom:8px;
  font-size:clamp(32px, 4vw, 42px);
  line-height:1;
}

.home-apoena-body .timeline-area .timeline-item .vt-title{
  margin:0;
}

@media (max-width: 1199.98px){
  .home-apoena-body .timeline-area .timeline-items{grid-template-columns:repeat(2, minmax(0, 1fr));}
}

@media (max-width: 767.98px){
  .home-apoena-body .timeline-area .timeline-items{grid-template-columns:1fr; gap:16px;}
  .home-apoena-body .timeline-area .timeline-item__media{height:200px;}
}


/* Final fixes: premium connected timeline + CTA/Brands full-card images */
.home-apoena-body .timeline-area .timeline-items{
  position:relative;
  display:grid;
  grid-template-columns:repeat(2,minmax(300px, 1fr));
  gap:32px 92px;
  align-items:start;
  padding:12px 0;
}
.home-apoena-body .timeline-area .timeline-items::before{
  content:"";
  position:absolute;
  top:16px;
  bottom:16px;
  left:50%;
  width:4px;
  transform:translateX(-50%);
  background:linear-gradient(180deg, rgba(11,95,69,.18) 0%, rgba(11,95,69,.88) 15%, #0b5f45 50%, rgba(247,181,0,.82) 100%);
  border-radius:999px;
  box-shadow:0 0 0 10px rgba(11,95,69,.045);
}
.home-apoena-body .timeline-area .timeline-item{
  position:relative;
  z-index:1;
}
.home-apoena-body .timeline-area .timeline-item--left{grid-column:1;}
.home-apoena-body .timeline-area .timeline-item--right{grid-column:2; margin-top:84px;}
.home-apoena-body .timeline-area .timeline-item__card{
  position:relative;
  background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,251,248,.98));
  border:1px solid rgba(11,95,69,.10);
  border-radius:30px;
  box-shadow:0 26px 62px rgba(8,60,44,.10);
  overflow:visible;
  transition:transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease, border-color .35s ease;
}
.home-apoena-body .timeline-area .timeline-item:hover .timeline-item__card{
  transform:translateY(-8px);
  box-shadow:0 34px 78px rgba(8,60,44,.16);
  border-color:rgba(11,95,69,.20);
}
.home-apoena-body .timeline-area .timeline-item__dot{
  position:absolute;
  top:132px;
  width:22px;
  height:22px;
  border-radius:999px;
  background:linear-gradient(180deg, #0b5f45, #14795a);
  border:4px solid #ffffff;
  box-shadow:0 0 0 8px rgba(11,95,69,.10), 0 10px 18px rgba(8,60,44,.18);
}
.home-apoena-body .timeline-area .timeline-item__dot::before{
  content:"";
  position:absolute;
  inset:5px;
  border-radius:999px;
  background:#f7b500;
}
.home-apoena-body .timeline-area .timeline-item--left .timeline-item__dot{right:-58px;}
.home-apoena-body .timeline-area .timeline-item--right .timeline-item__dot{left:-58px;}
.home-apoena-body .timeline-area .timeline-item__card::after{
  content:"";
  position:absolute;
  top:142px;
  width:58px;
  height:3px;
  background:linear-gradient(90deg, rgba(11,95,69,.85), rgba(247,181,0,.70));
  border-radius:999px;
}
.home-apoena-body .timeline-area .timeline-item__card::before{
  content:"";
  position:absolute;
  top:134px;
  width:12px;
  height:12px;
  border-radius:999px;
  background:#f7b500;
  box-shadow:0 0 0 6px rgba(247,181,0,.12);
}
.home-apoena-body .timeline-area .timeline-item--left .timeline-item__card::after{right:-58px;}
.home-apoena-body .timeline-area .timeline-item--left .timeline-item__card::before{right:-18px;}
.home-apoena-body .timeline-area .timeline-item--right .timeline-item__card::after{left:-58px;}
.home-apoena-body .timeline-area .timeline-item--right .timeline-item__card::before{left:-18px;}
.home-apoena-body .timeline-area .timeline-item__media{
  position:relative;
  height:228px;
  overflow:hidden;
  border-radius:26px 26px 0 0;
  background:#edf4ef;
  margin:14px 14px 0;
}
.home-apoena-body .timeline-area .timeline-item__media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(9,18,14,.00) 20%, rgba(9,18,14,.06) 100%);
}
.home-apoena-body .timeline-area .timeline-item__media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .7s cubic-bezier(.22,1,.36,1);
}
.home-apoena-body .timeline-area .timeline-item:hover .timeline-item__media img{transform:scale(1.05);}
.home-apoena-body .timeline-area .timeline-item__content{
  position:relative;
  padding:24px 30px 30px;
}
.home-apoena-body .timeline-area .timeline-item .vt-year{
  margin:0 0 8px;
  font-size:clamp(44px, 4.4vw, 58px);
  line-height:.92;
  color:#0b5f45;
  letter-spacing:-.03em;
}
.home-apoena-body .timeline-area .timeline-item .vt-title{
  margin:0;
  font-size:24px;
  line-height:1.2;
  color:#0f172a;
}
@media (max-width: 1199.98px){
  .home-apoena-body .timeline-area .timeline-items{gap:28px 72px;}
  .home-apoena-body .timeline-area .timeline-item--right{margin-top:64px;}
}
@media (max-width:991px){
  .home-apoena-body .timeline-area .timeline-items{grid-template-columns:1fr;gap:22px;}
  .home-apoena-body .timeline-area .timeline-items::before{left:30px;transform:none;top:10px;bottom:10px;}
  .home-apoena-body .timeline-area .timeline-item,
  .home-apoena-body .timeline-area .timeline-item--left,
  .home-apoena-body .timeline-area .timeline-item--right{grid-column:1;margin-top:0;padding-left:74px;}
  .home-apoena-body .timeline-area .timeline-item__dot,
  .home-apoena-body .timeline-area .timeline-item--left .timeline-item__dot,
  .home-apoena-body .timeline-area .timeline-item--right .timeline-item__dot{left:19px;right:auto;top:124px;}
  .home-apoena-body .timeline-area .timeline-item__card::after,
  .home-apoena-body .timeline-area .timeline-item--left .timeline-item__card::after,
  .home-apoena-body .timeline-area .timeline-item--right .timeline-item__card::after{left:-44px;right:auto;top:134px;width:44px;}
  .home-apoena-body .timeline-area .timeline-item__card::before,
  .home-apoena-body .timeline-area .timeline-item--left .timeline-item__card::before,
  .home-apoena-body .timeline-area .timeline-item--right .timeline-item__card::before{left:-12px;right:auto;top:129px;}
}
@media (max-width:767.98px){
  .home-apoena-body .timeline-area .timeline-item{padding-left:64px;}
  .home-apoena-body .timeline-area .timeline-item__media{height:200px;margin:12px 12px 0;}
  .home-apoena-body .timeline-area .timeline-item__content{padding:20px 22px 24px;}
  .home-apoena-body .timeline-area .timeline-item .vt-year{font-size:42px;}
  .home-apoena-body .timeline-area .timeline-item .vt-title{font-size:21px;}
}
.home-apoena-body .cta-premium-area .brand-style-one-items{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;position:relative;z-index:2;}
.home-apoena-body .cta-premium-area .brand-logo-card{min-height:108px;border-radius:22px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.16);box-shadow:0 18px 42px rgba(0,0,0,.12);display:flex;align-items:center;justify-content:center;padding:20px;text-align:center;}
.home-apoena-body .cta-premium-area .brand-logo-card img{display:block;max-width:150px;max-height:48px;width:auto;height:auto;background:none;border:0;padding:0;}
.home-apoena-body .cta-premium-area .brand-logo-card span{font-size:16px;font-weight:800;letter-spacing:.02em;color:#fff;display:block;}
.home-apoena-body .cta-premium-area .brand-logo-card--text{background:rgba(255,255,255,.16);}
.home-apoena-body .cta-premium-area.cta-premium-area--default::before{content:'';position:absolute;inset:auto -120px -120px auto;width:360px;height:360px;background:radial-gradient(circle at center, rgba(255,255,255,.14), transparent 68%);}
.home-apoena-body .cta-premium-area.cta-premium-area--default::after{content:'';position:absolute;inset:-120px auto auto -120px;width:280px;height:280px;background:radial-gradient(circle at center, rgba(255,255,255,.12), transparent 70%);}

/* Better spacing coherence */
.home-apoena-body .team-premium-area + .cta-premium-area{margin-top:22px;}
.home-apoena-body .gallery-premium-area + .team-premium-area{margin-top:10px;}

@media (max-width: 991px){
  .home-apoena-body .home-section-gap{margin-top:34px;}
  .home-apoena-body .services-premium-area .service-style-two-carousel .swiper-wrapper{gap:20px;}
  .home-apoena-body .choose-premium-area{padding-top:54px !important;padding-bottom:26px !important;}
  .home-apoena-body .choose-premium-area .choose-us-style-one-info{padding:28px 24px 24px;}
  .home-apoena-body .gallery-premium-area .gallery-items{grid-template-columns:repeat(2,minmax(0,1fr));}
  .home-apoena-body .cta-premium-area .brand-style-one-info .cta-visible-title{font-size:36px;}
}
@media (max-width: 767px){
  .home-apoena-body .home-section-gap{margin-top:26px;}
  .home-apoena-body .services-premium-area{padding-top:18px;padding-bottom:10px;}
  .home-apoena-body .services-premium-area .service-card-premium .overlay{grid-template-columns:52px minmax(0,1fr);padding:18px;}
  .home-apoena-body .services-premium-area .service-card-premium .icon{width:52px;height:52px;min-width:52px;}
  .home-apoena-body .services-premium-area .service-card-premium .info h4{font-size:20px;}
  .home-apoena-body .choose-premium-area .choose-us-style-one-thumb img{aspect-ratio: 4 / 3;}
  .home-apoena-body .choose-premium-area .fun-fact-style-flex{grid-template-columns:1fr;}
  .home-apoena-body .gallery-premium-area .gallery-items{grid-template-columns:1fr;gap:18px;}
  .home-apoena-body .gallery-premium-area .gallery-card-premium .vt-f-text,
  .home-apoena-body .gallery-premium-area .gallery-card-premium .vt-f-text a{font-size:21px;}
  .home-apoena-body .team-premium-area .team-style-one-item .info h4{font-size:20px;}
  .home-apoena-body .cta-premium-area{padding-top:42px !important;padding-bottom:42px !important;}
  .home-apoena-body .cta-premium-area .brand-style-one-info .cta-visible-title{font-size:30px;}
  .home-apoena-body .cta-premium-area .brand-style-one-items{grid-template-columns:1fr;}
}


/* ==========================
   PREMIUM SCROLL REVEAL
   ========================== */
:root{
  --reveal-distance: 30px;
  --reveal-duration: 820ms;
  --reveal-ease: cubic-bezier(.22, 1, .36, 1);
}

.reveal{
  opacity: 0;
  will-change: transform, opacity, filter;
  transition:
    opacity var(--reveal-duration) var(--reveal-ease) var(--reveal-delay, 0ms),
    transform var(--reveal-duration) var(--reveal-ease) var(--reveal-delay, 0ms),
    filter var(--reveal-duration) var(--reveal-ease) var(--reveal-delay, 0ms);
  backface-visibility: hidden;
}

.reveal--fade-up{
  transform: translate3d(0, var(--reveal-distance), 0);
  filter: blur(8px);
}

.reveal--fade-right{
  transform: translate3d(calc(var(--reveal-distance) * -1), 0, 0);
  filter: blur(8px);
}

.reveal--fade-left{
  transform: translate3d(var(--reveal-distance), 0, 0);
  filter: blur(8px);
}

.reveal--zoom-in{
  transform: translate3d(0, 22px, 0) scale(.94);
  filter: blur(10px);
}

.reveal.is-visible{
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.footer .reveal,
footer .reveal{
  transition-duration: 760ms;
}

@media (prefers-reduced-motion: reduce){
  .reveal{
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}


/* ==========================
   HOME PREMIUM FIXES - FINAL
   ========================== */
.home-apoena-body .services-premium-area,
.home-apoena-body .timeline-area,
.home-apoena-body .choose-premium-area,
.home-apoena-body .gallery-premium-area,
.home-apoena-body .team-premium-area,
.home-apoena-body .cta-premium-area,
.home-apoena-body .home-blog-area{
  position:relative;
  z-index:1;
}

.home-apoena-body .services-premium-area{
  padding-top:26px !important;
  padding-bottom:14px !important;
  margin-bottom:0 !important;
}

.home-apoena-body .services-premium-area .swiper,
.home-apoena-body .services-premium-area .swiper-horizontal,
.home-apoena-body .services-premium-area .service-style-two-carousel,
.home-apoena-body .services-premium-area .service-style-two-carousel .swiper-wrapper,
.home-apoena-body .services-premium-area .service-style-two-carousel .swiper-slide,
.home-apoena-body .services-premium-area .service-slide-premium{
  height:auto !important;
  min-height:0 !important;
}

.home-apoena-body .services-premium-area .service-style-two-carousel{
  margin-bottom:0 !important;
  padding-bottom:4px !important;
}

.home-apoena-body .services-premium-area .service-style-two-carousel .swiper-wrapper{
  align-items:stretch !important;
}

.home-apoena-body .services-premium-area .service-style-two-carousel .swiper-slide,
.home-apoena-body .services-premium-area .service-slide-premium{
  background:transparent !important;
  align-self:stretch !important;
}

.home-apoena-body .services-premium-area .service-card-premium{
  height:100% !important;
}

.home-apoena-body .services-premium-area + .timeline-area{
  margin-top:0 !important;
}

.home-apoena-body .timeline-area{
  padding-top:26px !important;
  padding-bottom:44px !important;
  margin-top:0 !important;
}

.home-apoena-body .timeline-area .site-heading{
  margin-bottom:28px !important;
}

.home-apoena-body .timeline-area .timeline-items{
  margin-top:0 !important;
}

.home-apoena-body .choose-premium-area{
  padding-top:42px !important;
  padding-bottom:24px !important;
}

.home-apoena-body .choose-premium-area + .gallery-premium-area{
  padding-top:12px !important;
}

.home-apoena-body .gallery-premium-area{
  padding-top:12px !important;
}

.home-apoena-body .cta-premium-area .brand-style-one-info,
.home-apoena-body .cta-premium-area .brand-style-one-info *{
  visibility:visible !important;
}

.home-apoena-body .cta-premium-area .brand-style-one-info .cta-visible-title,
.home-apoena-body .cta-premium-area .brand-style-one-info .cta-visible-desc{
  color:#fff !important;
  text-shadow:0 4px 20px rgba(0,0,0,.18);
}

.home-apoena-body .cta-premium-area::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(8,28,21,.34), rgba(8,28,21,.16));
  pointer-events:none;
}

.home-apoena-body .cta-premium-area .container,
.home-apoena-body .cta-premium-area .shape-right-top{
  position:relative;
  z-index:1;
}

@media (max-width: 991.98px){
  .home-apoena-body .timeline-area{
    padding-top:20px !important;
    padding-bottom:34px !important;
  }
  .home-apoena-body .choose-premium-area{
    padding-top:34px !important;
    padding-bottom:18px !important;
  }
}

@media (max-width: 767.98px){
  .home-apoena-body .services-premium-area{
    padding-top:12px !important;
    padding-bottom:8px !important;
  }
  .home-apoena-body .timeline-area{
    padding-top:14px !important;
    padding-bottom:28px !important;
  }
  .home-apoena-body .gallery-premium-area{
    padding-top:8px !important;
  }
}


/* 2026-03-15 — Header da home e paleta configurável */
body{color:var(--site-text,#0d1216);background:var(--site-surface,#ffffff);}
.nav{background:var(--site-surface,#ffffff);}
.home-desktop-header{position:relative;z-index:10040;}
.home-desktop-header .navbar,
.home-desktop-header .navbar.no-background,
.home-desktop-header .navbar.navbar-fixed,
.home-desktop-header .navbar.navbar-sticky,
.home-desktop-header .navbar.navbar-default{
  background:var(--home-header-bg,#ffffff) !important;
  box-shadow:0 14px 34px rgba(15,23,42,.08) !important;
  backdrop-filter:none !important;
}
.home-desktop-header .navbar .container-full{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:24px !important;
  padding:16px 28px !important;
}
.home-desktop-header .navbar-header,
.home-desktop-header .attr-right{
  flex:0 0 auto !important;
}
.home-desktop-header .navbar-collapse{
  flex:1 1 auto !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:transparent !important;
}
.home-desktop-header .navbar .navbar-brand,
.home-desktop-header .navbar .navbar-brand:hover,
.home-desktop-header .navbar .navbar-brand:focus,
.home-desktop-header .navbar .navbar-brand img,
.home-desktop-header .navbar .navbar-brand .logo,
.home-desktop-header .navbar .navbar-brand .logo-desktop,
.home-desktop-header .navbar .navbar-brand .logo-mobile,
.home-desktop-header .navbar-header{
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  outline:0 !important;
}
.home-desktop-header .navbar .navbar-brand{
  padding:0 !important;
  max-width:none !important;
}
.home-desktop-header .navbar .navbar-brand .logo.logo-desktop{
  height:56px !important;
  width:auto !important;
  max-width:220px !important;
  object-fit:contain !important;
}
.home-desktop-header .navbar .navbar-brand .logo.logo-mobile{
  display:none !important;
}
.home-desktop-header .navbar .navbar-nav{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:8px !important;
  width:100% !important;
  margin:0 !important;
  padding:0 !important;
  background:transparent !important;
}
.home-desktop-header .navbar .navbar-nav > li{
  float:none !important;
  display:block !important;
}
.home-desktop-header .navbar .navbar-nav > li > a,
.home-desktop-header .navbar .navbar-nav > li.active > a,
.home-desktop-header .navbar .navbar-nav > li > a.active,
.home-desktop-header .navbar .navbar-brand,
.home-desktop-header .navbar .brand-text,
.home-desktop-header .navbar .navbar-toggle,
.home-desktop-header .navbar .navbar-nav > li > a *,
.home-desktop-header .navbar .dropdown > a,
.home-desktop-header .navbar .dropdown-menu > li > a{
  color:var(--home-header-menu,#374151) !important;
}
.home-desktop-header .navbar .navbar-nav > li > a{
  font-weight:700 !important;
  letter-spacing:.01em !important;
  padding:12px 16px !important;
  border-radius:999px !important;
  opacity:1 !important;
}
.home-desktop-header .navbar .navbar-nav > li > a:hover,
.home-desktop-header .navbar .navbar-nav > li.active > a,
.home-desktop-header .navbar .navbar-nav > li > a.active{
  background:var(--home-header-hover,#eef3ef) !important;
  color:var(--home-header-menu,#374151) !important;
}
.home-desktop-header .navbar .dropdown-menu{
  background:#ffffff !important;
  border:1px solid rgba(15,23,42,.08) !important;
  box-shadow:0 20px 36px rgba(15,23,42,.12) !important;
  border-radius:16px !important;
  padding:10px !important;
}
.home-desktop-header .navbar .dropdown-menu > li > a{
  border-radius:10px !important;
  padding:10px 12px !important;
}
.home-desktop-header .navbar .dropdown-menu > li > a:hover{
  background:var(--home-header-hover,#eef3ef) !important;
}
.home-desktop-header .navbar .navbar-toggle{
  border-color:rgba(55,65,81,.18) !important;
  background:#fff !important;
}
.home-desktop-header .apoena-ext-btns{
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
}
.home-desktop-header .apoena-ext-btns a,
.home-desktop-header .apoena-mobile-actions a{
  display:inline-flex !important;
  align-items:center !important;
  gap:9px !important;
  min-height:46px !important;
  padding:11px 16px !important;
  border-radius:999px !important;
  border:0 !important;
  text-decoration:none !important;
  font-weight:800 !important;
  line-height:1 !important;
  white-space:nowrap !important;
  box-shadow:0 12px 24px rgba(15,23,42,.12) !important;
}
.home-desktop-header .apoena-ext-btns a,
.home-desktop-header .apoena-ext-btns a .lbl,
.home-desktop-header .apoena-ext-btns a svg,
.home-desktop-header .apoena-mobile-actions a,
.home-desktop-header .apoena-mobile-actions a .lbl,
.home-desktop-header .apoena-mobile-actions a svg{
  color:var(--home-header-action-text,#ffffff) !important;
  fill:currentColor !important;
}
.home-desktop-header .apoena-ext-btns a svg,
.home-desktop-header .apoena-mobile-actions a svg{
  width:16px !important;
  height:16px !important;
  flex:0 0 16px !important;
  opacity:.98 !important;
}
.home-desktop-header .apoena-ext-btns .admin-link,
.home-desktop-header .apoena-mobile-actions .admin-link{
  color:var(--home-header-menu,#374151) !important;
  background:#f8fafc !important;
  border:1px solid rgba(55,65,81,.14) !important;
  box-shadow:none !important;
}
.home-desktop-header .apoena-ext-btns .admin-link .lbl,
.home-desktop-header .apoena-ext-btns .admin-link svg,
.home-desktop-header .apoena-mobile-actions .admin-link .lbl,
.home-desktop-header .apoena-mobile-actions .admin-link svg{color:var(--home-header-menu,#374151) !important;fill:currentColor !important;}
@media (max-width: 820px){
  .home-apoena .navbar-toggle{
    border:1px solid rgba(55,65,81,.22) !important;
    background:#fff !important;
    color:var(--home-header-menu,#374151) !important;
  }
}


/* Home header hotfix v4 */
.home-desktop-header .navbar,
.home-desktop-header .navbar *{
  box-sizing:border-box;
}
.home-desktop-header .navbar .container-full{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  flex-wrap:nowrap !important;
  gap:28px !important;
}
.home-desktop-header .navbar-header{
  width:auto !important;
  min-width:auto !important;
  flex:0 0 auto !important;
  display:flex !important;
  align-items:center !important;
}
.home-desktop-header .navbar .navbar-brand,
.home-desktop-header .navbar .navbar-brand:hover,
.home-desktop-header .navbar .navbar-brand:focus{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  width:auto !important;
  min-width:auto !important;
  margin:0 !important;
  padding:0 !important;
  background:transparent !important;
}
.home-desktop-header .navbar .navbar-brand img,
.home-desktop-header .navbar .navbar-brand .logo,
.home-desktop-header .navbar .navbar-brand .logo-desktop{
  display:block !important;
  width:auto !important;
  height:58px !important;
  max-width:240px !important;
  object-fit:contain !important;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
}
.home-desktop-header .navbar .navbar-brand::before,
.home-desktop-header .navbar .navbar-brand::after,
.home-desktop-header .navbar-header::before,
.home-desktop-header .navbar-header::after{
  display:none !important;
  content:none !important;
}
.home-desktop-header .navbar-collapse,
.home-desktop-header .navbar .navbar-collapse.collapse{
  position:static !important;
  left:auto !important;
  right:auto !important;
  top:auto !important;
  flex:1 1 auto !important;
  width:auto !important;
  min-width:0 !important;
  height:auto !important;
  min-height:0 !important;
  margin:0 !important;
  padding:0 !important;
  overflow:visible !important;
  background:transparent !important;
  border:0 !important;
  border-radius:0 !important;
  box-shadow:none !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
}
.home-desktop-header .navbar .navbar-nav,
.home-desktop-header .navbar .navbar-nav.navbar-center{
  display:flex !important;
  flex-direction:row !important;
  flex-wrap:nowrap !important;
  align-items:center !important;
  justify-content:center !important;
  gap:6px !important;
  width:auto !important;
  max-width:none !important;
  min-width:0 !important;
  height:auto !important;
  margin:0 !important;
  padding:0 !important;
  list-style:none !important;
  background:transparent !important;
}
.home-desktop-header .navbar .navbar-nav > li,
.home-desktop-header .navbar .navbar-nav.navbar-center > li{
  float:none !important;
  display:inline-flex !important;
  align-items:center !important;
  width:auto !important;
  min-width:auto !important;
  max-width:none !important;
  margin:0 !important;
  padding:0 !important;
}
.home-desktop-header .navbar .navbar-nav > li > a,
.home-desktop-header .navbar .navbar-nav.navbar-center > li > a,
.home-desktop-header .navbar .dropdown > a,
.home-desktop-header .navbar .navbar-nav > li > a span,
.home-desktop-header .navbar .navbar-nav > li > a strong,
.home-desktop-header .navbar .navbar-nav > li > a small{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:auto !important;
  min-height:44px !important;
  padding:10px 15px !important;
  margin:0 !important;
  color:var(--home-header-menu,#4b5563) !important;
  font-size:15px !important;
  font-weight:700 !important;
  text-decoration:none !important;
  white-space:nowrap !important;
  opacity:1 !important;
  writing-mode:horizontal-tb !important;
}
.home-desktop-header .navbar .navbar-nav > li > a:hover,
.home-desktop-header .navbar .navbar-nav > li.active > a,
.home-desktop-header .navbar .navbar-nav > li > a.active{
  color:var(--home-header-menu,#374151) !important;
  background:var(--home-header-hover,#eef3ef) !important;
}
.home-desktop-header .attr-right{
  flex:0 0 auto !important;
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
}
.home-desktop-header .apoena-ext-btns{
  display:flex !important;
  flex-wrap:nowrap !important;
  align-items:center !important;
  justify-content:flex-end !important;
  gap:10px !important;
}
.home-desktop-header .apoena-ext-btns a{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height:42px !important;
  padding:10px 16px !important;
  border-radius:999px !important;
}
.home-desktop-header .apoena-ext-btns a svg,
.home-desktop-header .apoena-mobile-actions a svg{
  stroke:currentColor !important;
  fill:none !important;
  stroke-width:2.15 !important;
}
@media (max-width: 1180px){
  .home-desktop-header .navbar .container-full{gap:18px !important;padding:14px 18px !important;}
  .home-desktop-header .navbar .navbar-nav > li > a{padding:10px 12px !important;font-size:14px !important;}
  .home-desktop-header .apoena-ext-btns a{padding:10px 13px !important;}
}


/* ===== Apoena home header premium desktop fix ===== */
@media (min-width: 981px){
  .home-apoena .home-desktop-header{position:absolute;left:0;right:0;top:0;z-index:100;display:block;}
  .home-apoena .home-desktop-header nav.navbar{background:var(--home-header-bg) !important;border:none !important;box-shadow:0 14px 34px rgba(15,23,42,.08) !important;}
  .home-apoena .home-desktop-header .container-full{display:grid !important;grid-template-columns:minmax(180px,240px) minmax(420px,1fr) auto !important;align-items:center !important;gap:28px !important;padding:18px 32px !important;max-width:100% !important;}
  .home-apoena .home-desktop-header .navbar-header{display:flex !important;align-items:center !important;justify-content:flex-start !important;min-width:0;}
  .home-apoena .home-desktop-header .navbar-brand{display:inline-flex !important;align-items:center !important;justify-content:flex-start !important;padding:0 !important;margin:0 !important;background:transparent !important;box-shadow:none !important;border:none !important;max-width:none !important;}
  .home-apoena .home-desktop-header .navbar-brand::before,
  .home-apoena .home-desktop-header .navbar-brand::after{display:none !important;content:none !important;}
  .home-apoena .home-desktop-header .navbar-brand .logo{display:block !important;height:54px !important;width:auto !important;max-width:220px !important;object-fit:contain !important;background:transparent !important;filter:none !important;box-shadow:none !important;border:none !important;padding:0 !important;}
  .home-apoena .home-desktop-header .navbar-brand .logo.logo-mobile{display:none !important;}

  .home-apoena .home-desktop-header .navbar-collapse{display:flex !important;position:static !important;left:auto !important;right:auto !important;top:auto !important;overflow:visible !important;background:transparent !important;border:none !important;border-radius:0 !important;box-shadow:none !important;padding:0 !important;backdrop-filter:none !important;justify-content:center !important;}
  .home-apoena .home-desktop-header #navbar-menu{background:transparent !important;}
  .home-apoena .home-desktop-header #navbar-menu > ul.navbar-nav,
  .home-apoena .home-desktop-header #navbar-menu > ul.nav,
  .home-apoena .home-desktop-header ul.navbar-center{display:flex !important;flex-direction:row !important;align-items:center !important;justify-content:center !important;gap:8px !important;float:none !important;width:100% !important;margin:0 !important;padding:0 !important;list-style:none !important;background:transparent !important;border:none !important;box-shadow:none !important;}
  .home-apoena .home-desktop-header #navbar-menu > ul > li{display:flex !important;align-items:center !important;float:none !important;position:relative !important;margin:0 !important;padding:0 !important;}
  .home-apoena .home-desktop-header #navbar-menu > ul > li > a{display:inline-flex !important;align-items:center !important;justify-content:center !important;height:46px !important;padding:0 18px !important;border-radius:999px !important;background:transparent !important;color:var(--home-header-menu) !important;font-size:15px !important;font-weight:700 !important;letter-spacing:.01em !important;text-decoration:none !important;text-shadow:none !important;box-shadow:none !important;border:none !important;white-space:nowrap !important;opacity:1 !important;visibility:visible !important;}
  .home-apoena .home-desktop-header #navbar-menu > ul > li > a:hover,
  .home-apoena .home-desktop-header #navbar-menu > ul > li.active > a,
  .home-apoena .home-desktop-header #navbar-menu > ul > li.current-menu-item > a{background:var(--home-header-hover) !important;color:var(--home-header-menu) !important;box-shadow:none !important;}
  .home-apoena .home-desktop-header #navbar-menu > ul > li.dropdown > a::after{content:'▾';font-size:11px;margin-left:8px;line-height:1;opacity:.65;}
  .home-apoena .home-desktop-header #navbar-menu .dropdown-menu{min-width:220px !important;border:none !important;border-radius:18px !important;padding:10px !important;margin-top:10px !important;background:#fff !important;box-shadow:0 22px 48px rgba(15,23,42,.14) !important;}
  .home-apoena .home-desktop-header #navbar-menu .dropdown-menu li{display:block !important;}
  .home-apoena .home-desktop-header #navbar-menu .dropdown-menu li a{display:block !important;padding:10px 14px !important;color:#374151 !important;border-radius:12px !important;font-weight:600 !important;background:transparent !important;}
  .home-apoena .home-desktop-header #navbar-menu .dropdown-menu li a:hover{background:#f4f7f5 !important;color:#111827 !important;}

  .home-apoena .home-desktop-header .attr-right{display:flex !important;align-items:center !important;justify-content:flex-end !important;gap:12px !important;}
  .home-apoena .home-desktop-header .apoena-ext-btns{display:flex !important;align-items:center !important;justify-content:flex-end !important;gap:10px !important;flex-wrap:nowrap !important;}
  .home-apoena .home-desktop-header .apoena-ext-btns a{min-height:44px !important;padding:0 16px !important;border-radius:999px !important;box-shadow:0 10px 24px rgba(15,23,42,.08) !important;line-height:1 !important;transition:transform .2s ease, box-shadow .2s ease, filter .2s ease !important;}
  .home-apoena .home-desktop-header .apoena-ext-btns a:hover{transform:translateY(-1px) !important;box-shadow:0 16px 30px rgba(15,23,42,.12) !important;filter:saturate(1.04);}
  .home-apoena .home-desktop-header .apoena-ext-btns a svg{width:16px !important;height:16px !important;stroke:currentColor !important;fill:none !important;opacity:.98;}
  .home-apoena .home-desktop-header .apoena-ext-btns .lbl{font-size:15px !important;font-weight:800 !important;}
  .home-apoena .home-desktop-header .apoena-ext-btns .admin-link{background:#fff !important;color:#374151 !important;border:1px solid rgba(15,23,42,.10) !important;box-shadow:none !important;}
}


/* Header home premium refinements */
.home-apoena .home-desktop-header nav.navbar{
  border-bottom:1px solid rgba(15,23,42,.06) !important;
}
.home-apoena .home-desktop-header .container-full{
  min-height:96px !important;
}
.home-apoena .home-desktop-header .navbar-header{
  min-height:64px !important;
}
.home-apoena .home-desktop-header .navbar-brand{
  min-height:64px !important;
  align-items:center !important;
}
.home-apoena .home-desktop-header .navbar-brand .logo,
.home-apoena .home-desktop-header .navbar-brand .logo.logo-desktop{
  height:58px !important;
  max-height:58px !important;
  vertical-align:middle !important;
}
.home-apoena .home-desktop-header #navbar-menu > ul.navbar-nav,
.home-apoena .home-desktop-header #navbar-menu > ul.nav,
.home-apoena .home-desktop-header ul.navbar-center{
  background:transparent !important;
  box-shadow:none !important;
}
.home-apoena .home-desktop-header #navbar-menu > ul > li > a{
  background:transparent !important;
  box-shadow:none !important;
  color:var(--home-header-menu,#374151) !important;
}
.home-apoena .home-desktop-header #navbar-menu > ul > li > a:hover,
.home-apoena .home-desktop-header #navbar-menu > ul > li.active > a,
.home-apoena .home-desktop-header #navbar-menu > ul > li.current-menu-item > a{
  background:rgba(67,160,71,.10) !important;
  color:#1f2937 !important;
}
.home-apoena .home-desktop-header .apoena-ext-btns a{
  position:relative !important;
  overflow:hidden !important;
}
.home-apoena .home-desktop-header .apoena-ext-btns .biotech-btn,
.home-apoena .home-desktop-header .apoena-ext-btns .agro-btn,
.home-apoena .home-desktop-header .apoena-ext-btns .biocare-btn,
.home-apoena .home-desktop-header .apoena-mobile-actions .biotech-btn,
.home-apoena .home-desktop-header .apoena-mobile-actions .agro-btn,
.home-apoena .home-desktop-header .apoena-mobile-actions .biocare-btn{
  color:#fff !important;
  border:1px solid rgba(255,255,255,.16) !important;
}
.home-apoena .home-desktop-header .apoena-ext-btns .biotech-btn:hover,
.home-apoena .home-desktop-header .apoena-mobile-actions .biotech-btn:hover{
  background:linear-gradient(135deg,#59d80d,#36b30d) !important;
  color:#fff !important;
  filter:none !important;
}
.home-apoena .home-desktop-header .apoena-ext-btns .agro-btn:hover,
.home-apoena .home-desktop-header .apoena-mobile-actions .agro-btn:hover{
  background:linear-gradient(135deg,#f07b1a,#d95f07) !important;
  color:#fff !important;
  filter:none !important;
}
.home-apoena .home-desktop-header .apoena-ext-btns .biocare-btn:hover,
.home-apoena .home-desktop-header .apoena-mobile-actions .biocare-btn:hover{
  background:linear-gradient(135deg,#c428c1,#a51fb0) !important;
  color:#fff !important;
  filter:none !important;
}
.home-apoena .home-desktop-header .apoena-ext-btns .biotech-btn:hover .lbl,
.home-apoena .home-desktop-header .apoena-ext-btns .agro-btn:hover .lbl,
.home-apoena .home-desktop-header .apoena-ext-btns .biocare-btn:hover .lbl,
.home-apoena .home-desktop-header .apoena-ext-btns .biotech-btn:hover svg,
.home-apoena .home-desktop-header .apoena-ext-btns .agro-btn:hover svg,
.home-apoena .home-desktop-header .apoena-ext-btns .biocare-btn:hover svg{
  color:#fff !important;
  stroke:currentColor !important;
}
.home-apoena .home-desktop-header .apoena-ext-btns .admin-link:hover{
  background:#f3f4f6 !important;
  color:#111827 !important;
  border-color:rgba(15,23,42,.16) !important;
  filter:none !important;
}


/* Final home header/mobile fixes */
.home-mobile-header{display:none !important;}
.home-apoena .home-desktop-header .navbar-brand{
  min-height:58px !important;
}
.home-apoena .home-desktop-header .navbar-brand .logo,
.home-apoena .home-desktop-header .navbar-brand .logo.logo-desktop{
  height:50px !important;
  max-height:50px !important;
  max-width:250px !important;
}
.home-apoena .banner-style-one .button,
.home-apoena .banner-style-one .button a{
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
}
.home-apoena .banner-style-one .button .animated-btn{
  min-width:176px !important;
  min-height:56px !important;
  padding:0 28px !important;
  justify-content:center !important;
  text-align:center !important;
}
.home-apoena .banner-style-one .button .animated-btn .btn-ic{
  display:none !important;
}

@media (max-width: 820px){
  .home-mobile-header{display:none !important;}
  .home-desktop-header{display:block !important;position:absolute !important;left:0;right:0;top:0;z-index:10050 !important;}
  .home-apoena .home-desktop-header nav.navbar{
    background:var(--home-header-bg,#fff) !important;
    box-shadow:0 12px 28px rgba(15,23,42,.10) !important;
  }
  .home-apoena .home-desktop-header .container-full{
    display:grid !important;
    grid-template-columns:minmax(0,1fr) auto !important;
    align-items:center !important;
    gap:12px !important;
    padding:14px 16px !important;
    min-height:84px !important;
    position:relative !important;
  }
  .home-apoena .home-desktop-header .navbar-header{
    min-height:56px !important;
    width:100% !important;
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:12px !important;
  }
  .home-apoena .home-desktop-header .navbar-brand{
    display:inline-flex !important;
    align-items:center !important;
    min-height:56px !important;
    max-width:calc(100vw - 108px) !important;
    overflow:visible !important;
  }
  .home-apoena .home-desktop-header .navbar-brand .logo.logo-desktop{display:none !important;}
  .home-apoena .home-desktop-header .navbar-brand .logo.logo-mobile,
  .home-apoena .home-desktop-header .navbar-brand .logo{
    display:block !important;
    height:40px !important;
    max-height:40px !important;
    width:auto !important;
    max-width:190px !important;
    object-fit:contain !important;
  }
  .home-apoena .home-desktop-header .navbar-brand .logo.logo-mobile{display:block !important;}
  .home-apoena .home-desktop-header .navbar-toggle{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    width:46px !important;
    height:46px !important;
    margin:0 !important;
    padding:0 !important;
    border:1px solid rgba(15,23,42,.12) !important;
    border-radius:14px !important;
    background:#ffffff !important;
    color:var(--home-header-menu,#374151) !important;
    box-shadow:none !important;
    flex:0 0 46px !important;
  }
  .home-apoena .home-desktop-header .navbar-toggle svg,
  .home-apoena .home-desktop-header .navbar-toggle path{
    stroke:currentColor !important;
    color:currentColor !important;
  }
  .home-apoena .home-desktop-header .attr-right{
    display:none !important;
  }
  .home-apoena .home-desktop-header .navbar-collapse,
  .home-apoena .home-desktop-header .navbar .navbar-collapse.collapse{
    display:none !important;
    position:absolute !important;
    left:16px !important;
    right:16px !important;
    top:calc(100% + 10px) !important;
    width:auto !important;
    background:#ffffff !important;
    border:1px solid rgba(15,23,42,.08) !important;
    border-radius:20px !important;
    box-shadow:0 22px 48px rgba(15,23,42,.16) !important;
    padding:14px !important;
    z-index:10060 !important;
  }
  .home-apoena .home-desktop-header .navbar-collapse.open,
  .home-apoena .home-desktop-header .navbar .navbar-collapse.collapse.open{
    display:block !important;
  }
  .home-apoena .home-desktop-header .apoena-mobile-actions{
    display:flex !important;
    flex-wrap:wrap !important;
    gap:10px !important;
    margin:2px 0 14px !important;
  }
  .home-apoena .home-desktop-header .apoena-mobile-actions a{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    min-height:42px !important;
    padding:0 14px !important;
    border-radius:999px !important;
  }
  .home-apoena .home-desktop-header #navbar-menu > ul.navbar-nav,
  .home-apoena .home-desktop-header #navbar-menu > ul.nav,
  .home-apoena .home-desktop-header ul.navbar-center{
    display:flex !important;
    flex-direction:column !important;
    align-items:stretch !important;
    justify-content:flex-start !important;
    width:100% !important;
    gap:6px !important;
  }
  .home-apoena .home-desktop-header #navbar-menu > ul > li,
  .home-apoena .home-desktop-header #navbar-menu > ul > li > a{
    width:100% !important;
  }
  .home-apoena .home-desktop-header #navbar-menu > ul > li > a{
    justify-content:flex-start !important;
    height:auto !important;
    min-height:46px !important;
    padding:12px 14px !important;
    font-size:15px !important;
  }
  .home-apoena .home-desktop-header #navbar-menu > ul > li.dropdown > a::after{
    margin-left:auto !important;
  }
  .home-apoena .home-desktop-header #navbar-menu .dropdown-menu{
    position:static !important;
    float:none !important;
    margin:6px 0 0 !important;
    width:100% !important;
    box-shadow:none !important;
    border:1px solid rgba(15,23,42,.06) !important;
    background:#f8fafc !important;
  }
}


/* Final header polish v8 */
.home-apoena .home-desktop-header .navbar-brand{
  min-height:64px !important;
  padding:0 !important;
}
.home-apoena .home-desktop-header .navbar-brand .logo,
.home-apoena .home-desktop-header .navbar-brand .logo.logo-desktop{
  height:46px !important;
  max-height:46px !important;
  max-width:250px !important;
  width:auto !important;
  object-fit:contain !important;
}
@media (max-width: 820px){
  .home-apoena .home-desktop-header nav.navbar{overflow:visible !important;}
  .home-apoena .home-desktop-header .container-full{min-height:78px !important;padding:12px 16px !important;}
  .home-apoena .home-desktop-header .navbar-header,
  .home-apoena .home-desktop-header .navbar-brand,
  .home-apoena .home-desktop-header .navbar-toggle{position:relative !important;z-index:10080 !important;}
  .home-apoena .home-desktop-header .navbar-brand .logo.logo-mobile,
  .home-apoena .home-desktop-header .navbar-brand .logo{
    height:34px !important;
    max-height:34px !important;
    max-width:180px !important;
  }
  .home-apoena .home-desktop-header .navbar-collapse,
  .home-apoena .home-desktop-header .navbar .navbar-collapse.collapse{
    z-index:10090 !important;
    pointer-events:none !important;
  }
  .home-apoena .home-desktop-header .navbar-collapse.open,
  .home-apoena .home-desktop-header .navbar .navbar-collapse.collapse.open{
    pointer-events:auto !important;
  }
  .home-apoena .home-desktop-header #navbar-menu,
  .home-apoena .home-desktop-header #navbar-menu *{
    pointer-events:auto !important;
  }
  .home-apoena .home-desktop-header #navbar-menu > ul > li > a,
  .home-apoena .home-desktop-header #navbar-menu .dropdown-menu li a{
    position:relative !important;
    z-index:10091 !important;
    cursor:pointer !important;
    color:#374151 !important;
    background:transparent !important;
    border-radius:14px !important;
    transition:background .18s ease, color .18s ease, transform .18s ease !important;
    -webkit-tap-highlight-color: rgba(67,160,71,.16) !important;
  }
  .home-apoena .home-desktop-header #navbar-menu > ul > li > a:hover,
  .home-apoena .home-desktop-header #navbar-menu > ul > li > a:focus,
  .home-apoena .home-desktop-header #navbar-menu > ul > li > a:active,
  .home-apoena .home-desktop-header #navbar-menu > ul > li.menu-open > a,
  .home-apoena .home-desktop-header #navbar-menu .dropdown-menu li a:hover,
  .home-apoena .home-desktop-header #navbar-menu .dropdown-menu li a:focus,
  .home-apoena .home-desktop-header #navbar-menu .dropdown-menu li a:active{
    background:rgba(67,160,71,.10) !important;
    color:#1f2937 !important;
    transform:none !important;
  }
  .home-apoena .home-desktop-header #navbar-menu .dropdown-menu{
    display:none !important;
  }
  .home-apoena .home-desktop-header #navbar-menu > ul > li.menu-open > .dropdown-menu{
    display:block !important;
  }
  .home-apoena .overlay-screen{z-index:10040 !important;}
}



/* ===== Final definitive home header cleanup ===== */
.home-apoena .home-desktop-header,
.home-apoena .home-desktop-header *{box-sizing:border-box;}
.home-apoena .home-desktop-header nav.navbar{
  background:var(--home-header-bg,#fff) !important;
  box-shadow:0 14px 34px rgba(15,23,42,.08) !important;
  border-bottom:1px solid rgba(15,23,42,.06) !important;
}
.home-apoena .home-desktop-header .container-full{
  min-height:92px !important;
  padding:14px 28px !important;
  align-items:center !important;
}
.home-apoena .home-desktop-header .navbar-header{
  min-height:64px !important;
  display:flex !important;
  align-items:center !important;
}
.home-apoena .home-desktop-header .navbar-brand{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  min-height:64px !important;
  margin:0 !important;
  padding:0 !important;
  line-height:0 !important;
}
.home-apoena .home-desktop-header .navbar-brand img,
.home-apoena .home-desktop-header .navbar-brand .logo,
.home-apoena .home-desktop-header .navbar-brand .logo.logo-desktop{
  display:block !important;
  width:auto !important;
  height:52px !important;
  max-height:52px !important;
  max-width:260px !important;
  object-fit:contain !important;
  object-position:left center !important;
  vertical-align:middle !important;
  margin:0 !important;
}
.home-apoena .home-desktop-header .navbar-collapse,
.home-apoena .home-desktop-header #navbar-menu,
.home-apoena .home-desktop-header #navbar-menu > ul{
  background:transparent !important;
  box-shadow:none !important;
}
.home-apoena .home-desktop-header #navbar-menu > ul > li > a{
  color:var(--home-header-menu,#374151) !important;
  background:transparent !important;
  box-shadow:none !important;
}
.home-apoena .home-desktop-header #navbar-menu > ul > li > a:hover,
.home-apoena .home-desktop-header #navbar-menu > ul > li.active > a,
.home-apoena .home-desktop-header #navbar-menu > ul > li.current-menu-item > a{
  background:rgba(67,160,71,.10) !important;
  color:#1f2937 !important;
}
.home-apoena .banner-style-two .button,
.home-apoena .banner-style-two .button a,
.home-apoena .banner-style-two .button .animated-btn{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
}
.home-apoena .banner-style-two .button .animated-btn{
  min-width:176px !important;
  min-height:56px !important;
  padding:0 28px !important;
  gap:0 !important;
}
.home-apoena .banner-style-two .button .animated-btn .btn-ic{display:none !important;}

@media (max-width: 820px){
  .home-apoena .home-desktop-header .container-full{
    min-height:84px !important;
    padding:12px 16px !important;
    grid-template-columns:minmax(0,1fr) auto !important;
  }
  .home-apoena .home-desktop-header .navbar-header{
    min-height:56px !important;
    width:100% !important;
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:12px !important;
  }
  .home-apoena .home-desktop-header .navbar-brand{
    min-height:56px !important;
    max-width:calc(100vw - 104px) !important;
    flex:1 1 auto !important;
  }
  .home-apoena .home-desktop-header .navbar-brand .logo.logo-desktop{display:none !important;}
  .home-apoena .home-desktop-header .navbar-brand .logo.logo-mobile,
  .home-apoena .home-desktop-header .navbar-brand img.logo-mobile{
    display:block !important;
    width:auto !important;
    height:36px !important;
    max-height:36px !important;
    max-width:176px !important;
    object-fit:contain !important;
    object-position:left center !important;
    margin:0 !important;
  }
  .home-apoena .home-desktop-header .navbar-toggle{
    position:relative !important;
    z-index:10071 !important;
    flex:0 0 46px !important;
  }
  .home-apoena .home-desktop-header .navbar-collapse,
  .home-apoena .home-desktop-header .navbar .navbar-collapse.collapse{
    z-index:10070 !important;
    pointer-events:auto !important;
  }
  .home-apoena .home-desktop-header #navbar-menu > ul > li,
  .home-apoena .home-desktop-header #navbar-menu .dropdown-menu li,
  .home-apoena .home-desktop-header #navbar-menu a{
    pointer-events:auto !important;
  }
  .home-apoena .home-desktop-header #navbar-menu > ul > li > a,
  .home-apoena .home-desktop-header #navbar-menu .dropdown-menu li a{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
    min-height:46px !important;
    padding:12px 14px !important;
    border-radius:14px !important;
    background:transparent !important;
    color:#374151 !important;
    font-weight:700 !important;
    text-decoration:none !important;
    box-shadow:none !important;
    -webkit-tap-highlight-color:rgba(67,160,71,.12) !important;
  }
  .home-apoena .home-desktop-header #navbar-menu > ul > li > a:hover,
  .home-apoena .home-desktop-header #navbar-menu > ul > li > a:focus,
  .home-apoena .home-desktop-header #navbar-menu > ul > li > a:active,
  .home-apoena .home-desktop-header #navbar-menu .dropdown-menu li a:hover,
  .home-apoena .home-desktop-header #navbar-menu .dropdown-menu li a:focus,
  .home-apoena .home-desktop-header #navbar-menu .dropdown-menu li a:active{
    background:#f1f5f2 !important;
    color:#1f2937 !important;
  }
  .home-apoena .home-desktop-header #navbar-menu .dropdown-menu{
    position:static !important;
    display:none !important;
    margin:6px 0 0 !important;
    padding:6px !important;
    border:none !important;
    border-radius:14px !important;
    background:#f8faf8 !important;
    box-shadow:none !important;
  }
  .home-apoena .home-desktop-header #navbar-menu .dropdown.menu-open > .dropdown-menu{display:block !important;}
  .home-apoena .home-desktop-header .apoena-mobile-actions a{
    transition:background-color .18s ease,color .18s ease,transform .18s ease !important;
  }
  .home-apoena .home-desktop-header .apoena-mobile-actions a:hover,
  .home-apoena .home-desktop-header .apoena-mobile-actions a:focus,
  .home-apoena .home-desktop-header .apoena-mobile-actions a:active{transform:translateY(-1px) !important;}
}



/* Final header alignment fix: prevent logo brand from being offset downward */
.home-apoena .home-desktop-header nav.navbar .navbar-brand,
.home-apoena .home-desktop-header nav.navbar.navbar-style-one .navbar-brand,
.home-apoena .home-desktop-header nav.navbar .navbar-header .navbar-brand{
  position: static !important;
  top: auto !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
}

/* Final mobile overlay removal + interaction fix */
@media (max-width: 820px){
  .home-apoena .overlay-screen,
  .home-apoena .overlay-screen.open{
    display:none !important;
    opacity:0 !important;
    visibility:hidden !important;
    pointer-events:none !important;
  }
  .home-apoena .home-desktop-header .navbar-collapse,
  .home-apoena .home-desktop-header .navbar .navbar-collapse.collapse,
  .home-apoena .home-desktop-header #navbar-menu{
    pointer-events:none !important;
  }
  .home-apoena .home-desktop-header .navbar-collapse.open,
  .home-apoena .home-desktop-header .navbar .navbar-collapse.collapse.open,
  .home-apoena .home-desktop-header #navbar-menu.open{
    pointer-events:auto !important;
  }
  .home-apoena .home-desktop-header .navbar-collapse:not(.open),
  .home-apoena .home-desktop-header .navbar .navbar-collapse.collapse:not(.open){
    display:none !important;
  }
  .home-apoena .home-desktop-header .navbar-collapse.open,
  .home-apoena .home-desktop-header .navbar .navbar-collapse.collapse.open{
    display:block !important;
  }
}


/* ===== Logo size controls from admin ===== */
:root{
  --logo-home-desktop-width:220px;
  --logo-home-mobile-width:140px;
  --logo-inner-desktop-width:220px;
  --logo-inner-mobile-width:140px;
}

.home-apoena .home-desktop-header .navbar-brand .logo,
.home-apoena .home-desktop-header .navbar-brand .logo.logo-desktop{
  width:var(--logo-home-desktop-width) !important;
  max-width:var(--logo-home-desktop-width) !important;
  height:auto !important;
  max-height:none !important;
  object-fit:contain !important;
}

.layout-builder-nav:not(.layout-builder-nav--home) .brand__picture--inner{
  min-width:0 !important;
  width:auto !important;
}

.layout-builder-nav:not(.layout-builder-nav--home) .brand__logo--inner{
  width:var(--logo-inner-desktop-width) !important;
  max-width:var(--logo-inner-desktop-width) !important;
  min-width:0 !important;
  height:auto !important;
  max-height:72px !important;
  object-fit:contain !important;
}

@media (max-width: 980px){
  .home-apoena .home-desktop-header .navbar-brand .logo.logo-desktop{display:none !important;}
  .home-apoena .home-desktop-header .navbar-brand .logo.logo-mobile,
  .home-apoena .home-desktop-header .navbar-brand .logo{
    width:var(--logo-home-mobile-width) !important;
    max-width:var(--logo-home-mobile-width) !important;
    height:auto !important;
    max-height:none !important;
  }

  .layout-builder-nav:not(.layout-builder-nav--home) .brand__logo--inner{
    width:var(--logo-inner-mobile-width) !important;
    max-width:var(--logo-inner-mobile-width) !important;
    height:auto !important;
    max-height:56px !important;
  }
}


/* 2026-03-20 — Ajustes institucionais Apoena */
.home-desktop-header .apoena-ext-btns .admin-link,
.home-desktop-header .apoena-mobile-actions .admin-link,
.nav__icons .iconbtn[href="/admin"],
.nav__icons--mobile .iconbtn[href="/admin"]{display:none !important;}

.choose-premium-area--dashboard .choose-us-style-one-info .title{max-width:14ch;}
.choose-us-style-one-thumb--dashboard img{border-radius:28px;box-shadow:0 24px 54px rgba(15,23,42,.10);}
.impact-copy-grid,
.impact-stats-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;}
.impact-copy-card,
.impact-stat-card,
.institutional-summary-card{background:rgba(255,255,255,.96);border:1px solid rgba(15,23,42,.06);border-radius:24px;box-shadow:0 18px 42px rgba(15,23,42,.08);padding:22px;}
.impact-copy-card h4,
.institutional-summary-card h3{margin:0 0 8px;font-size:1.1rem;color:#113a2b;}
.impact-copy-card p,
.institutional-summary-card p{margin:0;color:#4b5563;line-height:1.7;}
.impact-stat-card{display:flex;flex-direction:column;justify-content:center;min-height:150px;background:linear-gradient(180deg,#ffffff 0%,#f4faf6 100%);}
.impact-stat-value-wrap{display:flex;align-items:flex-start;gap:4px;line-height:1;}
.impact-stat-value{font-size:3rem;font-weight:800;letter-spacing:-.04em;color:#0b5f45;}
.impact-stat-suffix{font-size:1.15rem;font-weight:800;color:#236b4b;margin-top:6px;}
.impact-stat-label{display:block;margin-top:10px;color:#374151;font-weight:600;line-height:1.5;}

.brand-style-one-items--summary{display:block;}
.institutional-summary-card{min-height:100%;display:flex;flex-direction:column;justify-content:center;background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.18);color:#fff;}
.institutional-summary-card h3,.institutional-summary-card p{color:#fff;}

.floating-whatsapp{position:fixed;right:22px;bottom:22px;z-index:10050;display:inline-flex;align-items:center;gap:10px;padding:14px 16px;border-radius:999px;background:#25d366;color:#fff;text-decoration:none;font-weight:800;box-shadow:0 18px 42px rgba(0,0,0,.18);}
.floating-whatsapp svg{width:20px;height:20px;display:block;fill:currentColor;}
.floating-whatsapp:hover{color:#fff;transform:translateY(-1px);}

@media (max-width: 991px){
  .impact-copy-grid,
  .impact-stats-grid{grid-template-columns:1fr;}
}

@media (max-width: 767px){
  .floating-whatsapp{right:14px;bottom:14px;padding:12px 14px;}
  .floating-whatsapp span{display:none;}
  .impact-stat-value{font-size:2.4rem;}
}

/* 2026-03-20 — Ajustes finos home Apoena */
.home-apoena-body .feature-style-one-area--apoena .feature-style-one-copy .title{
  font-size:clamp(44px,5vw,58px) !important;
  line-height:1.05 !important;
  letter-spacing:-.02em !important;
  font-family:'Montserrat',sans-serif !important;
  font-weight:800 !important;
}
.home-apoena-body .feature-style-one-card{
  background:linear-gradient(180deg,#ffffff 0%,#fbfcfa 100%) !important;
  border:1px solid rgba(15,23,42,.08) !important;
  box-shadow:0 24px 58px rgba(15,23,42,.10) !important;
}
.home-apoena-body .feature-style-one-card__item{
  gap:16px !important;
}
.home-apoena-body .feature-style-one-card__icon{
  width:64px !important;
  height:64px !important;
  flex:0 0 64px !important;
  border-radius:18px !important;
  background:linear-gradient(180deg,#2d7a57 0%,#1f5f43 100%) !important;
  box-shadow:0 12px 24px rgba(31,95,67,.22) !important;
  border:1px solid rgba(255,255,255,.28) !important;
}
.home-apoena-body .feature-style-one-card__icon img{
  max-width:34px !important;
  max-height:34px !important;
  filter:brightness(0) invert(1) contrast(1.15) !important;
  opacity:1 !important;
}
.home-apoena-body .feature-style-one-card__title{
  font-size:22px !important;
  font-family:'Montserrat',sans-serif !important;
  font-weight:700 !important;
}

.home-apoena-body .gallery-premium-area .site-heading{
  margin-bottom:42px !important;
}
.home-apoena-body .gallery-premium-area .gallery-items{
  gap:28px !important;
}
.home-apoena-body .gallery-premium-area .gallery-item-premium-wrap{
  height:100%;
}
.home-apoena-body .gallery-premium-area .gallery-card-premium{
  display:flex !important;
  flex-direction:column !important;
  border-radius:28px !important;
  overflow:hidden !important;
  background:#ffffff !important;
  border:1px solid rgba(15,23,42,.08) !important;
  box-shadow:0 24px 60px rgba(15,23,42,.10) !important;
  transform:translateY(0);
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.home-apoena-body .gallery-premium-area .gallery-card-premium:hover{
  transform:translateY(-6px);
  box-shadow:0 30px 70px rgba(15,23,42,.14) !important;
  border-color:rgba(35,107,75,.18) !important;
}
.home-apoena-body .gallery-premium-area .gallery-card-premium img{
  aspect-ratio:4 / 3 !important;
  min-height:280px;
}
.home-apoena-body .gallery-premium-area .gallery-card-premium .overlay{
  position:relative !important;
  padding:22px 24px 26px !important;
  background:linear-gradient(180deg,#ffffff 0%,#f7faf8 100%) !important;
  border-top:1px solid rgba(15,23,42,.06) !important;
  min-height:118px;
}
.home-apoena-body .gallery-premium-area .gallery-card-premium .overlay::before{
  content:'';
  position:absolute;
  left:24px;
  right:24px;
  top:0;
  height:1px;
  background:linear-gradient(90deg,rgba(35,107,75,0),rgba(35,107,75,.18),rgba(35,107,75,0));
}
.home-apoena-body .gallery-premium-area .gallery-card-premium .vt-f-title{
  color:#2d7a57 !important;
  font-size:12px !important;
  letter-spacing:.12em !important;
  margin-bottom:10px !important;
}
.home-apoena-body .gallery-premium-area .gallery-card-premium .vt-f-text,
.home-apoena-body .gallery-premium-area .gallery-card-premium .vt-f-text a{
  display:block;
  color:#0f1720 !important;
  font-size:20px !important;
  line-height:1.28 !important;
  font-weight:700 !important;
}
@media (max-width: 991px){
  .home-apoena-body .feature-style-one-area--apoena .feature-style-one-copy .title{
    font-size:clamp(38px,6vw,48px) !important;
  }
  .home-apoena-body .gallery-premium-area .gallery-card-premium img{
    min-height:240px;
  }
}
@media (max-width: 767px){
  .home-apoena-body .feature-style-one-card__icon{
    width:56px !important;
    height:56px !important;
    flex-basis:56px !important;
  }
  .home-apoena-body .feature-style-one-card__icon img{
    max-width:28px !important;
    max-height:28px !important;
  }
  .home-apoena-body .gallery-premium-area .gallery-items{
    gap:20px !important;
  }
  .home-apoena-body .gallery-premium-area .gallery-card-premium img{
    min-height:220px;
  }
  .home-apoena-body .gallery-premium-area .gallery-card-premium .overlay{
    padding:18px 20px 22px !important;
    min-height:auto;
  }
}


/* 2026-03-20 — Ajuste premium final: Áreas de atuação + Galeria */
.home-apoena-body .services-premium-area .mask-text.large{
  font-size: clamp(56px, 7vw, 102px) !important;
  line-height: 1.12 !important;
  letter-spacing: -.03em !important;
  margin: 0 auto 14px !important;
  padding: .08em 0 .16em !important;
  max-width: 980px !important;
  overflow: visible !important;
  background-size: cover !important;
  background-position: center !important;
}
.home-apoena-body .services-premium-area .service-card-premium{
  border-radius: 30px !important;
  border: 1px solid rgba(22, 45, 33, .08) !important;
  box-shadow: 0 26px 65px rgba(15,23,42,.10) !important;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease !important;
}
.home-apoena-body .services-premium-area .service-card-premium:hover{
  transform: translateY(-8px) !important;
  box-shadow: 0 34px 80px rgba(15,23,42,.16) !important;
  border-color: rgba(35,107,75,.22) !important;
}
.home-apoena-body .services-premium-area .service-card-premium .thumb{
  position: relative !important;
}
.home-apoena-body .services-premium-area .service-card-premium .thumb::after{
  content:'';
  position:absolute;
  inset:auto 0 0 0;
  height: 32%;
  background: linear-gradient(180deg, rgba(9,18,14,0) 0%, rgba(9,18,14,.22) 100%);
  pointer-events:none;
}
.home-apoena-body .services-premium-area .service-card-premium .overlay{
  grid-template-columns: 70px minmax(0,1fr) !important;
  gap: 18px !important;
  padding: 24px !important;
  background: linear-gradient(180deg,#ffffff 0%, #f7faf8 100%) !important;
}
.home-apoena-body .services-premium-area .service-card-premium .icon{
  width: 70px !important;
  height: 70px !important;
  min-width: 70px !important;
  border-radius: 22px !important;
  background: linear-gradient(180deg,#2f855a 0%, #1f5f43 100%) !important;
  border: 1px solid rgba(255,255,255,.28) !important;
  box-shadow: 0 14px 28px rgba(31,95,67,.24) !important;
}
.home-apoena-body .services-premium-area .service-card-premium .icon img{
  max-width: 34px !important;
  max-height: 34px !important;
  opacity: 1 !important;
  filter: brightness(0) invert(1) contrast(1.18) !important;
}
.home-apoena-body .services-premium-area .service-card-premium__fallback-icon{
  color: #fff !important;
}
.home-apoena-body .services-premium-area .service-card-premium .info h4{
  margin: 2px 0 6px !important;
  font-size: 26px !important;
  line-height: 1.15 !important;
}
.home-apoena-body .services-premium-area .service-card-premium .info span{
  color: #5e6a62 !important;
  font-size: 13px !important;
  letter-spacing: .12em !important;
  font-weight: 700 !important;
}

.home-apoena-body .gallery-premium-area .site-heading .title{
  font-size: clamp(44px, 5vw, 74px) !important;
  line-height: 1.02 !important;
  letter-spacing: -.03em !important;
}
.home-apoena-body .gallery-premium-area .site-heading .sub-title{
  margin-bottom: 10px !important;
  letter-spacing: .06em !important;
}
.home-apoena-body .gallery-premium-area .gallery-items{
  gap: 30px !important;
}
.home-apoena-body .gallery-premium-area .gallery-item-premium-wrap{
  min-height: 0;
}
.home-apoena-body .gallery-premium-area .gallery-card-premium{
  position: relative !important;
  min-height: 460px !important;
  border-radius: 32px !important;
  overflow: hidden !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  background: #102017 !important;
  box-shadow: 0 28px 80px rgba(15,23,42,.16) !important;
  isolation: isolate;
}
.home-apoena-body .gallery-premium-area .gallery-card-premium::before{
  content:'';
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(8,16,12,.02) 0%, rgba(8,16,12,.18) 34%, rgba(8,16,12,.82) 100%);
  z-index:1;
  pointer-events:none;
}
.home-apoena-body .gallery-premium-area .gallery-card-premium:hover{
  transform: translateY(-10px) scale(1.01) !important;
  box-shadow: 0 36px 90px rgba(15,23,42,.22) !important;
}
.home-apoena-body .gallery-premium-area .gallery-card-premium img{
  width:100% !important;
  height:100% !important;
  min-height:460px !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  transform: scale(1.0);
  transition: transform .45s ease !important;
}
.home-apoena-body .gallery-premium-area .gallery-card-premium:hover img{
  transform: scale(1.06);
}
.home-apoena-body .gallery-premium-area .gallery-card-premium .overlay{
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 2 !important;
  padding: 26px 26px 28px !important;
  min-height: 0 !important;
  background: transparent !important;
  border-top: 0 !important;
}
.home-apoena-body .gallery-premium-area .gallery-card-premium .overlay::before{
  display:none !important;
}
.home-apoena-body .gallery-premium-area .gallery-card-premium .vt-f-title{
  color: rgba(212, 246, 220, .92) !important;
  font-size: 12px !important;
  letter-spacing: .16em !important;
  margin: 0 0 12px !important;
}
.home-apoena-body .gallery-premium-area .gallery-card-premium .vt-f-text,
.home-apoena-body .gallery-premium-area .gallery-card-premium .vt-f-text a{
  color: #ffffff !important;
  font-size: 30px !important;
  line-height: 1.06 !important;
  font-weight: 800 !important;
  text-shadow: 0 8px 24px rgba(0,0,0,.28);
}
@media (max-width: 991px){
  .home-apoena-body .services-premium-area .mask-text.large{
    font-size: clamp(44px, 9vw, 76px) !important;
    line-height: 1.1 !important;
    padding-bottom: .14em !important;
  }
  .home-apoena-body .services-premium-area .service-card-premium .overlay{
    grid-template-columns: 60px minmax(0,1fr) !important;
  }
  .home-apoena-body .services-premium-area .service-card-premium .icon{
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
  }
  .home-apoena-body .gallery-premium-area .gallery-card-premium,
  .home-apoena-body .gallery-premium-area .gallery-card-premium img{
    min-height: 400px !important;
  }
  .home-apoena-body .gallery-premium-area .gallery-card-premium .vt-f-text,
  .home-apoena-body .gallery-premium-area .gallery-card-premium .vt-f-text a{
    font-size: 24px !important;
  }
}
@media (max-width: 767px){
  .home-apoena-body .services-premium-area .mask-text.large{
    font-size: clamp(34px, 12vw, 54px) !important;
    line-height: 1.08 !important;
    padding-bottom: .16em !important;
  }
  .home-apoena-body .services-premium-area .service-card-premium .overlay{
    grid-template-columns: 52px minmax(0,1fr) !important;
    padding: 18px !important;
  }
  .home-apoena-body .services-premium-area .service-card-premium .icon{
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    border-radius: 16px !important;
  }
  .home-apoena-body .services-premium-area .service-card-premium .icon img{
    max-width: 26px !important;
    max-height: 26px !important;
  }
  .home-apoena-body .services-premium-area .service-card-premium .info h4{
    font-size: 21px !important;
  }
  .home-apoena-body .gallery-premium-area .gallery-card-premium,
  .home-apoena-body .gallery-premium-area .gallery-card-premium img{
    min-height: 340px !important;
  }
  .home-apoena-body .gallery-premium-area .gallery-card-premium .overlay{
    padding: 20px 20px 22px !important;
  }
  .home-apoena-body .gallery-premium-area .gallery-card-premium .vt-f-text,
  .home-apoena-body .gallery-premium-area .gallery-card-premium .vt-f-text a{
    font-size: 22px !important;
  }
}


/* 2026-03-20 — Fix definitivo: título Áreas de atuação sem corte */
.home-apoena-body .services-premium-area .site-heading{
  overflow: visible !important;
}
.home-apoena-body .services-premium-area .site-heading .mask-text.large{
  display: inline-block !important;
  white-space: normal !important;
  max-width: min(100%, 1080px) !important;
  padding: .14em .16em .24em !important;
  margin-left: auto !important;
  margin-right: auto !important;
  overflow: visible !important;
  text-rendering: geometricPrecision;
}
@media (max-width: 991px){
  .home-apoena-body .services-premium-area .site-heading .mask-text.large{
    padding: .12em .12em .22em !important;
  }
}
@media (max-width: 767px){
  .home-apoena-body .services-premium-area .site-heading .mask-text.large{
    padding: .1em .08em .2em !important;
  }
}


/* =====================================================
   HOME PREMIUM REVIEW 2026-03-20
   Revisão visual completa da home Apoena
   ===================================================== */
.home-apoena-body{
  --apoena-surface:#ffffff;
  --apoena-surface-soft:#f6faf7;
  --apoena-ink:#0f1728;
  --apoena-muted:#667085;
  --apoena-line:rgba(15,23,42,.08);
  --apoena-shadow-soft:0 18px 50px rgba(15,23,42,.07);
  --apoena-shadow-card:0 24px 64px rgba(11,95,69,.10);
  --apoena-radius-lg:30px;
  --apoena-radius-md:22px;
}

.home-apoena-body .default-padding{
  padding-top:92px;
  padding-bottom:92px;
}

.home-apoena-body .site-heading{
  margin-bottom:40px;
}

.home-apoena-body .site-heading .sub-title{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(11,95,69,.08);
  color:#0b5f45;
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.home-apoena-body .site-heading .title{
  margin:0;
  color:var(--apoena-ink);
  letter-spacing:-.04em;
  line-height:1.04;
}

.home-apoena-body .btn,
.home-apoena-body .btn-theme,
.home-apoena-body .btn.btn-theme{
  border-radius:16px;
  font-weight:800;
  letter-spacing:.01em;
  transition:transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.home-apoena-body .btn:hover,
.home-apoena-body .btn-theme:hover,
.home-apoena-body .btn.btn-theme:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 36px rgba(11,95,69,.18);
}

.home-apoena-body .banner-style-two .content h2,
.home-apoena-body .banner-area .content h2{
  text-shadow:0 14px 40px rgba(0,0,0,.22);
}

.home-apoena-body .banner-style-two .content p,
.home-apoena-body .banner-area .content p{
  max-width:62ch;
  color:rgba(255,255,255,.92);
}

.home-apoena-body .feature-style-one-area--apoena{
  background:
    radial-gradient(circle at top right, rgba(232,183,79,.12), transparent 28%),
    linear-gradient(180deg, #f7fbf8 0%, #f5f7f1 100%);
}

.home-apoena-body .feature-style-one-copy .title{
  max-width:12ch;
}

.home-apoena-body .feature-style-one-card{
  border:1px solid rgba(15,23,42,.06);
  box-shadow:var(--apoena-shadow-card);
}

.home-apoena-body .feature-style-one-card__item{
  transition:transform .22s ease;
}

.home-apoena-body .feature-style-one-card__item:hover{
  transform:translateX(4px);
}

.home-apoena-body .services-premium-area,
.home-apoena-body .choose-premium-area,
.home-apoena-body .gallery-premium-area,
.home-apoena-body .home-blog-area{
  background-image:
    radial-gradient(circle at top left, rgba(11,95,69,.04), transparent 26%),
    radial-gradient(circle at bottom right, rgba(232,183,79,.08), transparent 24%);
}

.home-apoena-body .services-premium-area .service-card-premium,
.home-apoena-body .gallery-premium-area .gallery-card-premium,
.home-apoena-body .home-blog-card,
.home-apoena-body .choose-premium-area .choose-us-style-one-info,
.home-apoena-body .cta-premium-area .institutional-summary-card{
  box-shadow:var(--apoena-shadow-soft);
}

.home-apoena-body .services-premium-area .service-card-premium,
.home-apoena-body .gallery-premium-area .gallery-card-premium,
.home-apoena-body .home-blog-card{
  transition:transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.home-apoena-body .services-premium-area .service-card-premium:hover,
.home-apoena-body .gallery-premium-area .gallery-card-premium:hover,
.home-apoena-body .home-blog-card:hover{
  transform:translateY(-6px);
  box-shadow:0 28px 70px rgba(15,23,42,.11);
  border-color:rgba(11,95,69,.14);
}

.home-apoena-body .services-premium-area .service-card-premium .info h4 a,
.home-apoena-body .gallery-premium-area .gallery-card-premium .vt-f-text a,
.home-apoena-body .home-blog-card h4 a{
  transition:color .2s ease;
}

.home-apoena-body .services-premium-area .service-card-premium:hover .info h4 a,
.home-apoena-body .gallery-premium-area .gallery-card-premium:hover .vt-f-text a,
.home-apoena-body .home-blog-card:hover h4 a{
  color:#0b5f45;
}

.home-apoena-body .services-premium-area .service-card-premium .overlay{
  min-height:156px;
}

.home-apoena-body .services-premium-area .swiper-button-prev,
.home-apoena-body .services-premium-area .swiper-button-next{
  border:1px solid rgba(255,255,255,.18);
}

.home-apoena-body .timeline-area{
  padding-top:18px !important;
  padding-bottom:54px !important;
}

.home-apoena-body .timeline-area .item,
.home-apoena-body .timeline__item,
.home-apoena-body .time-line-box,
.home-apoena-body .timeline-items .single-item{
  border-radius:22px;
}

.home-apoena-body .choose-premium-area .choose-us-style-one-info{
  background:rgba(255,255,255,.94);
}

.home-apoena-body .choose-premium-area .fun-fact-style-flex .counter{
  border-radius:20px;
  box-shadow:0 16px 32px rgba(8,60,44,.16);
}

.home-apoena-body .gallery-premium-area .gallery-card-premium img,
.home-apoena-body .home-blog-card .thumb img{
  transition:transform .35s ease;
}

.home-apoena-body .gallery-premium-area .gallery-card-premium:hover img,
.home-apoena-body .home-blog-card:hover .thumb img{
  transform:scale(1.04);
}

.home-apoena-body .cta-premium-area{
  position:relative;
  overflow:hidden;
}

.home-apoena-body .cta-premium-area .brand-style-one-info .cta-visible-title{
  text-shadow:0 14px 36px rgba(0,0,0,.12);
}

.home-apoena-body .cta-premium-area .institutional-summary-card{
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(10px);
}

.home-apoena-body .home-blog-area{
  padding-bottom:76px !important;
}

.home-apoena-body .home-blog-card{
  border-radius:26px;
}

.home-apoena-body .home-blog-card .info{
  padding:24px;
}

.home-apoena-body .home-blog-empty{
  padding:24px 28px;
  border-radius:20px;
  background:#fff;
  border:1px dashed rgba(11,95,69,.22);
  color:#475467;
  text-align:center;
}

.footer-custom-style{
  color:var(--footer-text,#eef8f2);
  background:
    radial-gradient(circle at top right, rgba(232,183,79,.16), transparent 24%),
    linear-gradient(135deg,var(--footer-bg-start,#083c2c) 0%, color-mix(in srgb, var(--footer-bg-start,#083c2c) 48%, var(--footer-bg-end,#0b5f45) 52%) 52%, var(--footer-bg-end,#0b5f45) 100%);
}


.footer-custom-style,
.footer-custom-style .widget-title,
.footer-custom-style p,
.footer-custom-style a,
.footer-custom-style li,
.footer-custom-style strong,
.footer-custom-style .content{color:var(--footer-text,#eef8f2);}
.footer-custom-style .f-items{
  padding-top:88px;
  padding-bottom:48px;
}

.footer-custom-style .footer-premium-grid{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(180px,.72fr) minmax(280px,1fr);
  gap:34px;
  align-items:start;
}

.footer-custom-style .footer-item{
  min-width:0;
}

.footer-custom-style .footer-item--about{
  padding-right:34px;
  border-right:1px solid color-mix(in srgb, var(--footer-border,#ffffff) 22%, transparent);
}

.footer-custom-style .footer-item--nav{
  padding-left:4px;
}

.footer-custom-style .footer-item--contact{
  display:block;
}

.footer-custom-style .footer-contact-card{
  width:100%;
  max-width:100%;
  padding:28px 30px;
  border-radius:26px;
  background:color-mix(in srgb, var(--footer-text,#fff) 10%, transparent);
  border:1px solid color-mix(in srgb, var(--footer-border,#ffffff) 22%, transparent);
  box-shadow:0 24px 60px rgba(0,0,0,.12);
}

.footer-custom-style .footer-item.contact,
.footer-custom-style .footer-item.contact ul,
.footer-custom-style .footer-item.contact .content,
.footer-custom-style .footer-item.contact .widget-title{
  width:100%;
  max-width:100%;
}

.footer-custom-style .footer-item.contact{
  padding-left:0;
}

.footer-custom-style .footer-item.contact .widget-title{
  margin:0 0 20px;
}

.footer-custom-style .footer-contact-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:16px;
}

.footer-custom-style .footer-contact-list li{
  display:grid;
  grid-template-columns:22px minmax(0,1fr);
  gap:14px;
  align-items:flex-start;
}

.footer-custom-style .footer-item.contact .icon{
  width:22px;
  min-width:22px;
  justify-content:flex-start;
}

.footer-custom-style .footer-item.contact .content{
  line-height:1.7;
  color:var(--footer-text,#eef8f2);
}

.footer-custom-style .widget_nav_menu .menu{
  gap:12px;
}

.footer-custom-style .widget_nav_menu .menu a{
  opacity:.9;
  color:var(--footer-text,#eef8f2);
}

.footer-custom-style .widget_nav_menu .menu a:hover{
  opacity:1;
}

.footer-custom-style .footer-bottom{
  margin-top:10px;
  border-top:1px solid color-mix(in srgb, var(--footer-border,#ffffff) 24%, transparent);
}

.footer-custom-style .footer-bottom p{
  letter-spacing:.01em;
  color:var(--footer-text,#eef8f2);
}

@media (max-width: 1199px){
  .home-apoena-body .default-padding{
    padding-top:78px;
    padding-bottom:78px;
  }

  .footer-custom-style .footer-premium-grid{
    grid-template-columns:minmax(0,1fr) minmax(170px,.7fr) minmax(240px,.95fr);
    gap:26px;
  }

  .footer-custom-style .footer-item--about{
    padding-right:22px;
  }

  .footer-custom-style .footer-contact-card{
    padding:24px 24px;
  }
}

@media (max-width: 991px){
  .home-apoena-body .default-padding{
    padding-top:64px;
    padding-bottom:64px;
  }

  .home-apoena-body .site-heading{
    margin-bottom:32px;
  }

  .home-apoena-body .feature-style-one-copy .title{
    max-width:none;
  }

  .footer-custom-style .f-items{
    padding-top:66px;
    padding-bottom:36px;
  }

  .footer-custom-style .footer-premium-grid{
    grid-template-columns:1fr 1fr;
  }

  .footer-custom-style .footer-item--about{
    grid-column:1 / -1;
    border-right:0;
    padding-right:0;
    padding-bottom:8px;
    border-bottom:1px solid rgba(255,255,255,.12);
  }
}

@media (max-width: 767px){
  .home-apoena-body .default-padding{
    padding-top:52px;
    padding-bottom:52px;
  }

  .home-apoena-body .site-heading .sub-title{
    padding:7px 12px;
    font-size:12px;
  }

  .home-apoena-body .site-heading .title{
    line-height:1.08;
  }

  .home-apoena-body .services-premium-area .service-card-premium .overlay{
    min-height:0;
  }

  .footer-custom-style .footer-premium-grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  .footer-custom-style .footer-item--about{
    padding-bottom:22px;
  }

  .footer-custom-style .footer-contact-card{
    padding:22px 20px;
    border-radius:22px;
  }

  .footer-custom-style .footer-contact-list li{
    grid-template-columns:20px minmax(0,1fr);
    gap:12px;
  }
}


/* Premium hero transition without changing the visual language */
.home-apoena-body .banner-fade.is-fade-slider{
  position: relative;
}
.home-apoena-body .banner-fade.is-fade-slider .swiper-wrapper{
  position: relative;
  min-height: inherit;
}
.home-apoena-body .banner-fade.is-fade-slider .swiper-slide.fade-slide{
  position: absolute;
  inset: 0;
  display: block !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--hero-fade-duration, 950ms) cubic-bezier(.22,.61,.36,1),
    visibility 0s linear var(--hero-fade-duration, 950ms);
}
.home-apoena-body .banner-fade.is-fade-slider .swiper-slide.fade-slide.is-active{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
  transition:
    opacity var(--hero-fade-duration, 950ms) cubic-bezier(.22,.61,.36,1),
    visibility 0s linear 0s;
}
.home-apoena-body .banner-fade.is-fade-slider .swiper-slide.fade-slide .banner-thumb{
  transform: scale(1.02);
  transition: transform 6200ms cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.home-apoena-body .banner-fade.is-fade-slider .swiper-slide.fade-slide.is-active .banner-thumb{
  transform: scale(1.08);
}
.home-apoena-body .banner-fade.is-fade-slider .swiper-slide.fade-slide .content > *{
  transform: translate3d(0, 22px, 0);
  opacity: 0;
  transition:
    opacity 650ms ease,
    transform 850ms cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.home-apoena-body .banner-fade.is-fade-slider .swiper-slide.fade-slide.is-active .content > *{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.home-apoena-body .banner-fade.is-fade-slider .swiper-slide.fade-slide.is-active .content > *:nth-child(1){ transition-delay: 120ms; }
.home-apoena-body .banner-fade.is-fade-slider .swiper-slide.fade-slide.is-active .content > *:nth-child(2){ transition-delay: 220ms; }
.home-apoena-body .banner-fade.is-fade-slider .swiper-slide.fade-slide.is-active .content > *:nth-child(3){ transition-delay: 320ms; }
.home-apoena-body .banner-fade.is-fade-slider .swiper-button-prev,
.home-apoena-body .banner-fade.is-fade-slider .swiper-button-next{
  transition: transform .28s ease, opacity .28s ease, background-color .28s ease;
}
.home-apoena-body .banner-fade.is-fade-slider .swiper-button-prev:hover,
.home-apoena-body .banner-fade.is-fade-slider .swiper-button-next:hover{
  transform: translateY(-2px) scale(1.03);
}
@media (prefers-reduced-motion: reduce){
  .home-apoena-body .banner-fade.is-fade-slider .swiper-slide.fade-slide,
  .home-apoena-body .banner-fade.is-fade-slider .swiper-slide.fade-slide .banner-thumb,
  .home-apoena-body .banner-fade.is-fade-slider .swiper-slide.fade-slide .content > *{
    transition: none !important;
    transform: none !important;
  }
}


.pb-colorize, .pb-colorize .muted, .pb-colorize .kicker, .pb-colorize .link, .pb-colorize .stat__label, .pb-colorize .gallery__k, .pb-colorize .gallery__t, .pb-colorize .numbers-strip__item span, .pb-colorize .logo-strip__item span, .pb-colorize .timeline__title, .pb-colorize .info-list li, .pb-colorize .contact__intro, .pb-colorize .acc summary, .pb-colorize .acc__body p{color:var(--pb-text-color) !important;}
.pb-colorize h1, .pb-colorize h2, .pb-colorize h3, .pb-colorize h4, .pb-colorize h5, .pb-colorize h6, .pb-colorize strong, .pb-colorize .hero__title, .pb-colorize .hero__kicker, .pb-colorize .timeline__year, .pb-colorize .stat__value, .pb-colorize .numbers-strip__item strong, .pb-colorize .step-card__number{color:var(--pb-heading-color) !important;}
.pb-colorize a:not(.btn){color:var(--pb-link-color) !important;}
.pb-colorize .contact__map iframe{box-shadow:0 24px 60px rgba(15,23,42,.12);}


.instagram-feed-section .section-actions{margin-top:28px}
.instagram-feed-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;align-items:start}
.instagram-feed-card{background:rgba(255,255,255,.94);border:1px solid rgba(11,95,69,.12);border-radius:24px;overflow:hidden;box-shadow:0 18px 40px rgba(7,27,20,.08);transition:transform .25s ease,box-shadow .25s ease}
.instagram-feed-card:hover{transform:translateY(-6px);box-shadow:0 24px 48px rgba(7,27,20,.12)}
.instagram-feed-card__frame{position:relative;background:#fff;min-height:540px}
.instagram-feed-card__frame iframe{display:block;width:100%;height:100%;min-height:540px;border:0;background:#fff}
.instagram-feed-card__meta{display:flex;justify-content:space-between;gap:16px;align-items:center;padding:16px 18px 18px;flex-wrap:wrap}
.instagram-feed-card__meta strong{font-size:1rem;line-height:1.4;color:#11231c}
@media (max-width: 1100px){.instagram-feed-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width: 767px){.instagram-feed-grid{grid-template-columns:1fr}.instagram-feed-card__frame,.instagram-feed-card__frame iframe{min-height:460px}}


.home-apoena-body .timeline-area .timeline-items{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:22px;
  position:relative;
}

.home-apoena-body .timeline-area .timeline-item{
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,251,248,.98));
  border:1px solid rgba(11,95,69,.08);
  box-shadow:0 18px 44px rgba(8,60,44,.10);
  border-radius:24px;
  padding:18px;
  transition:transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease, border-color .35s ease;
}

.home-apoena-body .timeline-area .timeline-item::before{
  content:'';
  position:absolute;
  inset:0 0 auto 0;
  height:4px;
  background:linear-gradient(90deg, #0b5f45, #f7b500);
  opacity:.92;
}

.home-apoena-body .timeline-area .timeline-item:hover{
  transform:translateY(-8px);
  box-shadow:0 26px 56px rgba(8,60,44,.16);
  border-color:rgba(11,95,69,.18);
}

.home-apoena-body .timeline-area .timeline-item__media{
  position:relative;
  height:180px;
  border-radius:18px;
  overflow:hidden;
  margin-bottom:16px;
  background:linear-gradient(135deg, rgba(11,95,69,.12), rgba(247,181,0,.12));
}

.home-apoena-body .timeline-area .timeline-item__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s cubic-bezier(.22,1,.36,1), filter .45s ease;
}

.home-apoena-body .timeline-area .timeline-item:hover .timeline-item__media img{
  transform:scale(1.06);
  filter:saturate(1.04);
}

.home-apoena-body .timeline-area .timeline-item__content{
  position:relative;
}

.home-apoena-body .timeline-area .timeline-item .vt-year{
  margin-bottom:8px;
  font-size:clamp(32px, 4vw, 42px);
  line-height:1;
}

.home-apoena-body .timeline-area .timeline-item .vt-title{
  margin:0;
}

@media (max-width: 1199.98px){
  .home-apoena-body .timeline-area .timeline-items{grid-template-columns:repeat(2, minmax(0, 1fr));}
}

@media (max-width: 767.98px){
  .home-apoena-body .timeline-area .timeline-items{grid-template-columns:1fr; gap:16px;}
  .home-apoena-body .timeline-area .timeline-item__media{height:200px;}
}


/* Final fixes: timeline layout + CTA/Brands full-card images */
.home-apoena-body .timeline-area .timeline-items{
  position:relative;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:28px 72px;
  align-items:start;
}
.home-apoena-body .timeline-area .timeline-items::before{
  content:"";
  position:absolute;
  top:12px;
  bottom:12px;
  left:50%;
  width:3px;
  transform:translateX(-50%);
  background:linear-gradient(180deg, rgba(11,95,69,.15) 0%, #0b5f45 45%, rgba(11,95,69,.2) 100%);
  border-radius:999px;
}
.home-apoena-body .timeline-area .timeline-item{
  position:relative;
  z-index:1;
}
.home-apoena-body .timeline-area .timeline-item--left{grid-column:1;}
.home-apoena-body .timeline-area .timeline-item--right{grid-column:2;}
.home-apoena-body .timeline-area .timeline-item__card{
  position:relative;
  background:#fff;
  border:1px solid rgba(11,95,69,.08);
  border-radius:28px;
  box-shadow:0 22px 48px rgba(15,23,42,.08);
  overflow:hidden;
}
.home-apoena-body .timeline-area .timeline-item__dot{
  position:absolute;
  top:44px;
  width:18px;
  height:18px;
  border-radius:999px;
  background:#0b5f45;
  border:4px solid #e8f2ed;
  box-shadow:0 0 0 6px rgba(11,95,69,.08);
}
.home-apoena-body .timeline-area .timeline-item--left .timeline-item__dot{right:-45px;}
.home-apoena-body .timeline-area .timeline-item--right .timeline-item__dot{left:-45px;}
.home-apoena-body .timeline-area .timeline-item__card::after{
  content:"";
  position:absolute;
  top:50px;
  width:44px;
  height:2px;
  background:#0b5f45;
  opacity:.28;
}
.home-apoena-body .timeline-area .timeline-item--left .timeline-item__card::after{right:-44px;}
.home-apoena-body .timeline-area .timeline-item--right .timeline-item__card::after{left:-44px;}
.home-apoena-body .timeline-area .timeline-item__media{
  height:220px;
  overflow:hidden;
  background:#edf4ef;
}
.home-apoena-body .timeline-area .timeline-item__media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.home-apoena-body .timeline-area .timeline-item__content{padding:26px 28px 28px;}
.home-apoena-body .timeline-area .timeline-item .vt-year{margin:0 0 8px;font-size:54px;line-height:.95;color:#0b5f45;}
.home-apoena-body .timeline-area .timeline-item .vt-title{margin:0;font-size:20px;line-height:1.25;color:#0f172a;}
@media (max-width:991px){
  .home-apoena-body .timeline-area .timeline-items{grid-template-columns:1fr;gap:20px;}
  .home-apoena-body .timeline-area .timeline-items::before{left:22px;transform:none;}
  .home-apoena-body .timeline-area .timeline-item,.home-apoena-body .timeline-area .timeline-item--left,.home-apoena-body .timeline-area .timeline-item--right{grid-column:1;}
  .home-apoena-body .timeline-area .timeline-item{padding-left:52px;}
  .home-apoena-body .timeline-area .timeline-item__dot,.home-apoena-body .timeline-area .timeline-item--left .timeline-item__dot,.home-apoena-body .timeline-area .timeline-item--right .timeline-item__dot{left:13px;right:auto;top:38px;}
  .home-apoena-body .timeline-area .timeline-item__card::after,.home-apoena-body .timeline-area .timeline-item--left .timeline-item__card::after,.home-apoena-body .timeline-area .timeline-item--right .timeline-item__card::after{left:-34px;right:auto;top:46px;width:34px;}
}
.home-apoena-body .cta-premium-area .brand-style-one-items{grid-auto-rows:minmax(150px, 1fr);}
.home-apoena-body .cta-premium-area .brand-logo-card{padding:0;overflow:hidden;align-items:stretch;justify-content:stretch;background:rgba(255,255,255,.16);}
.home-apoena-body .cta-premium-area .brand-logo-card img{display:block;width:100%;height:100%;max-width:none;max-height:none;object-fit:cover;}
.home-apoena-body .cta-premium-area .brand-logo-card--text{padding:20px;align-items:center;justify-content:center;}


.instagram-feed-card__frame{display:block;position:relative;background:#f2f2f2;min-height:420px;overflow:hidden}
.instagram-feed-card__frame img{display:block;width:100%;height:420px;object-fit:cover;transition:transform .35s ease}
.instagram-feed-card:hover .instagram-feed-card__frame img{transform:scale(1.03)}
.instagram-feed-card__placeholder{display:flex;align-items:center;justify-content:center;width:100%;height:420px;background:linear-gradient(135deg,#f3f3f3,#e7e7e7);color:#2f2f2f;font-weight:700;font-size:1.2rem;letter-spacing:.03em}
@media (max-width: 767px){.instagram-feed-card__frame,.instagram-feed-card__frame img,.instagram-feed-card__placeholder{height:360px;min-height:360px}}


/* ===== Apoena adjustments: typography, footer, rounded media, carousels ===== */
body, button, input, select, textarea{font-family:Montserrat,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif !important;}
h1,h2,h3,h4,h5,h6,.title,.vt-title,.vt-f-title,.site-heading .title,.section-title{font-family:Montserrat,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif !important;font-weight:700 !important;letter-spacing:normal !important;}
.kicker,.sub-title,.site-heading .sub-title{font-family:Montserrat,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif !important;font-weight:600 !important;}
img,.thumb img,.feature-style-one-card img,.timeline-item__media img,.gallery-card-premium img,.team-style-one-item .thumb img,.faq__media img,.showcase__media img,.service-style-two .thumb img{border-radius:22px;}
.timeline-item__media,.gallery-card-premium,.team-style-one-item .thumb,.service-card-premium .thumb,.showcase__media,.faq__media,.feature-grid__media{border-radius:22px;overflow:hidden;}

.site-footer{padding-top:24px !important;background-image:linear-gradient(135deg,var(--footer-bg-start),var(--footer-bg-end));}
.site-footer .footer__grid{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:18px 26px;padding-top:0 !important;padding-bottom:18px !important;}
.site-footer .footer__col{flex:0 1 auto;min-width:0;margin:0 !important;}
.site-footer .footer__col--about{display:flex;align-items:center;gap:14px;max-width:440px;}
.site-footer .footer__logo{max-height:48px;width:auto;object-fit:contain;border-radius:0 !important;}
.site-footer .footer__col h4{margin:0 0 6px;font-size:14px;font-weight:700;}
.site-footer .footer__col p,.site-footer .footer__col li,.site-footer .footer__col a,.site-footer .footer__bottom small{font-size:13px;line-height:1.45;}
.site-footer .footer__menu{display:flex;flex-wrap:wrap;gap:8px 14px;list-style:none;margin:0;padding:0;}
.site-footer .footer__social{display:flex;flex-wrap:wrap;gap:8px 10px;}
.site-footer .footer__social a{padding:8px 10px;border-radius:999px;background:rgba(255,255,255,.08);}
.site-footer .footer__bottom{padding:10px 0 14px;border-top:1px solid rgba(255,255,255,.14);}
.site-footer__art{display:block !important;position:absolute;right:0;bottom:0;width:min(28vw,360px);max-width:32%;opacity:.18;pointer-events:none;z-index:0;}

.apoena-carousel{position:relative;}
.apoena-carousel__viewport{overflow:hidden;}
.apoena-carousel__track{display:grid !important;grid-auto-flow:column;grid-auto-columns:calc((100% - (var(--apoena-gap,24px) * (var(--apoena-per-view,1) - 1))) / var(--apoena-per-view,1));gap:var(--apoena-gap,24px);overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;padding:6px 2px 10px;}
.apoena-carousel__track::-webkit-scrollbar{display:none;}
.apoena-carousel__track > *{scroll-snap-align:start;min-width:0;width:auto !important;}
.apoena-carousel__controls{display:flex;justify-content:flex-end;gap:10px;margin-top:18px;}
.apoena-carousel__btn{width:42px;height:42px;border:none;border-radius:999px;background:#0b5f45;color:#fff;font-size:28px;line-height:1;display:inline-flex;align-items:center;justify-content:center;box-shadow:0 10px 24px rgba(11,95,69,.24);}
.apoena-carousel__btn:hover{transform:translateY(-1px);}
.home-apoena-body .timeline-area .timeline-items{grid-template-columns:none !important;}
.home-apoena-body .timeline-area .timeline-item,.home-apoena-body .timeline-area .timeline-item--left,.home-apoena-body .timeline-area .timeline-item--right{grid-column:auto !important;padding:0 0 4px !important;margin-top:0 !important;}
.home-apoena-body .timeline-area .timeline-items::before,.home-apoena-body .timeline-area .timeline-item__card::after,.home-apoena-body .timeline-area .timeline-item__card::before,.home-apoena-body .timeline-area .timeline-item__dot{display:none !important;}
.home-apoena-body .timeline-area .timeline-item__card{height:100%;}
.home-apoena-body .gallery-premium-area .gallery-items{grid-template-columns:none !important;}
.home-apoena-body .gallery-premium-area .gallery-card-premium{height:100%;}
.home-apoena-body .gallery-premium-area .gallery-card-premium img{aspect-ratio:16/10;}

@media (max-width: 991px){
  .site-footer .footer__grid{align-items:flex-start;gap:14px 18px;}
  .site-footer .footer__col--about{flex-basis:100%;max-width:none;}
}
@media (max-width: 767px){
  .site-footer{padding-top:18px !important;}
  .site-footer .footer__grid{display:grid;grid-template-columns:1fr;gap:14px;padding-bottom:14px !important;}
  .site-footer .footer__menu,.site-footer .footer__social{gap:8px;}
  .site-footer .footer__logo{max-height:40px;}
}
