:root{
  --brand: #1797d7;         /* Azul principal (Russell) */
  --brand-dark: #1176AA;    /* Hover / contraste */
  --brand-darker: #0D5A82;  /* Links / acentos escuros */
  --brand-light: #34B3EF;
  --brand-soft: #E7F4FC;   /* Realces / gradientes */
  --bg: #F6F7F9;
  --line: #E6E7E8;
  --text: #111827;
}

html, body{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

/* Topbar */
.topbar{
  position: relative;
  z-index: 1020;
  margin-top: 40px; /* altura da navbar */
  background: var(--brand);
  color: #fff;
}
.topbar-link{
  color: #fff;
  text-decoration: none;
  opacity: .95;
}
.topbar-link:hover{
  opacity: 1;
  text-decoration: underline;
}

/* Botões */
.btn-brand{
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  border-radius: 12px;
}
.btn-brand:hover{
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
}
.btn-ghost{
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  border-radius: 12px;
}
.btn-ghost:hover{
  border-color: rgba(255,255,255,.55);
  color: #fff;
  background: rgba(255,255,255,.08);
}

/* Navbar moderna */
.navbar-fixed{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1030;
  background: transparent;
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
body{
  padding-top: 64px; /* evita o conteúdo passar por baixo da navbar */
}

.navbar-modern .nav-link{
  font-weight: 600;
  transition: color .2s ease, opacity .2s ease;
}

/* ===== NAVBAR NO TOPO (glass escuro) ===== */
.navbar-modern{
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}

.navbar-modern:not(.is-scrolled){
  background: rgba(251, 253, 254, 0.925) !important;
  backdrop-filter: blur(10px);
}

.navbar-modern:not(.is-scrolled) .nav-link,
.navbar-modern:not(.is-scrolled) .navbar-brand{
  color: #111827 !important;
}

.navbar-modern:not(.is-scrolled) .nav-link:hover{
  color: var(--brand-dark) !important;
  opacity: 1;
}

/* ===== NAVBAR AO SCROLL (glass claro) ===== */
.navbar-modern.is-scrolled{
  background: rgba(255,255,255,.86) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(17,24,39,.10);
}

.navbar-modern.is-scrolled .nav-link,
.navbar-modern.is-scrolled .navbar-brand{
  color: #111827 !important;
}

/* Badge soft */
.badge-soft{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.18);
  color: #fff;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  padding: .40rem .70rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* ===== HERO COM SLIDER (Swiper) ===== */
.hero-slider{
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b1020;
}

.hero-slider .heroSwiper{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slider .heroSwiper .swiper-wrapper{
  height: 100%;
}

.hero-slider .heroSwiper .swiper-slide{
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay acima do slider (ajustado para o azul Russell) */
.hero-overlay{
  background: radial-gradient(60% 70% at 30% 20%,
    rgba(23,151,215,.34) 0%,
    rgba(11,16,32,.22) 58%,
    rgba(11,16,32,.32) 100%) !important;
}

/* Conteúdo acima de tudo */
.hero-content{
  position: relative;
  z-index: 2;
  padding: 84px 0;
}

/* Card glass no hero */
.glass-card{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.92);
}

/* Setas e paginação do Swiper */
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  transition: transform .15s ease, background .15s ease;
}
.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.22);
}
.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after{
  font-size: 16px;
  color: #fff;
}

.heroSwiper .swiper-pagination{
  bottom: 18px !important;
}
.heroSwiper .swiper-pagination-bullet{
  background: rgba(255,255,255,.55);
  opacity: 1;
}
.heroSwiper .swiper-pagination-bullet-active{
  background: #fff;
}

.hero-slider .heroSwiper .swiper-slide{
  background-size: cover;
  background-position: center;
  filter: saturate(1.02);
}

/* Hint de scroll */
.hero-scroll-hint{
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,.78);
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.16);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
}
.hero-scroll-hint:hover{
  color: #fff;
}

/* Seções */
.section{
  padding: 72px 0;
}

/* Pills (chips) */
.pill{
  display: inline-flex;
  align-items: center;
  padding: .35rem .65rem;
  border-radius: 999px;
  border: 1px solid rgba(17,178,213,.22);
  background: rgba(17,178,213,.08);
  color: var(--brand-darker);
  font-weight: 600;
  font-size: .9rem;
}

/* Cards hover premium */
.card{
  border-radius: 16px;
  border: 1px solid var(--line);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(17,24,39,.10);
  border-color: rgba(17,178,213,.25);
}

/* Links footer */
.footer-link{
  text-decoration: none;
  color: var(--text);
}
.footer-link:hover{
  color: var(--brand);
  text-decoration: underline;
}

/* Reveal ao scroll */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Reduzir movimento */
@media (prefers-reduced-motion: reduce){
  .reveal, .card, .navbar-modern, .swiper-slide{
    transition: none !important;
    transform: none !important;
  }
}

/* ===== SEÇÕES (modelo inspiração) ===== */
.section-white{ background: #fff; }
.section-soft{
  background: linear-gradient(180deg, #f6f7f9 0%, #eef2f7 100%);
}

.section-head{ margin-bottom: 8px; }
.eyebrow{
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--brand-darker);
  font-weight: 700;
  letter-spacing: .18em;
  font-size: .78rem;
  text-transform: uppercase;
}
.eyebrow-line{
  height: 1px;
  background: rgba(17,24,39,.18);
  flex: 0 0 120px;
}
.section-title{
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand)
}

/* ===== VÍDEO CARD ===== */
.video-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(17,24,39,.10);
  box-shadow: 0 18px 45px rgba(17,24,39,.08);
  background: #0b1020;
}

/* ===== ACCORDION LIMPO (PILARES) ===== */
.accordion-clean .accordion-item{
  border: 0;
  margin-bottom: 12px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(17,24,39,.06);
}
.accordion-clean .accordion-button{
  background: #fff;
  font-weight: 700;
  padding: 18px 18px;
}
.accordion-clean .accordion-button:focus{
  box-shadow: none;
}
.accordion-clean .accordion-button:not(.collapsed){
  color: #111827;
  background: #fff;
}
.acc-num{
  display: inline-flex;
  width: 32px;
  justify-content: center;
  margin-right: 10px;
  color: rgba(17,178,213,.92);
  font-weight: 800;
}

/* ===== FAQ (pergunta à esquerda / resposta à direita) ===== */
/* (Mantido o seu antigo, mas agora o “tom” usa o novo azul) */
.faq-list{
  border-top: 1px solid rgba(17,24,39,.10);
}
.faq-row{
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(17,24,39,.10);
}
.faq-q{
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.faq-icon{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid rgba(17,178,213,.55);
  color: rgba(17,178,213,.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  margin-top: 2px;
}
@media (max-width: 991px){
  .faq-row{ grid-template-columns: 1fr; }
}

/* ===== FALE CONOSCO (cards + form) ===== */
.info-card{
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 22px 18px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(17,24,39,.10);
  box-shadow: 0 18px 45px rgba(17,24,39,.08);
  text-decoration: none;
  color: inherit;
}
.info-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(17,24,39,.10);
  border-color: rgba(17,178,213,.20);
}
.info-ico{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 2px dotted rgba(17,178,213,.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(17,178,213,.92);
  font-size: 22px;
}
.info-title{
  font-weight: 800;
}

.contact-form-card{
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(17,24,39,.10);
  box-shadow: 0 22px 60px rgba(17,24,39,.10);
  padding: 26px;
}
.contact-form-card .form-control{
  border-radius: 12px;
  border-color: rgba(17,24,39,.16);
}
.contact-form-card .form-control:focus{
  border-color: rgba(17,178,213,.45);
  box-shadow: 0 0 0 .2rem rgba(17,178,213,.12);
}

/* Texto do Quem somos */
.who-text{
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 62ch;
}

/* Pilares: texto da esquerda */
.pillars-lead-left{
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 42ch;
}

/* Pilares: centralizar o bloco do accordion */
.pillars-wrap{
  max-width: 720px;
  margin-left: auto;
}

@media (max-width: 991px){
  .pillars-wrap{
    max-width: 100%;
    margin-left: 0;
  }
  .pillars-lead-left{
    max-width: 65ch;
  }
}

/* Botão outline no padrão da marca */
.btn-outline-brand{
  border-radius: 12px;
  border: 1px solid rgba(17,178,213,.55);
  color: var(--brand-darker);
  font-weight: 700;
  padding: .85rem 1.25rem;
}
.btn-outline-brand:hover{
  background: rgba(17,178,213, 0.16);
  border-color: rgba(17,178,213,.75);
  color: var(--brand-darker);
}

/* =========================================================
   FOOTER RUSSELL
   ========================================================= */

.site-footer-rbb{
  background: linear-gradient(135deg, #0b3b67 0%, #0d4f84 42%, #0a335a 100%);
  color: #fff;
  padding: 72px 0 24px;
  position: relative;
  overflow: hidden;
}

.site-footer-rbb::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 20%, rgba(255,255,255,.07) 0%, rgba(255,255,255,0) 18%),
    radial-gradient(circle at 85% 75%, rgba(255,255,255,.05) 0%, rgba(255,255,255,0) 20%);
  opacity: .7;
}

.site-footer-rbb .container{
  position: relative;
  z-index: 2;
}

.footer-top{
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer-logo{
  max-width: 220px;
  height: auto;
  margin-bottom: 18px;
}

.footer-lead{
  color: rgba(255,255,255,.82);
  line-height: 1.8;
  max-width: 360px;
  margin-bottom: 22px;
}

.footer-contact-list{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.footer-contact-item{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,.88);
  line-height: 1.6;
}

.footer-contact-item i{
  color: #7fd0ff;
  font-size: 1rem;
  margin-top: 2px;
}

.footer-contact-item a{
  color: rgba(255,255,255,.92);
  text-decoration: none;
}

.footer-contact-item a:hover{
  color: #fff;
}

.footer-socials{
  display: flex;
  gap: 12px;
}

.footer-socials a{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  transition: all .22s ease;
}

.footer-socials a:hover{
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.24);
  transform: translateY(-2px);
}

.footer-block h4{
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
}

.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li + li{
  margin-top: 12px;
}

.footer-links a{
  color: rgba(255,255,255,.82);
  text-decoration: none;
  transition: color .2s ease, padding-left .2s ease;
}

.footer-links a:hover{
  color: #fff;
  padding-left: 4px;
}

.footer-exec{
  margin-top: 28px;
}

.footer-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer-badges img{
  max-height: 100px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.02);
}

.footer-bottom{
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: rgba(255,255,255,.72);
  font-size: .95rem;
}

.footer-copy,
.footer-dev{
  color: rgba(255,255,255,.72);
}

/* Responsivo */
@media (max-width: 991px){
  .site-footer-rbb{
    padding: 60px 0 22px;
  }

  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px){
  .site-footer-rbb{
    padding: 52px 0 20px;
  }

  .footer-logo{
    max-width: 190px;
  }

  .footer-badges img{
    max-height: 50px;
  }

  .footer-bottom{
    font-size: .9rem;
  }
}

/* ===== SEÇÃO AZUL (mesmo tom da topbar / marca) ===== */
.section-brand{
  background: var(--brand);
  color: rgba(255,255,255,.92);
  position: relative;
  overflow: hidden;
}

/* brilho suave */
.section-brand::before{
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(60% 55% at 25% 20%, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 60%);
  pointer-events: none;
}

.section-brand > .container{
  position: relative;
  z-index: 1;
}

.section-brand .section-title{
  color: #fff;
}

.section-brand .text-muted{
  color: rgba(255,255,255,.72) !important;
}

.section-brand .eyebrow{
  color: rgba(255,255,255,.70);
}
.section-brand .eyebrow-line{
  background: rgba(255,255,255,.22);
}

/* Cards dentro da seção azul */
.section-brand .card,
.section-brand .info-card,
.section-brand .contact-form-card,
.section-brand .accordion-clean .accordion-item{
  background: rgba(255,255,255,.10) !important;
  border-color: rgba(255,255,255,.20) !important;
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
}

.section-brand .accordion-clean .accordion-button{
  background: rgba(255,255,255,.10) !important;
  color: #fff;
}

.section-brand .accordion-clean .accordion-body{
  color: rgba(255,255,255,.80) !important;
}

.section-brand .acc-num{
  color: rgba(255,255,255,.92);
}

/* Inputs dentro da seção azul */
.section-brand .form-control{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.22);
  color: #fff;
}
.section-brand .form-control::placeholder{
  color: rgba(255,255,255,.65);
}
.section-brand .form-control:focus{
  border-color: rgba(255,255,255,.40);
  box-shadow: 0 0 0 .2rem rgba(255,255,255,.10);
}

/* Ajustes: Fale conosco dentro de .section-brand */
.section-brand .info-ico{
  border-color: rgba(255,255,255,.28) !important;
  color: rgba(255,255,255,.92) !important;
  background: rgba(255,255,255,.08);
}

.section-brand .info-card{
  color: rgba(255,255,255,.92) !important;
}
.section-brand .info-card .text-muted{
  color: rgba(255,255,255,.70) !important;
}

.section-brand .contact-form-card{
  background: rgba(255,255,255,.10) !important;
  border-color: rgba(255,255,255,.20) !important;
}
.section-brand .contact-form-card .form-control{
  background: rgba(255,255,255,.10) !important;
  border-color: rgba(255,255,255,.22) !important;
  color: #fff !important;
}
.section-brand .contact-form-card .form-control::placeholder{
  color: rgba(255,255,255,.68) !important;
}

/* Botão Enviar: outline branco */
.section-brand .contact-form-card .btn-brand{
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.75) !important;
}
.section-brand .contact-form-card .btn-brand:hover{
  background: rgba(255,255,255,.12) !important;
}

/* ===== PÁGINAS INTERNAS (SOBRE / ATUAÇÃO) ===== */
.inner-hero{
  position: relative;
  padding: 64px 0 56px;
  overflow: hidden;
}
.inner-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.inner-hero > .container{ position: relative; z-index: 1; }

.inner-hero-brand{
  background: linear-gradient(135deg, rgba(17,178,213,.98) 0%, rgba(13,134,160,.98) 58%, #063747 100%);
  color: #fff;
}
.inner-hero-brand::before{
  background: radial-gradient(50% 60% at 15% 15%, rgba(255,255,255,.14) 0%, rgba(255,255,255,0) 70%);
}
.inner-hero-brand .glass-card{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
}

.inner-hero-light{
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
  border-bottom: 1px solid rgba(17,24,39,.06);
}
.inner-hero-light::before{
  background: radial-gradient(50% 50% at 90% 10%, rgba(17,178,213,.08) 0%, rgba(17,178,213,0) 75%);
}

.content-panel{
  background: #fff;
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 14px 38px rgba(17,24,39,.05);
}
.content-panel p{ line-height: 1.75; }

.list-clean{
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-clean li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
}
.list-clean i{
  color: rgba(17,178,213,.92);
  margin-top: 2px;
}

.icon-card .icon-circle,
.service-card-law .icon-circle{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17,178,213,.18);
  background: rgba(17,178,213,.07);
  color: var(--brand-darker);
  font-size: 1.2rem;
}

.timeline-item > span{
  background: rgba(17,178,213,.08);
  border: 1px solid rgba(17,178,213,.16);
  color: var(--brand-darker);
}

/* check-grid */
.check-grid i{
  color: rgba(17,178,213,.92);
  margin-top: 2px;
}

/* =========================================================
   REMOVER GAP ENTRE NAVBAR E TOPBAR (você já tinha)
   ========================================================= */
.topbar{
  margin: 0 !important;
  border: 0 !important;
}

.navbar-modern{
  margin: 0 !important;
  border: 0 !important;
}

.navbar-modern + .topbar,
.topbar + .navbar-modern{
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Se o efeito estiver vindo de sombra/borda inferior */
.navbar-modern{
  box-shadow: none !important;
}

/* FAQ - estilo lista expansível (padrão Russell) */
.faq-list{
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.faq-item{
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(12,27,61,.10);
  box-shadow: 0 10px 26px rgba(10,25,60,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.faq-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(10,25,60,.10);
}

.faq-q{
  font-weight: 700;
  color: #0d1b35;
}

.faq-ico{
  font-size: 1.1rem;
  transition: transform .2s ease;
  opacity: .85;
}

.faq-answer{
  margin-top: -6px;
}

.faq-answer-inner{
  padding: 12px 16px 16px;
  border-radius: 0 0 12px 12px;
  background: #fff;
  border: 1px solid rgba(12,27,61,.10);
  border-top: 0;
  color: #42556f;
  line-height: 1.7;
}

.faq-item[aria-expanded="true"] .faq-ico{
  transform: rotate(180deg);
}

/* TOPBAR — mesmo “peso” visual do Maciel (centralizada e com respiro) */
.topbar{
  margin-top: 0 !important;     /* garante sem gap */
  padding: 0 !important;        /* controla tudo via altura */
  min-height: 52px;             /* altura consistente (padrão Maciel) */
  display: flex;
  align-items: center;          /* centraliza verticalmente */
}

/* Ajusta o container interno para alinhar bem */
.topbar .container{
  width: 100%;
}

/* Evita que o texto fique baixo por line-height pequeno */
.topbar .small{
  font-size: 0.95rem;
  line-height: 1;               /* deixa “no eixo” */
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Ícones alinhados e com tamanho padrão */
.topbar i{
  font-size: 1.05rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Links da topbar (Instagram/LinkedIn) alinhados */
.topbar .topbar-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* =========================================================
   HEADER – Dropdown + Topbar hover (estilo premium Russell)
   ========================================================= */

/* Dropdown: container */
.navbar-modern .dropdown-menu{
  border-radius: 14px;
  border: 1px solid rgba(17,24,39,.10);
  box-shadow: 0 18px 45px rgba(17,24,39,.14);
  padding: 10px;
  min-width: 220px;
}

/* Itens do dropdown */
.navbar-modern .dropdown-item{
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 600;
  color: rgba(17,24,39,.86);
  transition: background .15s ease, color .15s ease, transform .15s ease;
}

/* Hover/active do dropdown (com a marca) */
.navbar-modern .dropdown-item:hover,
.navbar-modern .dropdown-item:focus{
  background: rgba(23,151,215,.12);
  color: var(--brand-darker);
  transform: translateX(2px);
}

/* Item ativo (se você usar .active em algum link) */
.navbar-modern .dropdown-item.active{
  background: rgba(23,151,215,.18);
  color: var(--brand-darker);
}

/* Seta do dropdown (deixa mais clean) */
.navbar-modern .dropdown-toggle::after{
  border-top-color: var(--brand);
  transform: translateY(1px);
}

.dropdown-submenu{
  position: relative;
}

.dropdown-submenu > .dropdown-menu{
  top: 0;
  left: 100%;
  margin-top: -1px;
  display: none;
}

.dropdown-submenu.show > .dropdown-menu{
  display: block;
}

/* seta opcional à direita */
.dropdown-submenu > .dropdown-toggle{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-submenu > .dropdown-toggle::after{
  content: "";
  border-top: .3em solid transparent;
  border-bottom: .3em solid transparent;
  border-left: .3em solid currentColor;
  margin-left: .5rem;
}

/* =========================================================
   TOPBAR – Hover sem underline (Instagram/LinkedIn)
   ========================================================= */

/* Tira underline e transforma em “pill” */
.topbar .topbar-link{
  text-decoration: none !important;
  padding: 6px 10px;
  border-radius: 999px;
  transition: background .15s ease, transform .15s ease, opacity .15s ease;
}

/* Hover bonito: fundo leve + sobe 1px */
.topbar .topbar-link:hover{
  text-decoration: none !important;
  background: rgba(255,255,255,.16);
  transform: translateY(-1px);
  opacity: 1;
}

/* Opcional: melhora o separador “•” visualmente */
.topbar .d-none.d-md-inline{
  opacity: .75;
}

.navbar-modern .dropdown-item:hover,
.navbar-modern .dropdown-item:focus{
  background: var(--brand);
  color: #fff;
  transform: translateX(2px);
}

/* =========================================================
   HERO – Card "Porquê escolher a RBB?" (cara Russell + hover)
   ========================================================= */

/* Card da direita (o único .glass-card dentro da coluna direita do hero) */
.hero-slider .hero-content .col-lg-5 .glass-card{
  background: rgba(255,255,255,.94) !important;
  border: 1px solid rgba(23,151,215,.18) !important; /* brand */
  border-radius: 18px !important;
  box-shadow: 0 18px 55px rgba(17,24,39,.14) !important;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

/* Hover do card */
.hero-slider .hero-content .col-lg-5 .glass-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 26px 75px rgba(17,24,39,.18) !important;
  border-color: rgba(23,151,215,.38) !important;
}

/* Título do card */
.hero-slider .hero-content .col-lg-5 .glass-card h5{
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0b2230;
}

/* Cada item (linha com ícone + textos) */
.hero-slider .hero-content .col-lg-5 .glass-card > .d-flex{
  padding: 10px 10px;
  border-radius: 14px;
  transition: background .18s ease, transform .18s ease;
}

/* Hover por item */
.hero-slider .hero-content .col-lg-5 .glass-card > .d-flex:hover{
  background: rgba(23,151,215,.08);
  transform: translateX(2px);
}

/* Ícones (cor + “badge” visual) */
.hero-slider .hero-content .col-lg-5 .glass-card > .d-flex > i{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(23,151,215,.10);
  border: 1px solid rgba(23,151,215,.20);
  color: var(--brand-darker);
  flex: 0 0 42px;
}

/* Textos secundários mais limpos */
.hero-slider .hero-content .col-lg-5 .glass-card .text-muted{
  color: rgba(17,24,39,.68) !important;
}

.hero-slider .hero-content .col-lg-5 .glass-card{
  border-top: 4px solid var(--brand) !important;
}

/* =========================================================
   HERO – Card transparente e “preenche” no hover
   ========================================================= */

.hero-slider .hero-content .col-lg-5 .glass-card{
  /* estado padrão: transparente / vidro */
  background: rgba(255,255,255,.10) !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  box-shadow: 0 18px 55px rgba(0,0,0,.18) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

/* Texto padrão em branco para legibilidade no “vidro” */
.hero-slider .hero-content .col-lg-5 .glass-card h5,
.hero-slider .hero-content .col-lg-5 .glass-card .fw-semibold{
  color: rgba(255,255,255,.92) !important;
}

.hero-slider .hero-content .col-lg-5 .glass-card .text-muted{
  color: rgba(255,255,255,.72) !important;
}

/* Ícones no estado padrão (claros) */
.hero-slider .hero-content .col-lg-5 .glass-card > .d-flex > i{
  background: rgba(255,255,255,.10) !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  color: rgba(255,255,255,.92) !important;
}

/* Hover do card: “preenche” e vira branco premium */
.hero-slider .hero-content .col-lg-5 .glass-card:hover{
  background: rgba(255,255,255,.94) !important;
  border-color: rgba(23,151,215,.35) !important;
  box-shadow: 0 26px 75px rgba(17,24,39,.18) !important;
  transform: translateY(-4px);
}

/* No hover: texto volta ao padrão escuro */
.hero-slider .hero-content .col-lg-5 .glass-card:hover h5,
.hero-slider .hero-content .col-lg-5 .glass-card:hover .fw-semibold{
  color: #0b2230 !important;
}

.hero-slider .hero-content .col-lg-5 .glass-card:hover .text-muted{
  color: rgba(17,24,39,.68) !important;
}

/* No hover: ícones voltam para o estilo Russell */
.hero-slider .hero-content .col-lg-5 .glass-card:hover > .d-flex > i{
  background: rgba(23,151,215,.10) !important;
  border-color: rgba(23,151,215,.20) !important;
  color: var(--brand-darker) !important;
}

.hero-slider .hero-content .col-lg-5 .glass-card > .d-flex{
  transition: background .18s ease, transform .18s ease;
}

.hero-slider .hero-content .col-lg-5 .glass-card:hover > .d-flex:hover{
  background: rgba(23,151,215,.08);
  transform: translateX(2px);
}

/* =========================================================
   HEADER – diminuir altura da navbar e da topbar
   ========================================================= */

/* TOPBAR mais compacta */
.topbar{
  min-height: 32px !important;     /* antes 52/56 */
}
.topbar .small{
  font-size: 0.90rem !important;
  gap: 12px;
}
.topbar i{
  font-size: 1.0rem !important;
}

/* NAVBAR mais compacta */
.navbar-modern{
  padding: 8px 0 !important;       /* reduz altura geral */
}
.navbar-modern .nav-link{
  font-size: 0.95rem;
  padding: 10px 10px !important;   /* reduz “altura” do link */
}

/* Logo menor (sem mexer no HTML) */
.navbar-modern .navbar-brand img{
  height: 42px !important;         /* ajuste fino: 40–48 */
}

/* Botão CTA mais compacto */
.navbar-modern .btn.btn-brand{
  padding: .55rem .90rem !important;
  font-size: 0.92rem !important;
  border-radius: 999px;            /* fica bem Russell */
}

/* =========================================================
   TOPBAR 32px – centralização perfeita (altura + line-height)
   ========================================================= */

.topbar{
  height: 32px !important;      /* fixa a altura */
  min-height: 32px !important;
  display: block !important;     /* evita baseline/flex interferir */
  padding: 0 !important;
}

/* faz os elementos “encaixarem” no centro via line-height */
.topbar, .topbar *{
  line-height: 32px !important;
}

/* mantém layout flex por dentro, mas sem afetar o alinhamento vertical */
.topbar .container{
  height: 32px !important;
  display: flex !important;
  align-items: center !important;
}

/* grupos interno alinhados */
.topbar .container > div{
  display: flex !important;
  align-items: center !important;
}

/* links não mudam a altura */
.topbar .topbar-link{
  padding: 0 10px !important;   /* tira padding vertical */
  border-radius: 999px;
}

/* ícones não “puxam” a linha */
.topbar i{
  line-height: 32px !important;
  vertical-align: middle !important;
  margin-top: 0 !important;
}

/* =========================================================
   QUEM SOMOS v2 – título azul escuro + painel único + vídeo
   ========================================================= */

.who-rbb-v2 .who-title-russell{
  color: var(--brand);      /* azul escuro da identidade */
  font-weight: 900;
  letter-spacing: -0.02em;
}

.who-rbb-v2 .who-kicker{
  max-width: 72ch;
}

/* Painel único (esquerda) */
.who-panel-v2{
  height: 100%;
  background: linear-gradient(180deg, rgba(23,151,215,.06), rgba(255,255,255,0) 70%);
  border: 1px solid rgba(23,151,215,.18);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 16px 45px rgba(17,24,39,.06);
}

/* Botões menores, formato “Russell” */
.btn-pill{
  border-radius: 999px !important;
  padding: .55rem .90rem !important;
  font-weight: 700;
}

/* Card do vídeo (direita) */
.video-card-rbb{
  position: relative;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(17,24,39,.10);
  box-shadow: 0 18px 55px rgba(17,24,39,.12);
  background: #0b1020;
}

.video-card-rbb .video-frame{
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 340px;
}

.video-card-rbb iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Overlay com gradiente e texto (cara Russell) */
.video-card-rbb .video-overlay{
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(60% 60% at 25% 20%,
    rgba(23,151,215,.18) 0%,
    rgba(11,16,32,.55) 55%,
    rgba(11,16,32,.70) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  gap: 8px;
}

.video-card-rbb .video-badge{
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.92);
  font-weight: 700;
  font-size: .85rem;
  backdrop-filter: blur(10px);
}

.video-card-rbb .video-caption{
  color: rgba(255,255,255,.88);
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Responsivo */
@media (max-width: 991px){
  .video-card-rbb .video-frame{ min-height: 280px; }
}

/* =========================================================
   QUEM SOMOS – card texto + vídeo (cara Russell)
   ========================================================= */

/* Painel texto: borda mais Russell e sombra mais suave */
.who-panel-v2{
  border: 1px solid rgba(23,151,215,.22) !important;
  box-shadow: 0 18px 55px rgba(17,24,39,.08) !important;
}

/* Texto inteiro com mesmo “peso/cor” (sem mudar o último) */
.who-panel-v2 .who-text{
  color: rgba(17,24,39,.82);
  line-height: 1.75;
}

/* Botões maiores, lado a lado, centralizados */
.who-actions{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.who-actions .btn{
  min-width: 230px;
  padding: .70rem 1.05rem !important;
  font-weight: 800;
  border-radius: 999px !important;
}

/* =========================================================
   VÍDEO MP4 – borda Russell + encaixe sem faixas pretas
   ========================================================= */

.video-card-rbb{
  border-radius: 22px !important;
  overflow: hidden !important;
  border: 1px solid rgba(17,178,213,.75) !important;
  box-shadow:
    0 18px 55px rgba(17,24,39,.12),
    0 0 0 4px rgba(23,151,215,.06) !important;
  background: #000; /* fundo neutro caso o vídeo não carregue */
}

.video-card-rbb .video-frame{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 340px;
  background: #000;
}

/* MP4: ocupa o card inteiro e “corta” para não ter faixas */
.video-card-rbb video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;         /* <-- elimina faixas pretas */
  border: 0 !important;
}

/* Ajuste de controles (opcional, só estética) */
.video-card-rbb video::-webkit-media-controls-panel{
  border-radius: 0;
}

/* Responsivo */
@media (max-width: 991px){
  .video-card-rbb .video-frame{
    min-height: 260px;
  }
}

/* =========================================================
   FAQ – estilo Russell (lista premium + estados claros)
   ========================================================= */
 
/* container */
#faq .faq-list{
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
 
/* item clicável */
#faq .faq-item{
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
 
  padding: 14px 16px;
  border-radius: 16px;
 
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(23,151,215,.18);
  box-shadow: 0 14px 40px rgba(17,24,39,.06);
 
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
 
/* hover do item */
#faq .faq-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 52px rgba(17,24,39,.10);
  border-color: rgba(23,151,215,.32);
}
 
/* pergunta */
#faq .faq-q{
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0b2230;
  line-height: 1.25;
}
 
/* ícone setinha (pill) */
#faq .faq-ico{
  width: 40px;
  height: 40px;
  border-radius: 999px;
 
  display: inline-flex;
  align-items: center;
  justify-content: center;
 
  background: rgba(23,151,215,.10);
  border: 1px solid rgba(23,151,215,.18);
  color: var(--brand-darker);
 
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  opacity: 1;
}
 
/* estado aberto */
#faq .faq-item[aria-expanded="true"]{
  background: #fff;
  border-color: rgba(23,151,215,.40);
  box-shadow: 0 22px 70px rgba(17,24,39,.12);
}
 
/* gira chevron quando abre */
#faq .faq-item[aria-expanded="true"] .faq-ico{
  transform: rotate(180deg);
  background: rgba(23,151,215,.14);
  border-color: rgba(23,151,215,.30);
}
 
/* resposta (collapse) */
#faq .faq-answer{
  margin-top: -8px; /* encosta no card */
}
 
#faq .faq-answer-inner{
  padding: 14px 16px 16px;
 
  border-radius: 0 0 16px 16px;
  background: #fff;
 
  border: 1px solid rgba(23,151,215,.18);
  border-top: 0;
 
  color: rgba(17,24,39,.74);
  line-height: 1.70;
 
  box-shadow: 0 14px 40px rgba(17,24,39,.06);
}
 
/* melhora espaçamento no mobile */
@media (max-width: 576px){
  #faq .faq-item{
    padding: 13px 14px;
    border-radius: 14px;
  }
  #faq .faq-q{
    font-size: .98rem;
  }
  #faq .faq-ico{
    width: 38px;
    height: 38px;
  }
}

#faq .faq-item[aria-expanded="true"]{
  border-top: 3px solid var(--brand);
}

/* =========================================================
   ORGANOGRAMA – tema Russell (brand #1797D7)
   ========================================================= */
 
.org-wrap{
  border: 1px solid rgba(23,151,215,.14);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(17,24,39,.08);
  padding: 26px;
  overflow: hidden;
}
 
.org{
  position: relative;
}
 
/* SVG por trás */
.org .wires{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
 
/* tiers */
.tier{
  position: relative;
  z-index: 1;
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
}
.tier-center{ justify-content: center; }
.tier-3col{
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 18px;
  align-items: start;
}
 
.side, .mid{
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mid .midline{
  display: grid;
  gap: 12px;
}
 
/* cards pessoas */
.org-card{
  width: min(320px, 100%);
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(23,151,215,.18);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 14px 40px rgba(17,24,39,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.org-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(17,24,39,.10);
  border-color: rgba(23,151,215,.35);
}
 
.org-card .avatar{
  width: 64px;
  height: 64px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(23,151,215,.20);
  background: rgba(23,151,215,.08);
  margin-bottom: 10px;
}
.org-card .avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.org-card .name{
  font-weight: 900;
  letter-spacing: .02em;
  color: #0b2230;
  font-size: .95rem;
}
.org-card .role{
  color: rgba(17,24,39,.70);
  line-height: 1.35;
  margin-top: 4px;
}
 
/* nodes */
.org-node{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(23,151,215,.16);
  box-shadow: 0 12px 32px rgba(17,24,39,.05);
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
.org-node:hover{
  transform: translateY(-2px);
  border-color: rgba(23,151,215,.30);
  box-shadow: 0 16px 40px rgba(17,24,39,.08);
}
.org-node i{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(23,151,215,.10);
  border: 1px solid rgba(23,151,215,.18);
  color: var(--brand-darker);
  flex: 0 0 36px;
}
.org-node span{
  font-weight: 800;
  letter-spacing: .01em;
  color: #0b2230;
  line-height: 1.15;
  font-size: .88rem;
  text-transform: uppercase;
}
 
/* variações */
.org-chip{ min-width: 220px; justify-content: center; }
.org-chip--muted{
  background: rgba(23,151,215,.06);
  border-color: rgba(23,151,215,.14);
}
.org-bullet{
  background: rgba(255,255,255,.92);
}
.org-pill{
  border-radius: 999px;
  padding: 10px 12px;
}
.org-pill span{ font-size: .82rem; }
 
/* grids auxiliares */
.sectors{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.bottom-areas{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
 
.side-bullets--2col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.side-bullets--1col{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
 
/* responsivo */
@media (max-width: 1200px){
  .sectors{ grid-template-columns: repeat(3, 1fr); }
  .bottom-areas{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px){
  .tier-3col{ grid-template-columns: 1fr; }
  .sectors{ grid-template-columns: repeat(2, 1fr); }
  .bottom-areas{ grid-template-columns: repeat(2, 1fr); }
  .org-wrap{ padding: 18px; }
}
@media (max-width: 576px){
  .sectors, .bottom-areas{ grid-template-columns: 1fr; }
}

/* ===== ORGANOGRAMA - ajustes visuais (avatares circulares + nós coloridos) ===== */
.org-card .avatar{
  width: 84px;
  height: 84px;
  border-radius: 999px;                 /* círculo */
  overflow: hidden;
  border: 6px solid var(--brand);       /* contorno forte na cor da marca */
  background: rgba(23,151,215,.06);
  flex: 0 0 84px;
  box-shadow: 0 8px 22px rgba(17,24,39,.06);
}
.org-card .avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* pequenas junções / pontos (quando houver elementos HTML além do SVG) */
.org .node-junction{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--brand);
  border: 3px solid #fff;
  box-shadow: 0 8px 18px rgba(17,24,39,.06);
  display: inline-block;
}

/* cores extras usadas pelo script SVG (fallback para navegadores sem CSS variables) */
:root{
  --org-dot-orange: #f59e0b;
  --org-dot-purple: #8b5cf6;
}

/* ===== ORGANOGRAMA – tema Russell (brand #1797D7) ===== */

.org-wrap{
  border: 1px solid rgba(23,151,215,.14);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(17,24,39,.08);
  padding: 32px 40px;
  overflow: visible;
}

.org{
  position: relative;
  width: 100%;
}

/* SVG por trás */
.org .wires{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* tiers */
.tier{
  position: relative;
  z-index: 1;
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  justify-content: center;
}
.tier-center{ justify-content: center; }
.tier-3col{
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 32px;
  align-items: start;
  width: 100%;
}

.side, .mid{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mid .midline{
  display: grid;
  gap: 16px;
}

/* cards pessoas – reduzido */
.org-card{
  width: min(280px, 100%);
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(23,151,215,.18);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 14px 40px rgba(17,24,39,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.org-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(17,24,39,.10);
  border-color: rgba(23,151,215,.35);
}

/* avatar circular reduzido */
.org-card .avatar{
  width: 72px;
  height: 72px;
  border-radius: 999px;
  overflow: hidden;
  border: 5px solid var(--brand);
  background: rgba(23,151,215,.06);
  flex: 0 0 72px;
  box-shadow: 0 8px 22px rgba(17,24,39,.06);
  margin-bottom: 8px;
}
.org-card .avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.org-card .name{
  font-weight: 900;
  letter-spacing: .02em;
  color: #0b2230;
  font-size: .90rem;
}
.org-card .role{
  color: rgba(17,24,39,.70);
  line-height: 1.30;
  margin-top: 3px;
  font-size: .85rem;
}

/* nodes – ajustados */
.org-node{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(23,151,215,.16);
  box-shadow: 0 12px 32px rgba(17,24,39,.05);
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease;
  text-align: center;
  min-width: 100px;
}
.org-node:hover{
  transform: translateY(-2px);
  border-color: rgba(23,151,215,.30);
  box-shadow: 0 16px 40px rgba(17,24,39,.08);
}
.org-node i{
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(23,151,215,.10);
  border: 1px solid rgba(23,151,215,.18);
  color: var(--brand-darker);
  flex: 0 0 32px;
  font-size: .95rem;
}
.org-node span{
  font-weight: 800;
  letter-spacing: .01em;
  color: #0b2230;
  line-height: 1.10;
  font-size: .78rem;
  text-transform: uppercase;
}

/* variações */
.org-chip{ min-width: 140px; }
.org-chip--muted{
  background: rgba(23,151,215,.06);
  border-color: rgba(23,151,215,.14);
}
.org-bullet{
  background: rgba(255,255,255,.92);
  min-width: 130px;
}
.org-pill{
  border-radius: 14px;
  padding: 9px 10px;
  min-width: 110px;
}
.org-pill span{ font-size: .76rem; }

/* grids auxiliares – mais espaçamento */
.sectors{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}
.bottom-areas{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.side-bullets--2col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.side-bullets--1col{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

/* responsivo */
@media (max-width: 1200px){
  .tier-3col{ gap: 24px; }
  .sectors{ grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .bottom-areas{ grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .org-wrap{ padding: 26px 30px; }
}
@media (max-width: 991px){
  .tier-3col{ grid-template-columns: 1fr; }
  .tier{ margin-bottom: 36px; }
  .sectors{ grid-template-columns: repeat(2, 1fr); }
  .bottom-areas{ grid-template-columns: repeat(2, 1fr); }
  .org-wrap{ padding: 20px; }
}
@media (max-width: 576px){
  .sectors, .bottom-areas{ grid-template-columns: 1fr; }
}

/* ===== ORGANOGRAMA – Centralizar cards de pessoas ===== */
.org-card{
  width: min(280px, 100%);
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(23,151,215,.18);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 14px 40px rgba(17,24,39,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  display: flex;                    /* flex para alinhar */
  flex-direction: column;           /* coluna: avatar, nome, cargo */
  align-items: center;              /* CENTRALIZA tudo horizontalmente */
  text-align: center;               /* CENTRALIZA texto */
  gap: 8px;
}
.org-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(17,24,39,.10);
  border-color: rgba(23,151,215,.35);
}

.org-card .avatar{
  width: 72px;
  height: 72px;
  border-radius: 999px;
  overflow: hidden;
  border: 5px solid var(--brand);
  background: rgba(23,151,215,.06);
  flex: 0 0 72px;
  box-shadow: 0 8px 22px rgba(17,24,39,.06);
  margin-bottom: 4px;
}
.org-card .avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.org-card .name{
  font-weight: 900;
  letter-spacing: .02em;
  color: #0b2230;
  font-size: .90rem;
  margin: 0;
}
.org-card .role{
  color: rgba(17,24,39,.70);
  line-height: 1.30;
  margin: 2px 0 0 0;
  font-size: .82rem;
}

/* ===== ORGANOGRAMA – Expandir container + grid dos setores/áreas ===== */
.org-wrap{
  border: 1px solid rgba(23,151,215,.14);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(17,24,39,.08);
  padding: 32px 40px;
  overflow: visible;
  min-width: 100%;
}

.org{
  position: relative;
  width: 100%;
}

/* SVG por trás */
.org .wires{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* tiers */
.tier{
  position: relative;
  z-index: 1;
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  justify-content: center;
  flex-wrap: wrap;
}
.tier-center{ justify-content: center; }
.tier-3col{
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 32px;
  align-items: start;
  width: 100%;
}

.side, .mid{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mid .midline{
  display: grid;
  gap: 16px;
}

/* nodes – ajustados */
.org-node{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(23,151,215,.16);
  box-shadow: 0 12px 32px rgba(17,24,39,.05);
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease;
  text-align: center;
  min-width: 100px;
}
.org-node:hover{
  transform: translateY(-2px);
  border-color: rgba(23,151,215,.30);
  box-shadow: 0 16px 40px rgba(17,24,39,.08);
}
.org-node i{
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(23,151,215,.10);
  border: 1px solid rgba(23,151,215,.18);
  color: var(--brand-darker);
  flex: 0 0 32px;
  font-size: .95rem;
}
.org-node span{
  font-weight: 800;
  letter-spacing: .01em;
  color: #0b2230;
  line-height: 1.10;
  font-size: .78rem;
  text-transform: uppercase;
}

/* variações */
.org-chip{ min-width: 140px; }
.org-chip--muted{
  background: rgba(23,151,215,.06);
  border-color: rgba(23,151,215,.14);
}
.org-bullet{
  background: rgba(255,255,255,.92);
  min-width: 130px;
}
.org-pill{
  border-radius: 14px;
  padding: 9px 10px;
  min-width: 110px;
}
.org-pill span{ font-size: .76rem; }

/* ===== GRIDS: SETORES (1 linha) + ÁREAS (2 linhas) ===== */
.sectors{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  margin-bottom: 8px;
}

.bottom-areas{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.side-bullets--2col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.side-bullets--1col{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

/* responsivo */
@media (max-width: 1400px){
  .org-wrap{ padding: 28px 32px; }
  .sectors, .bottom-areas{ gap: 16px; }
}

@media (max-width: 1200px){
  .tier-3col{ gap: 24px; }
  .sectors{ grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .bottom-areas{ grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .org-wrap{ padding: 26px 30px; }
}

@media (max-width: 991px){
  .tier-3col{ grid-template-columns: 1fr; }
  .tier{ margin-bottom: 36px; }
  .sectors{ grid-template-columns: repeat(3, 1fr); }
  .bottom-areas{ grid-template-columns: repeat(3, 1fr); }
  .org-wrap{ padding: 20px; }
}

@media (max-width: 768px){
  .sectors{ grid-template-columns: repeat(2, 1fr); }
  .bottom-areas{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px){
  .sectors, .bottom-areas{ grid-template-columns: 1fr; }
  .org-wrap{ padding: 16px; }
}

/* ===== ORGANOGRAMA – Setores e Áreas REDUZIDOS + Comitês na ESQUERDA ===== */

/* Container comitês + setores (nova linha) */
.tier-comites-setores{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  margin-bottom: 12px;
  align-items: center;
  justify-items: start;
}

.tier-comites-left{
  display: center;
  justify-content: flex-start;
}

.tier-setores-right{
  justify-self: stretch;
}

/* Setores: reduzidos a 5 colunas iguais, com cards menores */
.sectors{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  margin-bottom: 20px;
}

/* Áreas: também 5 colunas, ocupando 2 linhas naturalmente (10 itens) */
.bottom-areas{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

/* Cards pequenos para setores (org-chip-sm) */
.org-chip-sm{
  min-width: 110px;
  padding: 9px 10px;
  font-size: .75rem;
}
.org-chip-sm i{
  width: 28px;
  height: 28px;
  font-size: .90rem;
}
.org-chip-sm span{
  font-size: .70rem;
  line-height: 1.05;
}

/* Cards pequenos para áreas (org-pill-sm) */
.org-pill-sm{
  border-radius: 999px;
  padding: 8px 9px;
  min-width: 95px;
  font-size: .70rem;
}
.org-pill-sm i{
  width: 26px;
  height: 26px;
  font-size: .88rem;
}
.org-pill-sm span{
  font-size: .68rem;
  line-height: 1.0;
}

/* Responsivo */
@media (max-width: 1400px){
  .sectors{ gap: 12px; }
  .bottom-areas{ gap: 12px; }
  .tier-comites-setores{ gap: 32px; }
}

@media (max-width: 1200px){
  .sectors{ grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .bottom-areas{ grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .org-chip-sm{ min-width: 100px; }
  .org-pill-sm{ min-width: 90px; }
}

@media (max-width: 991px){
  .sectors{ grid-template-columns: repeat(3, 1fr); }
  .bottom-areas{ grid-template-columns: repeat(3, 1fr); }
  .tier-comites-setores{ grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 768px){
  .sectors{ grid-template-columns: repeat(2, 1fr); }
  .bottom-areas{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px){
  .sectors, .bottom-areas{ grid-template-columns: 1fr; }
}

/* =========================================================
   ORGANOGRAMA – Comitês perto do Eser + mais largura útil
   ========================================================= */
 
/* Aumenta a largura útil da página do organograma (sem virar full-bleed) */
@media (min-width: 1400px){
  .org-wrap{
    max-width: 1500px;   /* ajuste fino: 1440–1600 */
    margin-left: auto;
    margin-right: auto;
  }
}
 
/* COMITÊS + SETORES na mesma linha e centralizados */
#tier-comites-sectors{
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  justify-content: center;
  margin-bottom: 18px;
}
 
/* Faz o bloco de setores ocupar bem a largura */
#tier-comites-sectors .sectors{
  width: 100%;
  margin: 0;
}
 
/* Empurra o “COMITÊS” para ficar mais colado ao tronco central */
#tier-comites-sectors .tier-comites-left{
  justify-self: end;
}
 
/* Se ainda ficar longe, aumente para 48px ou 60px */

/* =========================================================
   ORGANOGRAMA – Comitês colado no tronco (posição absoluta)
   ========================================================= */
 
#tier-comites-sectors.tier-comites-stage{
  position: relative;
  display: block !important;
  width: 100%;
  margin-bottom: 24px;
}
 
/* Setores continua como grid normal */
#tier-comites-sectors .sectors{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}
 
/* Responsivo: no mobile, comitês vira “normal” acima dos setores */
@media (max-width: 991px){
  #node-comites.org-comites-float{
    position: static;
    transform: none;
    margin: 0 auto 14px;
    display: inline-flex;
  }
 
  #tier-comites-sectors .sectors{
    grid-template-columns: repeat(3, 1fr);
  }
}
 
@media (max-width: 768px){
  #tier-comites-sectors .sectors{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px){
  #tier-comites-sectors .sectors{ grid-template-columns: 1fr; }
}

/* Comitês abaixo do Eser, deslocado para a direita do tronco */
.tier-comites{
  margin-top: -10px;     /* aproxima do ESER (ajuste fino) */
  margin-bottom: 18px;   /* distância antes dos setores */
}

/* responsivo: não desloca demais em telas menores */
@media (max-width: 991px){
  #node-comites{ transform: translateX(0); }
  .tier-comites{ margin-top: 0; }
}

.tier-comites{ margin-top: -10px; margin-bottom: 18px; }
#node-comites{ transform: translateX(140px); }
@media (max-width: 991px){ #node-comites{ transform: translateX(0); } .tier-comites{ margin-top: 0; } }

/* =========================================================
   SERVIÇOS – identidade Russell (usa --brand = #1797D7)
   ========================================================= */

.services-rbb .service-row{
  padding: 18px 0;
  margin-bottom: 26px;
}

.services-rbb .service-img{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(23,151,215,.18);
  background: rgba(23,151,215,.05);
  box-shadow: 0 18px 55px rgba(17,24,39,.08);
  height: 100%;
  min-height: 320px;
}

.services-rbb .service-img img{
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .55s ease;
}

.services-rbb .service-row:hover .service-img img{
  transform: scale(1.05);
}

/* Card do serviço */
.services-rbb .rbb-card{
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(23,151,215,.18);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 55px rgba(17,24,39,.08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  height: 100%;
}

.services-rbb .rbb-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 26px 75px rgba(17,24,39,.12);
  border-color: rgba(23,151,215,.35);
}

/* Ícone no estilo Russell */
.services-rbb .service-icon{
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(23,151,215,.10);
  border: 1px solid rgba(23,151,215,.18);
  color: var(--brand-darker);
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.services-rbb .service-kicker{
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(17,24,39,.55);
  font-weight: 800;
}

.services-rbb .service-title{
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 6px 0 10px;
  color: #0b2230;
}

.services-rbb .service-text{
  color: rgba(17,24,39,.72);
  line-height: 1.7;
  margin-bottom: 12px;
}

/* Bullets limpos */
.services-rbb .service-bullets{
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
  color: rgba(17,24,39,.76);
}
.services-rbb .service-bullets li{
  position: relative;
  padding-left: 18px;
  margin: 8px 0;
}
.services-rbb .service-bullets li::before{
  content: "–";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  opacity: .9;
  font-weight: 900;
}

/* CTA */
.services-rbb .service-cta{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  text-decoration: none;
  color: var(--brand-darker);
  border-bottom: 1px solid rgba(23,151,215,.35);
  padding-bottom: 2px;
}
.services-rbb .service-cta:hover{
  color: var(--brand);
  border-bottom-color: rgba(23,151,215,.55);
}

/* CTA final */
.services-rbb .rbb-card-cta{
  max-width: 820px;
  margin: 22px auto 0;
}

/* responsivo */
@media (max-width: 991px){
  .services-rbb .service-img{ min-height: 220px; }
  .services-rbb .service-img img{ min-height: 220px; }
  .services-rbb .rbb-card{ padding: 18px; }
}

/* =========================================================
   SERVIÇO (detalhe) – identidade Russell
   ========================================================= */

.service-detail .service-media-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(23,151,215,.18);
  background: rgba(23,151,215,.05);
  box-shadow: 0 18px 55px rgba(17,24,39,.08);
  height: 100%;
  min-height: 320px;
}

.service-detail .service-media-card img{
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.service-kpi-stack{
  display: grid;
  gap: 12px;
}

.service-kpi-card{
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(23,151,215,.18);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 14px 40px rgba(17,24,39,.06);
}

.service-kpi-title{
  font-weight: 900;
  color: #0b2230;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.service-kpi-desc{
  color: rgba(17,24,39,.72);
  line-height: 1.65;
}

.service-block{
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(23,151,215,.14);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 14px 40px rgba(17,24,39,.06);
  margin-bottom: 14px;
}

.service-h2{
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: #0b2230;
}

.service-text{
  color: rgba(17,24,39,.74);
  line-height: 1.75;
  margin-bottom: 10px;
}

.service-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li{
  position: relative;
  padding-left: 18px;
  margin: 8px 0;
  color: rgba(17,24,39,.76);
  line-height: 1.6;
}

.service-list li::before{
  content: "–";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 900;
}

.service-steps{
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.step{
  border-radius: 14px;
  background: rgba(23,151,215,.06);
  border: 1px solid rgba(23,151,215,.14);
  padding: 12px 14px;
}

.step-title{
  font-weight: 900;
  color: #0b2230;
  margin-bottom: 2px;
}

.step-desc{
  color: rgba(17,24,39,.72);
  line-height: 1.6;
}

/* FAQ do serviço */
.service-faq{
  margin-top: 10px;
  display: grid;
  gap: 10px;
}

.svc-faq-item{
  border-radius: 16px;
  border: 1px solid rgba(23,151,215,.18);
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 40px rgba(17,24,39,.06);
  overflow: hidden;
}

.svc-faq-item summary{
  cursor: pointer;
  list-style: none;
  padding: 14px 16px;
  font-weight: 900;
  color: #0b2230;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.svc-faq-item summary::-webkit-details-marker{ display:none; }

.svc-faq-item summary::after{
  content: "▾";
  color: var(--brand-darker);
  font-weight: 900;
  transition: transform .18s ease;
}

.svc-faq-item[open] summary::after{ transform: rotate(180deg); }

.svc-faq-answer{
  padding: 0 16px 16px;
  color: rgba(17,24,39,.72);
  line-height: 1.7;
}

/* Aside */
.service-aside{
  position: sticky;
  top: 90px; /* navbar fixa */
}

.service-aside-card{
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(23,151,215,.18);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 55px rgba(17,24,39,.08);
}

.aside-icon{
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(23,151,215,.10);
  border: 1px solid rgba(23,151,215,.18);
  color: var(--brand-darker);
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.aside-title{
  font-weight: 900;
  color: #0b2230;
  margin-bottom: 10px;
}

.service-nav{
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.service-nav-link{
  text-decoration: none;
  color: rgba(17,24,39,.78);
  font-weight: 800;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(23,151,215,.12);
  background: rgba(23,151,215,.04);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.service-nav-link:hover{
  transform: translateX(2px);
  background: rgba(23,151,215,.08);
  border-color: rgba(23,151,215,.22);
  color: rgba(17,24,39,.88);
}

.service-nav-link.active{
  background: rgba(23,151,215,.12);
  border-color: rgba(23,151,215,.35);
  color: var(--brand-darker);
}

.service-cta-final{ margin-top: 16px; }

.service-cta-box{
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(23,151,215,.18);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 55px rgba(17,24,39,.08);
  text-align: center;
}

@media (max-width: 991px){
  .service-aside{ position: static; top: auto; }
  .service-detail .service-media-card{ min-height: 220px; }
  .service-detail .service-media-card img{ min-height: 220px; }
}

/* =========================================================
   SERVIÇO (detalhe) – polimento Russell (hover + acentos)
   ========================================================= */

/* 1) Hero: linha/realce sutil */
.service-hero .eyebrow-line{
  background: linear-gradient(90deg, rgba(23,151,215,.0), rgba(23,151,215,.55), rgba(23,151,215,.0)) !important;
}

/* 2) Card da imagem: zoom suave */
.service-detail .service-media-card{
  position: relative;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-detail .service-media-card:hover{
  transform: translateY(-3px);
  border-color: rgba(23,151,215,.35);
  box-shadow: 0 26px 75px rgba(17,24,39,.12);
}
.service-detail .service-media-card img{
  transform: scale(1);
  transition: transform .55s ease;
}
.service-detail .service-media-card:hover img{
  transform: scale(1.05);
}

/* 3) KPIs: hover + borda superior “Russell” */
.service-kpi-card{
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-kpi-card:hover{
  transform: translateY(-2px);
  border-color: rgba(23,151,215,.35);
  box-shadow: 0 22px 60px rgba(17,24,39,.10);
}
.service-kpi-card::before{
  content: "";
  display: block;
  height: 3px;
  border-radius: 999px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, rgba(23,151,215,.0), rgba(23,151,215,.60), rgba(23,151,215,.0));
  opacity: .65;
}

/* 4) Blocos de conteúdo: hover + “glow” */
.service-block{
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-block:hover{
  transform: translateY(-2px);
  border-color: rgba(23,151,215,.30);
  box-shadow: 0 22px 65px rgba(17,24,39,.10);
}

/* 5) Títulos com detalhe azul */
.service-h2{
  position: relative;
  padding-left: 12px;
}
.service-h2::before{
  content: "";
  position: absolute;
  left: 0;
  top: .28em;
  width: 6px;
  height: 1.1em;
  border-radius: 999px;
  background: rgba(23,151,215,.70);
}

/* 6) Lista: marker mais Russell (bolinha azul) */
.service-list li::before{
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--brand);
  position: absolute;
  left: 2px;
  top: .55em;
  opacity: .95;
}

/* 7) Steps: hover */
.step{
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.step:hover{
  transform: translateX(2px);
  border-color: rgba(23,151,215,.28);
  background: rgba(23,151,215,.08);
}

/* 8) FAQ do serviço: hover e state open */
.svc-faq-item{
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.svc-faq-item:hover{
  transform: translateY(-2px);
  border-color: rgba(23,151,215,.32);
  box-shadow: 0 22px 60px rgba(17,24,39,.10);
}
.svc-faq-item[open]{
  border-color: rgba(23,151,215,.42);
}
.svc-faq-item summary{
  transition: background .18s ease;
}
.svc-faq-item:hover summary{
  background: rgba(23,151,215,.06);
}

/* 9) Aside: links + hover mais bonitos */
.service-aside-card{
  border-top: 3px solid rgba(23,151,215,.55);
}
.service-nav-link{
  position: relative;
  overflow: hidden;
}
.service-nav-link::before{
  content:"";
  position:absolute;
  left: -40%;
  top: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, rgba(23,151,215,0), rgba(23,151,215,.12), rgba(23,151,215,0));
  transform: skewX(-12deg);
  transition: left .35s ease;
}
.service-nav-link:hover::before{
  left: 120%;
}
.service-nav-link.active{
  box-shadow: 0 14px 45px rgba(17,24,39,.08);
}

/* 10) CTA final: hover */
.service-cta-box{
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-cta-box:hover{
  transform: translateY(-2px);
  border-color: rgba(23,151,215,.35);
  box-shadow: 0 26px 75px rgba(17,24,39,.12);
}

/* 11) Botões:*/
.btn-brand{
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.btn-brand:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 45px rgba(23,151,215,.20);
}

.btn-outline-brand{
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn-outline-brand:hover{
  transform: translateY(-1px);
}

/* =========================================================
   SERVIÇO – Galeria (3 imagens) | identidade Russell
   ========================================================= */

.service-gallery{
  margin: 10px 0 22px;
}

.service-gallery-head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.service-gallery-title{
  margin: 0;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0b2230;
}

.service-gallery-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.service-gallery-item{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(23,151,215,.18);
  background: rgba(23,151,215,.05);
  box-shadow: 0 14px 40px rgba(17,24,39,.06);
  display: block;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.service-gallery-item:hover{
  transform: translateY(-3px);
  box-shadow: 0 22px 65px rgba(17,24,39,.10);
  border-color: rgba(23,151,215,.35);
}

.service-gallery-item img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .55s ease;
}

.service-gallery-item:hover img{
  transform: scale(1.06);
}

.service-gallery-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 12px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.35) 100%);
  opacity: .95;
}

.service-gallery-overlay i{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  backdrop-filter: blur(10px);
}

/* Responsivo */
@media (max-width: 991px){
  .service-gallery-grid{
    grid-template-columns: 1fr;
  }
  .service-gallery-item img{
    height: 240px;
  }
}

/* WhatsApp flutuante */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 2000;

  background: #25D366;
  color: #fff;
  box-shadow: 0 18px 55px rgba(0,0,0,.22);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.wa-float:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 65px rgba(0,0,0,.28);
  filter: brightness(1.03);
}

.wa-float i{ font-size: 1.45rem; }

/* Onde estamos */
.map-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(23,151,215,.18);
  box-shadow: 0 18px 55px rgba(17,24,39,.08);
  background: rgba(23,151,215,.05);
  min-height: 360px;
}

.map-card iframe{
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

.locations-card{
  height: 100%;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(23,151,215,.18);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 55px rgba(17,24,39,.08);
}

.locations-title{
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0b2230;
  margin: 0 0 12px;
}

.locations-list{
  display: grid;
  gap: 10px;
}

.loc-item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  text-decoration: none;
  padding: 12px 12px;
  border-radius: 16px;

  background: rgba(23,151,215,.04);
  border: 1px solid rgba(23,151,215,.12);
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.loc-item:hover{
  transform: translateY(-2px);
  background: rgba(23,151,215,.08);
  border-color: rgba(23,151,215,.22);
  box-shadow: 0 14px 40px rgba(17,24,39,.08);
}

.loc-name{
  font-weight: 900;
  color: #0b2230;
}

.loc-addr{
  font-size: .92rem;
  line-height: 1.35;
}

.loc-item i{
  color: var(--brand-darker);
  font-size: 1.05rem;
}

@media (max-width: 991px){
  .map-card iframe{ height: 300px; }
}

.wa-float{
  background: var(--brand);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
}
.wa-float:hover{
  background: #25D366; /* WhatsApp */
}

/* Onde estamos – select + lista */
.locations-label{
  font-weight: 800;
  color: rgba(17,24,39,.80);
  margin-bottom: 6px;
  display: block;
}

.locations-select{
  border-radius: 14px;
  border-color: rgba(23,151,215,.18);
  box-shadow: 0 12px 32px rgba(17,24,39,.05);
}

.locations-select:focus{
  border-color: rgba(23,151,215,.45);
  box-shadow: 0 0 0 .2rem rgba(23,151,215,.12);
}

.loc-item{
  width: 100%;
  text-align: left;
  background: rgba(23,151,215,.04);
  border: 1px solid rgba(23,151,215,.12);
  border-radius: 16px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.loc-item:hover{
  transform: translateY(-2px);
  background: rgba(23,151,215,.08);
  border-color: rgba(23,151,215,.22);
  box-shadow: 0 14px 40px rgba(17,24,39,.08);
}

.loc-item.is-active{
  background: rgba(23,151,215,.12);
  border-color: rgba(23,151,215,.35);
}

.loc-addr{ color: rgba(17,24,39,.68); font-size: .92rem; line-height: 1.35; }
.loc-meta{ color: rgba(17,24,39,.55); font-size: .85rem; margin-top: 4px; }

/* =========================================================
   Onde estamos – lista com scroll (card não cresce a página)
   ========================================================= */

/* Garante que o card do mapa tenha altura consistente */
.map-card{
  min-height: 360px;
}
.map-card iframe{
  height: 360px;
}

/* Card das unidades com layout “fixo” */
.locations-card{
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 360px;  /* igual ao mapa */
}

/* Lista vira scroll interno */
.locations-list{
  flex: 1 1 auto;
  overflow-y: auto;
  padding-right: 6px;         /* espaço pro scrollbar */
  margin-top: 10px;
  max-height: 260px;          /* ajuste fino */
}

/* scrollbar bonitinho */
.locations-list::-webkit-scrollbar{
  width: 10px;
}
.locations-list::-webkit-scrollbar-thumb{
  background: rgba(23,151,215,.22);
  border-radius: 999px;
  border: 3px solid rgba(255,255,255,.75);
}
.locations-list::-webkit-scrollbar-thumb:hover{
  background: rgba(23,151,215,.32);
}
.locations-list::-webkit-scrollbar-track{
  background: rgba(17,24,39,.04);
  border-radius: 999px;
}

/* Mantém o botão “Agendar visita” sempre visível no final */
.locations-card .btn{
  flex: 0 0 auto;
}

/* Mobile: deixa crescer (scroll interno fica ruim em telas pequenas) */
@media (max-width: 991px){
  .map-card iframe{ height: 300px; }
  .locations-card{ min-height: auto; }
  .locations-list{ max-height: none; overflow: visible; padding-right: 0; }
}

/* =========================================================
   ORGANOGRAMA – layout igual ao modelo (comitês abaixo do CEO)
   ========================================================= */

/* Container mais largo só para o organograma (desktop) */
.org-container-wide{
  max-width: 1320px;
}
@media (min-width: 1400px){
  .org-container-wide{ max-width: 1520px; }
}
@media (min-width: 1600px){
  .org-container-wide{ max-width: 1640px; }
}

/* Ajusta espaçamentos dos tiers para “subir” a estrutura */
.org-wrap .tier{ margin-bottom: 34px; }
.org-wrap .tier-center{ margin-bottom: 28px; }

/* Comitês: fica logo abaixo do ESER e um pouco à direita do tronco */
.tier-comites-inline{
  position: relative;
  margin-top: -12px;      /* aproxima do CEO */
  margin-bottom: 10px;    /* aproxima dos setores */
}

/* No mobile, centraliza e remove deslocamento */
@media (max-width: 991px){
  .tier-comites-inline{ margin-top: 0; }
  #node-comites{ left: 0; }
}

/* =========================================================
   ORGANOGRAMA – Áreas como ícones compactos (1 linha)
   ========================================================= */

/* Classe para texto somente para leitores de tela */
.sr-only{
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* Grid das áreas: tenta 10 em 1 linha */
#tier-areas.bottom-areas{
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  justify-items: center;
  align-items: center;
  margin-top: 6px;
}

/* Ícone compacto */
.org-area-icon{
  position: relative;
  width: 56px;
  height: 56px;
  padding: 0 !important;
  border-radius: 999px; /* bolinha */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(23,151,215,.06);
  border: 1px solid rgba(23,151,215,.18);
  box-shadow: 0 12px 32px rgba(17,24,39,.06);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
}

/* se quiser quadradinho ao invés de bolinha, troque para 16px */
/* .org-area-icon{ border-radius: 16px; } */

.org-area-icon i{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(23,151,215,.10);
  border: 1px solid rgba(23,151,215,.18);
  color: var(--brand-darker);
  font-size: 1.05rem;
}

.org-area-icon:hover{
  transform: translateY(-2px);
  background: rgba(23,151,215,.10);
  border-color: rgba(23,151,215,.35);
  box-shadow: 0 18px 55px rgba(17,24,39,.10);
}

/* Tooltip “premium” usando o title (via pseudo-elemento) */
.org-area-icon::after{
  content: attr(title);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%);
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(11,34,48,.92);
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .01em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
  box-shadow: 0 18px 55px rgba(0,0,0,.25);
}

.org-area-icon::before{
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 4px);
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: rgba(11,34,48,.92);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  opacity: 0;
  transition: opacity .15s ease;
}

.org-area-icon:hover::after,
.org-area-icon:hover::before{
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

/* Responsivo */
@media (max-width: 1200px){
  #tier-areas.bottom-areas{ grid-template-columns: repeat(8, 1fr); }
}
@media (max-width: 991px){
  #tier-areas.bottom-areas{ grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 576px){
  #tier-areas.bottom-areas{ grid-template-columns: repeat(3, 1fr); }
}

/* dá mais “respiro” no organograma */
.org-wrap{
  padding-bottom: 70px; /* aumenta altura para baixo */
}

/* afasta a linha das Áreas (ícones) dos Setores */
#tier-areas{
  margin-top: 26px;  /* empurra para baixo */
}

/* deixa o tier dos setores um pouco mais “alto” sem colar nos ícones */
#tier-sectors{
  margin-bottom: 16px;
}

/* Onde estamos – mini hero slider */
.where-hero{
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(23,151,215,.18);
  box-shadow: 0 18px 55px rgba(17,24,39,.08);
}

.whereSwiper{
  width: 100%;
  height: 300px;
}

.whereSwiper .swiper-slide{
  background-size: cover;
  background-position: center;
}

.where-slide-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,16,32,.68) 0%, rgba(11,16,32,.15) 60%, rgba(11,16,32,0) 100%);
  display: flex;
  align-items: flex-end;
}

.where-slide-caption{
  padding: 18px;
  color: #fff;
  max-width: 520px;
}

.where-slide-caption h3{
  margin: 10px 0 4px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.where-slide-caption p{
  margin: 0;
  color: rgba(255,255,255,.78);
}

/* Lista resumo */
.locations-summary{
  background: #fff;
  border: 1px solid rgba(23,151,215,.14);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 18px 55px rgba(17,24,39,.06);
}

.loc-line{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 10px;
  border-radius: 16px;
  border: 1px solid rgba(17,24,39,.06);
  background: rgba(23,151,215,.04);
  margin-bottom: 10px;
}

.loc-line:last-child{ margin-bottom: 0; }

.loc-line .loc-name{
  font-weight: 900;
  color: #0b2230;
}
.loc-line .loc-addr{
  font-size: .92rem;
  line-height: 1.35;
}

/* Modal padrão Russell */
.modal-rbb{
  border-radius: 20px;
  border: 1px solid rgba(23,151,215,.18);
  box-shadow: 0 22px 80px rgba(17,24,39,.16);
}

.contact-location-bar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  margin-bottom: 14px;
}
.section-brand .contact-location-bar{
  background: rgba(255,255,255,.10);
}
.contact-location-label{
  font-weight: 800;
  color: rgba(255,255,255,.75);
  font-size: .82rem;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.contact-location-value{
  font-weight: 900;
  color: #fff;
}

/* =========================================================
   Onde estamos – Hero com slides (maior) + card transparente
   ========================================================= */

.where-hero-slider{
  position: relative;
  min-height: 82vh;     /* maior para aparecer mais as imagens */
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b1020;
}

.where-hero-slider .whereSwiper{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.where-hero-slider .swiper-wrapper,
.where-hero-slider .swiper-slide{
  height: 100%;
}

.where-hero-slider .swiper-slide{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(1.03);
}

/* Overlay estilo Russell */
.where-hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(60% 70% at 30% 20%,
    rgba(23,151,215,.42) 0%,
    rgba(17,35,60,.52) 58%,
    rgba(17,35,60,.60) 100%) !important;
}

/* Conteúdo */
.where-hero-content{
  position: relative;
  z-index: 2;
  padding: 84px 0;
}

.where-hero-title{
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.where-hero-lead{
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  max-width: 62ch;
}

/* Card transparente que “preenche” no hover */
.where-glass-card{
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.where-glass-card:hover{
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.26);
  transform: translateY(-2px);
}

/* Setas/paginação */
.where-hero-slider .swiper-button-next,
.where-hero-slider .swiper-button-prev{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
}
.where-hero-slider .swiper-button-next::after,
.where-hero-slider .swiper-button-prev::after{
  font-size: 16px;
  color: #fff;
}

.where-hero-slider .swiper-pagination{
  bottom: 18px !important;
}
.where-hero-slider .swiper-pagination-bullet{
  background: rgba(255,255,255,.55);
  opacity: 1;
}
.where-hero-slider .swiper-pagination-bullet-active{
  background: #fff;
}

@media (max-width: 991px){
  .where-hero-slider{ min-height: 62vh; }
  .where-hero-content{ padding: 64px 0; }
}

/* =========================================================
   ONDE ESTAMOS – Card transparente e “preenche” no hover
   (mesma lógica do hero principal)
   ========================================================= */

.where-hero-slider .where-card{
  /* estado padrão: vidro */
  background: rgba(255,255,255,.10) !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  box-shadow: 0 18px 55px rgba(0,0,0,.18) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 18px !important;
  transition: background .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

/* Texto padrão em branco */
.where-hero-slider .where-card h5,
.where-hero-slider .where-card .fw-semibold{
  color: rgba(255,255,255,.92) !important;
}

.where-hero-slider .where-card .text-white-50,
.where-hero-slider .where-card .text-muted{
  color: rgba(255,255,255,.72) !important;
}

/* Ícones no estado vidro */
.where-hero-slider .where-card > .d-flex > i{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;

  background: rgba(255,255,255,.10) !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  color: rgba(255,255,255,.92) !important;
}

/* Hover do card: vira branco */
.where-hero-slider .where-card:hover{
  background: rgba(255,255,255,.94) !important;
  border-color: rgba(23,151,215,.35) !important;
  box-shadow: 0 26px 75px rgba(17,24,39,.18) !important;
  transform: translateY(-4px);
}

/* No hover: texto escuro */
.where-hero-slider .where-card:hover h5,
.where-hero-slider .where-card:hover .fw-semibold{
  color: #0b2230 !important;
}

.where-hero-slider .where-card:hover .text-white-50,
.where-hero-slider .where-card:hover .text-muted{
  color: rgba(17,24,39,.68) !important;
}

/* No hover: ícones padrão Russell */
.where-hero-slider .where-card:hover > .d-flex > i{
  background: rgba(23,151,215,.10) !important;
  border-color: rgba(23,151,215,.20) !important;
  color: var(--brand-darker) !important;
}

/* Hover por item (igual ao hero) */
.where-hero-slider .where-card > .d-flex{
  padding: 10px 10px;
  border-radius: 14px;
  transition: background .18s ease, transform .18s ease;
}
.where-hero-slider .where-card:hover > .d-flex:hover{
  background: rgba(23,151,215,.08);
  transform: translateX(2px);
}

/* Onde estamos – mosaico (seção normal) */
.where-mosaic{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  height: 100%;
}

.where-tile{
  position: relative;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  min-height: 180px;
  background-size: cover;
  background-position: center;
  cursor: pointer;

  box-shadow: 0 18px 55px rgba(17,24,39,.08);
  border: 1px solid rgba(23,151,215,.18);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.where-tile::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.35) 100%);
  transition: opacity .18s ease;
}

.where-tile span{
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-weight: 900;
  font-size: .92rem;
  backdrop-filter: blur(10px);
}

.where-tile:hover{
  transform: translateY(-3px);
  border-color: rgba(23,151,215,.30);
  box-shadow: 0 26px 75px rgba(17,24,39,.12);
}

.where-tile:hover::before{ opacity: .9; }

@media (max-width: 991px){
  .where-mosaic{ grid-template-columns: 1fr; }
  .where-tile{ min-height: 200px; }
}

/* =========================================================
   ONDE ESTAMOS – slider lateral (sem cara de hero gigante)
   ========================================================= */

.where-slider{
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(17,178,213,.75);
  box-shadow: 0 18px 55px rgba(17,24,39,.08);
  background: #fff;
}

/* altura boa pra ficar como no print */
.whereSwiper{
  width: 100%;
  height: 360px;
}

.where-slide{
  position: relative;
  border: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  padding: 0;
}

/* overlay suave (não escurece demais) */
.where-slide::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.03) 0%, rgba(0,0,0,.28) 100%);
}

/* tag da cidade */
.where-slide span{
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-weight: 900;
  font-size: .95rem;
  backdrop-filter: blur(10px);
}

.where-slide:hover{
  transform: none; /* evita "pulo" dentro do swiper */
}

/* Setas/paginação (padrão Russell) */
.whereSwiper .swiper-button-next,
.whereSwiper .swiper-button-prev{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
}

.whereSwiper .swiper-button-next::after,
.whereSwiper .swiper-button-prev::after{
  font-size: 16px;
  color: #fff;
}

.whereSwiper .swiper-pagination{
  bottom: 14px !important;
}
.whereSwiper .swiper-pagination-bullet{
  background: rgba(255,255,255,.55);
  opacity: 1;
}
.whereSwiper .swiper-pagination-bullet-active{
  background: #fff;
}

/* Card esquerdo: espaçamento melhor com slider */
#onde-estamos .content-panel{
  padding: 22px;
}
.where-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Responsivo */
@media (max-width: 991px){
  .whereSwiper{ height: 300px; }
}

/* =========================================================
   ONDE ESTAMOS – slider com cara Russell
   ========================================================= */

.where-slider{
  border: 1px solid rgba(23,151,215,.22);
  box-shadow: 0 22px 70px rgba(17,24,39,.10);
}

/* slide hover (efeito premium, sem “pulo”) */
.where-slide{
  transition: filter .2s ease;
}
.where-slide::before{
  background: linear-gradient(180deg, rgba(0,0,0,.02) 0%, rgba(0,0,0,.32) 100%);
  transition: opacity .2s ease;
}
.where-slide:hover::before{
  opacity: .95;
}

/* Tag da cidade mais Russell */
.where-slide span{
  left: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border-radius: 999px;

  /* vidro + borda Russell */
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 14px 40px rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  font-weight: 900;
  letter-spacing: -0.01em;
}

/* Um detalhe Russell no hover: “acende” a borda */
.where-slide:hover span{
  border-color: rgba(23,151,215,.55);
  background: rgba(255,255,255,.18);
}

/* setas um pouco mais elegantes */
.whereSwiper .swiper-button-next,
.whereSwiper .swiper-button-prev{
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  transition: transform .15s ease, background .15s ease;
}
.whereSwiper .swiper-button-next:hover,
.whereSwiper .swiper-button-prev:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.20);
}

.whereSwiper .swiper-slide{ height: 100%; }
.where-slide{
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background-size: cover;
  background-position: center;
  border-radius: 0; /* quem arredonda é o container */
}

/* Onde estamos – card esquerdo preencher altura */
#onde-estamos .content-panel{
  display: flex;
  flex-direction: column;
}

#onde-estamos .where-chips{
  margin-top: 10px;
}

#onde-estamos .where-actions{
  margin-top: auto; /* empurra botões para o rodapé do card */
  padding-top: 18px;
}

/* =========================================================
   ONDE ESTAMOS – Slider estilo Russell (azul + zoom + bullets)
   ========================================================= */

.whereSwiper .swiper-button-next,
.whereSwiper .swiper-button-prev{
  width: 46px;
  height: 46px;
  border-radius: 999px;

  background: rgba(255,255,255,.86) !important;
  border: 1px solid rgba(23,151,215,.55) !important;
  box-shadow: 0 18px 40px rgba(17,24,39,.16);
  backdrop-filter: blur(10px);

  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.whereSwiper .swiper-button-next:hover,
.whereSwiper .swiper-button-prev:hover{
  transform: translateY(-1px);
  background: var(--brand) !important;
  border-color: rgba(23,151,215,.80) !important;
}

.whereSwiper .swiper-button-next::after,
.whereSwiper .swiper-button-prev::after{
  font-size: 16px;
  color: var(--brand-darker) !important;
}

.whereSwiper .swiper-button-next:hover::after,
.whereSwiper .swiper-button-prev:hover::after{
  color: #fff !important;
}

/* Paginação: bolinhas azuis */
.whereSwiper .swiper-pagination{
  bottom: 14px !important;
}

.whereSwiper .swiper-pagination-bullet{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  opacity: 1;
  transition: transform .15s ease, background .15s ease, opacity .15s ease;
}

.whereSwiper .swiper-pagination-bullet-active{
  background: rgba(23,151,215,1) !important;
  transform: scale(1.25);
}

/* Slide “clicável”: zoom leve na imagem no hover */
.whereSwiper .swiper-slide{
  overflow: hidden;
}

.where-slide{
  position: relative;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: transform .28s ease, filter .28s ease;
  will-change: transform;
}

.where-slide::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.02) 0%, rgba(0,0,0,.26) 100%);
  transition: opacity .2s ease;
}

.where-slide:hover{
  transform: scale(1.015);
  filter: saturate(1.02);
}

.where-slide:hover::before{
  opacity: .95;
}

/* Tag da cidade (outline -> preenche no hover, igual botão) */
.where-slide > .where-city,
.where-slide > span.where-city,
.where-slide > .where-city-tag,
.where-slide > .where-city-pill,
.where-slide > span{
  position: absolute;
  left: 16px;
  bottom: 16px;

  padding: 10px 14px;
  border-radius: 999px;

  background: rgba(255,255,255,.86);
  border: 1px solid rgba(23,151,215,.55);
  color: var(--brand-darker);
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 18px 40px rgba(17,24,39,.14);

  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}

.where-slide:hover > .where-city,
.where-slide:hover > span.where-city,
.where-slide:hover > .where-city-tag,
.where-slide:hover > .where-city-pill,
.where-slide:hover > span{
  background: var(--brand);
  border-color: rgba(23,151,215,.80);
  color: #fff;
  transform: translateY(-1px);
}

/* Hover da tag: dá “vida” */
.where-slide:hover span{
  filter: brightness(1.04);
}

/* =========================================================
   HEADER NOVO – estilo referência Bizicorp adaptado à Russell
   ========================================================= */

body{
  padding-top: 0 !important;
}

.site-header{
  position: relative;
  z-index: 1030;
}

.navbar-modern{
  padding: 18px 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transition: background .28s ease, box-shadow .28s ease, padding .28s ease;
}

.navbar-modern .container{
  display: flex;
  align-items: center;
}

.brand-logo{
  height: 52px;
  width: auto;
  display: block;
}

.brand-logo-white{
  display: none;
}

.site-header-home .brand-logo-default{
  display: none;
}

.site-header-home .brand-logo-white{
  display: block;
}

.site-header-inner .brand-logo-default{
  display: block;
}

.site-header-inner .brand-logo-white{
  display: none;
}

/* HOME: navbar transparente no topo */
.site-header-home .navbar-modern:not(.is-scrolled){
  background: transparent !important;
}

.site-header-home .navbar-modern:not(.is-scrolled) .nav-link,
.site-header-home .navbar-modern:not(.is-scrolled) .nav-icon,
.site-header-home .navbar-modern:not(.is-scrolled) .header-socials a{
  color: #fff !important;
}

.site-header-home .navbar-modern:not(.is-scrolled) .nav-link:hover,
.site-header-home .navbar-modern:not(.is-scrolled) .nav-icon:hover,
.site-header-home .navbar-modern:not(.is-scrolled) .header-socials a:hover{
  color: rgba(255,255,255,.82) !important;
}

/* PÁGINAS INTERNAS: navbar clara desde o início */
.site-header-inner .navbar-modern{
  background: rgba(255,255,255,.96) !important;
  box-shadow: 0 10px 30px rgba(17,24,39,.08) !important;
}

.site-header-inner .navbar-modern .nav-link,
.site-header-inner .navbar-modern .nav-icon,
.site-header-inner .navbar-modern .header-socials a{
  color: #111827 !important;
}

/* Estado após scroll */
.navbar-modern.is-scrolled{
  background: rgba(255,255,255,.96) !important;
  box-shadow: 0 10px 30px rgba(17,24,39,.10) !important;
  padding: 12px 0 !important;
}

.navbar-modern.is-scrolled .nav-link,
.navbar-modern.is-scrolled .nav-icon,
.navbar-modern.is-scrolled .header-socials a{
  color: #111827 !important;
}

.site-header-home .navbar-modern.is-scrolled .brand-logo-default{
  display: block;
}

.site-header-home .navbar-modern.is-scrolled .brand-logo-white{
  display: none;
}

/* Links */
.navbar-modern .nav-link{
  font-size: .95rem;
  font-weight: 600;
  padding: 10px 12px !important;
  transition: color .2s ease, opacity .2s ease;
}

.navbar-modern .nav-link.active{
  color: var(--brand) !important;
}

/* CTA */
.btn-header-cta{
  background: var(--brand);
  color: #fff;
  border: 1px solid var(--brand);
  border-radius: 999px;
  padding: .68rem 1.05rem;
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.btn-header-cta:hover{
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* Ícones */
.nav-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-socials{
  gap: 10px;
  margin-left: 6px;
}

.header-socials a{
  text-decoration: none;
  font-size: .95rem;
  transition: transform .2s ease, opacity .2s ease;
}

.header-socials a:hover{
  transform: translateY(-1px);
}

/* Dropdown */
.navbar-modern .dropdown-menu{
  border: 0;
  border-radius: 14px;
  padding: 10px;
  min-width: 230px;
  box-shadow: 0 18px 45px rgba(17,24,39,.14);
}

.navbar-modern .dropdown-item{
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 600;
}

.navbar-modern .dropdown-item:hover{
  background: rgba(23,151,215,.10);
  color: var(--brand-darker);
}

/* Toggler */
.navbar-toggler{
  border: 0;
  box-shadow: none !important;
}

.site-header-home .navbar-modern:not(.is-scrolled) .navbar-toggler{
  filter: brightness(0) invert(1);
}

/* Mobile */
@media (max-width: 991px){
  .navbar-modern{
    padding: 14px 0 !important;
  }

  .brand-logo{
    height: 44px;
  }

  .navbar-collapse{
    margin-top: 12px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 18px 45px rgba(17,24,39,.12);
  }

  .navbar-collapse .nav-link,
  .navbar-collapse .nav-icon,
  .navbar-collapse .header-socials a{
    color: #111827 !important;
  }

  .header-socials{
    margin-top: 10px;
  }
}

/* HEADER SOLTO SOBRE O HERO */
.site-header{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
}

.navbar-modern{
  padding: 18px 0 !important;
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 0 !important;
  transition: background .28s ease, box-shadow .28s ease, padding .28s ease;
}

.site-header-home .navbar-modern:not(.is-scrolled){
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.site-header-home .navbar-modern:not(.is-scrolled) .nav-link,
.site-header-home .navbar-modern:not(.is-scrolled) .nav-link.dropdown-toggle,
.site-header-home .navbar-modern:not(.is-scrolled) .nav-icon,
.site-header-home .navbar-modern:not(.is-scrolled) .header-socials a{
  color: #fff !important;
}

.site-header-home .navbar-modern:not(.is-scrolled) .nav-link:hover,
.site-header-home .navbar-modern:not(.is-scrolled) .nav-icon:hover,
.site-header-home .navbar-modern:not(.is-scrolled) .header-socials a:hover{
  color: rgba(255,255,255,.82) !important;
}

.btn-header-cta{
  background: #1da1f2;
  color: #fff;
  border: 1px solid #1da1f2;
  border-radius: 999px;
  padding: .72rem 1.15rem;
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: none;
}

.btn-header-cta:hover{
  background: #1587cd;
  border-color: #1587cd;
  color: #fff;
}

.dropdown-submenu{
  position: relative;
}

.dropdown-submenu > .dropdown-menu{
  top: 0;
  left: 100%;
  margin-left: .1rem;
  margin-top: -0.15rem;
  display: none;
}

.dropdown-submenu.show > .dropdown-menu{
  display: block;
}

.dropdown-submenu > .dropdown-item.dropdown-toggle{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-submenu > .dropdown-item.dropdown-toggle::after{
  content: "";
  border-top: .3em solid transparent;
  border-bottom: .3em solid transparent;
  border-left: .3em solid currentColor;
  border-right: 0;
  margin-left: .6rem;
}

/* =========================================================
   HERO HOME – adaptação inspirada na referência
   ========================================================= */

.hero-biz{
  position: relative;
  min-height: 820px;
  height: 88vh;
  max-height: 920px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #082b46;
  background-image: url('/assets/img/fundo-3.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-biz .heroSwiper{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-biz .swiper{
  width: 100%;
  height: 100%;
}

.hero-biz .swiper-wrapper{
  width: 100%;
  height: 100%;
}

.hero-biz .swiper-slide{
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-biz .swiper-slide{
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-biz .hero-content{
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 90px;
}

.hero-copy{
  max-width: 700px;
}

.hero-kicker{
  color: #ffffff;
  font-size: .96rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: 0;
}

.hero-title{
  color: #ffffff;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  max-width: 760px;
  text-shadow: 0 2px 16px rgba(0,0,0,.10);
}

.hero-sub{
  color: rgba(255,255,255,.88);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 500;
  margin: 0;
  max-width: 580px;
}

/* Botões */
.hero-actions{
  align-items: stretch;
}

/* Botões do hero – identidade Russell */
.hero-actions{
  align-items: stretch;
  gap: 14px !important;
}

.btn-hero-primary,
.btn-hero-secondary{
  min-height: 52px;
  padding: 0 24px;
  border-radius: 12px;
  font-size: .98rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all .22s ease;
}

/* Primário */
.btn-hero-primary{
  background: #ed8b00;
  border: 1px solid #ed8b00;
  color: #fff;
  box-shadow: 0 10px 24px rgba(23,151,215,.18);
}

.btn-hero-primary:hover{
  background: #b56c04;
  border-color: #b56c04;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(23,151,215,.22);
}

/* Secundário */
.btn-hero-secondary{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.btn-hero-secondary:hover{
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.34);
  color: #fff;
  transform: translateY(-1px);
}

/* Setas laterais */
.hero-biz .swiper-button-prev,
.hero-biz .swiper-button-next{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  z-index: 4;
  transition: all .2s ease;
}

.hero-biz .swiper-button-prev:hover,
.hero-biz .swiper-button-next:hover{
  background: rgba(255,255,255,.16);
}

.hero-biz .swiper-button-prev::after,
.hero-biz .swiper-button-next::after{
  font-size: 14px;
  font-weight: 800;
}

/* Paginação */
.hero-biz .swiper-pagination{
  z-index: 4;
  bottom: 28px !important;
}

.hero-biz .swiper-pagination-bullet{
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,.45);
  opacity: 1;
}

.hero-biz .swiper-pagination-bullet-active{
  background: #1da1f2;
}

/* Role para ver mais */
.hero-scroll-hint{
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(7, 30, 55, 0.22);
  color: #fff;
  text-decoration: none;
  font-size: .95rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all .2s ease;
}

.hero-scroll-hint:hover{
  background: rgba(255,255,255,.12);
  color: #fff;
}

/* Mobile */
@media (max-width: 991px){
  .hero-biz{
    min-height: 92vh;
  }

  .hero-biz .hero-content{
    padding-top: 130px;
    padding-bottom: 110px;
  }

  .hero-title{
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.12;
  }

  .hero-sub{
    font-size: 1rem;
    line-height: 1.65;
  }

  .btn-hero-primary,
  .btn-hero-secondary{
    width: 100%;
    min-height: 54px;
  }

  .hero-biz .swiper-button-prev,
  .hero-biz .swiper-button-next{
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 575px){
  .hero-biz .hero-content{
    padding-top: 120px;
    padding-bottom: 105px;
  }

  .hero-kicker{
    font-size: .95rem;
    margin-bottom: 16px;
  }

  .hero-title{
    margin-bottom: 18px;
  }

  .hero-sub{
    font-size: .98rem;
  }

  .hero-scroll-hint{
    bottom: 20px;
    font-size: .88rem;
    padding: 9px 14px;
  }
}

.hero-title-wrap{
  position: relative;
  padding-left: 28px;
}

.hero-title-wrap::before{
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 158px;
  background: rgba(255,255,255,.78);
}

@media (max-width: 767px){
  .hero-title-wrap{
    padding-left: 18px;
  }

  .hero-title-wrap::before{
    width: 3px;
    height: 110px;
  }
}

/* =========================================================
   SEÇÃO DUPLA – POR QUE ESCOLHER + O QUE OFERECEMOS
   ========================================================= */

.rbb-dual-section{
  position: relative;
  overflow: hidden;
}

.rbb-dual-top{
  background: #f7f8fb;
  padding: 110px 0 210px;
  position: relative;
  z-index: 1;
}

.rbb-dual-top::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(
    180deg,
    rgba(247,248,251,0) 0%,
    rgba(15,45,87,0.06) 55%,
    rgba(15,45,87,0.14) 100%
  );
  pointer-events: none;
}

.rbb-dual-head{
  max-width: 900px;
  margin: 0 auto 42px;
}

.rbb-dual-intro{
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #5f6b7a;
  margin-bottom: 0;
}

.rbb-overlap-cards{
  position: relative;
  margin-bottom: -150px;
  z-index: 3;
}

.rbb-feature-card{
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 39, 66, 0.10);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}

.rbb-feature-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(15, 39, 66, 0.14);
}

.rbb-feature-card{
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 39, 66, 0.08);
  box-shadow: 0 18px 40px rgba(15, 39, 66, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}

.rbb-feature-card::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
}

.rbb-feature-icon{
  padding: 34px 34px 0;
  font-size: 2rem;
  color: var(--brand);
  line-height: 1;
}

.rbb-feature-title{
  padding: 16px 34px 0;
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.3;
  font-weight: 800;
  color: var(--brand-darker);
}

.rbb-feature-text{
  padding: 16px 34px 26px;
  margin: 0;
  color: #5d6775;
  line-height: 1.75;
  font-size: 1rem;
}

.rbb-feature-image{
  margin-top: auto;
}

.rbb-feature-image img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.rbb-dual-bottom{
  position: relative;
  background:
    linear-gradient(135deg, #0f2d57 0%, #143a6a 48%, #0b2344 100%);
  padding: 165px 0 110px;
  overflow: hidden;
}

.rbb-dual-bg-shape{
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 85% 28%, rgba(60, 130, 210, 0.14) 0%, rgba(60, 130, 210, 0.00) 28%),
    radial-gradient(circle at 12% 82%, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.00) 24%),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size:
    auto,
    auto,
    120px 120px,
    120px 120px;
  opacity: .28;
}

.eyebrow-light span{
  color: rgba(255,255,255,.82);
}

.eyebrow-light .eyebrow-line{
  background: rgba(255,255,255,.35);
}

.rbb-services-intro{
  position: relative;
  z-index: 2;
  padding-top: 8px;
}

.rbb-services-lead{
  color: rgba(255,255,255,.78);
  font-size: 1.02rem;
  line-height: 1.8;
  margin: 0;
  max-width: 380px;
}

.rbb-service-item{
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.rbb-service-icon{
  width: 60px;
  min-width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  color: #ffffff;
  font-size: 1.55rem;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.rbb-service-item h3{
  margin: 2px 0 8px;
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 800;
}

.rbb-service-item p{
  margin: 0;
  color: rgba(255,255,255,.90);
  line-height: 1.7;
  font-size: .98rem;
  max-width: 390px;
}

/* ajustes dos títulos na área azul */
.rbb-dual-bottom .section-title{
  color: #fff;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 16px;
}

/* responsivo */
@media (max-width: 991px){
  .rbb-dual-top{
    padding: 90px 0 120px;
  }

  .rbb-overlap-cards{
    margin-bottom: 0;
  }

  .rbb-dual-bottom{
    padding: 90px 0 90px;
  }

  .rbb-dual-bg-shape{
    width: 420px;
    height: 420px;
    border-width: 60px;
    right: -120px;
    top: 120px;
  }

  .rbb-services-lead{
    max-width: 100%;
  }
}

@media (max-width: 767px){
  .rbb-dual-top{
    padding: 80px 0 90px;
  }

  .rbb-dual-head{
    margin-bottom: 30px;
  }

  .rbb-feature-icon{
    padding: 26px 24px 0;
  }

  .rbb-feature-title{
    padding: 14px 24px 0;
    font-size: 1.3rem;
  }

  .rbb-feature-text{
    padding: 14px 24px 22px;
    font-size: .98rem;
  }

  .rbb-feature-image img{
    height: 200px;
  }

  .rbb-dual-bottom{
    padding: 80px 0 80px;
  }

  .rbb-service-item{
    gap: 14px;
  }

  .rbb-service-icon{
    width: 54px;
    min-width: 54px;
    height: 54px;
    border-radius: 16px;
    font-size: 1.4rem;
  }

  .rbb-service-item h3{
    font-size: 1.15rem;
  }

  .rbb-service-item p{
    font-size: .96rem;
  }
}

@media (min-width: 992px){
  .rbb-overlap-cards{
    margin-bottom: -130px;
  }
}

.rbb-dual-section{
  position: relative;
  overflow: visible;
}

.rbb-dual-top{
  background: #f7f8fb;
  padding: 110px 0 120px;
  position: relative;
  z-index: 2;
  overflow: visible;
}

.rbb-overlap-cards{
  position: relative;
  margin-bottom: -250px;
  z-index: 5;
}

.rbb-dual-bottom{
  position: relative;
  background: linear-gradient(135deg, #22a6e8 0%, #1b8fd3 45%, #176cab 100%);
  padding: 270px 0 110px;
  overflow: hidden;
  z-index: 1;
}

.rbb-services-intro .btn-brand{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.rbb-services-intro .btn-brand:hover{
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.34);
  color: #fff;
  transform: translateY(-1px);
}

/* =========================================================
   NOSSOS NÚMEROS
   ========================================================= */

.numbers-rbb{
  background: #f5f8fc;
  position: relative;
  overflow: hidden;
}

.numbers-rbb::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(23,151,215,.08) 0%, rgba(23,151,215,0) 22%),
    radial-gradient(circle at 82% 72%, rgba(13,51,102,.06) 0%, rgba(13,51,102,0) 20%);
  pointer-events: none;
}

.number-card{
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 20px;
  padding: 32px 20px 28px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(13,51,102,.08);
  box-shadow: 0 16px 36px rgba(13,51,102,.07);
  transition: transform .25s ease, box-shadow .25s ease;
}

.number-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(13,51,102,.10);
}

.number-icon{
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(23,151,215,.10);
  color: var(--brand);
  font-size: 1.6rem;
}

.number-value{
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  color: var(--brand-darker);
  margin-bottom: 12px;
}

.number-label{
  color: #5d6775;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 600;
}

/* =========================================================
   ÚLTIMAS NOTÍCIAS
   ========================================================= */

.news-rbb{
  background: #ffffff;
}

.news-main-btn{
  min-width: 220px;
}

.news-card-rbb{
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(13,51,102,.08);
  box-shadow: 0 14px 34px rgba(13,51,102,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.news-card-rbb:hover{
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(13,51,102,.10);
}

.news-thumb{
  display: block;
  text-decoration: none;
}

.news-thumb img{
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.news-body{
  padding: 22px 22px 24px;
}

.news-tag{
  display: inline-flex;
  align-items: center;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--brand);
  margin-bottom: 12px;
}

.news-title{
  font-size: 1.16rem;
  line-height: 1.38;
  font-weight: 800;
  margin: 0 0 10px;
}

.news-title a{
  color: var(--brand-darker);
  text-decoration: none;
}

.news-title a:hover{
  color: var(--brand);
}

.news-text{
  margin: 0;
  color: #657081;
  line-height: 1.7;
  font-size: .97rem;
}

@media (max-width: 991px){
  .news-main-btn{
    min-width: auto;
    width: 100%;
  }

  .news-thumb img{
    height: 220px;
  }
}

@media (max-width: 767px){
  .news-thumb img{
    height: 210px;
  }

  .news-body{
    padding: 18px 18px 20px;
  }

  .news-title{
    font-size: 1.05rem;
  }

  .news-text{
    font-size: .95rem;
  }
}

.news-meta{
  display:block;
  font-size:.84rem;
  color:#8a95a3;
  margin-bottom:10px;
}
/* =========================================================
   ONDE ESTAMOS
   ========================================================= */

.where-rbb .content-panel{
  background: #fff;
  border: 1px solid rgba(13,51,102,.08);
  box-shadow: 0 18px 40px rgba(13,51,102,.07);
  border-radius: 20px;
  padding: 30px;
}

/* responsivo */
@media (max-width: 991px){
  .insights-main-btn{
    min-width: auto;
    width: 100%;
  }

  .insight-thumb img{
    height: 220px;
  }

  .where-rbb .content-panel{
    padding: 24px;
  }
}

@media (max-width: 767px){
  .number-card{
    padding: 24px 16px 22px;
    border-radius: 16px;
  }

  .number-icon{
    width: 58px;
    height: 58px;
    border-radius: 16px;
    font-size: 1.4rem;
  }

  .number-value{
    font-size: 1.9rem;
  }

  .number-label{
    font-size: .94rem;
  }

  .insight-thumb img{
    height: 210px;
  }

  .insight-body{
    padding: 18px 18px 20px;
  }

  .insight-title{
    font-size: 1.08rem;
  }

  .insight-text{
    font-size: .95rem;
  }
}

/* =========================================================
   FALE CONOSCO – RUSSELL
   ========================================================= */

.contact-rbb-parallax{
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: #fff;

  background-image:
    linear-gradient(90deg,
      rgba(9, 38, 77, 0.82) 0%,
      rgba(9, 38, 77, 0.72) 34%,
      rgba(9, 38, 77, 0.56) 62%,
      rgba(9, 38, 77, 0.66) 100%),
    url('../img/a.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.contact-rbb-inner{
  position: relative;
  z-index: 3;
}

.contact-rbb-copy{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 20px;
}

.contact-rbb-title{
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.12;
  font-weight: 800;
  margin: 0 0 18px;
}

.contact-rbb-lead{
  color: rgba(255,255,255,.88);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 540px;
}

.contact-rbb-info-list{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-rbb-info-card{
  display: flex;
  gap: 16px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  padding: 18px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.contact-rbb-info-card:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.20);
  color: #fff;
}

.contact-rbb-info-ico{
  width: 52px;
  min-width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  font-size: 1.25rem;
}

.contact-rbb-info-title{
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-rbb-info-text{
  color: rgba(255,255,255,.80);
  line-height: 1.6;
}

/* Barra da unidade */
.contact-rbb-parallax .contact-location-bar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  margin-bottom: 0;
  color: #fff;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.contact-rbb-parallax .contact-location-label{
  font-weight: 700;
  color: rgba(255,255,255,.72);
  font-size: .84rem;
  letter-spacing: .02em;
}

.contact-rbb-parallax .contact-location-value{
  font-size: 1.08rem;
  font-weight: 800;
  color: #fff;
}

.btn-contact-switch{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
}

.btn-contact-switch:hover{
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.24);
  color: #fff;
}

/* Card do formulário */
.contact-rbb-form-card{
  background: rgba(255,255,255,.96);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 30px 60px rgba(5, 18, 38, 0.20);
  border: 1px solid rgba(255,255,255,.65);
  color: #163456;
}

.contact-rbb-form-head{
  margin-bottom: 24px;
}

.contact-rbb-form-kicker{
  display: inline-block;
  color: var(--brand);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-rbb-form-head h3{
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 800;
  color: var(--brand-darker);
  margin: 0 0 10px;
}

.contact-rbb-form-head p{
  margin: 0;
  color: #667281;
  line-height: 1.7;
}

.contact-rbb-form-card .form-control{
  border-radius: 14px;
  border: 1px solid rgba(13,51,102,.12);
  background: #f7f9fc;
  padding: 14px 16px;
  min-height: 52px;
  box-shadow: none;
}

.contact-rbb-form-card .form-control:focus{
  border-color: rgba(23,151,215,.45);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(23,151,215,.10);
}

.contact-rbb-form-card textarea.form-control{
  min-height: 150px;
  resize: vertical;
}

/* Responsivo */
@media (max-width: 991px){
  .contact-rbb-parallax{
    padding: 90px 0;
  }

  .contact-rbb-copy{
    padding-right: 0;
  }

  .contact-rbb-form-card{
    padding: 26px;
    border-radius: 20px;
  }
}

@media (max-width: 767px){
  .contact-rbb-parallax{
    padding: 80px 0;
  }

  .contact-rbb-title{
    font-size: 2rem;
  }

  .contact-rbb-lead{
    font-size: .98rem;
  }

  .contact-rbb-form-head h3{
    font-size: 1.6rem;
  }

  .contact-rbb-form-card{
    padding: 22px;
  }

  .contact-rbb-parallax .contact-location-bar{
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 991px){
  .contact-rbb-parallax{
    background-attachment: scroll;
    padding: 90px 0;
  }
}

.contact-rbb-form-card{
  background: rgba(255,255,255,.14);
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 28px 60px rgba(5, 18, 38, 0.18);
  border: 1px solid rgba(255,255,255,.18);
  color: #163456;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background .28s ease, border-color .28s ease, box-shadow .28s ease, transform .28s ease;
}

.contact-rbb-form-card:hover{
  background: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.48);
  box-shadow: 0 34px 70px rgba(5, 18, 38, 0.22);
  transform: translateY(-2px);
}

.contact-rbb-form-head{
  margin-bottom: 24px;
  transition: color .28s ease;
}

.contact-rbb-form-kicker{
  display: inline-block;
  color: rgba(255,255,255,.86);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  transition: color .28s ease;
}

.contact-rbb-form-head h3{
  font-size: 2rem;
  line-height: 1.12;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px;
  transition: color .28s ease;
}

.contact-rbb-form-head p{
  margin: 0;
  color: rgba(255,255,255,.80);
  line-height: 1.7;
  transition: color .28s ease;
}

.contact-rbb-form-card:hover .contact-rbb-form-kicker{
  color: var(--brand);
}

.contact-rbb-form-card:hover .contact-rbb-form-head h3{
  color: var(--brand-darker);
}

.contact-rbb-form-card:hover .contact-rbb-form-head p{
  color: #667281;
}

.contact-rbb-form-card .form-control{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.12);
  color: #fff;
  padding: 14px 16px;
  min-height: 54px;
  box-shadow: none;
  font-size: 1rem;
  transition: background .28s ease, border-color .28s ease, color .28s ease, box-shadow .28s ease;
}

.contact-rbb-form-card .form-control::placeholder{
  color: rgba(255,255,255,.72);
}

.contact-rbb-form-card:hover .form-control{
  border-color: rgba(13,51,102,.10);
  background: rgba(255,255,255,.72);
  color: #163456;
}

.contact-rbb-form-card:hover .form-control::placeholder{
  color: #7b8795;
}

.contact-rbb-form-card .form-control:focus{
  border-color: rgba(23,151,215,.42);
  background: rgba(255,255,255,.96);
  color: #163456;
  box-shadow: 0 0 0 4px rgba(23,151,215,.10);
}

.contact-rbb-form-card textarea.form-control{
  min-height: 160px;
  resize: vertical;
}

.contact-rbb-form-card .btn-brand{
  border-radius: 999px;
  min-height: 54px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(23,151,215,.20);
}

.contact-rbb-info-card{
  display: flex;
  gap: 16px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  padding: 18px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.contact-rbb-parallax .contact-location-bar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ======================================================
   DEPOIMENTOS
   ====================================================== */

.testimonials-rbb{
  position: relative;
  background: linear-gradient(180deg, #f7fafc 0%, #f2f6fb 100%);
  overflow: hidden;
}

.testimonials-rbb::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 20%, rgba(23,151,215,.05) 0%, rgba(23,151,215,0) 18%),
    radial-gradient(circle at 88% 78%, rgba(13,51,102,.04) 0%, rgba(13,51,102,0) 16%);
}

.testimonial-card{
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(13,51,102,.07);
  box-shadow: 0 18px 40px rgba(5,18,38,.05);
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.testimonial-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(5,18,38,.09);
  background: #fff;
}

.testimonial-quote{
  font-size: 28px;
  color: var(--brand);
  margin-bottom: 14px;
}

.testimonial-text{
  font-size: .98rem;
  line-height: 1.75;
  color: #4f5b67;
  margin-bottom: 22px;
}

.testimonial-author{
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author img{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name{
  font-weight: 700;
  color: var(--brand-darker);
}

.testimonial-role{
  font-size: .85rem;
  color: #6b7682;
}

/* =========================================================
   PÁGINAS DE UNIDADES
   ========================================================= */

.units-hero{
  position: relative;
  padding: 165px 0 115px;
  background: linear-gradient(135deg, #1797d7 0%, #157fc5 42%, #0f5f9c 100%);
  overflow: hidden;
}

.units-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 22%, rgba(255,255,255,.14) 0%, rgba(255,255,255,0) 18%),
    radial-gradient(circle at 82% 78%, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 20%),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size:
    auto,
    auto,
    120px 120px,
    120px 120px;
  opacity: .55;
}

.units-hero-content{
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.units-hero h1{
  color: #fff;
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  line-height: 1.04;
  font-weight: 800;
  margin: 0 0 18px;
}

.units-hero p{
  color: rgba(255,255,255,.90);
  font-size: 1.08rem;
  line-height: 1.8;
  margin: 0;
  max-width: 660px;
}

.unit-card{
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(13,51,102,.08);
  box-shadow: 0 16px 38px rgba(13,51,102,.07);
  transition: transform .25s ease, box-shadow .25s ease;
}

.unit-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(13,51,102,.10);
}

.unit-card-image{
  display: block;
  text-decoration: none;
}

.unit-card-image img{
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.unit-card-body{
  padding: 22px 22px 24px;
}

.unit-card-meta{
  margin-bottom: 10px;
  color: var(--brand);
  font-size: .9rem;
  font-weight: 700;
}

.unit-card-title{
  font-size: 1.22rem;
  line-height: 1.35;
  font-weight: 800;
  margin: 0 0 10px;
}

.unit-card-title a{
  color: var(--brand-darker);
  text-decoration: none;
}

.unit-card-title a:hover{
  color: var(--brand);
}

.unit-card-text{
  color: #667281;
  line-height: 1.75;
  margin-bottom: 16px;
}

.unit-card-contact{
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #55616f;
  font-size: .95rem;
  margin-bottom: 18px;
}

.unit-card-actions{
  display: flex;
}

.units-cta-box{
  background: #fff;
  border: 1px solid rgba(13,51,102,.08);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(13,51,102,.07);
  padding: 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

/* página da unidade | hero com imagem full background */

.unit-hero{
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* camada principal para leitura do texto */
.unit-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 35, 73, .84) 0%, rgba(8, 35, 73, .72) 34%, rgba(8, 35, 73, .46) 58%, rgba(8, 35, 73, .30) 100%),
    linear-gradient(180deg, rgba(10, 21, 40, .10) 0%, rgba(10, 21, 40, .26) 100%);
  z-index: 1;
}

/* brilhos/acentos em azul Russell nas bordas */
.unit-hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(23,151,215,.34) 0%, rgba(23,151,215,.18) 16%, transparent 34%),
    radial-gradient(circle at 88% 22%, rgba(23,151,215,.18) 0%, rgba(23,151,215,.08) 14%, transparent 28%),
    radial-gradient(circle at 92% 82%, rgba(23,151,215,.20) 0%, rgba(23,151,215,.08) 14%, transparent 28%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}

.unit-hero-inner{
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 72px;
}

.unit-hero-copy{
  max-width: 760px;
}

.unit-hero-title{
  margin: 0 0 16px;
  line-height: 1.02;
  font-weight: 800;
  color: #fff;
}

.unit-hero-brand,
.unit-hero-city{
  display: block;
}

.unit-hero-brand{
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.unit-hero-city{
  font-size: clamp(1.8rem, 3.1vw, 2.9rem);
  font-weight: 700;
  margin-top: 6px;
  color: rgba(255,255,255,.96);
}

.unit-hero-subtitle{
  color: rgba(255,255,255,.90);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 0 28px;
  max-width: 620px;
}

.unit-hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* botões */
.unit-btn-primary{
  background: var(--brand);
  color: #fff;
  border: 1px solid #ffffff;
  box-shadow: 0 12px 28px rgba(8,35,73,.16);
}

.unit-btn-primary:hover{
  background: var(--brand-darker);
  color: #fff;
  border: 1px solid #ffffff;
  transform: translateY(-1px);
}

.unit-btn-secondary{
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.92);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
  backdrop-filter: blur(5px);
}

.unit-btn-secondary:hover{
  background: rgba(255,255,255,.22);
  color: #fff;
  border-color: #fff;
  transform: translateY(-1px);
}

/* eyebrow em fundo escuro */
.unit-hero .eyebrow.light span{
  color: rgba(255,255,255,.92);
}

.unit-hero .eyebrow.light .eyebrow-line{
  background: rgba(255,255,255,.34);
}

/* responsivo */
@media (max-width: 991.98px){
  .unit-hero{
    min-height: 50vh;
    background-position: center center;
  }

  .unit-hero-inner{
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .unit-hero-copy{
    max-width: 100%;
  }
}

@media (max-width: 575.98px){
  .unit-hero{
    min-height: 46vh;
  }

  .unit-hero-inner{
    padding-top: 98px;
    padding-bottom: 48px;
  }

  .unit-hero-brand{
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }

  .unit-hero-city{
    font-size: clamp(1.4rem, 5.8vw, 2rem);
  }

  .unit-hero-subtitle{
    font-size: 1rem;
    line-height: 1.65;
  }

  .unit-btn-primary,
  .unit-btn-secondary{
    width: 100%;
  }
}

.unit-about-text p{
  color: #5f6b79;
  line-height: 1.82;
  margin-bottom: 16px;
}

.unit-highlights-card,
.unit-location-card,
.unit-surroundings-card{
  background: #fff;
  border: 1px solid rgba(13,51,102,.08);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(13,51,102,.06);
  padding: 28px;
}

.unit-highlights-card h3,
.unit-surroundings-card h3{
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-darker);
  margin: 0 0 18px;
}

.unit-highlights-list,
.unit-surroundings-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.unit-highlights-list li,
.unit-surroundings-list li{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #5d6775;
  line-height: 1.75;
}

.unit-highlights-list li + li,
.unit-surroundings-list li + li{
  margin-top: 14px;
}

.unit-highlights-list i,
.unit-surroundings-list i{
  color: var(--brand);
  margin-top: 3px;
}

/* =========================================================
   GALERIA DAS UNIDADES
   ========================================================= */

.unit-gallery-section{
  position: relative;
}

.unit-gallery-card{
  position: relative;
  width: 100%;
  border: 0;
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 18px 40px rgba(13,51,102,.08);
  transition: transform .28s ease, box-shadow .28s ease;
}

.unit-gallery-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 26px 56px rgba(13,51,102,.14);
}

.unit-gallery-card img{
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.unit-gallery-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9,38,77,0.02) 0%,
    rgba(9,38,77,0.10) 48%,
    rgba(9,38,77,0.36) 100%
  );
  z-index: 1;
  transition: background .28s ease;
}

.unit-gallery-card:hover::before{
  background: linear-gradient(
    180deg,
    rgba(9,38,77,0.04) 0%,
    rgba(9,38,77,0.14) 48%,
    rgba(9,38,77,0.48) 100%
  );
}

.unit-gallery-card:hover img{
  transform: scale(1.04);
}

.unit-gallery-badge{
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--brand-darker);
  font-size: .9rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(5,18,38,.10);
}

.unit-gallery-badge i{
  font-size: .92rem;
}

/* Modal */
.unit-gallery-modal .modal-content{
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  background: var(--brand); /* azul Russell */
}

.unit-gallery-modal .modal-dialog{
  max-width: 1100px;
}

.unit-gallery-modal-body{
  position: relative;
  padding: 0;
  background: var(--brand);
}

.unit-gallery-modal-body img{
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  background: var(--brand);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

.unit-gallery-modal-caption{
  padding: 16px 24px 20px;
  font-size: .95rem;
  color: rgba(255,255,255,.9);
  background: var(--brand);
  font-weight: 500;
  letter-spacing: .02em;
}

.unit-gallery-close{
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  opacity: 1;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  padding: 0;
  background-image: none !important;
}

.unit-gallery-close::before,
.unit-gallery-close::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #0f3b6d;
  border-radius: 2px;
  transform-origin: center;
}

.unit-gallery-close::before{
  transform: translate(-50%, -50%) rotate(45deg);
}

.unit-gallery-close::after{
  transform: translate(-50%, -50%) rotate(-45deg);
}

.unit-gallery-close:hover{
  background: #ffffff;
}

.unit-gallery-close:hover::before,
.unit-gallery-close:hover::after{
  background: #0a335a;
}

@media (max-width: 767px){
  .unit-gallery-card img{
    height: 210px;
  }

  .unit-gallery-badge{
    right: 12px;
    bottom: 12px;
    padding: 8px 12px;
    font-size: .84rem;
  }

  .unit-gallery-modal-body img{
    max-height: 68vh;
  }
}

.unit-location-item{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: #5d6775;
}

.unit-location-item + .unit-location-item{
  margin-top: 16px;
}

.unit-location-item i{
  color: var(--brand);
  font-size: 1.1rem;
  margin-top: 3px;
}

.unit-location-item strong{
  display: block;
  color: var(--brand-darker);
  margin-bottom: 3px;
}

.unit-location-item a{
  color: #5d6775;
  text-decoration: none;
  transition: color .2s ease;
}

.unit-location-item a:hover{
  color: var(--brand);
}

.unit-map-placeholder{
  margin-top: 24px;
  min-height: 220px;
  border-radius: 18px;
  background: linear-gradient(135deg, #eaf4fb 0%, #dcecf8 100%);
  border: 1px dashed rgba(13,51,102,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #698194;
  font-weight: 700;
}

.unit-contact-cta-box{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.unit-contact-cta-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 991px){
  .units-hero{
    padding: 90px 0 80px;
  }

  .unit-hero{
    min-height: 420px;
  }

  .unit-hero-inner{
    padding-top: 110px;
    padding-bottom: 56px;
  }

  .units-cta-box,
  .unit-contact-cta-box{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px){
  .units-hero h1,
  .unit-hero h1{
    font-size: 2.2rem;
  }

  .unit-card-image img,
  .unit-gallery-card img{
    height: 210px;
  }

  .unit-highlights-card,
  .unit-location-card,
  .unit-surroundings-card,
  .units-cta-box{
    padding: 22px;
  }
}

.unit-contact-cta .btn-light{
  background: #fff;
  border-color: #fff;
  color: #157fc5;
}

.unit-contact-cta .btn-light:hover{
  background: #f4f8fc;
  border-color: #f4f8fc;
  color: #0f5f9c;
}

.unit-contact-cta .btn-outline-light{
  color: #fff;
  border-color: rgba(255,255,255,.95);
}

.unit-contact-cta .btn-outline-light:hover{
  background: #fff;
  color: #157fc5;
  border-color: #fff;
}

.where-slide{
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
  min-height: 380px;
  padding: 24px;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}

.where-slide-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  z-index: 0;
}

.where-slide::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.08) 45%,
    rgba(0,0,0,0.30) 100%
  );
  z-index: 1;
}

.where-slide span{
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: var(--brand-darker);
  font-weight: 800;
  font-size: .95rem;
}

.unit-map-embed{
  margin-top: 24px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(13,51,102,.10);
  box-shadow: 0 18px 40px rgba(13,51,102,.08);
  background: #fff;
}

.unit-map-embed iframe{
  display: block;
  width: 100%;
  height: 360px;
}

.unit-map-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.unit-context-card{
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  border: 1px solid rgba(13, 51, 102, 0.10);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 18px 40px rgba(13, 51, 102, 0.08);
}

.unit-context-header{
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.unit-context-icon{
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 101, 187, 0.10);
  color: var(--brand);
  flex-shrink: 0;
}

.unit-context-icon i{
  font-size: 1.3rem;
}

.unit-context-heading h3{
  margin: 0 0 8px;
  font-size: 1.85rem;
  font-weight: 800;
  color: #0d3366;
}

.unit-context-heading p{
  margin: 0;
  color: #5d6775;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 720px;
}

.news-page-hero{
  position: relative;
  min-height: 42vh;
  background: linear-gradient(135deg, #1797d7 0%, #157fc5 42%, #0f5f9c 100%);
  overflow: hidden;
}

.news-page-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0) 35%),
    linear-gradient(180deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0) 30%);
  pointer-events: none;
}

.news-page-hero .unit-hero-inner{
  position: relative;
  z-index: 2;
  padding-top: 148px;
  padding-bottom: 88px;
}

.news-page-top{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.news-search-form{
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.news-search-input{
  min-width: 320px;
  min-height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(13,51,102,.14);
  background: #fff;
  padding: 0 18px;
  font-size: 1rem;
  color: #1f2d3d;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.news-search-input:focus{
  border-color: rgba(21,127,197,.45);
  box-shadow: 0 0 0 4px rgba(21,127,197,.12);
}

.news-page-meta{
  margin-top: 22px;
  margin-bottom: 6px;
  color: #5d6775;
}

.news-card-page{
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(13, 51, 102, 0.08);
  border: 1px solid rgba(13,51,102,.08);
  background: #fff;
}

.news-card-topline{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.news-card-unit{
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5d6775;
  font-size: .95rem;
}

.news-card-unit i{
  color: var(--brand);
}

.news-card-link-rbb{
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
}

.news-card-link-rbb:hover{
  color: var(--brand-dark);
}

.news-empty-public{
  text-align: center;
  padding: 54px 24px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(13,51,102,.08);
  box-shadow: 0 18px 40px rgba(13,51,102,.06);
}

.news-empty-public h3{
  margin: 0 0 10px;
  color: #0d3366;
}

.news-empty-public p{
  margin: 0 0 20px;
  color: #5d6775;
}

.btn-outline-brand{
  border: 1px solid rgba(21,127,197,.35);
  color: var(--brand);
  background: #fff;
}

.btn-outline-brand:hover{
  background: var(--brand);
  color: #fff;
}

@media (max-width: 991.98px){
  .news-page-top{
    align-items: stretch;
  }

  .news-search-form{
    width: 100%;
  }

  .news-search-input{
    min-width: 0;
    width: 100%;
  }
}

.news-pagination{
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.news-page-btn{
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  color: var(--brand);
  background: transparent;
  border: 1px solid rgba(13, 51, 102, 0.14);
  transition: all .2s ease;
}

.news-page-btn:hover{
  color: #157fc5;
  border-color: rgba(21, 127, 197, 0.45);
  background: rgba(21, 127, 197, 0.05);
}

.news-page-btn.active{
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.news-article-section{
  padding-top: 64px;
  padding-bottom: 32px;
}

.news-article-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, .75fr);
  gap: 32px;
  align-items: start;
}

.news-article-main{
  background: #fff;
  border: 1px solid rgba(13, 51, 102, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(13, 51, 102, 0.06);
  padding: 32px;
}

.news-article-meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.news-article-meta .news-tag{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1;
}

.news-article-date,
.news-article-author{
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: var(--brand-dark);
  font-size: .98rem;
  line-height: 1;
}

.news-article-author::before{
  content: "•";
  margin-right: 12px;
  color: rgba(13, 51, 102, 0.28);
}

.news-article-title{
  margin: 0 0 18px;
  font-size: clamp(1.65rem, 2.4vw, 2.2rem);
  line-height: 1.15;
  color: var(--brand-dark);
  font-weight: 800;
}

.news-article-summary{
  margin: 0 0 26px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--brand-dark);
}

.news-article-cover{
  margin-bottom: 28px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(13, 51, 102, 0.08);
}

.news-article-cover img{
  width: 100%;
  display: block;
  object-fit: cover;
}

.news-article-content{
  color: #334155;
  font-size: 1.05rem;
  line-height: 1.95;
}

.news-article-content p{
  margin: 0 0 20px;
}

.news-article-content h2,
.news-article-content h3,
.news-article-content h4{
  color: var(--brand-darker);
  margin: 28px 0 14px;
  line-height: 1.25;
}

.news-article-content ul,
.news-article-content ol{
  margin: 0 0 20px 22px;
}

.news-article-content a{
  color: var(--brand);
}

.news-article-content iframe{
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 20px;
  margin: 24px 0;
  display: block;
}

.news-article-content img{
  max-width: 100%;
  height: auto;
  display: block;
  margin: 24px 0;
  border-radius: 20px;
}

.news-article-content video{
  width: 100%;
  display: block;
  margin: 24px 0;
  border-radius: 20px;
}

.news-article-content figure{
  margin: 24px 0;
}

.news-article-content figure img{
  margin: 0;
}

.news-article-content .tox-embedded-video,
.news-article-content .mce-preview-object{
  margin: 24px 0;
}

@media (max-width: 767.98px){
  .news-article-content iframe{
    min-height: 240px;
  }
}

.news-sidebar-card{
  position: sticky;
  top: 110px;
  background: #fff;
  border: 1px solid rgba(13, 51, 102, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(13, 51, 102, 0.06);
  padding: 28px;
}

.news-sidebar-card h3{
  margin: 0 0 18px;
  color: var(--brand-darker);
  font-size: 1.35rem;
}

.news-sidebar-list{
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.news-sidebar-list li{
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(13, 51, 102, 0.08);
}

.news-sidebar-list li:last-child{
  border-bottom: 0;
}

.news-sidebar-list strong{
  color: var(--brand-darker);
  font-size: .92rem;
}

.news-sidebar-list span{
  color: #334155;
  line-height: 1.6;
}

.news-sidebar-actions{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-related-section{
  padding-top: 12px;
  padding-bottom: 80px;
}

@media (max-width: 991.98px){
  .news-article-grid{
    grid-template-columns: 1fr;
  }

  .news-sidebar-card{
    position: static;
    top: auto;
  }

  .news-article-main{
    padding: 24px;
  }

  .news-sidebar-card{
    padding: 24px;
  }
}

.news-article-video{
  margin: 0 0 28px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(13, 51, 102, 0.08);
  box-shadow: 0 18px 40px rgba(13, 51, 102, 0.06);
  aspect-ratio: 16 / 9;
  background: #000;
}

.news-article-video iframe{
  width: 100%;
  height: 100%;
  display: block;
}

/* =========================================================
   QUEM SOMOS
========================================================= */

.about-hero{
  position: relative;
  overflow: hidden;
  padding: 148px 0 88px;
  min-height: 42vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1797d7 0%, #157fc5 42%, #0f5f9c 100%);
}

.about-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0) 35%),
    linear-gradient(180deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0) 30%);
  pointer-events: none;
}

.about-hero-content{
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.about-hero h1{
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  line-height: 1.04;
  font-weight: 800;
}

.about-hero p{
  margin: 0;
  max-width: 700px;
  color: rgba(255,255,255,.88);
  font-size: 1.08rem;
  line-height: 1.85;
}

.about-text-block p{
  margin: 0 0 18px;
  color: #4f5b67;
  line-height: 1.9;
}

.about-video-card{
  background: #fff;
  border: 1px solid rgba(13, 51, 102, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(13, 51, 102, 0.06);
  overflow: hidden;
}

.about-video-card-clean{
  padding: 0;
}

.about-video-embed{
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.about-video-embed iframe{
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.about-pillars-section{
  position: relative;
}

.about-pillar-card{
  background: #fff;
  border: 1px solid rgba(13, 51, 102, 0.08);
  border-radius: 26px;
  box-shadow: 0 18px 40px rgba(13, 51, 102, 0.06);
  padding: 28px 24px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.about-pillar-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(13, 51, 102, 0.10);
  border-color: rgba(21, 127, 197, 0.18);
}

.about-pillar-icon{
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #1797d7 0%, #157fc5 42%, #0f5f9c 100%);
  color: #fff;
  font-size: 1.45rem;
  box-shadow: 0 16px 28px rgba(15, 95, 156, 0.20);
}

.about-pillar-card h3{
  margin: 0 0 12px;
  color: #0d3366;
  font-size: 1.2rem;
  font-weight: 800;
}

.about-pillar-card p{
  margin: 0;
  color: #5d6775;
  line-height: 1.8;
}

.about-presence-actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.about-network-section{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 24%, rgba(255,255,255,0.08), transparent 22%),
    radial-gradient(circle at 18% 78%, rgba(255,255,255,0.05), transparent 18%),
    linear-gradient(135deg, #1797d7 0%, #157fc5 42%, #0f5f9c 100%);
}

.about-network-layout{
  position: relative;
  z-index: 2;
}

.about-network-text{
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  line-height: 1.9;
  max-width: 620px;
}

.about-network-visual{
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.about-network-glow{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 40%, rgba(255,255,255,0.16), transparent 18%),
    radial-gradient(circle at 58% 68%, rgba(255,255,255,0.10), transparent 16%),
    radial-gradient(circle at 86% 72%, rgba(255,255,255,0.07), transparent 14%);
  pointer-events: none;
}

/* imagem/desenho do mundo */
.about-network-visual::before{
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  background: url('assets/img/mundo.png') center/contain no-repeat;
  opacity: .18;
  pointer-events: none;
}

/* fallback sem imagem */
.about-network-visual::after{
  content: "";
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow:
    0 0 0 28px rgba(255,255,255,.04),
    0 0 0 56px rgba(255,255,255,.03);
  opacity: .55;
  pointer-events: none;
}

.about-network-points{
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: 520px;
}

.about-network-item{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
  color: #fff;
  line-height: 1.7;
}

.about-network-item i{
  margin-top: 2px;
  font-size: 1rem;
  color: rgba(255,255,255,.95);
}

@media (max-width: 991.98px){
  .about-network-visual{
    min-height: auto;
    justify-content: flex-start;
  }

  .about-network-visual::before{
    width: 320px;
    height: 320px;
    right: -40px;
    opacity: .12;
  }

  .about-network-visual::after{
    display: none;
  }

  .about-network-points{
    max-width: 100%;
  }
}

@media (max-width: 767.98px){
  .about-network-text{
    font-size: 1rem;
    line-height: 1.8;
  }

  .about-network-item{
    padding: 15px 16px;
  }

  .about-network-visual::before{
    width: 240px;
    height: 240px;
    right: -30px;
    top: 30%;
    transform: none;
  }
}

.about-units-section .section-head{
  max-width: 760px;
}

.about-cta-section .units-cta-box{
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(13, 51, 102, 0.08);
  box-shadow: 0 18px 40px rgba(13, 51, 102, 0.06);
}

.btn-outline-brand{
  border: 1px solid rgba(21,127,197,.35);
  color: var(--brand);
  background: #fff;
}

.btn-outline-brand:hover{
  background: var(--brand);
  color: #fff;
}

@media (max-width: 991.98px){
  .about-hero{
    padding: 130px 0 72px;
    min-height: auto;
  }

  .about-network-box{
    padding: 30px 24px;
  }

  .about-presence-actions{
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px){
  .about-hero h1{
    font-size: clamp(2.2rem, 8vw, 3.3rem);
  }

  .about-hero p{
    font-size: 1rem;
    line-height: 1.8;
  }

  .about-pillar-card{
    padding: 24px 20px;
  }

  .about-video-embed{
    aspect-ratio: 16 / 10;
  }
}

/* =========================================================
   ORGANOGRAMA FUNCIONAL – ajustado
   ========================================================= */

.orgf-section{
  padding-top: 18px;
}

.orgf-hero{
  position: relative;
  overflow: hidden;
  padding: 148px 0 88px;
  min-height: 48vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1797d7 0%, #157fc5 42%, #0f5f9c 100%);
}

.orgf-hero-inner{
  max-width: 860px;
}

.orgf-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0) 35%),
    linear-gradient(180deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0) 30%);
  pointer-events: none;
}

.orgf-hero-title{
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  margin-top: .35rem;
  margin-bottom: .8rem;
}

.orgf-hero-text{
  font-size: clamp(1rem, 1.2vw, 1.22rem);
  line-height: 1.55;
  color: rgba(17,24,39,.70);
  max-width: 48rem;
  margin: 0;
}

.orgf-hero-content{
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.orgf-hero h1{
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  line-height: 1.04;
  font-weight: 800;
}

.orgf-hero p{
  margin: 0;
  max-width: 700px;
  color: rgba(255,255,255,.88);
  font-size: 1.08rem;
  line-height: 1.85;
}

.orgf-container{
  max-width: 1380px;
}

.orgf-row{
  position: relative;
  z-index: 1;
}

.orgf-row + .orgf-row{
  margin-top: 18px;
}

.orgf-row--top{
  display: flex;
  justify-content: center;
  margin-bottom: 4px;
}

.orgf-row--branch-top,
.orgf-row--ceo,
.orgf-row--sectors,
.orgf-row--areas{
  display: flex;
  justify-content: center;
}

.orgf-person{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  max-width: 440px;
}

.orgf-person--main{
  max-width: 540px;
}

.orgf-person--reverse{
  flex-direction: row-reverse;
}

.orgf-avatar{
  width: 111px;
  height: 111px;
  border-radius: 999px;
  overflow: hidden;
  border: 7px solid var(--brand);
  background: rgba(23,151,215,.06);
  flex: 0 0 111px;
  box-shadow: 0 14px 34px rgba(17,24,39,.08);
  position: relative;
  z-index: 2;
}

.orgf-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.15);
  display: block;
}

.orgf-person-text{
  min-width: 0;
}

.orgf-name{
  margin: 0;
  font-size: clamp(1rem, 1.15vw, 1.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: var(--brand);
}

.orgf-role{
  margin: 6px 0 0;
  font-size: clamp(.88rem, .95vw, 1.05rem);
  line-height: 1.22;
  color: rgba(17,24,39,.72);
  max-width: 290px;
}

.orgf-branch{
  --org-line: var(--brand);
  position: relative;
}

.orgf-branch::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 2px;
  height: 52px;
  background: var(--org-line);
}

.orgf-branch::after{
  content: "";
  position: absolute;
  top: 34px;              /* mantém na altura das bolinhas */
  left: 120px;            /* encurta da esquerda */
  right: 120px;           /* encurta da direita */
  height: 2px;
  background: var(--brand);
}

.orgf-branch--two{
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 240px));
  gap: 80px;
  padding-top: 58px;
}

.orgf-branch--five{
  width: 100%;
  max-width: 1240px;
  display: grid;
  grid-template-columns: repeat(5, minmax(170px, 1fr));
  gap: 14px;
  padding-top: 58px;
}

.orgf-branch--ten{
  width: 100%;
  max-width: 1480px;
  display: grid;
  grid-template-columns: repeat(10, minmax(110px, 1fr));
  gap: 10px;
  padding-top: 58px;
}

.orgf-node{
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: .76rem;
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .01em;
  background: #fff;
  box-shadow: 0 14px 30px rgba(17,24,39,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}

.orgf-node:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(17,24,39,.10);
}

.orgf-node::before{
  content: "";
  position: absolute;
  left: 50%;
  top: -22px;
  transform: translateX(-50%);
  width: 2px;
  height: 22px;
  background: var(--brand);
}

.orgf-node::after{
  content: "";
  position: absolute;
  left: 50%;
  top: -28px;
  transform: translateX(-50%);
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--brand);
}

.orgf-node--small{
  min-height: 50px;
  padding: 10px 12px;
  font-size: .72rem;
}

.orgf-node--plain::before,
.orgf-node--plain::after{
  display: none;
}

.orgf-row--governance{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: start;
}

.orgf-side{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.orgf-side .orgf-person{
  position: relative;
}

.orgf-side--left{
  align-items: flex-start;
}

.orgf-side--right{
  align-items: flex-end;
}

.orgf-center-links{
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding-top: 98px;
}

.orgf-center-links .orgf-node{
  min-width: 190px;
}

.orgf-side-branch{
  position: relative;
  display: grid;
  gap: 14px;
  max-width: 300px;
}

.orgf-side-branch--left{
  margin-left: 24px;
  padding-left: 42px;
  position: relative;
}

.orgf-side-branch--left::before{
  content: "";
  position: absolute;
  left: 16px;
  top: -60px;
  width: 2px;
  height: calc(100% + 34px);
  background: var(--brand);
}

.orgf-side-branch--left .orgf-node{
  justify-content: flex-start;
  text-align: left;
}

.orgf-side-branch--left .orgf-node::before{
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 2px;
}

.orgf-side-branch--left .orgf-node::after{
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
}

.orgf-side-branch--right{
  margin-right: 24px;
  padding-right: 42px;
  position: relative;
}

.orgf-side-branch--right::before{
  content: "";
  position: absolute;
  right: 16px;
  top: -60px;
  width: 2px;
  height: calc(100% + 34px);
  background: var(--brand);
}

.orgf-side-branch--right .orgf-node{
  justify-content: flex-end;
  text-align: right;
}

.orgf-side-branch--right .orgf-node::before{
  left: auto;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 2px;
}

.orgf-side-branch--right .orgf-node::after{
  left: auto;
  right: -28px;
  top: 50%;
  transform: translateY(-50%);
}

.orgf-row--ceo{
  margin-top: 12px;
  padding-top: 24px;
}

.orgf-row--ceo::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 2px;
  height: 24px;
  background: var(--brand);
}

.orgf-ceo-wrap{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.orgf-comites{
  white-space: nowrap;
  color: rgba(17,24,39,.72);
  font-size: .98rem;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.orgf-comites--below{
  position: relative;
  margin-top: 18px;
}

.orgf-comites--below::before{
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  width: 2px;
  height: 18px;
  background: var(--brand);
}

.orgf-comites-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand);
  display: inline-block;
}

.orgf-row--sectors{
  padding-top: 20px;
}

.orgf-row--areas{
  padding-top: 26px;
}

.orgf-row--sectors::before{
  content: "";
  position: absolute;
  left: 50%;
  top: -8px;
  transform: translateX(-50%);
  width: 2px;
  height: 22px;
  background: var(--brand);
}

.orgf-row--areas::before{
  display: none;
}

.orgf-branch--five .orgf-node:nth-child(3){
  transform: translateY(0);
}

@media (max-width: 1400px){
  .orgf-branch--ten{
    grid-template-columns: repeat(5, minmax(140px, 1fr));
  }
}

@media (max-width: 1199px){
  .orgf-row--governance{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .orgf-center-links{
    padding-top: 0;
    flex-wrap: wrap;
    gap: 16px;
  }

  .orgf-side--left,
  .orgf-side--right{
    align-items: center;
  }

  .orgf-side-branch--left,
  .orgf-side-branch--right{
    margin: 0;
    padding: 0;
    max-width: 100%;
  }

  .orgf-side-branch--left::before,
  .orgf-side-branch--right::before{
    display: none;
  }

  .orgf-side-branch--left .orgf-node,
  .orgf-side-branch--right .orgf-node{
    text-align: center;
    justify-content: center;
  }

  .orgf-side-branch--left .orgf-node::before,
  .orgf-side-branch--left .orgf-node::after,
  .orgf-side-branch--right .orgf-node::before,
  .orgf-side-branch--right .orgf-node::after{
    left: 50%;
    right: auto;
    top: -22px;
    transform: translateX(-50%);
    width: 2px;
    height: 22px;
  }

  .orgf-side-branch--left .orgf-node::after,
  .orgf-side-branch--right .orgf-node::after{
    top: -28px;
    width: 11px;
    height: 11px;
  }

  .orgf-branch--five{
    grid-template-columns: repeat(3, minmax(180px, 1fr));
  }
}

@media (max-width: 991px){
  .orgf-person,
  .orgf-person--main,
  .orgf-person--reverse{
    flex-direction: column;
    text-align: center;
    max-width: 100%;
  }

  .orgf-role{
    max-width: none;
  }

  .orgf-comites{
    text-align: center;
  }

  .orgf-comites--below{
    margin-top: 14px;
  }

  .orgf-comites--below::before{
    height: 14px;
    bottom: calc(100% + 6px);
  }

  .orgf-branch--two{
    gap: 26px;
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }

  .orgf-branch--five{
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }

  .orgf-branch--ten{
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }
}

@media (max-width: 576px){
  .orgf-branch--two,
  .orgf-branch--five,
  .orgf-branch--ten{
    grid-template-columns: 1fr;
  }

  .orgf-branch::after{
    width: 2px;
    height: calc(100% - 52px);
    top: 52px;
  }

  .orgf-center-links{
    flex-direction: column;
  }

  .orgf-avatar{
    width: 98px;
    height: 98px;
    flex-basis: 98px;
    border-width: 8px;
  }

  .orgf-name{
    font-size: 1.08rem;
  }

  .orgf-role{
    font-size: .96rem;
  }
}

#wires{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.orgf-canvas > *:not(#wires){
  position: relative;
  z-index: 1;
}

.orgf-branch::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 52px;
  transform: translateX(-50%);
  width: calc(100% - 120px);
  height: 2px;
  background: var(--org-line);
}

.orgf-branch--two::after{
  content: "";
  position: absolute;
  top: 34px;
  left: 120px;
  right: 120px;
  width: auto;
  height: 2px;
  background: var(--brand);
  transform: none;
}

/* =========================================
   DESLIGA LINHAS CSS DOS BARRAMENTOS EM SVG
   ========================================= */

.orgf-branch::before,
.orgf-branch::after,
.orgf-branch .orgf-node::before,
.orgf-branch .orgf-node::after{
  display: none !important;
}

/* mantém apenas os ramos laterais do Wesley/Willian */
.orgf-side-branch .orgf-node::before,
.orgf-side-branch .orgf-node::after,
.orgf-side-branch--left::before,
.orgf-side-branch--right::before{
  display: block;
}

#roger-wrap{
  position: relative;
  left: 151px;
}

#side-wesley{
  margin-left: 10px;
}

#side-wesley .orgf-side-branch{
  margin-top: 8px;
}

/* Wesley e Willian: troncos laterais agora são só do JS */
.orgf-side-branch--left::before,
.orgf-side-branch--right::before{
  display: none !important;
  content: none !important;
}

.orgf-side-branch--left .orgf-node::before,
.orgf-side-branch--left .orgf-node::after,
.orgf-side-branch--right .orgf-node::before,
.orgf-side-branch--right .orgf-node::after{
  display: none !important;
  content: none !important;
}

#side-willian{
  display: flex;
  justify-content: flex-end;
}

.orgf-willian-grid{
  display: grid;
  grid-template-columns: auto 92px;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 10px;
  align-items: center;
}

#willian-text{
  grid-column: 1;
  grid-row: 1;
  text-align: left;
}

#node-willian-avatar{
  grid-column: 2;
  grid-row: 1;
}

.orgf-willian-branch{
  grid-column: 2;
  grid-row: 2;
  display: flex;
  justify-content: center;
}

.orgf-willian-branch .orgf-node{
  min-width: 150px;
}

#side-willian{
  display: flex;
  justify-content: flex-end;
}

.orgf-willian-grid{
  display: grid;
  grid-template-columns: auto 92px;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 18px; /* aumentei */
  align-items: center;
}

#willian-text{
  grid-column: 1;
  grid-row: 1;
  text-align: left;
}

#node-willian-avatar{
  grid-column: 2;
  grid-row: 1;
}

#side-willian .orgf-willian-branch{
  grid-column: 2;
  grid-row: 2;
  display: flex;
  justify-content: flex-end;
  width: 0;
  margin-top: 6px;
}

#side-willian .orgf-willian-branch .orgf-node{
  min-width: 150px;
  transform: translateX(-20px);
}

#node-exp-publica::before,
#node-exp-publica::after{
  display: none !important;
  content: none !important;
}

/* Eser: linhas agora só no JS */
.orgf-row--ceo::before,
.orgf-comites--below::before{
  display: none !important;
  content: none !important;
}

#node-comites::before,
#node-comites::after{
  display: none !important;
  content: none !important;
}

#eser-wrap::before,
#eser-wrap::after{
  display: none !important;
  content: none !important;
}

#eser-wrap{
  position: relative;
  transform: translateX(82px);
}

.orgf-branch--five{
  gap: 20px;
}

#node-comites::before,
#node-comites::after,
.orgf-comites::before,
.orgf-comites::after,
.orgf-comites--below::before,
.orgf-comites--below::after{
  display: none !important;
  content: none !important;
}

#ceo-wrap,
#node-comites{
  box-shadow: none !important;
}

.orgf-branch--five .orgf-node{
  min-height: 50px;
  padding: 8px 10px;
  font-size: .68rem;
}

.orgf-branch--five{
  max-width: 900px;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 12px;
}

.orgf-branch--five .orgf-node{
  padding-left: 10px;
  padding-right: 10px;
  font-size: .70rem;
}

/* haste central antiga dos setores/áreas: desligar */
.orgf-row--sectors::before,
.orgf-row--areas::before,
.orgf-row--ceo::before{
  display: none !important;
  content: none !important;
}

/* =========================================================
   ORGANOGRAMA – acabamento visual Russell
   ========================================================= */

/* painel maior e com mais respiro */
.orgf-container{
  max-width: 1520px;
}

.orgf-panel{
  padding: 34px 34px 30px;
  border-radius: 34px;
  border: 1px solid rgba(23,151,215,.14);
  background:
    radial-gradient(circle at top left, rgba(23,151,215,.05) 0, rgba(23,151,215,0) 18%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
  box-shadow:
    0 18px 50px rgba(17,24,39,.06),
    0 2px 10px rgba(23,151,215,.04);
}

/* cards com cara mais institucional */
.orgf-node{
  min-height: 56px;
  padding: 11px 14px;
  border-radius: 16px;
  font-size: .74rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: .015em;
  backdrop-filter: blur(6px);
  box-shadow:
    0 10px 24px rgba(17,24,39,.05),
    inset 0 1px 0 rgba(255,255,255,.55);
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease,
    background .22s ease;
}

/* hover geral */
.orgf-node:hover{
  transform: translateY(-3px);
  box-shadow:
    0 16px 34px rgba(17,24,39,.10),
    0 0 0 1px rgba(23,151,215,.08);
}


/* =========================================================
   ORGANOGRAMA – CARDS AZUIS COM BOOTSTRAP ICONS
   ========================================================= */

.orgf-node--blue{
  min-height: 96px;
  padding: 14px 14px 16px;
  background: #fff;
  border: 1px solid rgba(23, 151, 215, .16);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(18, 62, 99, .08);
  color: var(--brand-darker);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.orgf-node--blue:hover{
  transform: translateY(-4px);
  border-color: rgba(23, 151, 215, .24);
  box-shadow: 0 18px 36px rgba(18, 62, 99, .12);
}

.orgf-node--blue .orgf-node-icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(23, 151, 215, .10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
}

.orgf-node--blue .orgf-node-icon i{
  font-size: 1.08rem;
  line-height: 1;
  color: var(--brand);
}

.orgf-node--blue .orgf-node-label{
  display: block;
  color: var(--brand-darker);
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .02em;
  text-transform: uppercase;
}

/* versão menor */
.orgf-node--blue.orgf-node--small{
  min-height: 82px;
  padding: 12px 12px 14px;
  gap: 8px;
}

.orgf-node--blue.orgf-node--small .orgf-node-icon{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  flex-basis: 34px;
}

.orgf-node--blue.orgf-node--small .orgf-node-icon i{
  font-size: .95rem;
}

.orgf-node--blue.orgf-node--small .orgf-node-label{
  font-size: .66rem;
  line-height: 1.18;
}

/* evita conflito com pseudo-elementos antigos */
.orgf-node--blue::before{
  opacity: .18;
}

.orgf-node--blue::after{
  opacity: 1;
}

/* cards pequenos com um pouco menos de altura */
.orgf-node--small{
  min-height: 50px;
  padding: 10px 12px;
  font-size: .70rem;
}

/* topo do Roger e demais pessoas com visual mais sofisticado */
.orgf-avatar{
  box-shadow:
    0 10px 24px rgba(17,24,39,.10),
    0 0 0 4px rgba(255,255,255,.75);
}

.orgf-name{
  letter-spacing: -.025em;
}

.orgf-role{
  color: rgba(17,24,39,.76);
}

/* melhorar espaçamento visual entre linhas e cards */
.orgf-row--governance{
  gap: 34px;
}

.orgf-center-links{
  gap: 12px;
}

/* setores um pouco menores e mais harmoniosos */
.orgf-branch--five{
  max-width: 1180px;
  gap: 10px;
  grid-template-columns: repeat(5, minmax(135px, 1fr));
}

.orgf-branch--five .orgf-node{
  min-height: 48px;
  font-size: .66rem;
  padding-left: 10px;
  padding-right: 10px;
}

/* áreas mais leves */
.orgf-branch--ten{
  max-width: 1220px;
  gap: 8px;
}

.orgf-branch--ten .orgf-node{
  min-height: 46px;
  font-size: .64rem;
  padding: 8px 8px;
}

.orgf-watermark{
  position: absolute;
  left: 22px;
  bottom: 18px;
  width: 150px;
  opacity: .05;
  pointer-events: none;
  z-index: 0;
  filter: grayscale(100%);
}

/* desce o bloco dos dois cards superiores */
#branch-roger-top,
.orgf-roger-branch,
.orgf-branch--roger-top{
  margin-top: 26px !important;
}

/* aumenta o espaçamento entre marketing e institucional */
#branch-roger-top,
.orgf-roger-branch,
.orgf-branch--roger-top{
  column-gap: 36px !important;
  row-gap: 20px !important;
}

/* caso os cards estejam dentro da branch genérica */
#branch-roger-top .orgf-node--blue,
.orgf-roger-branch .orgf-node--blue,
.orgf-branch--roger-top .orgf-node--blue{
  min-width: 154px;
}

/* baixa individualmente os dois cards, caso necessário */
#node-marketing,
#node-institucional{
  margin-top: 1px;
}

/* deixa o topo dos cards um pouco mais limpo */
#node-marketing.orgf-node--blue,
#node-institucional.orgf-node--blue{
  padding-top: 18px;
  min-height: 88px;
  gap: 8px;
}

/* ícone um pouco menor nesses dois cards */
#node-marketing .orgf-node-icon,
#node-institucional .orgf-node-icon{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  flex-basis: 36px;
}

#node-marketing .orgf-node-icon i,
#node-institucional .orgf-node-icon i{
  font-size: .95rem;
}

/* afasta a linha horizontal central do Roger */
#wires path,
#wires line,
#wires polyline{
  vector-effect: non-scaling-stroke;
}

#node-marketing{ transform: translateX(-8px) translateY(10px); }
#node-institucional{ transform: translateX(8px) translateY(10px); }

/* desce toda a linha abaixo do Roger */
.orgf-row--branch-top{
  margin-top: 34px !important;
}

/* aumenta a distância entre os dois cards */
#branch-top{
  gap: 56px !important;
  justify-content: center;
  align-items: start;
}

/* baixa individualmente cada card */
#node-marketing,
#node-institucional{
  margin-top: 12px !important;
  min-width: 156px;
}

/* deixa eles um pouco mais compactos para não encostar na linha */
#node-marketing.orgf-node--blue,
#node-institucional.orgf-node--blue{
  min-height: 84px !important;
  padding-top: 14px !important;
  padding-bottom: 14px !important;
}

/* ícones menores só nesses dois */
#node-marketing .orgf-node-icon,
#node-institucional .orgf-node-icon{
  width: 34px !important;
  height: 34px !important;
  border-radius: 12px !important;
}

#node-marketing .orgf-node-icon i,
#node-institucional .orgf-node-icon i{
  font-size: .92rem !important;
}

/* dá mais respiro entre Roger e a ramificação */
#roger-wrap{
  margin-bottom: 10px !important;
}

#node-marketing{
  transform: translateX(-26px) translateY(24px);
}

#node-institucional{
  transform: translateX(20px) translateY(18px);
}

/* =========================================
   AJUSTE FINO - MARKETING / INSTITUCIONAL
   ========================================= */

/* mantém os dois cards alinhados na mesma altura */
#branch-top{
  display: flex !important;
  align-items: flex-start !important;
  justify-content: center !important;
  gap: 28px !important;
}

#branch-top > *{
  margin-top: 0 !important;
  align-self: flex-start !important;
}

#node-marketing,
#node-institucional{
  margin-top: 0 !important;
  transform: none !important;
}

/* padroniza a altura dos dois */
#node-marketing.orgf-node--blue,
#node-institucional.orgf-node--blue{
  min-height: 88px !important;
  height: 88px !important;
  display: flex !important;
  flex-direction: column;
  justify-content: center !important;
}

/* ícone centralizado igual nos dois */
#node-marketing .orgf-node-icon,
#node-institucional .orgf-node-icon{
  margin-bottom: 6px !important;
}

/* =========================================
   AJUSTE FINO - BOLINHAS DOS CONECTORES
   ========================================= */

/* reduz a bolinha maior acima dos cards */
#wires circle{
  r: 3.5 !important;
  fill: var(--brand) !important;
  stroke: #fff !important;
  stroke-width: 1.2px !important;
}

/* caso exista alguma bolinha feita por pseudo-elemento */
.orgf-node::after{
  width: 6px !important;
  height: 6px !important;
}

/* =========================================
   AJUSTE FINO DO BLOCO ABAIXO DO ROGER
   ========================================= */

/* desce a ramificação inteira */
.orgf-row--branch-top{
  margin-top: 18px !important;
}

/* baixa os dois cards um pouco mais */
#branch-top{
  margin-top: 10px !important;
  gap: 32px !important;
}

/* afasta a linha do Roger */
#roger-wrap{
  margin-bottom: 14px !important;
  left: 154px !important;
}

/* se houver ponto/bolinha por pseudo-elemento no Roger, deixa menor */
#roger-wrap::after,
#node-roger::after{
  width: 6px !important;
  height: 6px !important;
}

#node-marketing,
#node-institucional{
  margin-top: 24px !important;
}

#branch-top{
  display: flex !important;
  justify-content: center !important;
  align-items: flex-start !important;
  gap: 70px !important;
}

#node-marketing{
  transform: translateX(-18px) !important;
}

#node-institucional{
  transform: translateX(18px) !important;
}

#node-comites{
  margin-top: 0 !important;
  margin-left: 300px !important;
  transform: translateY(0) !important;
  min-width: 190px !important;
  min-height: 74px !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#node-comites:hover{
  transform: translateY(-2px) !important;
  box-shadow: 0 18px 40px rgba(17,24,39,.10) !important;
}

/* =========================================
   SETORES E ÁREAS NO MESMO PADRÃO RUSSELL
   ========================================= */

/* ---------- SETORES ---------- */
.orgf-node--orange{
  min-height: 94px;
  padding: 14px 14px 16px;
  background: #fff;
  border: 1px solid rgba(23, 151, 215, .16);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(18, 62, 99, .08);
  color: var(--brand-darker);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.orgf-node--orange:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(17,24,39,.10);
}

.orgf-node--orange .orgf-node-icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(23, 151, 215, .10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
}

.orgf-node--orange .orgf-node-icon i{
  font-size: 1.08rem;
  line-height: 1;
  color: var(--brand);
}

.orgf-node--orange .orgf-node-label{
  display: block;
  color: var(--brand-darker);
  font-size: .70rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .02em;
  text-transform: uppercase;
}


/* ---------- ÁREAS ---------- */
.orgf-node--purple{
  min-height: 82px;
  padding: 12px 12px 14px;
  background: #fff;
  border: 1px solid rgba(23, 151, 215, .14);
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(18, 62, 99, .06);
  color: var(--brand-darker);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.orgf-node--purple .orgf-node-icon{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(23, 151, 215, .10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
}

.orgf-node--purple .orgf-node-icon i{
  font-size: .92rem;
  line-height: 1;
  color: var(--brand);
}

.orgf-node--purple .orgf-node-label{
  display: block;
  color: var(--brand-darker);
  font-size: .64rem;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.orgf-node--orange:hover,
.orgf-node--purple:hover,
.orgf-node--blue:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(17,24,39,.10);
  border-color: rgba(23,151,215,.22);
}

#node-sgestec{
  transform: translateX(120px);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

#node-juridica{
  transform: translateX(120px);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

#node-adm{
  transform: translateX(120px);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

#node-sgestec:hover,
#node-juridica:hover,
#node-adm:hover{
  transform: translateX(120px) translateY(-2px);
  box-shadow: 0 18px 40px rgba(17,24,39,.10);
  border-color: rgba(23,151,215,.22);
}

/* =========================================
   ORGANOGRAMA - ACABAMENTO DO CONTAINER
   ========================================= */

.orgf-panel{
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid rgba(23,151,215,.12);
  border-radius: 34px;
  box-shadow:
    0 24px 60px rgba(17,24,39,.08),
    0 8px 24px rgba(23,151,215,.05);
}

/* remove qualquer mancha/efeito antigo */
.orgf-panel::before{
  content: none !important;
  display: none !important;
}

/* detalhe sutil da marca no canto */
.orgf-panel::after{
  content: "";
  position: absolute;
  top: 18px;
  left: 22px;
  width: 74px;
  height: 74px;
  background-image: url("../img/LOGO RUSSELL BEDFORD GLOBO AZUL CLARO.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

/* garante que o conteúdo fique acima do detalhe */
.orgf-canvas,
.orgf-canvas > *{
  position: relative;
  z-index: 1;
}

.orgf-panel{
  border-top: 4px solid var(--brand);
}

/* =========================================
   CTA INLINE - ORGANOGRAMA
   ========================================= */

.org-cta-section{
  padding: 58px 0 58px;
}

.org-cta-inline{
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 30px 34px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid rgba(23,151,215,.12);
  border-radius: 28px;
  box-shadow:
    0 20px 50px rgba(17,24,39,.07),
    0 8px 20px rgba(23,151,215,.04);
}

.org-cta-inline__content{
  max-width: 760px;
}

.org-cta-inline__eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--brand-darker);
  font-size: .82rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.org-cta-inline__eyebrow::after{
  content: "";
  width: 120px;
  height: 1px;
  background: rgba(18,62,99,.18);
}

.org-cta-inline__title{
  margin: 0 0 10px;
  color: var(--brand);
  font-size: clamp(1.7rem, 2vw, 2.35rem);
  line-height: 1.12;
  font-weight: 800;
}

.org-cta-inline__text{
  margin: 0;
  color: rgba(18,62,99,.78);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 690px;
}

.org-cta-inline__actions{
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 0 0 auto;
}

.org-cta-inline__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease,
    background-color .22s ease,
    color .22s ease;
}

.org-cta-inline__btn--primary{
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 28px rgba(23,151,215,.18);
}

.org-cta-inline__btn--primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(23,151,215,.24);
  color: #fff;
}

.org-cta-inline__btn--secondary{
  background: #fff;
  color: var(--brand-darker);
  border: 1px solid rgba(23,151,215,.16);
}

.org-cta-inline__btn--secondary:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(17,24,39,.08);
  border-color: rgba(23,151,215,.25);
  color: var(--brand);
}

@media (max-width: 991px){
  .org-cta-inline{
    padding: 26px 24px;
    gap: 24px;
  }

  .org-cta-inline__btn{
    min-width: 200px;
  }
}

@media (max-width: 767px){
  .org-cta-inline{
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
  }

  .org-cta-inline__content{
    max-width: 100%;
  }

  .org-cta-inline__actions{
    width: 100%;
  }

  .org-cta-inline__btn{
    width: 100%;
    min-width: 0;
  }

  .org-cta-inline__eyebrow::after{
    width: 64px;
  }

  .org-cta-inline__title{
    font-size: 1.75rem;
  }

  .org-cta-inline__text{
    font-size: .96rem;
    line-height: 1.65;
  }
}

/* =========================================================
   QUEM SOMOS – V2
   ========================================================= */

.about-intro-section--v2{
  overflow: hidden;
}

.about-video-feature{
  position: relative;
}

.about-video-feature__media{
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(13,51,102,.04), rgba(13,51,102,.10));
  box-shadow: 0 22px 55px rgba(13, 51, 102, 0.10);
  border: 1px solid rgba(13, 51, 102, 0.08);
}

.about-video-feature__media iframe{
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
}

.about-video-feature__badge{
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 24px rgba(13, 51, 102, 0.10);
  color: var(--brand-dark);
  font-weight: 700;
}

.about-video-feature__badge i{
  font-size: 1.1rem;
  color: var(--brand);
}

.about-intro-highlights{
  display: grid;
  gap: 12px;
}

.about-intro-highlight{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #f7fbff;
  border: 1px solid rgba(21,127,197,.10);
  color: var(--brand-dark);
  font-weight: 600;
}

.about-intro-highlight i{
  color: var(--brand);
  font-size: 1rem;
}

.about-presence-section--v2 .about-presence-media{
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border-radius: 32px;
  box-shadow: 0 22px 55px rgba(13, 51, 102, 0.10);
  border: 1px solid var(--brand);
}

.about-presence-section--v2 .about-presence-media img{
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  display: block;
}

.about-presence-media__overlay{
  position: absolute;
  inset: auto 24px 24px 24px;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(8, 30, 61, 0.72);
  backdrop-filter: blur(10px);
  color: #fff;
}

.about-presence-media__overlay span{
  display: block;
  margin-bottom: 8px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
}

.about-presence-media__overlay strong{
  display: block;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 700;
}

.about-network-parallax{
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  color: #fff;

  background-image:
    linear-gradient(90deg,
      rgba(9, 38, 77, 0.88) 0%,
      rgba(9, 38, 77, 0.78) 32%,
      rgba(9, 38, 77, 0.58) 60%,
      rgba(9, 38, 77, 0.72) 100%),
    url('../img/rederussell.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.about-network-container{
  max-width: 1440px;
  position: relative;
  z-index: 2;
}

.about-network-copy{
  max-width: 540px;
}

.about-network-copy .section-title{
  font-size: clamp(2rem, 3vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -.03em;
}

.about-network-text{
  color: rgba(255,255,255,.88);
  font-size: 1.12rem;
  line-height: 1.85;
  margin-bottom: 18px;
}

.about-network-visual{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}

.about-network-visual img{
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 35px rgba(0,0,0,.25));
}

.about-network-stats--modern{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.about-network-stat-card{
  min-height: 180px;
  padding: 28px 24px;
  border-radius: 28px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow:
    0 18px 44px rgba(0,0,0,.16),
    inset 0 1px 0 rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.about-network-stat-card:hover{
  transform: translateY(-6px);
  box-shadow:
    0 24px 54px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.24);
}

.about-network-stat-card__value{
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(2.4rem, 3.5vw, 4rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.04em;
}

.about-network-stat-card__value strong{
  font: inherit;
}

.about-network-stat-card__label{
  display: block;
  color: rgba(255,255,255,.86);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 600;
}

@media (max-width: 991.98px){
  .about-network-parallax{
    padding: 90px 0;
    background-attachment: scroll;
  }

  .about-network-stats--modern{
    margin-top: 10px;
    gap: 18px;
  }

  .about-network-stat-card{
    min-height: 160px;
    padding: 24px 20px;
  }

  .about-network-visual{
    min-height: 260px;
  }

  .about-network-visual img{
    max-width: 260px;
  }
}

@media (max-width: 767.98px){
  .about-network-parallax{
    padding: 72px 0;
  }

  .about-network-stats--modern{
    grid-template-columns: 1fr;
  }

  .about-network-copy .section-title{
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .about-network-text{
    font-size: 1rem;
    line-height: 1.8;
  }

  .about-network-stat-card{
    min-height: auto;
    border-radius: 24px;
  }
}

.about-certs-section .section-head{
  max-width: 780px;
}

.about-cert-card{
  height: 100%;
  padding: 28px 24px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(13, 51, 102, 0.08);
  box-shadow: 0 18px 40px rgba(13, 51, 102, 0.06);
  text-align: center;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.about-cert-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgba(13, 51, 102, 0.10);
  border-color: rgba(21,127,197,.18);
}

.about-cert-card__logo{
  height: 140px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-cert-card__logo img{
  max-width: 100%;
  max-height: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.about-cert-card h3{
  margin-bottom: 12px;
  font-size: 1.08rem;
  color: var(--brand-dark);
}

.about-cert-card p{
  margin-bottom: 0;
  color: #5f6f83;
  line-height: 1.8;
  font-size: .96rem;
}

@media (max-width: 767.98px){
  .about-cert-card{
    padding: 24px 20px;
  }

  .about-cert-card__logo{
    height: 120px;
  }

  .about-cert-card__logo img{
    max-height: 110px;
  }
}

.about-testimonial-card{
  padding: 30px 26px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(13, 51, 102, 0.08);
  box-shadow: 0 18px 40px rgba(13, 51, 102, 0.06);
}

.about-testimonial-card__quote{
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(21,127,197,.08);
  color: var(--brand);
  font-size: 1.35rem;
}

.about-testimonial-card p{
  margin-bottom: 22px;
  color: #4e5f73;
  line-height: 1.9;
}

.about-testimonial-card__author{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-testimonial-card__author strong{
  color: var(--brand-dark);
  font-size: 1rem;
}

.about-testimonial-card__author span{
  color: #6d7c8f;
  font-size: .92rem;
}

@media (max-width: 991.98px){
  .about-video-feature__media,
  .about-video-feature__media iframe{
    min-height: 400px;
  }

  .about-presence-section--v2 .about-presence-media,
  .about-presence-section--v2 .about-presence-media img{
    min-height: 380px;
  }

  .about-network-stats{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767.98px){
  .about-video-feature__media,
  .about-video-feature__media iframe{
    min-height: 280px;
  }

  .about-video-feature__badge{
    left: 16px;
    right: 16px;
    bottom: 16px;
    justify-content: center;
    text-align: center;
  }

  .about-presence-section--v2 .about-presence-media,
  .about-presence-section--v2 .about-presence-media img{
    min-height: 300px;
  }

  .about-presence-media__overlay{
    inset: auto 16px 16px 16px;
    padding: 18px 18px;
  }

  .about-network-stats{
    grid-template-columns: 1fr;
  }

  .about-network-stat{
    padding: 22px 20px;
  }

  .about-cert-card,
  .about-testimonial-card{
    padding: 24px 20px;
  }
}

/* =========================================================
   QUEM SOMOS – APRESENTAÇÃO INSTITUCIONAL V3
   ========================================================= */

.about-intro-section--v3{
  overflow: hidden;
}

.about-video-feature{
  position: relative;
}

.about-video-feature__media{
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  min-height: 520px;
  background: #0f2744;
  box-shadow: 0 24px 60px rgba(13, 51, 102, 0.12);
  border: 1px solid var(--brand);
}

.about-video-feature__media video{
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
  background: #000;
}

.about-intro-card{
  position: relative;
  padding: 38px 34px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(13, 51, 102, 0.08);
  box-shadow: 0 24px 60px rgba(13, 51, 102, 0.08);
}

.about-intro-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 34px;
  width: 84px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), rgba(21,127,197,.25));
}

.about-intro-card .section-title{
  margin-bottom: 0;
}

.about-intro-highlights{
  display: grid;
  gap: 12px;
}

.about-intro-highlight{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #f7fbff;
  border: 1px solid rgba(21,127,197,.10);
  color: var(--brand-dark);
  font-weight: 600;
}

.about-intro-highlight i{
  color: var(--brand);
  font-size: 1rem;
}

.about-intro-summary p{
  margin-bottom: 0;
  color: #4e5f73;
  line-height: 1.9;
}

@media (max-width: 991.98px){
  .about-video-feature__media,
  .about-video-feature__media video{
    min-height: 400px;
  }

  .about-intro-card{
    padding: 32px 26px;
  }

  .about-intro-card::before{
    left: 26px;
  }
}

@media (max-width: 767.98px){
  .about-video-feature__media,
  .about-video-feature__media video{
    min-height: 260px;
  }

  .about-intro-card{
    padding: 26px 20px;
    border-radius: 24px;
  }

  .about-intro-card::before{
    left: 20px;
    width: 70px;
  }
}

.about-network-stats--modern{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.about-network-stat-card{
  position: relative;
  min-height: 205px;
  padding: 24px 24px 22px;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.14) 0%, rgba(255,255,255,.08) 100%);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow:
    0 20px 48px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.about-network-stat-card:hover{
  transform: translateY(-6px);
  box-shadow:
    0 26px 58px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.28);
}

.about-network-stat-card::before{
  content: "";
  position: absolute;
  top: -30px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111,199,255,.22) 0%, rgba(111,199,255,0) 70%);
  pointer-events: none;
}

.about-network-stat-card::after{
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,.06), rgba(111,199,255,.75), rgba(255,255,255,.06));
  opacity: .9;
}

.about-network-stat-card__icon{
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255,255,255,.20), rgba(255,255,255,.08));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 10px 24px rgba(0,0,0,.12);
  color: #dff3ff;
  font-size: 1.25rem;
}

.about-network-stat-card__value{
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(2.4rem, 3.4vw, 4rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.04em;
  text-shadow: 0 4px 18px rgba(0,0,0,.12);
}

.about-network-stat-card__value strong{
  font: inherit;
}

.about-network-stat-card__label{
  display: block;
  max-width: 240px;
  color: rgba(255,255,255,.88);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 600;
}

@media (max-width: 991.98px){
  .about-network-stat-card{
    min-height: 185px;
    padding: 22px 22px 20px;
  }

  .about-network-stat-card__icon{
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 14px;
  }
}

@media (max-width: 767.98px){
  .about-network-stats--modern{
    grid-template-columns: 1fr;
  }

  .about-network-stat-card{
    min-height: auto;
    border-radius: 24px;
    padding: 20px 18px 18px;
  }

  .about-network-stat-card::after{
    left: 18px;
    right: 18px;
  }

  .about-network-stat-card__label{
    max-width: none;
    font-size: .96rem;
  }
}

.about-cert-card--enhanced{
  overflow: hidden;
  padding: 0;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(13, 51, 102, 0.08);
  box-shadow: 0 18px 40px rgba(13, 51, 102, 0.06);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.about-cert-card--enhanced:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgba(13, 51, 102, 0.10);
  border-color: rgba(21,127,197,.18);
}

.about-cert-card__media{
  position: relative;
  width: 100%;
  min-height: 220px;
  padding: 28px 24px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top left, rgba(111,199,255,.18), transparent 35%),
    linear-gradient(135deg, #1797d7 0%, #157fc5 42%, #0f5f9c 100%);
  cursor: pointer;
}

.about-cert-card__media img{
  max-width: 100%;
  max-height: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.18));
  transition: transform .35s ease;
}

.about-cert-card--enhanced:hover .about-cert-card__media img{
  transform: scale(1.04);
}

.about-cert-card__zoom{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-size: 1rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.about-cert-card__body{
  padding: 24px 24px 26px;
  text-align: center;
}

.about-cert-card__body h3{
  margin-bottom: 12px;
  font-size: 1.08rem;
  color: var(--brand-dark);
}

.about-cert-card__body p{
  margin-bottom: 0;
  color: #5f6f83;
  line-height: 1.85;
  font-size: .96rem;
}

.about-cert-modal{
  background: #0b2442;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 24px;
}

.about-cert-modal .modal-title{
  color: #fff;
}

.about-cert-modal .modal-body{
  padding: 12px 24px 28px;
}

.about-cert-modal img{
  max-height: 70vh;
  width: auto;
  object-fit: contain;
}

@media (max-width: 767.98px){
  .about-cert-card__media{
    min-height: 180px;
    padding: 22px 18px;
  }

  .about-cert-card__media img{
    max-height: 110px;
  }

  .about-cert-card__body{
    padding: 20px 18px 22px;
  }
}

.about-certs-section .section-head{
  max-width: 780px;
}

.about-cert-card--compact{
  overflow: hidden;
  padding: 0;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(13, 51, 102, 0.08);
  box-shadow: 0 18px 40px rgba(13, 51, 102, 0.06);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.about-cert-card--compact:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgba(13, 51, 102, 0.10);
  border-color: rgba(21,127,197,.18);
}

.about-cert-card__media{
  position: relative;
  width: 100%;
  min-height: 220px;
  padding: 28px 24px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top left, rgba(111,199,255,.18), transparent 35%),
    linear-gradient(135deg, #1797d7 0%, #157fc5 42%, #0f5f9c 100%);
  cursor: pointer;
}

.about-cert-card__media img{
  max-width: 100%;
  max-height: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.18));
  transition: transform .35s ease;
}

.about-cert-card--compact:hover .about-cert-card__media img{
  transform: scale(1.04);
}

.about-cert-card__zoom{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-size: 1rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.about-cert-card__body--compact{
  padding: 18px 20px 20px;
  text-align: center;
}

.about-cert-card__body--compact h3{
  margin-bottom: 0;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--brand-dark);
}

.about-cert-modal{
  background: #0b2442;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 24px;
}

.about-cert-modal .modal-title{
  color: #fff;
}

.about-cert-modal .modal-body{
  padding: 12px 24px 28px;
}

.about-cert-modal img{
  max-height: 48vh;
  width: auto;
  object-fit: contain;
}

.about-cert-modal__desc{
  color: rgba(255,255,255,.84);
  line-height: 1.85;
  font-size: 1rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767.98px){
  .about-cert-card__media{
    min-height: 180px;
    padding: 22px 18px;
  }

  .about-cert-card__media img{
    max-height: 110px;
  }

  .about-cert-card__body--compact{
    padding: 16px 16px 18px;
  }

  .about-cert-card__body--compact h3{
    font-size: .98rem;
  }
}

.header-search{
  position: relative;
  display: flex;
  align-items: center;
}

.header-search-toggle{
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.header-search-toggle:hover{
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.28);
  transform: translateY(-1px);
}

.header-search-box{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) scale(.96);
  width: 0;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 8px;
  border-radius: 999px;
  background: rgba(8, 28, 52, .92);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 16px 38px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition: width .3s ease, opacity .25s ease, transform .25s ease;
  z-index: 20;
}

.header-search.active .header-search-box{
  width: 320px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
}

.header-search-box input{
  flex: 1;
  min-width: 0;
  height: 42px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: .98rem;
  padding: 0 8px;
}

.header-search-box input::placeholder{
  color: rgba(255,255,255,.62);
}

.header-search-submit,
.header-search-close{
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, transform .25s ease;
}

.header-search-submit{
  background: #1ea7ff;
  color: #fff;
}

.header-search-submit:hover{
  background: #1296eb;
  transform: translateY(-1px);
}

.header-search-close{
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.84);
}

.header-search-close:hover{
  background: rgba(255,255,255,.14);
}

@media (max-width: 991.98px){
  .header-search.active .header-search-box{
    width: 280px;
  }
}

@media (max-width: 767.98px){
  .header-search-box{
    right: -8px;
  }

  .header-search.active .header-search-box{
    width: min(82vw, 320px);
  }
}

.search-page-form{
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(13, 51, 102, 0.08);
  box-shadow: 0 14px 36px rgba(13, 51, 102, 0.06);
}

.search-page-form input{
  flex: 1;
  min-width: 0;
  height: 52px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--brand-dark);
  padding: 0 12px;
  font-size: 1rem;
}

.search-page-form button{
  height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
}

.search-result-card{
  height: 100%;
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(13, 51, 102, 0.08);
  box-shadow: 0 14px 34px rgba(13, 51, 102, 0.05);
}

.search-result-type{
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(21,127,197,.08);
  color: var(--brand);
  font-size: .84rem;
  font-weight: 700;
}

.search-result-card h3{
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.search-result-card h3 a{
  color: var(--brand-dark);
  text-decoration: none;
}

.search-result-card p{
  margin-bottom: 0;
  color: #5f6f83;
  line-height: 1.8;
}

@media (max-width: 767.98px){
  .search-page-form{
    flex-direction: column;
  }

  .search-page-form button{
    width: 100%;
  }
}

.navbar-modern:not(.is-scrolled) .header-search-toggle,
.navbar-modern:not(.is-scrolled) .header-search-toggle i,
.navbar-modern.is-scrolled .header-search-toggle,
.navbar-modern.is-scrolled .header-search-toggle i{
  color: var(--brand) !important;
}

.navbar-modern:not(.is-scrolled) .header-search-toggle,
.navbar-modern.is-scrolled .header-search-toggle{
  border-color: rgba(21,127,197,.18);
  background: rgba(21,127,197,.06);
}

.navbar-modern:not(.is-scrolled) .header-search-toggle:hover,
.navbar-modern.is-scrolled .header-search-toggle:hover{
  color: var(--brand-dark) !important;
  background: rgba(21,127,197,.10);
  border-color: rgba(21,127,197,.26);
}

/* =========================================================
   TRABALHE CONOSCO
   ========================================================= */

.careers-hero{
  position: relative;
  overflow: hidden;
  padding: 148px 0 88px;
  min-height: 48vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1797d7 0%, #157fc5 42%, #0f5f9c 100%);
}

.careers-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0) 35%),
    linear-gradient(180deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0) 30%);
  pointer-events: none;
}

.careers-hero h1{
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  line-height: 1.04;
  font-weight: 800;
}

.careers-hero p{
  margin: 0;
  max-width: 700px;
  color: rgba(255,255,255,.88);
  font-size: 1.08rem;
  line-height: 1.85;
}

.careers-text-block p{
  margin: 0 0 18px;
  color: #4f5b67;
  line-height: 1.9;
}

.careers-hero__actions{
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-outline-light{
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  background: rgba(255,255,255,.06);
}

.btn-outline-light:hover{
  background: rgba(255,255,255,.12);
  color: #fff;
}

.careers-media-card{
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 22px 54px rgba(13, 51, 102, 0.10);
  border: 1px solid rgba(13, 51, 102, 0.08);
}

.careers-media-card img{
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(13, 51, 102, 0.08);
  border-color: var(--brand);
}

.careers-highlights{
  display: grid;
  gap: 12px;
}

.careers-highlight{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #f7fbff;
  border: 1px solid rgba(21,127,197,.10);
  color: var(--brand-dark);
  font-weight: 600;
}

.careers-highlight i{
  color: var(--brand);
  font-size: 1rem;
}

.careers-benefit-card{
  padding: 28px 24px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(13, 51, 102, 0.08);
  box-shadow: 0 18px 40px rgba(13, 51, 102, 0.06);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.careers-benefit-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgba(13, 51, 102, 0.10);
  border-color: rgba(21,127,197,.18);
}

.careers-benefit-card__icon{
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(21,127,197,.08);
  color: var(--brand);
  font-size: 1.35rem;
}

.careers-benefit-card h3{
  margin-bottom: 10px;
  font-size: 1.08rem;
  color: var(--brand-dark);
}

.careers-benefit-card p{
  margin-bottom: 0;
  color: #5f6f83;
  line-height: 1.85;
}

.career-job-card{
  padding: 28px 24px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(13, 51, 102, 0.08);
  box-shadow: 0 18px 40px rgba(13, 51, 102, 0.06);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.career-job-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgba(13, 51, 102, 0.10);
  border-color: rgba(21,127,197,.18);
}

.career-job-card__top{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.career-job-card__area{
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(21,127,197,.08);
  color: var(--brand);
  font-size: .82rem;
  font-weight: 700;
}

.career-job-card h3{
  margin: 0;
  font-size: 1.28rem;
  color: var(--brand-dark);
}

.career-job-card__type{
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f4f8fc;
  color: #4f6074;
  font-size: .85rem;
  font-weight: 700;
}

.career-job-card__meta{
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-bottom: 16px;
}

.career-job-card__meta span{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5f6f83;
  font-size: .95rem;
  font-weight: 600;
}

.career-job-card__meta i{
  color: var(--brand);
}

.career-job-card p{
  color: #5f6f83;
  line-height: 1.9;
  margin-bottom: 20px;
}

.careers-empty-state{
  padding: 44px 28px;
  border-radius: 28px;
  background: #f8fbff;
  border: 1px solid rgba(21,127,197,.10);
  text-align: center;
}

.careers-empty-state h3{
  margin-bottom: 12px;
  color: var(--brand-dark);
}

.careers-empty-state p{
  color: #5f6f83;
  margin-bottom: 18px;
}

.careers-platforms-box{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 32px 30px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(13, 51, 102, 0.08);
  box-shadow: 0 18px 40px rgba(13, 51, 102, 0.06);
}

.careers-platforms-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 991.98px){
  .careers-hero{
    min-height: auto;
    padding: 130px 0 80px;
  }

  .careers-media-card img{
    min-height: 320px;
  }

  .careers-platforms-box{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767.98px){
  .careers-hero{
    padding: 118px 0 72px;
  }

  .careers-hero__actions{
    flex-direction: column;
    align-items: stretch;
  }

  .career-job-card__top{
    flex-direction: column;
  }

  .career-job-card__type{
    align-self: flex-start;
  }

  .careers-platforms-actions{
    width: 100%;
  }

  .careers-platforms-actions .btn{
    flex: 1 1 auto;
    text-align: center;
  }
}

.solutions-hero{
  position: relative;
  overflow: hidden;
  padding: 88px 0 74px;
  background:
    radial-gradient(circle at 12% 18%, rgba(23,151,215,.14) 0%, rgba(23,151,215,0) 28%),
    radial-gradient(circle at 86% 22%, rgba(23,151,215,.12) 0%, rgba(23,151,215,0) 24%),
    linear-gradient(180deg, #f8fbfe 0%, #eef4f9 100%);
}

.solutions-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255,255,255,.50), rgba(255,255,255,0) 40%),
    radial-gradient(circle at 75% 75%, rgba(17,24,39,.025) 0%, rgba(17,24,39,0) 28%);
}

.solutions-hero .container{
  position: relative;
  z-index: 2;
}

.solutions-hero-copy{
  max-width: 650px;
}

.solutions-hero-title{
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.03em;
  color: #111827;
  margin: 12px 0 18px;
}

.solutions-hero-title strong{
  color: #b6ecff;
  font-weight: 800;
}

.solutions-hero-text{
  max-width: 58ch;
  color: #4b5563;
  font-size: 1.04rem;
  line-height: 1.8;
}

.solutions-hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.solutions-hero-media{
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(17,24,39,.10);
  background: #dfe8f2;
}

.solutions-hero-media img{
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.solutions-hero-media::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13,32,60,.06) 0%, rgba(13,32,60,.28) 100%),
    linear-gradient(135deg, rgba(23,151,215,.14) 0%, rgba(15,95,156,.20) 100%);
  pointer-events: none;
}

.solutions-hero-media-badge{
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.42);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(17,24,39,.12);
}

.solutions-hero-media-badge span{
  display: block;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brand-darker);
  margin-bottom: 4px;
}

.solutions-hero-media-badge strong{
  display: block;
  color: #111827;
  font-size: 1rem;
  line-height: 1.45;
}

.solutions-intro{
  padding: 34px 0 12px;
}

.solutions-intro-card{
  border-radius: 22px;
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 18px 55px rgba(17,24,39,.06);
}

.solutions-intro-card p{
  margin: 0;
  color: #4b5563;
  line-height: 1.85;
  max-width: 90ch;
}

.solutions-intro-pills{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.solutions-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .65rem .95rem;
  border-radius: 999px;
  background: rgba(23,151,215,.08);
  border: 1px solid rgba(23,151,215,.14);
  color: var(--brand-darker);
  font-weight: 700;
  font-size: .92rem;
}

.solutions-section-title{
  margin-bottom: 26px;
}

.solutions-section-text{
  max-width: 72ch;
}

.solutions-section-text-light{
  color: rgba(255,255,255,.88);
}

.solutions-featured-grid--visual{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.solutions-main-grid--visual{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.solution-card{
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 18px 55px rgba(17,24,39,.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  overflow: hidden;
}

.solution-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(17,24,39,.10);
  border-color: rgba(23,151,215,.18);
}

.solution-card-body{
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 24px;
}

.solution-card-image-wrap,
.solution-card-thumb-wrap{
  position: relative;
  display: block;
  overflow: hidden;
}

.solution-card-image-wrap::after,
.solution-card-thumb-wrap::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,32,60,0) 10%, rgba(13,32,60,.10) 100%);
  pointer-events: none;
}

.solution-card-image,
.solution-card-thumb{
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.solution-card:hover .solution-card-image,
.solution-card:hover .solution-card-thumb{
  transform: scale(1.04);
}

.solution-card-featured .solution-card-image{
  height: 260px;
}

.solution-card-main .solution-card-thumb{
  height: 180px;
}

.solution-card-badge{
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: .42rem .78rem;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: var(--brand-darker);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  box-shadow: 0 10px 24px rgba(17,24,39,.10);
}

.solution-title{
  color: #111827;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 12px;
}

.solution-text{
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 18px;
  flex-grow: 1;
}

.solution-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.solution-tag{
  display: inline-flex;
  align-items: center;
  padding: .45rem .72rem;
  border-radius: 999px;
  background: #f5f7fa;
  border: 1px solid rgba(17,24,39,.06);
  color: #4b5563;
  font-size: .83rem;
  font-weight: 700;
}

.solution-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-darker);
  font-weight: 800;
  text-decoration: none;
}

.solution-link:hover{
  color: var(--brand);
}

.solutions-differentials{
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f5f9c 0%, #157fc5 42%, #1797d7 100%);
  color: #fff;
}

.solutions-differentials::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 20%, rgba(255,255,255,.16) 0%, rgba(255,255,255,0) 20%),
    radial-gradient(circle at 84% 72%, rgba(255,255,255,.10) 0%, rgba(255,255,255,0) 18%);
}

.solutions-differentials .container{
  position: relative;
  z-index: 1;
}

.solutions-differentials .eyebrow,
.solutions-differentials .section-title,
.solutions-differentials p{
  color: #fff;
}

.solutions-differentials .eyebrow-line{
  background: rgba(255,255,255,.30);
}

.differentials-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.differential-card{
  height: 100%;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
}

.differential-card i{
  font-size: 1.35rem;
  margin-bottom: 14px;
  display: inline-flex;
}

.differential-card h3{
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}

.differential-card p{
  margin: 0;
  color: rgba(255,255,255,.86);
  line-height: 1.7;
  font-size: .95rem;
}

.solutions-mini-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.solution-mini{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 14px 40px rgba(17,24,39,.05);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.solution-mini:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(17,24,39,.08);
  border-color: rgba(23,151,215,.16);
}

.solution-mini-icon{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(23,151,215,.10);
  color: var(--brand);
  font-size: 1.1rem;
  flex: 0 0 auto;
}

.solution-mini span{
  color: #111827;
  font-weight: 800;
  line-height: 1.3;
}

.solutions-cta{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(23,151,215,.12) 0%, rgba(23,151,215,0) 24%),
    linear-gradient(180deg, #ffffff 0%, #f5f9fc 100%);
}

.solutions-cta-card{
  padding: 38px 34px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 22px 65px rgba(17,24,39,.08);
}

.solutions-cta-card p{
  color: #6b7280;
  line-height: 1.8;
  max-width: 64ch;
  margin: 0 auto 22px;
}

@media (max-width: 1199px){
  .solutions-featured-grid--visual,
  .solutions-main-grid--visual{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solutions-mini-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .differentials-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px){
  .solutions-hero{
    padding: 72px 0 58px;
  }

  .solutions-hero-media{
    min-height: 420px;
  }

  .solutions-hero-media img{
    min-height: 420px;
  }

  .solutions-featured-grid--visual,
  .solutions-main-grid--visual,
  .solutions-mini-grid,
  .differentials-grid{
    grid-template-columns: 1fr;
  }

  .solutions-intro-card,
  .solutions-cta-card{
    padding: 24px;
  }
}

@media (max-width: 575px){
  .solutions-hero-title{
    font-size: 2rem;
  }

  .solutions-hero-actions{
    flex-direction: column;
    align-items: stretch;
  }

  .solutions-hero-actions .btn{
    width: 100%;
  }

  .solutions-hero-media{
    min-height: 340px;
    border-radius: 22px;
  }

  .solutions-hero-media img{
    min-height: 340px;
  }

  .solutions-hero-media-badge{
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 14px 16px;
  }

  .solution-card-featured .solution-card-image{
    height: 220px;
  }

  .solution-card-main .solution-card-thumb{
    height: 170px;
  }

  .solution-card-body{
    padding: 20px;
  }
}

.solutions-hero--cover{
  position: relative;
  overflow: hidden;
  min-height: clamp(720px, 88vh, 920px);
  display: flex;
  align-items: flex-start;
  padding: 150px 0 120px;
  background: #0f2f4f;
}

.solutions-hero--cover .solutions-hero-bg{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.solutions-hero--cover .solutions-hero-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.solutions-hero--cover .solutions-hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(7, 24, 43, .78) 0%, rgba(9, 31, 54, .68) 28%, rgba(10, 38, 66, .46) 48%, rgba(9, 35, 60, .22) 66%, rgba(8, 28, 48, .20) 100%),
    radial-gradient(circle at 14% 22%, rgba(23,151,215,.22) 0%, rgba(23,151,215,0) 28%),
    linear-gradient(180deg, rgba(8,24,41,.30) 0%, rgba(8,24,41,.10) 20%, rgba(8,24,41,.14) 100%);
}

.solutions-hero-container{
  position: relative;
  z-index: 3;
  width: 100%;
}

.solutions-hero--cover .solutions-hero-copy{
  max-width: 760px;
  padding-top: 34px;
}

.eyebrow-light{
  color: rgba(255,255,255,.92);
}

.eyebrow-light .eyebrow-line{
  background: rgba(255,255,255,.28);
}

.solutions-hero-title--light{
  color: #fff;
  font-size: clamp(2.9rem, 5vw, 5.4rem);
  line-height: .98;
  font-weight: 800;
  letter-spacing: -.045em;
  margin: 14px 0 24px;
  max-width: 11ch;
  text-shadow: 0 6px 28px rgba(0,0,0,.16);
}

.solutions-hero-title--light strong{
  color: #4fc0ff;
}

.solutions-hero-text--light{
  max-width: 58ch;
  color: rgba(255,255,255,.88);
  font-size: 1.1rem;
  line-height: 1.85;
  text-shadow: 0 4px 18px rgba(0,0,0,.12);
}

.solutions-hero--cover .solutions-hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn-outline-light{
  color: #fff;
  border: 1px solid rgba(255,255,255,.34);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
}

.btn-outline-light:hover{
  color: #0f172a;
  background: #fff;
  border-color: #fff;
}

/* =========================================
   HEADER SOBRE HERO - PÁGINA SERVIÇOS
========================================= */

body.page-servicos .site-header,
body.page-servicos .site-header-inner,
body.page-servicos #siteNav,
body.page-servicos #siteNav.navbar-modern{
  background: transparent !important;
  box-shadow: none !important;
}

body.page-servicos #siteNav{
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}

body.page-servicos .navbar-brand{
  position: relative;
  display: inline-flex;
  align-items: center;
}

body.page-servicos .brand-logo{
  display: block;
  transition: opacity .25s ease, visibility .25s ease;
}

body.page-servicos .brand-logo-default{
  opacity: 0 !important;
  visibility: hidden !important;
  position: absolute;
  inset: 0 auto auto 0;
  pointer-events: none;
}

body.page-servicos .brand-logo-white{
  opacity: 1 !important;
  visibility: visible !important;
  position: relative;
}

/* links do menu */
body.page-servicos #siteNav:not(.navbar-scrolled) .nav-link,
body.page-servicos #siteNav:not(.navbar-scrolled) .dropdown-toggle{
  color: #fff !important;
}

body.page-servicos #siteNav:not(.navbar-scrolled) .nav-link:hover,
body.page-servicos #siteNav:not(.navbar-scrolled) .dropdown-toggle:hover,
body.page-servicos #siteNav:not(.navbar-scrolled) .nav-link.active{
  color: #fff !important;
  opacity: .88;
}

/* redes sociais */
body.page-servicos #siteNav:not(.navbar-scrolled) .header-socials a,
body.page-servicos #siteNav:not(.navbar-scrolled) .header-socials a i{
  color: #fff !important;
}

body.page-servicos #siteNav:not(.navbar-scrolled) .header-socials a:hover,
body.page-servicos #siteNav:not(.navbar-scrolled) .header-socials a:hover i{
  color: #fff !important;
  opacity: .85;
}

/* busca */
body.page-servicos #siteNav:not(.navbar-scrolled) .header-search-toggle{
  border-color: rgba(255,255,255,.30) !important;
  background: rgba(255,255,255,.06) !important;
}

body.page-servicos #siteNav:not(.navbar-scrolled) .header-search-toggle,
body.page-servicos #siteNav:not(.navbar-scrolled) .header-search-toggle i{
  color: #fff !important;
}

/* botão CTA */
body.page-servicos #siteNav:not(.navbar-scrolled) .btn-header-cta{
  background: #1fa2f1;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.45) !important;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08) inset;
}

body.page-servicos #siteNav:not(.navbar-scrolled) .btn-header-cta:hover{
  background: #1587cd;
  border-color: #1587cd;
  color: #fff;
}

/* estado com scroll */
body.page-servicos #siteNav.navbar-scrolled{
  background: rgba(255,255,255,.94) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(17,24,39,.08) !important;
}

body.page-servicos #siteNav.navbar-scrolled .brand-logo-default{
  opacity: 1 !important;
  visibility: visible !important;
  position: relative;
  inset: auto;
  pointer-events: auto;
}

body.page-servicos #siteNav.navbar-scrolled .brand-logo-white{
  opacity: 0 !important;
  visibility: hidden !important;
  position: absolute;
  inset: 0 auto auto 0;
  pointer-events: none;
}

body.page-servicos #siteNav.navbar-scrolled .nav-link,
body.page-servicos #siteNav.navbar-scrolled .dropdown-toggle{
  color: #0f172a !important;
}

body.page-servicos #siteNav.navbar-scrolled .header-socials a,
body.page-servicos #siteNav.navbar-scrolled .header-socials a i{
  color: #0f172a !important;
}

body.page-servicos #siteNav.navbar-scrolled .header-search-toggle{
  background: #fff !important;
  border-color: rgba(15,23,42,.10) !important;
}

body.page-servicos #siteNav.navbar-scrolled .header-search-toggle,
body.page-servicos #siteNav.navbar-scrolled .header-search-toggle i{
  color: #0f172a !important;
}

@media (max-width: 991px){
  body.page-servicos #siteNav:not(.navbar-scrolled) .navbar-collapse{
    background: rgba(10,29,49,.92);
    backdrop-filter: blur(14px);
    border-radius: 18px;
    padding: 14px;
    margin-top: 12px;
  }

  body.page-servicos #siteNav:not(.navbar-scrolled) .dropdown-menu{
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
  }

  body.page-servicos #siteNav:not(.navbar-scrolled) .dropdown-item{
    color: #fff !important;
  }

  body.page-servicos #siteNav:not(.navbar-scrolled) .dropdown-item:hover{
    background: rgba(255,255,255,.08);
    color: #fff !important;
  }
}

/* Responsivo */
@media (max-width: 1399px){
  .solutions-hero-title--light{
    max-width: 12ch;
  }

  .solutions-hero--cover .solutions-hero-bg img{
    object-position: 72% center;
  }
}

@media (max-width: 1199px){
  .solutions-hero--cover{
    min-height: clamp(680px, 84vh, 860px);
    padding: 142px 0 108px;
  }

  .solutions-hero--cover .solutions-hero-bg img{
    object-position: 74% center;
  }

  .solutions-hero-title--light{
    font-size: clamp(2.8rem, 5vw, 4.8rem);
  }
}

@media (max-width: 991px){
  .solutions-hero--cover{
    min-height: 700px;
    padding: 132px 0 96px;
    align-items: center;
  }

  .solutions-hero--cover .solutions-hero-bg img{
    object-position: 76% center;
  }

  .solutions-hero--cover .solutions-hero-overlay{
    background:
      linear-gradient(180deg, rgba(8,24,41,.70) 0%, rgba(8,24,41,.62) 32%, rgba(8,24,41,.52) 64%, rgba(8,24,41,.40) 100%),
      radial-gradient(circle at 18% 18%, rgba(23,151,215,.18) 0%, rgba(23,151,215,0) 30%);
  }

  .solutions-hero--cover .solutions-hero-copy{
    max-width: 100%;
    padding-top: 10px;
  }

  .solutions-hero-title--light{
    max-width: 12ch;
    font-size: clamp(2.5rem, 7vw, 4rem);
  }

  .solutions-hero-text--light{
    max-width: 100%;
  }

}

@media (max-width: 575px){
  .solutions-hero--cover{
    min-height: 620px;
    padding: 116px 0 82px;
  }

  .solutions-hero-title--light{
    font-size: 2.5rem;
    line-height: 1.02;
    max-width: 100%;
  }

  .solutions-hero-text--light{
    font-size: 1rem;
  }

  .solutions-hero--cover .solutions-hero-actions{
    flex-direction: column;
    align-items: stretch;
  }

  .solutions-hero--cover .solutions-hero-actions .btn{
    width: 100%;
  }

  .solutions-hero--cover .solutions-hero-bg img{
    object-position: 74% center;
  }

}

@media (max-width: 575px){
  .solutions-hero--full{
    padding: 118px 0 56px;
  }

  .solutions-hero-title{
    font-size: 2.45rem;
    line-height: 1.02;
    max-width: 100%;
  }

  .solutions-hero-actions{
    flex-direction: column;
    align-items: stretch;
  }

  .solutions-hero-actions .btn{
    width: 100%;
  }

  .solutions-hero-bg img{
    margin-top: 28px;
  }
}

.solutions-hero--cover{
  position: relative;
  overflow: hidden;
  min-height: clamp(600px, 74vh, 760px);
  display: flex;
  align-items: flex-start;
  padding: 128px 0 86px;
  background: #0f2f4f;
}

.solutions-hero--cover .solutions-hero-bg{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.solutions-hero--cover .solutions-hero-bg img{
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  transform: none;
}

.solutions-hero--cover .solutions-hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
}

.solutions-hero-container{
  position: relative;
  z-index: 3;
  width: 100%;
}

.solutions-hero--cover .solutions-hero-copy{
  max-width: 680px;
  padding-top: 18px;
}

.solutions-hero-title--light{
  color: #fff;
  font-size: clamp(2.65rem, 4.1vw, 4.35rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -.04em;
  margin: 14px 0 20px;
  max-width: 10.5ch;
  text-shadow: 0 6px 22px rgba(0,0,0,.14);
}

.solutions-hero-title--light strong{
  color: #7fd6ff;
}

.solutions-hero-text--light{
  max-width: 56ch;
  color: rgba(255,255,255,.88);
  font-size: 1.02rem;
  line-height: 1.8;
  text-shadow: 0 4px 14px rgba(0,0,0,.10);
}

.solutions-hero--cover .solutions-hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

@media (max-width: 1399px){
  .solutions-hero-title--light{
    max-width: 11ch;
  }

  .solutions-hero--cover .solutions-hero-bg img{
    object-position: 70% center;
  }
}

@media (max-width: 1199px){
  .solutions-hero--cover{
    min-height: clamp(560px, 70vh, 700px);
    padding: 122px 0 80px;
  }

  .solutions-hero--cover .solutions-hero-bg img{
    object-position: 72% center;
  }

  .solutions-hero-title--light{
    font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  }
}

@media (max-width: 991px){
  .solutions-hero--cover{
    min-height: 600px;
    padding: 118px 0 74px;
    align-items: center;
  }

  .solutions-hero--cover .solutions-hero-bg img{
    object-position: 74% center;
  }

  .solutions-hero--cover .solutions-hero-overlay{
    background:
      linear-gradient(180deg, rgba(8,24,41,.68) 0%, rgba(8,24,41,.58) 32%, rgba(8,24,41,.48) 64%, rgba(8,24,41,.36) 100%),
      radial-gradient(circle at 18% 18%, rgba(23,151,215,.16) 0%, rgba(23,151,215,0) 30%);
  }

  .solutions-hero--cover .solutions-hero-copy{
    max-width: 100%;
    padding-top: 8px;
  }

  .solutions-hero-title--light{
    max-width: 12ch;
    font-size: clamp(2.2rem, 6.2vw, 3.4rem);
  }

  .solutions-hero-text--light{
    max-width: 100%;
    font-size: 1rem;
  }
}

@media (max-width: 575px){
  .solutions-hero--cover{
    min-height: 540px;
    padding: 108px 0 64px;
  }

  .solutions-hero-title--light{
    font-size: 2.15rem;
    line-height: 1.04;
    max-width: 100%;
  }

  .solutions-hero-text--light{
    font-size: .96rem;
  }

  .solutions-hero--cover .solutions-hero-actions{
    flex-direction: column;
    align-items: stretch;
  }

  .solutions-hero--cover .solutions-hero-actions .btn{
    width: 100%;
  }

  .solutions-hero--cover .solutions-hero-bg img{
    object-position: 73% center;
  }
}

.solutions-specific-grid{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1199px){
  .solutions-specific-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px){
  .solutions-specific-grid{
    grid-template-columns: 1fr;
  }
}

/* =========================================
   CARDS DE SOLUÇÕES - REFINO VISUAL
========================================= */

.solution-card{
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid rgba(20, 56, 92, .08);
  box-shadow: 0 16px 40px rgba(17,24,39,.05);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
  overflow: hidden;
}

.solution-card::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255,255,255,.00) 0%, rgba(255,255,255,.00) 72%, rgba(56,65,139,.025) 100%);
  z-index: 1;
}

.solution-card::after{
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--brand);
  opacity: .95;
  z-index: 2;
}

.solution-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(17,24,39,.10);
  border-color: rgba(56,65,139,.16);
}

.solution-card-image-wrap,
.solution-card-thumb-wrap{
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 0;
}

.solution-card-image-wrap::before,
.solution-card-thumb-wrap::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(9, 29, 52, .08) 0%, rgba(9, 29, 52, .02) 40%, rgba(9, 29, 52, .34) 100%),
    linear-gradient(135deg, rgba(23,151,215,.12) 0%, rgba(56,65,139,.08) 100%);
  pointer-events: none;
}

.solution-card-image-wrap::after,
.solution-card-thumb-wrap::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 72%, rgba(8,25,45,.10) 100%);
  pointer-events: none;
}

.solution-card-image,
.solution-card-thumb{
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform .45s ease, filter .35s ease;
  filter: saturate(.96) contrast(1.02);
}

.solution-card:hover .solution-card-image,
.solution-card:hover .solution-card-thumb{
  transform: scale(1.045);
  filter: saturate(1.02) contrast(1.03);
}

.solution-card-featured .solution-card-image{
  height: 248px;
}

.solution-card-main .solution-card-thumb{
  height: 188px;
}

.solution-card-body{
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 26px 26px 24px;
}

.solution-card-badge{
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  padding: .52rem .9rem;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.55);
  color: #0f5f9c;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .11em;
  box-shadow: 0 10px 24px rgba(17,24,39,.10);
  backdrop-filter: blur(8px);
}

.solution-title{
  color: #0f172a;
  font-size: 1.22rem;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}

.solution-text{
  color: #5c6b80;
  line-height: 1.78;
  font-size: 1rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.solution-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.solution-tag{
  display: inline-flex;
  align-items: center;
  padding: .5rem .82rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #f2f8fd 0%, #edf5fb 100%);
  border: 1px solid rgba(23,151,215,.12);
  color: #214b78;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .01em;
}

.solution-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f5f9c;
  font-weight: 800;
  text-decoration: none;
  font-size: 1.02rem;
  transition: color .2s ease, transform .2s ease;
}

.solution-link i{
  transition: transform .2s ease;
}

.solution-link:hover{
  color: #1797d7;
}

.solution-link:hover i{
  transform: translateX(4px);
}

/* brilho sutil no canto do card */
.solution-card .solution-card-body::before{
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -40px;
  top: -30px;
  background: radial-gradient(circle, rgba(23,151,215,.08) 0%, rgba(23,151,215,0) 72%);
  pointer-events: none;
  z-index: -1;
}

/* responsivo */
@media (max-width: 575px){
  .solution-card-featured .solution-card-image{
    height: 220px;
  }

  .solution-card-main .solution-card-thumb{
    height: 172px;
  }

  .solution-card-body{
    padding: 22px 22px 20px;
  }

  .solution-title{
    font-size: 1.14rem;
  }

  .solution-text{
    font-size: .96rem;
  }
}

.service-editorial-title{
  color: #fff;
  font-size: clamp(2.45rem, 4vw, 4.25rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -.04em;
  margin: 14px 0 18px;
  max-width: 11ch;
  text-shadow: 0 6px 22px rgba(0,0,0,.14);
}

.service-editorial-text{
  max-width: 58ch;
  color: rgba(255,255,255,.9);
  font-size: 1.03rem;
  line-height: 1.84;
}

.service-editorial-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.service-editorial-pills{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.service-editorial-pills span{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .62rem .92rem;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  backdrop-filter: blur(8px);
}

.service-dual-card{
  height: 100%;
  padding: 30px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid rgba(20,56,92,.08);
  box-shadow: 0 16px 40px rgba(17,24,39,.05);
}

.service-dual-card--accent{
  background:
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  border-color: rgba(23,151,215,.12);
}

.service-dual-icon{
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(23,151,215,.10);
  color: #1797d7;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.service-dual-text{
  color: #5c6b80;
  line-height: 1.86;
  margin: 0;
}

.service-icons-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-icon-card{
  height: 100%;
  padding: 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid rgba(20,56,92,.08);
  box-shadow: 0 16px 40px rgba(17,24,39,.05);
}

.service-icon-card-icon{
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(23,151,215,.10);
  color: #1797d7;
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.service-icon-card h3{
  font-size: 1.08rem;
  color: #0f172a;
  font-weight: 800;
  line-height: 1.28;
  margin-bottom: 12px;
}

.service-icon-card p{
  color: #5c6b80;
  line-height: 1.8;
  margin: 0;
}

.service-how-image{
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(17,24,39,.10);
}

.service-how-image img{
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.service-how-text{
  color: #5c6b80;
  line-height: 1.86;
  margin-bottom: 22px;
}

.service-how-list{
  display: grid;
  gap: 16px;
}

.service-how-item{
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 18px 18px 0;
  border-bottom: 1px solid rgba(20,56,92,.08);
}

.service-how-item:last-child{
  border-bottom: 0;
}

.service-how-item-icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(23,151,215,.10);
  color: #1797d7;
  font-size: 1rem;
}

.service-how-item-content h3{
  font-size: 1.03rem;
  color: #0f172a;
  font-weight: 800;
  margin-bottom: 8px;
}

.service-how-item-content p{
  color: #5c6b80;
  line-height: 1.75;
  margin: 0;
}

.service-usecases-section{
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f5f9c 0%, #157fc5 42%, #1797d7 100%);
}

.service-usecases-section::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 24%, rgba(255,255,255,.16) 0%, rgba(255,255,255,0) 22%),
    radial-gradient(circle at 86% 72%, rgba(255,255,255,.10) 0%, rgba(255,255,255,0) 18%);
}

.service-usecases-wrap{
  position: relative;
  z-index: 1;
}

.service-usecases-text{
  color: rgba(255,255,255,.88);
  line-height: 1.85;
}

.service-usecases-list{
  display: grid;
  gap: 14px;
}

.service-usecase-item{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
}

.service-usecase-item i{
  color: #fff;
  font-size: 1.05rem;
  margin-top: .18rem;
}

.service-usecase-item span{
  color: #fff;
  line-height: 1.7;
  font-weight: 600;
}

.service-form-wrap{
  padding: 14px 0;
}

.service-form-copy{
  max-width: 520px;
}

.service-form-text{
  color: #5b6879;
  line-height: 1.86;
}

.service-form-benefits{
  list-style: none;
  padding: 0;
  margin: 22px 0 18px;
  display: grid;
  gap: 10px;
}

.service-form-benefits li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #425466;
  line-height: 1.7;
}

.service-form-benefits i{
  color: #1797d7;
  margin-top: .2rem;
}

.service-form-support-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f5f9c;
  font-weight: 700;
  text-decoration: none;
}

.service-form-card{
  border-radius: 26px;
  padding: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid rgba(20,56,92,.08);
  box-shadow: 0 16px 40px rgba(17,24,39,.05);
}

.service-form .form-label{
  font-weight: 700;
  color: #243447;
}

.service-form .form-control{
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(20,56,92,.12);
  box-shadow: none;
}

.service-form .form-control:focus{
  border-color: rgba(23,151,215,.45);
  box-shadow: 0 0 0 .2rem rgba(23,151,215,.12);
}

.service-form textarea.form-control{
  min-height: 140px;
}

.service-related-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-final-cta{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(23,151,215,.12) 0%, rgba(23,151,215,0) 24%),
    linear-gradient(180deg, #ffffff 0%, #f5f9fc 100%);
}

.service-final-cta-card{
  padding: 38px 34px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 22px 65px rgba(17,24,39,.08);
}

.service-final-cta-card p{
  color: #6b7280;
  line-height: 1.8;
  max-width: 64ch;
  margin: 0 auto 22px;
}

@media (max-width: 1199px){
  .service-icons-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-related-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-how-image img{
    min-height: 460px;
  }
}

@media (max-width: 991px){

  .service-editorial-title{
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    max-width: 12ch;
  }

  .service-icons-grid,
  .service-related-grid{
    grid-template-columns: 1fr;
  }

  .service-how-image img{
    min-height: 340px;
  }
}

@media (max-width: 575px){

  .service-editorial-title{
    font-size: 2.1rem;
    max-width: 100%;
  }

  .service-editorial-actions{
    flex-direction: column;
    align-items: stretch;
  }

  .service-editorial-actions .btn{
    width: 100%;
  }

  .service-dual-card,
  .service-icon-card,
  .service-form-card{
    padding: 22px;
  }

  .service-final-cta-card{
    padding: 28px 22px;
  }

  .service-editorial-pills{
    gap: 10px;
  }

  .service-editorial-pills span{
    width: 100%;
    justify-content: flex-start;
  }
}

.service-parallax-hero{
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 118px 0 72px;
  background-image:
    linear-gradient(90deg,
      rgba(9, 38, 77, 0.82) 0%,
      rgba(9, 38, 77, 0.72) 34%,
      rgba(9, 38, 77, 0.56) 62%,
      rgba(9, 38, 77, 0.66) 100%);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.service-parallax-hero-bg{
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.service-parallax-hero-bg img{
  width: 100%;
  height: 125%;
  object-fit: cover;
  object-position: center center;
  display: block;
  will-change: transform;
  transform: translateY(0);
}

.service-parallax-hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(6,18,34,.64) 0%, rgba(6,18,34,.48) 24%, rgba(6,18,34,.26) 46%, rgba(6,18,34,.14) 66%, rgba(6,18,34,.10) 100%),
    linear-gradient(180deg, rgba(8,24,41,.10) 0%, rgba(8,24,41,.18) 100%);
}

.service-parallax-hero-container{
  position: relative;
  z-index: 3;
  width: 100%;
}

.service-parallax-hero-copy{
  max-width: 620px;
  padding-top: 12px;
}

.service-parallax-hero-title{
  color: #ffffff;
  font-size: clamp(2.15rem, 3.2vw, 3.2rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.03em;
  margin: 14px 0 16px;
  max-width: 11ch;
  text-shadow: 0 5px 18px rgba(0,0,0,.14);
}

.service-parallax-hero-text{
  max-width: 54ch;
  color: rgba(255,255,255,.88);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

.service-parallax-hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

@media (max-width: 1199px){
  .service-parallax-hero{
    min-height: 500px;
    padding: 112px 0 64px;
  }

  .service-parallax-hero-title{
    font-size: clamp(2rem, 3.4vw, 2.9rem);
  }
}

@media (max-width: 991px){
  .service-parallax-hero{
    min-height: 470px;
    padding: 104px 0 58px;
  }

  .service-parallax-hero-bg img{
    height: 108%;
  }

  .service-parallax-hero-overlay{
    background:
      linear-gradient(180deg, rgba(8,22,40,.42) 0%, rgba(8,22,40,.26) 38%, rgba(8,22,40,.18) 100%);
  }

  .service-parallax-hero-copy{
    max-width: 100%;
  }

  .service-parallax-hero-title{
    max-width: 12ch;
    font-size: clamp(1.95rem, 5.4vw, 2.55rem);
  }

  .service-parallax-hero-text{
    max-width: 100%;
  }
}

@media (max-width: 575px){
  .service-parallax-hero{
    min-height: 430px;
    padding: 96px 0 46px;
  }

  .service-parallax-hero-title{
    font-size: 1.9rem;
    max-width: 100%;
  }

  .service-parallax-hero-actions{
    flex-direction: column;
    align-items: stretch;
  }

  .service-parallax-hero-actions .btn{
    width: 100%;
  }
}

/* =========================================
   HEADER SOBRE HERO - PAGE SERVICO
========================================= */

body.page-servico .site-header,
body.page-servico .site-header-inner,
body.page-servico #siteNav,
body.page-servico #siteNav.navbar-modern{
  background: transparent !important;
  box-shadow: none !important;
}

body.page-servico .navbar-brand{
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* regra base dos logos */
body.page-servico .navbar-brand .brand-logo{
  display: block;
  transition: opacity .25s ease, visibility .25s ease;
}

/* topo da página: mostra branco, esconde azul */
body.page-servico #siteNav:not(.navbar-scrolled) .brand-logo-default{
  opacity: 0 !important;
  visibility: hidden !important;
  position: absolute !important;
  left: 0;
  top: 0;
  pointer-events: none;
}

body.page-servico #siteNav:not(.navbar-scrolled) .brand-logo-white{
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
  z-index: 2;
  pointer-events: auto;
}

/* menu branco sobre a imagem */
body.page-servico #siteNav:not(.navbar-scrolled) .nav-link,
body.page-servico #siteNav:not(.navbar-scrolled) .dropdown-toggle,
body.page-servico #siteNav:not(.navbar-scrolled) .header-socials a,
body.page-servico #siteNav:not(.navbar-scrolled) .header-socials a i,
body.page-servico #siteNav:not(.navbar-scrolled) .header-search-toggle,
body.page-servico #siteNav:not(.navbar-scrolled) .header-search-toggle i{
  color: #fff !important;
}

body.page-servico #siteNav:not(.navbar-scrolled) .header-search-toggle{
  border-color: rgba(255,255,255,.30) !important;
  background: rgba(255,255,255,.06) !important;
}

/* após scroll: volta logo azul e header branco */
body.page-servico #siteNav.navbar-scrolled{
  background: rgba(255,255,255,.94) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(17,24,39,.08) !important;
}

body.page-servico #siteNav.navbar-scrolled .brand-logo-default{
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
  z-index: 2;
  pointer-events: auto;
}

body.page-servico #siteNav.navbar-scrolled .brand-logo-white{
  opacity: 0 !important;
  visibility: hidden !important;
  position: absolute !important;
  left: 0;
  top: 0;
  pointer-events: none;
}

body.page-servico #siteNav.navbar-scrolled .nav-link,
body.page-servico #siteNav.navbar-scrolled .dropdown-toggle,
body.page-servico #siteNav.navbar-scrolled .header-socials a,
body.page-servico #siteNav.navbar-scrolled .header-socials a i,
body.page-servico #siteNav.navbar-scrolled .header-search-toggle,
body.page-servico #siteNav.navbar-scrolled .header-search-toggle i{
  color: #0f172a !important;
}

body.page-servico #siteNav.navbar-scrolled .header-search-toggle{
  background: #fff !important;
  border-color: rgba(15,23,42,.10) !important;
}

.service-fixed-hero{
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 90px;
  background: #0f2f4f;
}

.service-fixed-hero-bg{
  position: absolute;
  inset: 0;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.service-fixed-hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
    background: radial-gradient(60% 70% at 30% 20%,
    rgba(23,151,215,.42) 0%,
    rgba(11,16,32,.62) 58%,
    rgba(11,16,32,.72) 100%) !important;
}

.service-fixed-hero-container{
  position: relative;
  z-index: 3;
  width: 100%;
}

.service-fixed-hero-copy{
  max-width: 650px;
  margin-left: 76px;
  padding-top: 2px;
}

.service-fixed-hero-title{
  color: #fff;
  font-size: clamp(1.95rem, 2.8vw, 2.75rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.03em;
  margin: 14px 0 14px;
  max-width: 13ch;
  text-shadow: 0 5px 18px rgba(0,0,0,.18);
}

.service-fixed-hero-text{
  max-width: 56ch;
  color: rgba(255,255,255,.90);
  font-size: .96rem;
  line-height: 1.78;
  margin: 0;
}

.service-fixed-hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

/* importante: sem fade exagerado embaixo */
.service-fixed-hero + .section{
  position: relative;
  z-index: 4;
  background: #fff;
}

@media (max-width: 1199px){
  .service-fixed-hero{
    min-height: 470px;
    padding: 102px 0 52px;
  }

  .service-fixed-hero-copy{
    margin-left: 42px;
    max-width: 580px;
  }

  .service-fixed-hero-title{
    font-size: clamp(1.85rem, 3vw, 2.45rem);
    max-width: 12ch;
  }
}

@media (max-width: 991px){
  .service-fixed-hero{
    min-height: 440px;
    padding: 96px 0 48px;
  }

  .service-fixed-hero-bg{
    background-attachment: scroll;
  }

  .service-fixed-hero-copy{
    max-width: 100%;
    margin-left: 0;
  }

  .service-fixed-hero-title{
    max-width: 12ch;
    font-size: clamp(1.8rem, 5vw, 2.25rem);
  }

  .service-fixed-hero-text{
    max-width: 100%;
    font-size: .95rem;
  }
}

@media (max-width: 575px){
  .service-fixed-hero{
    min-height: 400px;
    padding: 88px 0 40px;
  }

  .service-fixed-hero-title{
    font-size: 1.78rem;
    max-width: 100%;
  }

  .service-fixed-hero-text{
    font-size: .93rem;
  }

  .service-fixed-hero-actions{
    flex-direction: column;
    align-items: stretch;
  }

  .service-fixed-hero-actions .btn{
    width: 100%;
  }
}

.service-fixed-hero{
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 110px 0 70px;
  background: #0f2f4f;
}

.service-fixed-hero-copy{
  max-width: 760px;
  margin-left: 35px;
  padding-top: 0;
}

.service-fixed-hero-title{
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  line-height: 1.04;
  margin: 12px 0 14px;
  max-width: 20ch;
  letter-spacing: -0.02em;
}

.service-fixed-hero-text{
  max-width: 58ch;
  font-size: .95rem;
  line-height: 1.72;
}

.service-fixed-hero-actions{
  margin-top: 18px;
}

/* =========================================
   CONCESSÕES E PPPS - SEÇÕES EXCLUSIVAS
========================================= */

.service-audience-card{
  height: 100%;
  padding: 30px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid rgba(20,56,92,.08);
  box-shadow: 0 16px 40px rgba(17,24,39,.05);
}

.service-audience-header{
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.service-audience-icon{
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(23,151,215,.10);
  color: #1797d7;
  font-size: 1.35rem;
}

.service-audience-header h3{
  font-size: 1.3rem;
  line-height: 1.2;
  color: #0f172a;
  font-weight: 800;
  margin: 0 0 10px;
}

.service-audience-header p{
  margin: 0;
  color: #5c6b80;
  line-height: 1.78;
}

.service-audience-list{
  display: grid;
  gap: 16px;
}

.service-audience-item{
  padding: 16px 0 0;
  border-top: 1px solid rgba(20,56,92,.08);
}

.service-audience-item:first-child{
  padding-top: 0;
  border-top: 0;
}

.service-audience-item h4{
  font-size: 1rem;
  color: #0f172a;
  font-weight: 800;
  margin: 0 0 8px;
}

.service-audience-item p{
  margin: 0;
  color: #5c6b80;
  line-height: 1.72;
}

/* VI highlight */
.service-vi-highlight-section{
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f5f9c 0%, #157fc5 42%, #1797d7 100%);
}

.service-vi-highlight-section::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 22%, rgba(255,255,255,.16) 0%, rgba(255,255,255,0) 20%),
    radial-gradient(circle at 88% 74%, rgba(255,255,255,.10) 0%, rgba(255,255,255,0) 18%);
}

.service-vi-highlight-wrap{
  position: relative;
  z-index: 1;
}

.service-vi-highlight-text{
  color: rgba(255,255,255,.88);
  line-height: 1.84;
  margin: 0;
}

.service-vi-highlight-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-vi-highlight-card{
  padding: 20px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
}

.service-vi-highlight-card h3{
  font-size: 1rem;
  line-height: 1.35;
  color: #fff;
  font-weight: 800;
  margin: 0 0 8px;
}

.service-vi-highlight-card p{
  margin: 0;
  color: rgba(255,255,255,.86);
  line-height: 1.68;
}

/* sectors */
.service-sectors-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.service-sector-pill{
  min-height: 94px;
  padding: 18px 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
  border: 1px solid rgba(20,56,92,.08);
  box-shadow: 0 12px 30px rgba(17,24,39,.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.service-sector-pill i{
  font-size: 1.3rem;
  color: #1797d7;
}

.service-sector-pill span{
  color: #214b78;
  font-weight: 700;
  line-height: 1.45;
  font-size: .95rem;
}

/* modeling */
.service-modeling-text{
  color: #5c6b80;
  line-height: 1.86;
}

.service-modeling-steps{
  display: grid;
  gap: 18px;
}

.service-modeling-step{
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid rgba(20,56,92,.08);
  box-shadow: 0 16px 40px rgba(17,24,39,.05);
}

.service-modeling-step-number{
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(23,151,215,.10);
  color: #1797d7;
  font-weight: 800;
  font-size: .92rem;
  letter-spacing: .06em;
}

.service-modeling-step-content h3{
  font-size: 1.02rem;
  color: #0f172a;
  font-weight: 800;
  margin: 0 0 8px;
}

.service-modeling-step-content p{
  margin: 0;
  color: #5c6b80;
  line-height: 1.72;
}

@media (max-width: 1199px){
  .service-sectors-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px){
  .service-vi-highlight-grid{
    grid-template-columns: 1fr;
  }

  .service-sectors-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px){
  .service-audience-card,
  .service-modeling-step{
    padding: 22px;
  }

  .service-audience-header{
    flex-direction: column;
    gap: 14px;
  }

  .service-sectors-grid{
    grid-template-columns: 1fr;
  }

  .service-modeling-step{
    gap: 14px;
  }
}

/* =========================================
   HOME - HEADER SOBRE O HERO
   ========================================= */

/* Seta do dropdown branca quando o header está integrado ao hero */
.site-header-home .navbar-modern:not(.is-scrolled) .dropdown-toggle::after{
  border-top-color: #fff !important;
}

/* Botão de busca branco quando o header está integrado ao hero */
.site-header-home .navbar-modern:not(.is-scrolled) .header-search-toggle,
.site-header-home .navbar-modern:not(.is-scrolled) .header-search-toggle i{
  color: #fff !important;
}

.site-header-home .navbar-modern:not(.is-scrolled) .header-search-toggle{
  border-color: rgba(255,255,255,.35) !important;
  background: rgba(255,255,255,.08) !important;
}

.site-header-home .navbar-modern:not(.is-scrolled) .header-search-toggle:hover{
  color: #fff !important;
  background: rgba(255,255,255,.14) !important;
  border-color: rgba(255,255,255,.55) !important;
}

/* Borda no botão "Fale conosco" do header */
.site-header-home .navbar-modern:not(.is-scrolled) .btn-header-cta{
  border: 1px solid rgba(255,255,255,.45) !important;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08) inset;
}

/* Borda no botão "Conhecer nossas soluções" */
.btn-hero-primary{
  border: 1px solid rgba(255,255,255,.30);
}

.rbb-service-item{
  text-decoration: none;
  color: inherit;
  display: flex;
}

.rbb-service-item:hover{
  text-decoration: none;
  color: inherit;
}

.service-subsolutions{
  background: #fff;
}

.solution-feature-card{
  height: 100%;
  padding: 28px 24px;
  border: 1px solid rgba(23,151,215,.12);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(17,118,170,.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.solution-feature-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(17,118,170,.12);
  border-color: rgba(23,151,215,.24);
}

.solution-feature-icon{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(23,151,215,.10);
  color: var(--brand);
  font-size: 1.35rem;
}

.solution-feature-title{
  font-size: 1.1rem;
  line-height: 1.35;
  margin-bottom: 12px;
  color: #0f172a;
}

.solution-feature-text{
  font-size: .98rem;
  line-height: 1.7;
  color: #475569;
}

.solution-credentials{
  background: #fff;
}

.credential-badge{
  min-height: 96px;
  border-radius: 18px;
  border: 1px solid rgba(23,151,215,.14);
  background: linear-gradient(180deg, rgba(23,151,215,.06), rgba(23,151,215,.02));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(17,118,170,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.credential-badge:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(17,118,170,.10);
  border-color: rgba(23,151,215,.24);
}

.credential-badge span{
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--brand-dark);
}

.solution-audit-types{
  background: #fff;
}

.solution-audit-types{
  background: #fff;
}

.solution-audit-types{
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.audit-accordion{
  max-width: 980px;
  margin: 0 auto;
}

.audit-accordion-item{
  border: 1px solid rgba(23,151,215,.12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.audit-accordion-item + .audit-accordion-item{
  margin-top: 16px;
}

.audit-accordion-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
  border-color: rgba(23,151,215,.22);
}

.audit-accordion-summary{
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.4;
  color: #0f172a;
  transition: background .25s ease, color .25s ease;
}

.audit-accordion-summary::-webkit-details-marker{
  display: none;
}

.audit-accordion-summary:hover{
  background: rgba(23,151,215,.035);
}

.audit-accordion-item[open] .audit-accordion-summary{
  background: linear-gradient(180deg, rgba(23,151,215,.06) 0%, rgba(23,151,215,.02) 100%);
  color: var(--brand-dark);
}

.audit-accordion-summary span{
  display: flex;
  align-items: center;
  gap: 14px;
}

.audit-accordion-icon{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(23,151,215,.08);
  color: var(--brand);
  font-size: .95rem;
  transition: transform .25s ease, background .25s ease, color .25s ease;
  flex-shrink: 0;
}

.audit-accordion-item[open] .audit-accordion-icon{
  transform: rotate(45deg);
  background: var(--brand);
  color: #fff;
}

.audit-accordion-content{
  padding: 0 26px 24px 26px;
}

.audit-accordion-content p{
  margin: 0;
  padding-left: 24px;
  font-size: .98rem;
  line-height: 1.8;
  color: #475569;
  border-left: 2px solid rgba(23,151,215,.14);
}

/* Responsivo */
@media (max-width: 767.98px){
  .audit-accordion-summary{
    padding: 18px 18px;
    font-size: 1rem;
    align-items: flex-start;
  }

  .audit-accordion-content{
    padding: 0 18px 18px 18px;
  }

  .audit-accordion-content p{
    padding-left: 16px;
    font-size: .95rem;
    line-height: 1.7;
  }

  .audit-accordion-icon{
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }
}

/* =========================================================
   AUDITORIA - TIPOS DE AUDITORIA (ACCORDION)
   ========================================================= */
.solution-audit-types{
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.audit-accordion{
  max-width: 980px;
  margin: 0 auto;
}

.audit-accordion-item{
  border: 1px solid rgba(23,151,215,.12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.audit-accordion-item + .audit-accordion-item{
  margin-top: 16px;
}

.audit-accordion-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
  border-color: rgba(23,151,215,.22);
}

.audit-accordion-summary{
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.4;
  color: #0f172a;
  transition: background .25s ease, color .25s ease;
}

.audit-accordion-summary::-webkit-details-marker{
  display: none;
}

.audit-accordion-summary:hover{
  background: rgba(23,151,215,.035);
}

.audit-accordion-item[open] .audit-accordion-summary{
  background: linear-gradient(180deg, rgba(23,151,215,.06) 0%, rgba(23,151,215,.02) 100%);
  color: var(--brand-dark);
}

.audit-accordion-label{
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.audit-accordion-item-icon{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(23,151,215,.10);
  color: var(--brand);
  font-size: 1rem;
  flex-shrink: 0;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.audit-accordion-item[open] .audit-accordion-item-icon{
  background: var(--brand);
  color: #fff;
}

.audit-accordion-icon{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(23,151,215,.08);
  color: var(--brand);
  font-size: .95rem;
  transition: transform .25s ease, background .25s ease, color .25s ease;
  flex-shrink: 0;
}

.audit-accordion-item[open] .audit-accordion-icon{
  transform: rotate(180deg);
  background: var(--brand);
  color: #fff;
}

.audit-accordion-content{
  padding: 0 26px 24px 26px;
}

.audit-accordion-content p{
  margin: 0;
  padding-left: 24px;
  font-size: .98rem;
  line-height: 1.8;
  color: #475569;
  border-left: 2px solid rgba(23,151,215,.14);
}

/* Responsivo */
@media (max-width: 767.98px){
  .audit-accordion-summary{
    padding: 18px 18px;
    font-size: 1rem;
    align-items: flex-start;
  }

  .audit-accordion-label{
    gap: 12px;
  }

  .audit-accordion-item-icon{
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: .92rem;
  }

  .audit-accordion-icon{
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .audit-accordion-content{
    padding: 0 18px 18px 18px;
  }

  .audit-accordion-content p{
    padding-left: 16px;
    font-size: .95rem;
    line-height: 1.7;
  }
}

/* =========================================================
   FORMULÁRIO DAS LPs
   ========================================================= */
.service-form-card{
  position: relative;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid rgba(23,151,215,.10);
  box-shadow:
    0 18px 50px rgba(15, 23, 42, .06),
    0 2px 10px rgba(15, 23, 42, .03);
  overflow: hidden;
}

.service-form-card::before{
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-light) 100%);
  opacity: .9;
}

.service-form-card .form-label{
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.service-form-card .form-control,
.service-form-card .form-select,
.service-form-card textarea{
  min-height: 50px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, .10);
  background: #fff;
  color: #0f172a;
  padding: 14px 16px;
  font-size: 1rem;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, .02);
}

.service-form-card textarea{
  min-height: 140px;
  resize: vertical;
}

.service-form-card .form-control::placeholder,
.service-form-card textarea::placeholder{
  color: #94a3b8;
}

.service-form-card .form-control:hover,
.service-form-card .form-select:hover,
.service-form-card textarea:hover{
  border-color: rgba(23,151,215,.22);
}

.service-form-card .form-control:focus,
.service-form-card .form-select:focus,
.service-form-card textarea:focus{
  border-color: rgba(23,151,215,.55);
  box-shadow: 0 0 0 4px rgba(23,151,215,.12);
  outline: none;
}

.service-form-card .row.g-3,
.service-form-card .row.g-4{
  --bs-gutter-y: 1.2rem;
  --bs-gutter-x: 1.2rem;
}

.service-form-submit{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, #2f9ddb 100%);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(23,151,215,.22);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.service-form-submit:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(23,151,215,.28);
  filter: brightness(1.02);
}

.service-form-submit:active{
  transform: translateY(0);
}

.service-form-copy .section-title{
  line-height: 1.15;
}

.service-form-copy .section-text{
  font-size: 1.02rem;
  line-height: 1.8;
  color: #475569;
}

.service-form-benefits{
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.service-form-benefit{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #334155;
  font-size: 1rem;
}

.service-form-benefit i{
  color: var(--brand);
  font-size: 1rem;
  margin-top: 3px;
}

/* opcional: se existir bloco lateral */
.service-form-layout{
  align-items: center;
}

/* responsivo */
@media (max-width: 991.98px){
  .service-form-card{
    padding: 24px;
    border-radius: 22px;
  }
}

@media (max-width: 767.98px){
  .service-form-card{
    padding: 20px;
  }

  .service-form-submit{
    width: 100%;
  }
}

.solutions-intro-card{
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 64px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid rgba(23,151,215,.10);
  box-shadow: 0 18px 50px rgba(15, 23, 42, .05);
}

.solutions-intro-card .section-title{
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.solutions-intro-text{
  max-width: 920px;
  margin-bottom: 0;
  font-size: 1.08rem;
  line-height: 1.85;
  color: #475569;
}

.solutions-intro-pills{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.solutions-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(23,151,215,.06);
  border: 1px solid rgba(23,151,215,.14);
  color: #0f4f7d;
  font-weight: 600;
}

.solutions-pill i{
  color: var(--brand);
}

@media (max-width: 991.98px){
  .solutions-intro-card{
    padding: 40px 28px;
  }
}

@media (max-width: 767.98px){
  .solutions-intro-card{
    padding: 28px 20px;
    border-radius: 22px;
  }

  .solutions-intro-text{
    font-size: 1rem;
    line-height: 1.75;
  }
}

/* =========================================================
   CLIENTES - HOME
   ========================================================= */
.clients-rbb-lead{
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.client-logo-item{
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
}

.client-logo-item img{
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .72;
  transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}

.client-logo-item:hover img{
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.04);
}

/* =========================================================
   QUEM SOMOS - CLIENTES (CARROSSEL)
   ========================================================= */
.about-clients-section .section-head{
  max-width: 900px;
}

.about-clients-lead{
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.about-clients-marquee{
  position: relative;
  overflow: hidden;
  margin-top: 2.5rem;
  padding: 14px 0;
  cursor: grab;
  user-select: none;
}

.about-clients-marquee.dragging{
  cursor: grabbing;
}

.about-clients-marquee::before,
.about-clients-marquee::after{
  content: "";
  position: absolute;
  top: 0;
  width: 90px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.about-clients-marquee::before{
  left: 0;
  background: linear-gradient(90deg, #f8fafc 0%, rgba(248,250,252,0) 100%);
}

.about-clients-marquee::after{
  right: 0;
  background: linear-gradient(270deg, #f8fafc 0%, rgba(248,250,252,0) 100%);
}

.about-clients-track{
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  will-change: transform;
  transform: translateX(0);
}

.about-client-logo-item{
  flex: 0 0 auto;
  width: 190px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
}

.about-client-logo-item img{
  max-width: 100%;
  max-height: 52px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .72;
  transition: filter .25s ease, opacity .25s ease, transform .25s ease;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

.about-client-logo-item:hover img{
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.04);
}

@media (max-width: 991.98px){
  .about-client-logo-item{
    width: 170px;
    height: 82px;
  }

  .about-client-logo-item img{
    max-height: 46px;
  }
}

@media (max-width: 767.98px){
  .client-logo-item{
    height: 78px;
    padding: 8px 12px;
  }

  .client-logo-item img{
    max-height: 42px;
  }

  .about-clients-marquee{
    margin-top: 2rem;
  }

  .about-clients-marquee::before,
  .about-clients-marquee::after{
    width: 40px;
  }

  .about-clients-track{
    gap: 20px;
  }

  .about-client-logo-item{
    width: 140px;
    height: 72px;
    padding: 8px 10px;
  }

  .about-client-logo-item img{
    max-height: 38px;
  }
}

/* =========================================================
   QUEM SOMOS - CERTIFICAÇÕES SEM CARD
   ========================================================= */
.about-certs-section .section-head{
  max-width: 900px;
}

.about-cert-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

/* zera qualquer aparência anterior de card/botão */
.about-cert-trigger{
  appearance: none;
  -webkit-appearance: none;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none;
  padding: 0 !important;
  margin: 0 auto;
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  border-radius: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .25s ease, opacity .25s ease;
}

.about-cert-trigger:hover{
  transform: translateY(-4px);
}

.about-cert-trigger:focus,
.about-cert-trigger:active{
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

.about-cert-trigger img{
  display: block;
  max-width: 100%;
  max-height: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: .78;
  transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}

.about-cert-trigger:hover img{
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.04);
}

.about-cert-name{
  margin-top: 14px;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  max-width: 260px;
}

/* modal */
.about-cert-modal{
  border: 0;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(23,151,215,.16), transparent 28%),
    linear-gradient(180deg, #0f172a 0%, #111827 100%);
  box-shadow: 0 28px 80px rgba(15, 23, 42, .28);
  color: #fff;
}

.about-cert-modal .modal-header{
  padding: 22px 26px 0;
}

.about-cert-modal .modal-title{
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.about-cert-modal .btn-close{
  opacity: .9;
  filter: brightness(0) invert(1);
}

.about-cert-modal .modal-body{
  padding: 18px 26px 30px;
}

.about-cert-modal__image-wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}

.about-cert-modal__image-wrap img{
  max-width: 100%;
  max-height: 280px;
  object-fit: contain;
}

.about-cert-modal__desc{
  max-width: 760px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,.82);
}

@media (max-width: 767.98px){
  .about-cert-trigger img{
    max-height: 72px;
  }

  .about-cert-name{
    font-size: .95rem;
    max-width: 220px;
  }

  .about-cert-modal{
    border-radius: 22px;
  }

  .about-cert-modal .modal-header{
    padding: 18px 18px 0;
  }

  .about-cert-modal .modal-body{
    padding: 14px 18px 22px;
  }

  .about-cert-modal__image-wrap{
    min-height: 200px;
    padding: 18px;
    border-radius: 16px;
  }

  .about-cert-modal__image-wrap img{
    max-height: 200px;
  }

  .about-cert-modal__desc{
    font-size: .95rem;
    line-height: 1.7;
  }
}

.about-pillar-list{
  margin: 0;
  padding-left: 1.2rem;
  color: #475569;
  line-height: 1.8;
}

.about-pillar-list li + li{
  margin-top: .2rem;
}

.news-thumb{
  position: relative;
  display: block;
  overflow: hidden;
}

.news-badge-featured{
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  pointer-events: none;
}

.sports-partner-card{
  display: flex;
  gap: 22px;
  align-items: center;
  height: 100%;
  padding: 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid rgba(15, 23, 42, .06);
  box-shadow: 0 14px 36px rgba(15, 23, 42, .06);
}

.sports-partner-card__media{
  flex: 0 0 152px;
  width: 152px;
  height: 152px;
  overflow: hidden;
}

.sports-partner-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sports-partner-card__name{
  margin: 0 0 4px;
  font-size: 1.08rem;
  line-height: 1.3;
  font-weight: 700;
  color: #0f172a;
}

.sports-partner-card__role{
  margin-bottom: 10px;
  font-size: .92rem;
  line-height: 1.4;
  font-weight: 600;
  color: var(--brand);
}

.sports-partner-card__text{
  color: #475569;
  line-height: 1.75;
}

@media (max-width: 767.98px){
  .sports-partner-card{
    flex-direction: column;
    text-align: center;
    padding: 22px;
  }

  .sports-partner-card__media{
    width: 96px;
    height: 96px;
  }
}

.service-inline-cta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px 18px;
  flex-wrap: wrap;
  margin-top: 18px;
  width: 100%;
}

.service-inline-cta-center{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px 18px;
  flex-wrap: wrap;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  padding-top: 4px;
}

.service-inline-cta-center .service-inline-cta-text{
  flex: 0 1 auto;
}

.service-inline-cta-center .service-inline-cta-link{
  flex: 0 0 auto;
}

.service-inline-cta-text{
  font-size:.98rem;
  line-height:1.65;
  color:#334155;
  font-weight:500;
}

.service-inline-cta-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(23, 151, 215, .10);
  color:var(--brand);
  font-weight:700;
  text-decoration:none;
  transition:.25s ease;
  white-space:nowrap;
}

.service-inline-cta-link:hover{
  background:var(--brand);
  color:#fff;
  transform:translateY(-1px);
}

.service-inline-cta-link i{
  font-size:1.1rem;
  line-height:1;
}

.service-inline-cta-light .service-inline-cta-text{
  color:rgba(255,255,255,.88);
}

.service-inline-cta-light .service-inline-cta-link{
  background:rgba(255,255,255,.12);
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
}

.service-inline-cta-light .service-inline-cta-link:hover{
  background:#fff;
  color:var(--brand);
}

@media (max-width: 767.98px){
  .service-inline-cta{
    align-items:flex-start;
    flex-direction:column;
  }

  .service-inline-cta-center{
    align-items:center;
  }
}

.service-inline-cta-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px 20px;
  flex-wrap:wrap;
  padding:22px 26px;
  border-radius:24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 3px solid rgba(23, 151, 215, .12);
  box-shadow: 0 14px 36px rgba(15, 23, 42, .05);
  margin: 0 auto;
}

.service-inline-cta-card .service-inline-cta-text{
  font-size: 1rem;
  line-height: 1.7;
  color: #334155;
  font-weight: 500;
}

.service-inline-cta-card .service-inline-cta-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:12px 20px;
  border-radius:999px;
  background: rgba(23, 151, 215, .10);
  color: var(--brand);
  font-weight:700;
  text-decoration:none;
  transition:.25s ease;
  white-space:nowrap;
}

.service-inline-cta-card .service-inline-cta-link:hover{
  background: var(--brand);
  color:#fff;
  transform: translateY(-1px);
}

@media (max-width: 767.98px){
  .service-inline-cta-card{
    flex-direction:column;
    align-items:flex-start;
    padding:20px;
  }

  .service-inline-cta-card .service-inline-cta-link{
    width:100%;
    justify-content:center;
  }
}

/* =========================================================
   HOME - ONDE ESTAMOS - RESPONSIVO
   ========================================================= */

.where-rbb .content-panel{
  height: 100%;
}

.where-slider{
  height: 100%;
}

.whereSwiper{
  width: 100%;
  overflow: hidden;
}

.where-slide{
  position: relative;
  display: block;
  border-radius: 28px;
  overflow: hidden;
  text-decoration: none;
}

.where-slide-img{
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.where-slide span{
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #0f172a;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1;
}

.whereSwiper .swiper-pagination{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px !important;
}

.whereSwiper .swiper-button-prev,
.whereSwiper .swiper-button-next{
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .12);
}

.whereSwiper .swiper-button-prev::after,
.whereSwiper .swiper-button-next::after{
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand);
}

.whereSwiper .swiper-button-prev{
  left: 14px;
}

.whereSwiper .swiper-button-next{
  right: 14px;
}

/* tablet */
@media (max-width: 991.98px){
  .where-rbb .row{
    row-gap: 1.5rem;
  }

  .where-slide-img{
    height: 360px;
  }
}

/* celular */
@media (max-width: 767.98px){
  .where-rbb{
    overflow: hidden;
  }

  .where-rbb .section-head{
    text-align: left;
  }

  .where-rbb .who-kicker{
    max-width: 100%;
  }

  .where-rbb .content-panel{
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .where-chips{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .where-chips .pill{
    font-size: .78rem;
    padding: 7px 10px;
  }

  .where-actions{
    gap: 10px !important;
  }

  .where-actions .btn{
    width: 100%;
    justify-content: center;
  }

  .where-slider{
    margin-top: 2px;
  }

  .where-slide{
    border-radius: 22px;
  }

  .where-slide-img{
    height: 280px;
  }

  .where-slide span{
    left: 12px;
    bottom: 12px;
    padding: 7px 12px;
    font-size: .82rem;
  }

  .whereSwiper .swiper-button-prev,
  .whereSwiper .swiper-button-next{
    width: 42px;
    height: 42px;
    top: 50%;
    margin-top: -21px;
  }

  .whereSwiper .swiper-button-prev{
    left: 10px;
  }

  .whereSwiper .swiper-button-next{
    right: 10px;
  }

  .whereSwiper .swiper-button-prev::after,
  .whereSwiper .swiper-button-next::after{
    font-size: .9rem;
  }

  .whereSwiper .swiper-pagination{
    bottom: 8px !important;
  }

  .whereSwiper .swiper-pagination-bullet{
    width: 7px;
    height: 7px;
  }
}

/* celular pequeno */
@media (max-width: 480px){
  .where-slide-img{
    height: 250px;
  }

  .where-slide span{
    max-width: calc(100% - 24px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.where-slide{
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
  min-height: 380px;
  padding: 24px;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}

.where-slide-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  z-index: 0;
}

.where-slide::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.08) 45%,
    rgba(0,0,0,0.30) 100%
  );
  z-index: 1;
}

.where-slide span{
  position: relative;
  z-index: 2;
  display: inline-block;
  max-width: calc(100% - 12px);
  padding: 10px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  color: var(--brand-darker);
  font-weight: 800;
  font-size: .95rem;
  line-height: 1.25;
  white-space: normal;
  word-break: break-word;
}

@media (max-width: 767.98px){
  .where-slide{
    min-height: 280px;
    padding: 16px 16px 44px;
  }

  .where-slide span{
    max-width: calc(100% - 24px);
    padding: 8px 12px;
    font-size: .82rem;
    line-height: 1.2;
    border-radius: 14px;
  }
}

.hero-slider.hero-biz .heroSwiper .swiper-slide{
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: saturate(1.02);
}

@media (max-width: 767.98px){
  .hero-slider.hero-biz .heroSwiper .swiper-slide{
    background-size: cover;
    background-position: 80% center;
  }
}

.hero-slider.hero-biz .heroSwiper .swiper-slide{
  position: relative;
  overflow: hidden;
}

.hero-slider.hero-biz .heroSwiper .swiper-slide::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-slider.hero-biz .hero-content,
.hero-slider.hero-biz .hero-inner,
.hero-slider.hero-biz .hero-copy,
.hero-slider.hero-biz .container{
  position: relative;
  z-index: 1;
}

@media (max-width: 767.98px){
  .hero-slider.hero-biz .heroSwiper .swiper-slide::before{
    background: linear-gradient(
      90deg,
      rgba(0, 28, 48, 0.62) 0%,
      rgba(0, 28, 48, 0.46) 40%,
      rgba(0, 28, 48, 0.22) 70%,
      rgba(0, 28, 48, 0.10) 100%
    );
  }
}

.network-numbers-rbb{
  position: relative;
  overflow: hidden;
}

.network-numbers-wrap{
  position: relative;
  padding: 22px 0 6px;
}

.network-top{
  align-items: center;
}

.network-copy .section-title{
  max-width: 430px;
  margin-bottom: 0;
}

.network-content{
  max-width: 760px;
}

.network-bottom .home-section-subtitle{
  color: #334155;
}

.network-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.network-divider{
  width: 100%;
  height: 1px;
  margin: 44px 0 34px;
  background: linear-gradient(
    90deg,
    rgba(23, 151, 215, 0) 0%,
    rgba(23, 151, 215, .18) 18%,
    rgba(23, 151, 215, .28) 50%,
    rgba(23, 151, 215, .18) 82%,
    rgba(23, 151, 215, 0) 100%
  );
}

.network-bottom{
  position: relative;
}

.network-bottom::before{
  content: "";
  position: absolute;
  inset: -30px -80px -80px -80px;
  background:
    radial-gradient(circle at 20% 20%, rgba(23,151,215,.08), transparent 38%),
    radial-gradient(circle at 80% 80%, rgba(23,151,215,.06), transparent 32%);
  pointer-events: none;
  z-index: 0;
}

.network-bottom > *{
  position: relative;
  z-index: 1;
}

.btn-outline-brand{
  border: 1px solid rgba(23, 151, 215, .30);
  color: var(--brand);
  background: transparent;
}

.btn-outline-brand:hover{
  background: rgba(23, 151, 215, .08);
  color: var(--brand);
  border-color: rgba(23, 151, 215, .42);
}

.home-section-subtitle.is-left{
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

@media (max-width: 991.98px){
  .network-numbers-wrap{
    padding-top: 10px;
  }

  .network-copy .section-title,
  .network-content{
    max-width: 100%;
  }

  .network-divider{
    margin: 34px 0 28px;
  }
}

@media (max-width: 767.98px){
  .network-actions{
    flex-direction: column;
  }

  .network-actions .btn{
    width: 100%;
    justify-content: center;
  }

  .network-divider{
    margin: 28px 0 24px;
  }

  .network-bottom::before{
    inset: -20px -20px -40px -20px;
  }
}

/* =========================================================
   PÁGINA | SEJA UM PARCEIRO / CREDENCIADO
   ========================================================= */

.cred-hero{
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b1020;
}

.cred-hero-bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
  transform: scale(1.02);
}

.cred-hero-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 25, 52, 0.88) 0%, rgba(7, 25, 52, 0.62) 45%, rgba(7, 25, 52, 0.42) 100%),
    radial-gradient(circle at 75% 30%, rgba(23,151,215,.25) 0%, rgba(23,151,215,0) 35%);
}

.cred-hero-content{
  position: relative;
  z-index: 2;
  padding: 110px 0 84px;
}

.cred-hero-title{
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 4.25rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  max-width: 11ch;
  margin-bottom: 1rem;
}

.cred-hero-sub{
  color: rgba(255,255,255,.86);
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 62ch;
}

.cred-hero-card{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 24px 65px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 28px;
  color: #fff;
}

.cred-hero-card h3{
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: .9rem;
}

.cred-hero-card p{
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.cred-hero-card-icon{
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
  color: #9edfff;
  font-size: 1.5rem;
}

.cred-mini-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.cred-mini-list li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,.88);
}

.cred-mini-list i{
  color: #8ee0ff;
  margin-top: 3px;
}

.cred-image-stack{
  position: relative;
  min-height: 520px;
}

.cred-image-main,
.cred-image-floating{
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 65px rgba(17,24,39,.12);
  border: 1px solid rgba(17,24,39,.06);
  background: #fff;
}

.cred-image-main{
  width: 82%;
  margin-left: auto;
}

.cred-image-floating{
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 48%;
}

.cred-image-main img,
.cred-image-floating img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cred-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cred-benefit-card{
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 18px 45px rgba(17,24,39,.07);
  padding: 26px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.cred-benefit-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(17,24,39,.10);
  border-color: rgba(23,151,215,.22);
}

.cred-benefit-icon{
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(23,151,215,.12) 0%, rgba(23,151,215,.22) 100%);
  color: var(--brand);
  font-size: 1.35rem;
}

.cred-benefit-card h3{
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: .75rem;
}

.cred-benefit-card p{
  margin: 0;
  line-height: 1.75;
  color: #4b5563;
}

.cred-steps{
  display: grid;
  gap: 18px;
}

.cred-step{
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(17,24,39,.06);
}

.cred-step-num{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1797d7 0%, #0f6fa7 100%);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  letter-spacing: .04em;
}

.cred-step h3{
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: .4rem;
}

.cred-step p{
  margin: 0;
  color: #4b5563;
  line-height: 1.75;
}

.cred-form-section{
  position: relative;
  background:
    linear-gradient(135deg, #0f5f9c 0%, #157fc5 45%, #1797d7 100%);
  overflow: hidden;
}

.cred-form-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.10) 0%, rgba(255,255,255,0) 22%),
    radial-gradient(circle at 80% 75%, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 24%);
  pointer-events: none;
}

.cred-form-section .container{
  position: relative;
  z-index: 2;
}

.cred-form-lead{
  color: rgba(255,255,255,.86);
  line-height: 1.85;
  max-width: 58ch;
}

.cred-form-points{
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 12px;
}

.cred-form-points li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,.92);
}

.cred-form-points i{
  color: #d8f4ff;
  margin-top: 3px;
}

.cred-form-card{
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 24px 70px rgba(7,25,52,.22);
}

.eyebrow-light{
  color: rgba(255,255,255,.92);
}

.eyebrow-light .eyebrow-line{
  background: rgba(255,255,255,.32);
}

@media (max-width: 991px){
  .cred-hero{
    min-height: auto;
  }

  .cred-hero-content{
    padding: 96px 0 72px;
  }

  .cred-hero-title{
    max-width: 100%;
  }

  .cred-image-stack{
    min-height: auto;
  }

  .cred-image-main{
    width: 100%;
    margin-left: 0;
  }

  .cred-image-floating{
    position: relative;
    width: 72%;
    left: auto;
    bottom: auto;
    margin-top: -48px;
  }
}

@media (max-width: 767px){
  .cred-step{
    grid-template-columns: 1fr;
  }

  .cred-image-floating{
    width: 84%;
  }
}

/* HERO | CREDENCIADO/PARCEIRO NO PADRÃO DAS DEMAIS TELAS */
.cred-hero-rb{
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1797d7 0%, #157fc5 42%, #0f5f9c 100%);
}

.cred-hero-rb::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(255,255,255,.12) 0%, rgba(255,255,255,0) 22%),
    radial-gradient(circle at 78% 35%, rgba(255,255,255,.10) 0%, rgba(255,255,255,0) 24%),
    radial-gradient(circle at 60% 80%, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 22%);
  pointer-events: none;
}

.cred-hero-rb .page-hero-content{
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.cred-hero-rb .page-hero-title{
  color: #fff;
}

.cred-hero-rb .page-hero-subtitle{
  color: rgba(255,255,255,.9);
  max-width: 62ch;
}

.cred-hero-rb .eyebrow-light{
  color: rgba(255,255,255,.92);
}

.cred-hero-rb .eyebrow-light .eyebrow-line{
  background: rgba(255,255,255,.35);
}

/* Dropdown com rolagem | Soluções */
.dropdown-menu-solutions{
  max-height: 420px;
  overflow-y: auto;
  overflow-x: hidden;
  min-width: 290px;
  padding-top: 8px;
  padding-bottom: 8px;
}

/* Scrollbar mais alinhada ao padrão visual */
.dropdown-menu-solutions::-webkit-scrollbar{
  width: 8px;
}

.dropdown-menu-solutions::-webkit-scrollbar-track{
  background: #f1f3f7;
  border-radius: 999px;
}

.dropdown-menu-solutions::-webkit-scrollbar-thumb{
  background: rgba(56, 65, 139, 0.45);
  border-radius: 999px;
}

.dropdown-menu-solutions::-webkit-scrollbar-thumb:hover{
  background: var(--brand);
}

/* =========================================================
   PÁGINA | NORMAS E DIRETRIZES
   ========================================================= */

.nd-hero{
  position: relative;
  overflow: hidden;
  padding: 148px 0 88px;
  min-height: 48vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1797d7 0%, #157fc5 42%, #0f5f9c 100%);
}

.nd-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0) 35%),
    linear-gradient(180deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0) 30%);
  pointer-events: none;
}

.nd-hero .page-hero-title{
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  line-height: 1.04;
  font-weight: 800;

}

.nd-hero .page-hero-subtitle{
  margin: 0;
  max-width: 700px;
  color: rgba(255,255,255,.88);
  font-size: 1.08rem;
  line-height: 1.85;
}

.nd-text{
  color: #4b5563;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.nd-highlight-card{
  background: #fff;
  border: 1px solid rgba(17,24,39,.07);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(17,24,39,.08);
  padding: 28px;
}

.nd-highlight-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.nd-highlight-item{
  min-height: 120px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f9fbfd 0%, #f3f7fb 100%);
  border: 1px solid rgba(23,151,215,.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
}

.nd-highlight-item i{
  font-size: 1.6rem;
  color: var(--brand);
  margin-bottom: 10px;
}

.nd-highlight-item span{
  font-weight: 700;
  color: #111827;
}

.nd-video-wrap{
  max-width: 980px;
  margin: 0 auto;
}

.nd-video-feature{
  position: relative;
}

.nd-video-feature__media{
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(13,51,102,.04), rgba(13,51,102,.10));
  box-shadow: 0 28px 70px rgba(17,24,39,.12);
  border: 1px solid rgba(17,24,39,.06);
}

.nd-video-feature__media video{
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: cover;
}

@media (max-width: 767px){
  .nd-video-feature__media{
    border-radius: 20px;
  }
}

.nd-doc-card{
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 18px 45px rgba(17,24,39,.06);
  padding: 26px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.nd-doc-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(17,24,39,.09);
  border-color: rgba(23,151,215,.18);
}

.nd-doc-icon{
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(23,151,215,.12) 0%, rgba(23,151,215,.22) 100%);
  color: var(--brand);
  font-size: 1.35rem;
}

.nd-doc-card h3{
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: .8rem;
  color: #111827;
}

.nd-doc-card p{
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.nd-doc-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-weight: 700;
  color: var(--brand);
}

.nd-doc-link:hover{
  color: var(--brand-dark);
}

.nd-cta-section{
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(13, 51, 102, 0.08);
  box-shadow: 0 18px 40px rgba(13, 51, 102, 0.06);
}

@media (max-width: 767px){
  .nd-highlight-grid{
    grid-template-columns: 1fr;
  }
}

.form-feedback{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid transparent;
}

.form-feedback__icon{
  font-size: 1.25rem;
  line-height: 1;
  margin-top: 2px;
}

.form-feedback strong{
  display: block;
  margin-bottom: 4px;
  font-weight: 800;
}

.form-feedback p{
  color: #4b5563;
  line-height: 1.6;
}

.form-feedback--success{
  background: #ecfdf3;
  border-color: #b7ebc6;
  color: #166534;
}

.form-feedback--success .form-feedback__icon{
  color: #16a34a;
}

.form-feedback--error{
  background: #fef2f2;
  border-color: #f3c1c1;
  color: #991b1b;
}

.form-feedback--error .form-feedback__icon{
  color: #dc2626;
}

/* =========================================================
   HARDENING FINAL | RESPONSIVIDADE MOBILE
   Cole no final do theme.css
   ========================================================= */

/* segurança geral contra overflow */
html,
body{
  overflow-x: hidden;
}

img,
svg,
video,
iframe{
  max-width: 100%;
}

.section,
.site-footer-rbb,
.orgf-section,
.units-listing-section,
.unit-gallery-section,
.nd-docs-section,
.service-form-section{
  overflow-x: hidden;
}

/* títulos muito longos em telas pequenas */
.page-hero-title,
.section-title,
.units-hero h1,
.unit-hero h1,
.orgf-name,
.service-feature-title,
.solution-feature-title,
.nd-doc-card h3,
.search-result-card h3{
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* =========================
   HEADER / NAV MOBILE
   ========================= */
@media (max-width: 991.98px){
  .navbar-modern .navbar-collapse{
    max-height: calc(100vh - 88px);
    overflow-y: auto;
    padding: 14px 0 22px;
  }

  .navbar-modern .navbar-nav{
    align-items: stretch !important;
    gap: .35rem !important;
  }

  .navbar-modern .nav-item{
    width: 100%;
  }

  .navbar-modern .nav-link{
    width: 100%;
    padding: .8rem 0;
  }

  .navbar-modern .dropdown-menu{
    position: static !important;
    inset: auto !important;
    transform: none !important;
    width: 100%;
    min-width: 0;
    margin-top: 6px;
    border-radius: 16px;
    box-shadow: none;
  }

  .dropdown-menu-solutions{
    max-height: 280px;
  }

  .btn-header-cta{
    width: 100%;
    justify-content: center;
  }

  .header-search{
    width: 100%;
  }

  .header-search-box{
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100% !important;
    margin-top: 10px;
  }

  .header-search.active .header-search-box{
    width: 100% !important;
    transform: none;
  }
}

/* =========================
   FORMULÁRIOS / BOTÕES / MAPAS
   ========================= */
@media (max-width: 767.98px){
  .contact-form-card,
  .service-form-card,
  .cred-form-card,
  .search-result-card,
  .nd-doc-card,
  .unit-context-card,
  .unit-location-card,
  .unit-highlights-card,
  .unit-surroundings-card,
  .units-cta-box{
    padding: 20px;
  }

  .search-page-form{
    padding: 8px;
  }

  .search-page-form input,
  .search-page-form button{
    height: 48px;
  }

  .unit-map-embed iframe{
    height: 280px;
  }

  .unit-map-actions,
  .unit-contact-cta,
  .who-actions{
    flex-direction: column;
    align-items: stretch;
  }

  .unit-map-actions .btn,
  .unit-contact-cta .btn,
  .who-actions .btn,
  .service-inline-cta-link{
    width: 100%;
    justify-content: center;
  }

  .footer-badges{
    justify-content: center;
  }

  .footer-bottom{
    text-align: center;
    align-items: center;
  }

  .footer-badges img{
    max-height: 42px;
  }
}

/* =========================
   HERO / BLOCOS INTERNOS
   ========================= */
@media (max-width: 767.98px){
  .units-hero,
  .unit-hero,
  .page-hero{
    padding-top: 110px;
  }

  .unit-hero-actions{
    flex-direction: column;
    align-items: stretch;
  }

  .unit-hero-actions .btn{
    width: 100%;
    justify-content: center;
  }

  .nd-highlight-grid{
    grid-template-columns: 1fr;
  }
}

/* =========================
   ORGANOGRAMA
   ========================= */
@media (max-width: 767.98px){
  .orgf-panel{
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .orgf-panel::after{
    width: 56px;
    height: 56px;
    top: 14px;
    left: 14px;
  }

  .orgf-canvas{
    min-width: 320px;
  }

  .orgf-center-links{
    flex-direction: column;
  }

  .orgf-center-links .orgf-node{
    min-width: 0;
    width: 100%;
  }

  .orgf-node{
    min-width: 0;
    width: 100%;
  }

  .orgf-avatar{
    width: 92px;
    height: 92px;
    flex-basis: 92px;
  }

  .orgf-name{
    font-size: 1rem;
  }

  .orgf-role{
    font-size: .9rem;
    line-height: 1.3;
  }
}

@media (max-width: 575.98px){
  .orgf-branch--two,
  .orgf-branch--five,
  .orgf-branch--ten{
    grid-template-columns: 1fr !important;
  }

  .orgf-row--governance{
    gap: 22px;
  }

  .orgf-side-branch{
    gap: 10px;
  }
}

/* =========================
   UNIDADES / GALERIA
   ========================= */
@media (max-width: 575.98px){
  .unit-card-image img,
  .unit-gallery-card img{
    height: 190px;
  }

  .unit-gallery-badge{
    font-size: .78rem;
    padding: 7px 10px;
  }
}

/* =========================================
   ORGANOGRAMA | AJUSTE MOBILE REAL
   ========================================= */

@media (max-width: 767.98px){

  .orgf-section{
    overflow-x: hidden;
  }

  .orgf-panel{
    padding: 18px 14px 28px;
    overflow-x: hidden;
  }

  .orgf-canvas{
    min-width: 0 !important;
    width: 100%;
  }

  /* remove excesso de linhas decorativas no mobile */
  .orgf-panel::before,
  .orgf-panel::after,
  .orgf-line,
  .orgf-connector,
  .orgf-branch-line,
  .orgf-stem,
  .orgf-link-line,
  .orgf-node-line{
    display: none !important;
  }

  /* blocos principais */
  .orgf-top,
  .orgf-middle,
  .orgf-bottom,
  .orgf-row,
  .orgf-branch,
  .orgf-branch--two,
  .orgf-branch--five,
  .orgf-branch--ten,
  .orgf-row--governance,
  .orgf-center-links,
  .orgf-side-branch,
  .orgf-side-stack{
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px !important;
    width: 100%;
  }

  /* blocos do Roger / Wesley / Willian / Eser */
  .orgf-person,
  .orgf-person--top,
  .orgf-person--side,
  .orgf-person--center,
  .orgf-head,
  .orgf-headline{
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .orgf-avatar{
    width: 92px !important;
    height: 92px !important;
    min-width: 92px !important;
    min-height: 92px !important;
    margin: 0 auto 8px !important;
  }

  .orgf-avatar img{
    object-fit: cover;
    object-position: center top;
    transform: scale(1.06);
  }

  .orgf-name{
    font-size: 1.05rem !important;
    line-height: 1.2 !important;
    text-align: center !important;
    margin: 0 0 4px !important;
  }

  .orgf-role{
    font-size: .92rem !important;
    line-height: 1.35 !important;
    text-align: center !important;
    margin: 0 !important;
  }

  /* cards */
  .orgf-node,
  .orgf-card,
  .orgf-mini-card{
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 auto !important;
  }

  .orgf-node{
    padding: 18px 14px !important;
    border-radius: 18px !important;
  }

  .orgf-node .orgf-icon{
    margin: 0 auto 10px !important;
  }

  .orgf-node-title,
  .orgf-node span,
  .orgf-node strong{
    text-align: center !important;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* bloco lateral do Eser com comitês */
  .orgf-eser-wrap,
  .orgf-eser-group,
  .orgf-ceo-group{
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px !important;
    width: 100% !important;
  }

  /* espaçamentos gerais */
  .orgf-top{
    margin-bottom: 18px !important;
  }

  .orgf-middle{
    margin: 18px 0 !important;
  }

  .orgf-bottom{
    margin-top: 18px !important;
  }
}

@media (max-width: 575.98px){
  .orgf-panel{
    padding-left: 10px;
    padding-right: 10px;
  }

  .orgf-avatar{
    width: 84px !important;
    height: 84px !important;
    min-width: 84px !important;
    min-height: 84px !important;
  }

  .orgf-name{
    font-size: 1rem !important;
  }

  .orgf-role{
    font-size: .88rem !important;
  }

  .orgf-node{
    padding: 16px 12px !important;
  }
}

/* =========================================================
   ORGANOGRAMA FUNCIONAL – MOBILE REAL
   ========================================================= */

@media (max-width: 767.98px){

  .orgf-hero{
    padding: 108px 0 56px;
    min-height: auto;
  }

  .orgf-hero-title{
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .orgf-hero-text{
    font-size: .98rem;
    line-height: 1.55;
    color: rgba(255,255,255,.88);
  }

  .orgf-container{
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .orgf-panel{
    padding: 18px 14px 24px !important;
    border-radius: 24px;
    overflow-x: hidden !important;
  }

  .orgf-canvas{
    min-width: 0 !important;
    width: 100%;
  }

  .orgf-row + .orgf-row{
    margin-top: 14px;
  }

  /* ROGER */
  .orgf-row--top{
    display: flex;
    justify-content: center;
    margin-bottom: 2px;
  }

  #roger-wrap{
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  #roger-text{
    text-align: center;
  }

  /* marketing / institucional */
  .orgf-row--branch-top{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: stretch;
  }

  /* governança */
  .orgf-row--governance{
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .orgf-side{
    width: 100%;
  }

  #side-wesley,
  #side-willian{
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }

  #node-wesley{
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .orgf-side-branch{
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  /* Willian */
  .orgf-willian-grid{
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    grid-template-rows: none !important;
    gap: 14px !important;
    align-items: stretch !important;
  }

  #willian-text{
    grid-column: auto !important;
    grid-row: auto !important;
    text-align: center !important;
    order: 2;
  }

  #node-willian-avatar{
    grid-column: auto !important;
    grid-row: auto !important;
    margin: 0 auto !important;
    order: 1;
  }

  #side-willian .orgf-side-branch,
  #side-willian .orgf-willian-branch{
    grid-column: auto !important;
    grid-row: auto !important;
    width: 100% !important;
    justify-content: stretch !important;
    margin-top: 0 !important;
    order: 3;
  }

  #side-willian .orgf-side-branch .orgf-node,
  #side-willian .orgf-willian-branch .orgf-node{
    transform: none !important;
    min-width: 0 !important;
  }

  /* centro */
  .orgf-center-links{
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  /* ESER + comitês */
  .orgf-row--ceo{
    display: flex;
    justify-content: center;
  }

  #ceo-wrap{
    width: 100%;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px !important;
  }

  #eser-wrap{
    width: 100%;
    max-width: 100%;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 10px;
    transform: none !important; /* corrige o empurrão do desktop */
  }

  #node-comites{
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  /* setores e áreas */
  .orgf-row--sectors,
  .orgf-row--areas{
    display: flex;
    justify-content: center;
  }

  .orgf-branch--five,
  .orgf-branch--ten{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    width: 100%;
    max-width: 100%;
  }

  /* avatar / pessoa */
  .orgf-person{
    display: flex;
    width: 100%;
    max-width: 100%;
  }

  .orgf-avatar{
    width: 88px !important;
    height: 88px !important;
    flex: 0 0 88px !important;
    margin: 0 auto;
  }

  .orgf-avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .orgf-person-text{
    width: 100%;
    text-align: center;
  }

  .orgf-name{
    font-size: 1.02rem !important;
    line-height: 1.2 !important;
    margin-bottom: 4px;
    word-break: break-word;
  }

  .orgf-role{
    font-size: .92rem !important;
    line-height: 1.35 !important;
    margin: 0;
    word-break: break-word;
  }

  /* cards */
  .orgf-node{
    width: 100%;
    min-width: 0 !important;
    max-width: 100%;
    padding: 16px 12px !important;
    border-radius: 18px;
  }

  .orgf-node-icon{
    margin-bottom: 8px;
  }

  .orgf-node-label{
    display: block;
    text-align: center;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* desligar efeitos que complicam no mobile */
  .orgf-decor,
  .orgf-wires{
    display: none !important;
  }
}

@media (max-width: 575.98px){

  .orgf-panel{
    padding: 16px 10px 20px !important;
    border-radius: 20px;
  }

  .orgf-row--branch-top{
    grid-template-columns: 1fr;
  }

  .orgf-avatar{
    width: 80px !important;
    height: 80px !important;
    flex: 0 0 80px !important;
  }

  .orgf-name{
    font-size: .96rem !important;
  }

  .orgf-role{
    font-size: .86rem !important;
  }

  .orgf-node{
    padding: 14px 10px !important;
  }
}

/* =========================================================
   ORGANOGRAMA | CORREÇÃO FINAL MOBILE
   ========================================================= */

@media (max-width: 767.98px){

  .orgf-wires{
    display: none !important;
  }

  .orgf-panel{
    padding: 16px 12px 22px !important;
    overflow: hidden !important;
  }

  .orgf-canvas{
    width: 100% !important;
    min-width: 0 !important;
  }

  /* remove ajustes desktop que quebram o mobile */
  #node-marketing,
  #node-institucional,
  #eser-wrap,
  #side-willian .orgf-willian-branch .orgf-node{
    transform: none !important;
  }

  #node-marketing,
  #node-institucional{
    margin-top: 0 !important;
  }

  #node-comites{
    margin-left: 0 !important;
    margin-top: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  /* Roger */
  .orgf-row--top{
    display: flex !important;
    justify-content: center !important;
    margin-bottom: 14px !important;
  }

  #roger-wrap{
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
  }

  #roger-text{
    width: 100% !important;
    text-align: center !important;
  }

  /* marketing / institucional */
  .orgf-row--branch-top{
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    margin-bottom: 20px !important;
  }

  /* governança */
  .orgf-row--governance{
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    margin-bottom: 22px !important;
  }

  #side-wesley,
  #side-willian{
    width: 100% !important;
  }

  #node-wesley{
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 8px !important;
  }

  .orgf-side-branch{
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    width: 100% !important;
  }

  /* Willian */
  .orgf-willian-grid{
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    align-items: center !important;
    width: 100% !important;
  }

  #willian-text{
    text-align: center !important;
    order: 2;
  }

  #node-willian-avatar{
    order: 1;
    margin: 0 auto !important;
  }

  #side-willian .orgf-side-branch,
  #side-willian .orgf-willian-branch{
    order: 3;
    width: 100% !important;
    display: flex !important;
    justify-content: stretch !important;
    margin-top: 0 !important;
  }

  /* Eser + comitês */
  .orgf-row--ceo{
    display: flex !important;
    justify-content: center !important;
    margin-bottom: 22px !important;
  }

  #ceo-wrap{
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    width: 100% !important;
    align-items: stretch !important;
  }

  #eser-wrap{
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    gap: 8px !important;
  }

  /* setores */
  .orgf-row--sectors{
    display: block !important;
    margin-bottom: 18px !important;
  }

  .orgf-branch--five{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    max-width: 100% !important;
  }

  /* áreas */
  .orgf-row--areas{
    display: block !important;
  }

  .orgf-branch--ten{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  /* pessoa */
  .orgf-person{
    width: 100% !important;
    max-width: 100% !important;
  }

  .orgf-avatar{
    width: 84px !important;
    height: 84px !important;
    flex: 0 0 84px !important;
    margin: 0 auto !important;
  }

  .orgf-name{
    font-size: 1rem !important;
    line-height: 1.2 !important;
    text-align: center !important;
    word-break: break-word !important;
  }

  .orgf-role{
    font-size: .9rem !important;
    line-height: 1.35 !important;
    text-align: center !important;
    word-break: break-word !important;
  }

  /* cards */
  .orgf-node{
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 16px 12px !important;
  }

  .orgf-node-label{
    text-align: center !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }
}

@media (max-width: 575.98px){
  .orgf-panel{
    padding: 14px 10px 18px !important;
  }

  .orgf-avatar{
    width: 78px !important;
    height: 78px !important;
    flex: 0 0 78px !important;
  }

  .orgf-node{
    padding: 14px 10px !important;
    border-radius: 18px !important;
  }
}

@media (max-width: 767.98px){
  #roger-wrap,
  #roger-text,
  #node-roger{
    transform: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    left: auto !important;
    right: auto !important;
  }

  #roger-wrap{
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  #roger-text{
    text-align: center !important;
    width: 100% !important;
  }
}

@media (max-width: 767.98px){
  #node-sgestec,
  #node-juridica,
  #node-adm{
    transform: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    left: auto !important;
    right: auto !important;
    justify-self: stretch !important;
    align-self: stretch !important;
  }
}

@media (max-width: 767.98px){
  .orgf-branch--five,
  .orgf-row--sectors{
    transform: none !important;
    margin-left: 0 !important;
    left: auto !important;
  }
}

.navbar-modern .dropdown-toggle::after{
  border-top-color: currentColor;
}

.solutions-hero .navbar-modern .nav-link,
.solutions-hero .navbar-modern .dropdown-toggle{
  color: #fff;
}

body.page-servico .service-dual-section .row > .col-lg-6:first-child .section-title{
  font-size: 1.6rem;
  line-height: 1.22;
}

@media (max-width: 767.98px){
  body.page-servico .service-dual-section .row > .col-lg-6:first-child .section-title{
    font-size: 1.35rem;
    line-height: 1.25;
  }
}

body.page-servico .service-dual-section .row > .col-lg-6:last-child .section-title{
  font-size: 1.6rem;
  line-height: 1.22;
}

@media (max-width: 767.98px){
  body.page-servico .service-dual-section .row > .col-lg-6:last-child .section-title{
    font-size: 1.35rem;
    line-height: 1.25;
  }
}

/* =========================================================
   COOKIE BANNER
   ========================================================= */

.cookie-banner{
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
}

.cookie-banner[hidden]{
  display: none !important;
}

.cookie-banner__inner{
  max-width: 1120px;
  margin: 0 auto;
  background: rgba(13, 51, 102, 0.96);
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0,0,0,.18);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cookie-banner__text{
  max-width: 780px;
}

.cookie-banner__text strong{
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 800;
}

.cookie-banner__text p{
  margin: 0;
  color: rgba(255,255,255,.86);
  line-height: 1.6;
  font-size: .95rem;
}

.cookie-banner__text a{
  color: #9edfff;
  font-weight: 700;
  text-decoration: none;
}

.cookie-banner__text a:hover{
  color: #c9efff;
  text-decoration: underline;
}

.cookie-banner__actions{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn{
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: .94rem;
  cursor: pointer;
  transition: .2s ease;
  white-space: nowrap;
}

.cookie-btn--primary{
  background: #1fa2f1;
  color: #fff;
}

.cookie-btn--primary:hover{
  background: #1590da;
}

.cookie-btn--ghost{
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
}

.cookie-btn--ghost:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.42);
}

@media (max-width: 767.98px){
  .cookie-banner{
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner__inner{
    padding: 18px 16px;
    border-radius: 18px;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__actions{
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-btn{
    width: 100%;
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible{
  outline: 3px solid rgba(31,162,241,.45);
  outline-offset: 2px;
}

/* =========================================================
   VLibras | botão discreto sem quebrar o ícone
   ========================================================= */

div[vw-access-button]{
  right: 18px !important;
  bottom: 50% !important;
  transform: translateY(50%);
  opacity: .42;
  transition: opacity .2s ease;
}

div[vw-access-button]:hover,
div[vw-access-button]:focus-within{
  opacity: 1;
}

div[vw-access-button] .access-button{
  width: 50px !important;
  height: 50px !important;
  border-radius: 999px !important;
  background: rgba(13, 51, 102, 0.14) !important;
  box-shadow: 0 8px 22px rgba(13, 51, 102, 0.10) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

div[vw-access-button] .access-button:hover,
div[vw-access-button] .access-button:focus{
  background: #1fa2f1 !important;
  box-shadow: 0 12px 28px rgba(13, 51, 102, 0.22) !important;
}

div[vw-access-button] .access-button svg,
div[vw-access-button] .access-button img{
  width: 24px !important;
  height: 24px !important;
  margin: auto !important;
  display: block !important;
}

@media (max-width: 767.98px){
  div[vw-access-button]{
    right: 12px !important;
    bottom: 50% !important;
    transform: translateY(50%);
    opacity: .32;
  }

  div[vw-access-button] .access-button{
    width: 44px !important;
    height: 44px !important;
  }

  div[vw-access-button] .access-button svg,
  div[vw-access-button] .access-button img{
    width: 20px !important;
    height: 20px !important;
  }
}

/* =========================================================
   PAGE SERVIÇOS | reveal mais suave nos cards
   ========================================================= */

body.page-servicos .solution-card.reveal,
body.page-servicos .differential-card.reveal,
body.page-servicos .solutions-intro-card.reveal,
body.page-servicos .solutions-cta-card.reveal,
body.page-servicos .section-head.reveal,
body.page-servicos .solutions-hero-copy.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .75s ease,
    transform .75s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}

body.page-servicos .solution-card.reveal.is-visible,
body.page-servicos .solution-card.reveal.visible,
body.page-servicos .differential-card.reveal.is-visible,
body.page-servicos .differential-card.reveal.visible,
body.page-servicos .solutions-intro-card.reveal.is-visible,
body.page-servicos .solutions-intro-card.reveal.visible,
body.page-servicos .solutions-cta-card.reveal.is-visible,
body.page-servicos .solutions-cta-card.reveal.visible,
body.page-servicos .section-head.reveal.is-visible,
body.page-servicos .section-head.reveal.visible,
body.page-servicos .solutions-hero-copy.reveal.is-visible,
body.page-servicos .solutions-hero-copy.reveal.visible{
  opacity: 1;
  transform: translateY(0);
}

.orgf-branch--three{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.orgf-branch--nine{
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 991.98px){
  .orgf-branch--nine{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px){
  .orgf-branch--three,
  .orgf-branch--nine{
    grid-template-columns: 1fr !important;
  }
}

/* =========================================
   ORGANOGRAMA | Mariana + ESG/Compliance
   ========================================= */

#side-wesley .orgf-side-branch{
  margin-left: 28px;
  padding-left: 80px;
  gap: 18px;
}

#side-wesley .orgf-node{
  min-width: 150px;
}

#side-wesley .orgf-node--small{
  min-height: 74px;
  padding: 14px 18px;
}

/* =========================================
   ORGANOGRAMA | ajuste dos setores do Eser
   ========================================= */

#branch-sectors{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

#node-financeira{
  transform: translateX(-70px);
}

#node-adm-pessoas{
  transform: translateX(160px);
}

#node-juridica{
  transform: translateX(200px);
}

#node-financeira:hover{
  transform: translateX(-70px) translateY(-4px);
}

#node-adm-pessoas:hover{
  transform: translateX(160px) translateY(-4px);
}

#node-juridica:hover{
  transform: translateX(200px) translateY(-4px);
}

#branch-areas{
  margin-top: 62px;
}

/* =========================================================
   ORGANOGRAMA | MOBILE
   ========================================================= */

@media (max-width: 991.98px){

  /* painel e canvas */
  .orgf-panel{
    padding: 18px 14px 24px !important;
    border-radius: 22px !important;
    overflow: hidden !important;
  }

  .orgf-canvas{
    width: 100% !important;
    min-width: 0 !important;
  }

  /* desliga linhas e decorações no mobile */
  .orgf-wires,
  .orgf-decor{
    display: none !important;
  }

  /* remove deslocamentos desktop que quebram no celular */
  #node-financeira,
  #node-adm-pessoas,
  #node-juridica,
  #eser-wrap,
  #node-marketing,
  #node-institucional,
  #node-bpo,
  #side-willian .orgf-side-branch .orgf-node{
    transform: none !important;
  }

  #node-financeira:hover,
  #node-adm-pessoas:hover,
  #node-juridica:hover,
  #node-bpo:hover{
    transform: translateY(-4px) !important;
  }

  #branch-areas{
    margin-top: 18px !important;
  }

  #side-wesley .orgf-side-branch{
    margin-left: 0 !important;
    padding-left: 0 !important;
  }

  /* blocos gerais */
  .orgf-row{
    margin-bottom: 18px !important;
  }

  .orgf-row--top,
  .orgf-row--branch-top,
  .orgf-row--governance,
  .orgf-row--ceo,
  .orgf-row--sectors,
  .orgf-row--areas{
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 16px !important;
  }

  /* Roger */
  #roger-wrap{
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    text-align: center !important;
  }

  #roger-text{
    width: 100% !important;
    text-align: center !important;
  }

  /* Mariana e Willian */
  #node-wesley,
  .orgf-willian-grid{
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    text-align: center !important;
  }

  #willian-text{
    text-align: center !important;
    width: 100% !important;
  }

  #side-wesley,
  #side-willian,
  #center-links{
    width: 100% !important;
  }

  .orgf-side-branch,
  #center-links{
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    align-items: stretch !important;
  }

  /* CEO */
  #ceo-wrap{
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 14px !important;
    width: 100% !important;
  }

  #eser-wrap{
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 8px !important;
    width: 100% !important;
  }

  #node-comites{
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
  }

  /* grids dos ramos */
  .orgf-branch--three,
  .orgf-branch--nine{
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    width: 100% !important;
  }

  /* cards e pessoas */
  .orgf-person{
    width: 100% !important;
    justify-content: center !important;
  }

  .orgf-avatar{
    width: 88px !important;
    height: 88px !important;
    flex: 0 0 88px !important;
  }

  .orgf-node{
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 14px 12px !important;
  }

  .orgf-node--small{
    min-height: 72px !important;
  }

  .orgf-name{
    font-size: 1rem !important;
    line-height: 1.2 !important;
  }

  .orgf-role{
    font-size: .9rem !important;
    line-height: 1.3 !important;
  }

  .orgf-node-label{
    font-size: .82rem !important;
    line-height: 1.2 !important;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

@media (max-width: 575.98px){

  .orgf-panel{
    padding: 16px 10px 22px !important;
    border-radius: 20px !important;
  }

  .orgf-branch--three,
  .orgf-branch--nine{
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .orgf-avatar{
    width: 80px !important;
    height: 80px !important;
    flex: 0 0 80px !important;
  }

  .orgf-name{
    font-size: .96rem !important;
  }

  .orgf-role{
    font-size: .86rem !important;
  }

  .orgf-node{
    padding: 14px 10px !important;
  }

  .orgf-node-label{
    font-size: .8rem !important;
  }
}

/* =========================================================
   ORGANOGRAMA MOBILE | correções finais
   ========================================================= */

@media (max-width: 991.98px){

  /* remove QUALQUER conector visual no mobile */
  .orgf-wires,
  .orgf-decor,
  .orgf-dot,
  .orgf-line,
  .orgf-connector,
  .orgf-canvas::before,
  .orgf-canvas::after,
  .orgf-row--top::before,
  .orgf-row--top::after,
  .orgf-row--branch-top::before,
  .orgf-row--branch-top::after,
  .orgf-row--governance::before,
  .orgf-row--governance::after,
  .orgf-row--ceo::before,
  .orgf-row--ceo::after,
  .orgf-row--sectors::before,
  .orgf-row--sectors::after,
  .orgf-row--areas::before,
  .orgf-row--areas::after{
    display: none !important;
    content: none !important;
  }

  /* zera deslocamentos desktop que podem afetar hover */
  #node-marketing,
  #node-institucional,
  #node-exp-privada,
  #node-cred-parcerias,
  #node-controladoria,
  #node-conselho-fiscal,
  #node-ouvidoria,
  #node-exp-publica,
  #node-comites,
  #node-financeira,
  #node-adm-pessoas,
  #node-juridica,
  #node-audext,
  #node-assess,
  #node-advisory,
  #node-auddiv,
  #node-bpo,
  #node-economia,
  #node-vi,
  #node-eng,
  #node-tilgpd{
    transform: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* hover mobile: sobe levemente, sem ir para lado nenhum */
  #node-marketing:hover,
  #node-institucional:hover,
  #node-exp-privada:hover,
  #node-cred-parcerias:hover,
  #node-controladoria:hover,
  #node-conselho-fiscal:hover,
  #node-ouvidoria:hover,
  #node-exp-publica:hover,
  #node-comites:hover,
  #node-financeira:hover,
  #node-adm-pessoas:hover,
  #node-juridica:hover,
  #node-audext:hover,
  #node-assess:hover,
  #node-advisory:hover,
  #node-auddiv:hover,
  #node-bpo:hover,
  #node-economia:hover,
  #node-vi:hover,
  #node-eng:hover,
  #node-tilgpd:hover,
  .orgf-node:hover{
    transform: translateY(-4px) !important;
  }

  /* topinho do Roger sem bolinha/conector */
  .orgf-row--top,
  .orgf-row--branch-top{
    position: relative;
  }
}

/* =========================================================
   ORGANOGRAMA | MOBILE FINAL DEFINITIVO
   Colar no FINAL do CSS
   ========================================================= */

@media (max-width: 991.98px){

  /* painel */
  .orgf-panel{
    padding: 18px 12px 24px !important;
    border-radius: 22px !important;
    overflow: hidden !important;
  }

  .orgf-canvas{
    width: 100% !important;
    min-width: 0 !important;
  }

  /* remove conectores e enfeites no mobile */
  .orgf-wires,
  .orgf-decor,
  .orgf-canvas::before,
  .orgf-canvas::after,
  .orgf-row::before,
  .orgf-row::after,
  .orgf-side::before,
  .orgf-side::after,
  .orgf-side-branch::before,
  .orgf-side-branch::after,
  .orgf-ceo-wrap::before,
  .orgf-ceo-wrap::after,
  .orgf-branch::before,
  .orgf-branch::after{
    display: none !important;
    content: none !important;
  }

  /* zera qualquer deslocamento herdado do desktop */
  #node-marketing,
  #node-institucional,
  #node-exp-privada,
  #node-cred-parcerias,
  #node-controladoria,
  #node-conselho-fiscal,
  #node-ouvidoria,
  #node-exp-publica,
  #node-comites,
  #node-financeira,
  #node-adm-pessoas,
  #node-juridica,
  #node-audext,
  #node-assess,
  #node-advisory,
  #node-auddiv,
  #node-bpo,
  #node-economia,
  #node-vi,
  #node-eng,
  #node-tilgpd,
  #branch-areas,
  #branch-sectors,
  #side-wesley .orgf-side-branch,
  #side-willian .orgf-side-branch{
    transform: none !important;
    margin: 0 !important;
    left: auto !important;
    right: auto !important;
  }

  /* rows empilhadas */
  .orgf-row{
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px !important;
    margin-bottom: 16px !important;
  }

  .orgf-row--top,
  .orgf-row--branch-top,
  .orgf-row--governance,
  .orgf-row--ceo,
  .orgf-row--sectors,
  .orgf-row--areas{
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px !important;
  }

  /* Roger */
  #roger-wrap{
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-align: center !important;
  }

  #roger-text{
    width: 100% !important;
    text-align: center !important;
  }

  /* Mariana e Willian centralizados */
  #side-wesley,
  #side-willian,
  #center-links{
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px !important;
  }

  #node-wesley,
  .orgf-willian-grid{
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-align: center !important;
  }

  #side-wesley .orgf-side-branch,
  #side-willian .orgf-side-branch,
  #center-links{
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
    padding: 0 !important;
  }

  /* CEO */
  #ceo-wrap{
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px !important;
  }

  #eser-wrap{
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-align: center !important;
  }

  /* grids de setores e áreas */
  .orgf-branch--three,
  .orgf-branch--nine{
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  /* cards e pessoas */
  .orgf-person{
    width: 100% !important;
    justify-content: center !important;
  }

  .orgf-avatar{
    width: 84px !important;
    height: 84px !important;
    flex: 0 0 84px !important;
  }

  .orgf-node{
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    padding: 14px 12px !important;
  }

  .orgf-node--small{
    min-height: 72px !important;
  }

  .orgf-name{
    font-size: 1rem !important;
    line-height: 1.2 !important;
  }

  .orgf-role{
    font-size: .9rem !important;
    line-height: 1.28 !important;
  }

  .orgf-node-label{
    font-size: .82rem !important;
    line-height: 1.2 !important;
    word-break: break-word;
    overflow-wrap: anywhere;
    text-align: center !important;
  }

  /* hover sempre para cima no mobile */
  .orgf-node:hover,
  #node-marketing:hover,
  #node-institucional:hover,
  #node-exp-privada:hover,
  #node-cred-parcerias:hover,
  #node-controladoria:hover,
  #node-conselho-fiscal:hover,
  #node-ouvidoria:hover,
  #node-exp-publica:hover,
  #node-comites:hover,
  #node-financeira:hover,
  #node-adm-pessoas:hover,
  #node-juridica:hover,
  #node-audext:hover,
  #node-assess:hover,
  #node-advisory:hover,
  #node-auddiv:hover,
  #node-bpo:hover,
  #node-economia:hover,
  #node-vi:hover,
  #node-eng:hover,
  #node-tilgpd:hover{
    transform: translateY(-4px) !important;
  }
}

@media (max-width: 575.98px){

  .orgf-panel{
    padding: 16px 10px 22px !important;
    border-radius: 20px !important;
  }

  .orgf-branch--three,
  .orgf-branch--nine{
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .orgf-avatar{
    width: 78px !important;
    height: 78px !important;
    flex: 0 0 78px !important;
  }

  .orgf-name{
    font-size: .96rem !important;
  }

  .orgf-role{
    font-size: .86rem !important;
  }

  .orgf-node{
    padding: 14px 10px !important;
  }

  .orgf-node-label{
    font-size: .8rem !important;
  }
}

@media (max-width: 991.98px){

  /* header mobile */
  .navbar-modern{
    padding: 10px 0 !important;
  }

  .navbar-modern .navbar-brand img{
    height: 40px !important;
  }

  .navbar-modern .navbar-toggler{
    border: 0 !important;
    box-shadow: none !important;
    padding: 8px 10px !important;
  }

  .navbar-modern .navbar-toggler-icon{
    filter: none;
  }

  /* painel do menu mobile */
  .navbar-modern .navbar-collapse{
    background: #ffffff !important;
    border: 1px solid rgba(17,24,39,.08) !important;
    border-radius: 24px !important;
    padding: 18px 16px 16px !important;
    margin-top: 12px !important;
    box-shadow: 0 22px 55px rgba(17,24,39,.16) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* links */
  .navbar-modern .navbar-collapse .navbar-nav{
    gap: 4px;
  }

  .navbar-modern .navbar-collapse .nav-link{
    color: #0f172a !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    padding: 12px 8px !important;
    border-radius: 12px !important;
    opacity: 1 !important;
  }

  .navbar-modern .navbar-collapse .nav-link:hover,
  .navbar-modern .navbar-collapse .nav-link:focus{
    background: rgba(23,151,215,.08) !important;
    color: var(--brand-darker) !important;
  }

  /* dropdown mobile */
  .navbar-modern .navbar-collapse .dropdown-menu{
    background: #f8fbff !important;
    border: 1px solid rgba(23,151,215,.10) !important;
    border-radius: 16px !important;
    padding: 8px !important;
    box-shadow: none !important;
    margin-top: 4px !important;
  }

  .navbar-modern .navbar-collapse .dropdown-item{
    color: #0f172a !important;
    font-size: .95rem !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
    padding: 10px 12px !important;
  }

  .navbar-modern .navbar-collapse .dropdown-item:hover,
  .navbar-modern .navbar-collapse .dropdown-item:focus{
    background: rgba(23,151,215,.08) !important;
    color: var(--brand-darker) !important;
    transform: none !important;
  }

  /* seta do dropdown */
  .navbar-modern .navbar-collapse .dropdown-toggle::after{
    border-top-color: var(--brand-darker) !important;
  }

  /* CTA menor */
  .navbar-modern .navbar-collapse .btn.btn-header-cta,
  .navbar-modern .navbar-collapse .btn.btn-brand{
    width: 100%;
    margin-top: 12px;
    padding: .78rem 1rem !important;
    font-size: .96rem !important;
    border-radius: 999px !important;
  }
}

@media (max-width: 991.98px){

  /* HOME no mobile: links pretos mesmo sobre a imagem */
  .site-header-home .navbar-modern:not(.is-scrolled) .nav-link,
  .site-header-home .navbar-modern:not(.is-scrolled) .dropdown-toggle,
  .site-header-home .navbar-modern:not(.is-scrolled) .navbar-nav .nav-link{
    color: #111827 !important;
  }

  .site-header-home .navbar-modern:not(.is-scrolled) .nav-link:hover,
  .site-header-home .navbar-modern:not(.is-scrolled) .nav-link:focus{
    color: var(--brand-darker) !important;
  }

  /* setinhas pretas */
  .site-header-home .navbar-modern:not(.is-scrolled) .dropdown-toggle::after{
    border-top-color: #111827 !important;
  }

  /* mantém só o hambúrguer branco */
  .site-header-home .navbar-modern:not(.is-scrolled) .navbar-toggler-icon{
    filter: brightness(0) invert(1) !important;
  }
}

@media (max-width: 991.98px){

  .site-header-home .navbar-modern:not(.is-scrolled) .navbar-toggler{
    color: #fff !important;
    border-color: transparent !important;
  }

  .site-header-home .navbar-modern:not(.is-scrolled) .header-search-toggle{
    color: var(--brand) !important;
    border-color: rgba(23,151,215,.28) !important;
    background: rgba(255,255,255,.14) !important;
  }

  .site-header-home .navbar-modern:not(.is-scrolled) .header-search-toggle:hover{
    background: rgba(255,255,255,.22) !important;
    border-color: rgba(23,151,215,.42) !important;
  }

  .site-header-home .navbar-modern:not(.is-scrolled) .header-search-toggle i{
    color: var(--brand) !important;
  }
}

@media (max-width: 991.98px){

  /* =========================================
     PAGE SERVICOS - igual à home no mobile
     ========================================= */

  body.page-servicos .site-header,
  body.page-servicos .site-header-inner,
  body.page-servicos #siteNav,
  body.page-servicos #siteNav.navbar-modern{
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* usa logo padrão no mobile, igual ao que ficou bom na home */
  body.page-servicos #siteNav:not(.navbar-scrolled) .brand-logo-default{
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 2;
    pointer-events: auto;
  }

  body.page-servicos #siteNav:not(.navbar-scrolled) .brand-logo-white{
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    position: absolute !important;
    left: 0;
    top: 0;
    pointer-events: none;
  }

  /* links pretos */
  body.page-servicos #siteNav:not(.navbar-scrolled) .nav-link,
  body.page-servicos #siteNav:not(.navbar-scrolled) .dropdown-toggle,
  body.page-servicos #siteNav:not(.navbar-scrolled) .navbar-nav .nav-link{
    color: #111827 !important;
  }

  /* setinhas pretas */
  body.page-servicos #siteNav:not(.navbar-scrolled) .dropdown-toggle::after{
    border-top-color: #111827 !important;
  }

  /* busca azul */
  body.page-servicos #siteNav:not(.navbar-scrolled) .header-search-toggle,
  body.page-servicos #siteNav:not(.navbar-scrolled) .header-search-toggle i{
    color: var(--brand) !important;
  }

  body.page-servicos #siteNav:not(.navbar-scrolled) .header-search-toggle{
    border-color: rgba(23,151,215,.24) !important;
    background: rgba(255,255,255,.10) !important;
  }

  /* hamburguer branco */
  body.page-servicos #siteNav:not(.navbar-scrolled) .navbar-toggler{
    color: #fff !important;
    border-color: transparent !important;
  }

  body.page-servicos #siteNav:not(.navbar-scrolled) .navbar-toggler-icon{
    filter: brightness(0) invert(1) !important;
  }
}

@media (max-width: 991.98px){

  body.page-servico .site-header,
  body.page-servico .site-header-inner,
  body.page-servico #siteNav,
  body.page-servico #siteNav.navbar-modern{
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* usa logo padrão no mobile, igual ao que ficou bom na home */
  body.page-servico #siteNav:not(.navbar-scrolled) .brand-logo-default{
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 2;
    pointer-events: auto;
  }

  body.page-servico #siteNav:not(.navbar-scrolled) .brand-logo-white{
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    position: absolute !important;
    left: 0;
    top: 0;
    pointer-events: none;
  }

  /* links pretos */
  body.page-servico #siteNav:not(.navbar-scrolled) .nav-link,
  body.page-servico #siteNav:not(.navbar-scrolled) .dropdown-toggle,
  body.page-servico #siteNav:not(.navbar-scrolled) .navbar-nav .nav-link{
    color: #111827 !important;
  }

  /* setinhas pretas */
  body.page-servico #siteNav:not(.navbar-scrolled) .dropdown-toggle::after{
    border-top-color: #111827 !important;
  }

  /* busca azul */
  body.page-servico #siteNav:not(.navbar-scrolled) .header-search-toggle,
  body.page-servico #siteNav:not(.navbar-scrolled) .header-search-toggle i{
    color: var(--brand) !important;
  }

  body.page-servico #siteNav:not(.navbar-scrolled) .header-search-toggle{
    border-color: rgba(23,151,215,.24) !important;
    background: rgba(255,255,255,.10) !important;
  }

  /* hamburguer branco */
  body.page-servico #siteNav:not(.navbar-scrolled) .navbar-toggler{
    color: #fff !important;
    border-color: transparent !important;
  }

  body.page-servico #siteNav:not(.navbar-scrolled) .navbar-toggler-icon{
    filter: brightness(0) invert(1) !important;
  }
}

@media (max-width: 991.98px){

  /* page-servicos e page-servico: logo branco quando integrado */
  body.page-servicos #siteNav:not(.navbar-scrolled) .brand-logo-default,
  body.page-servico #siteNav:not(.navbar-scrolled) .brand-logo-default{
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  body.page-servicos #siteNav:not(.navbar-scrolled) .brand-logo-white,
  body.page-servico #siteNav:not(.navbar-scrolled) .brand-logo-white{
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 2;
    pointer-events: auto !important;
  }
}

/* =========================================
   HEADER NORMAL | busca azul em servicos/servico
   ========================================= */

body.page-servicos #siteNav.navbar-scrolled .header-search-toggle,
body.page-servicos #siteNav.navbar-scrolled .header-search-toggle i,
body.page-servico #siteNav.navbar-scrolled .header-search-toggle,
body.page-servico #siteNav.navbar-scrolled .header-search-toggle i{
  color: var(--brand) !important;
}

body.page-servicos #siteNav.navbar-scrolled .header-search-toggle,
body.page-servico #siteNav.navbar-scrolled .header-search-toggle{
  background: #fff !important;
  border-color: rgba(23,151,215,.24) !important;
}

body.page-servicos .header-search-toggle,
body.page-servicos .header-search-toggle i,
body.page-servico .header-search-toggle,
body.page-servico .header-search-toggle i{
  color: var(--brand) !important;
}

body.page-servicos .header-search-toggle,
body.page-servico .header-search-toggle{
  border-color: rgba(23,151,215,.24) !important;
}

@media (max-width: 991.98px){

  /* Dropdown aberto em page-servicos / page-servico */
  body.page-servicos #navMain .dropdown-menu,
  body.page-servico #navMain .dropdown-menu{
    background: #fff !important;
    border: 1px solid rgba(17,24,39,.08) !important;
  }

  body.page-servicos #navMain .dropdown-item,
  body.page-servico #navMain .dropdown-item{
    color: #111827 !important;
    opacity: 1 !important;
  }

  body.page-servicos #navMain .dropdown-item:hover,
  body.page-servicos #navMain .dropdown-item:focus,
  body.page-servico #navMain .dropdown-item:hover,
  body.page-servico #navMain .dropdown-item:focus{
    background: rgba(23,151,215,.10) !important;
    color: var(--brand-darker) !important;
  }
}

@media (max-width: 991.98px){

  body.page-servicos #navMain .dropdown-menu,
  body.page-servico #navMain .dropdown-menu{
    background: #fff !important;
    border: 1px solid rgba(17,24,39,.08) !important;
    box-shadow: none !important;
  }

  body.page-servicos #navMain .dropdown-menu .dropdown-item,
  body.page-servico #navMain .dropdown-menu .dropdown-item{
    color: #111827 !important;
    opacity: 1 !important;
    -webkit-text-fill-color: #111827 !important;
  }

  body.page-servicos #navMain .dropdown-menu .dropdown-item:hover,
  body.page-servicos #navMain .dropdown-menu .dropdown-item:focus,
  body.page-servico #navMain .dropdown-menu .dropdown-item:hover,
  body.page-servico #navMain .dropdown-menu .dropdown-item:focus{
    background: rgba(23,151,215,.10) !important;
    color: var(--brand-darker) !important;
    -webkit-text-fill-color: var(--brand-darker) !important;
  }
}

/* =========================================
   ACTIVE do header - geral
   ========================================= */

.navbar-modern .nav-link.active,
.navbar-modern .dropdown-toggle.active{
  color: var(--brand) !important;
  font-weight: 800 !important;
}

.navbar-modern .nav-link.active::after,
.navbar-modern .dropdown-toggle.active::after{
  border-top-color: var(--brand) !important;
}

/* estado integrado no topo */
body.page-servicos #siteNav:not(.navbar-scrolled) .nav-link.active,
body.page-servicos #siteNav:not(.navbar-scrolled) .dropdown-toggle.active,
body.page-servico #siteNav:not(.navbar-scrolled) .nav-link.active,
body.page-servico #siteNav:not(.navbar-scrolled) .dropdown-toggle.active{
  color: #fff !important;
}

body.page-servicos #siteNav:not(.navbar-scrolled) .dropdown-toggle.active::after,
body.page-servico #siteNav:not(.navbar-scrolled) .dropdown-toggle.active::after{
  border-top-color: #fff !important;
}

/* =========================================
   ACTIVE - Soluções / Serviço
   ========================================= */

/* estado normal */
body.page-servicos .navbar-modern .nav-link.active,
body.page-servicos .navbar-modern .dropdown-toggle.active,
body.page-servico .navbar-modern .nav-link.active,
body.page-servico .navbar-modern .dropdown-toggle.active{
  color: var(--brand) !important;
  font-weight: 800 !important;
}

body.page-servicos .navbar-modern .dropdown-toggle.active::after,
body.page-servicos .navbar-modern .nav-link.active::after,
body.page-servico .navbar-modern .dropdown-toggle.active::after,
body.page-servico .navbar-modern .nav-link.active::after{
  border-top-color: var(--brand) !important;
}

/* estado integrado no topo */
body.page-servicos #siteNav:not(.navbar-scrolled) .nav-link.active,
body.page-servicos #siteNav:not(.navbar-scrolled) .dropdown-toggle.active,
body.page-servico #siteNav:not(.navbar-scrolled) .nav-link.active,
body.page-servico #siteNav:not(.navbar-scrolled) .dropdown-toggle.active{
  color: #fff !important;
  font-weight: 800 !important;
}

body.page-servicos #siteNav:not(.navbar-scrolled) .dropdown-toggle.active::after,
body.page-servico #siteNav:not(.navbar-scrolled) .dropdown-toggle.active::after{
  border-top-color: #fff !important;
}

/* quando o menu mobile está aberto */
@media (max-width: 991.98px){
  body.page-servicos #navMain.show .nav-link.active,
  body.page-servicos #navMain.show .dropdown-toggle.active,
  body.page-servico #navMain.show .nav-link.active,
  body.page-servico #navMain.show .dropdown-toggle.active{
    color: var(--brand) !important;
  }

  body.page-servicos #navMain.show .dropdown-toggle.active::after,
  body.page-servico #navMain.show .dropdown-toggle.active::after{
    border-top-color: var(--brand) !important;
  }
}