/* ═══════════════════════════════════════
   COTESA — Custom Design System
   Bootstrap 5 + Roihu Font
   ═══════════════════════════════════════ */

/* ── FONTS ── */
@font-face { font-family:'Roihu'; font-weight:300; font-style:normal; font-display:swap;
  src:url('../assets/fonts/Roihu-Light.woff2') format('woff2'), url('../assets/fonts/Roihu-Light.woff') format('woff'); }
@font-face { font-family:'Roihu'; font-weight:400; font-style:normal; font-display:swap;
  src:url('../assets/fonts/Roihu-Regular.woff2') format('woff2'), url('../assets/fonts/Roihu-Regular.woff') format('woff'); }
@font-face { font-family:'Roihu'; font-weight:500; font-style:normal; font-display:swap;
  src:url('../assets/fonts/Roihu-Medium.woff2') format('woff2'), url('../assets/fonts/Roihu-Medium.woff') format('woff'); }
@font-face { font-family:'Roihu'; font-weight:600; font-style:normal; font-display:swap;
  src:url('../assets/fonts/Roihu-SemiBold.woff2') format('woff2'), url('../assets/fonts/Roihu-SemiBold.woff') format('woff'); }
@font-face { font-family:'Roihu'; font-weight:700; font-style:normal; font-display:swap;
  src:url('../assets/fonts/Roihu-Bold.woff2') format('woff2'), url('../assets/fonts/Roihu-Bold.woff') format('woff'); }
@font-face { font-family:'Roihu'; font-weight:800; font-style:normal; font-display:swap;
  src:url('../assets/fonts/Roihu-ExtraBold.woff2') format('woff2'), url('../assets/fonts/Roihu-ExtraBold.woff') format('woff'); }

/* ── VARIABLES ── */
:root {
  --navy:       #19234a;
  --navy-deep:  #131c3d;
  --navy-2:     #1d2855;
  --orange:     #ee8033;
  --orange-2:   #f59044;
  --orange-soft:#f5a25f;
  --ink:        #1b1f33;
  --ink-2:      #2a3050;
  --muted:      #8c93a6;
  --line:       #e6e8ee;
  --soft:       #f3f4f7;
  --white:      #ffffff;

  /* Bootstrap overrides */
  --bs-font-sans-serif: 'Roihu', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-primary: var(--navy);
  --bs-primary-rgb: 25,35,74;
}

/* ── BASE ── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin:0; padding:0; overflow-x:hidden; }
body {
  font-family: 'Roihu', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }
.cotesa-container { max-width:1280px; margin:0 auto; padding:0 40px; }

/* ══════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════ */
.site-navbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s, box-shadow .3s;
}
.site-navbar.scrolled {
  position: fixed;
  background: var(--navy);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.site-navbar .navbar-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 22px 48px;
  max-width: 1480px;
  margin: 0 auto;
}
/* Logo */
.nav-logo { display:flex; align-items:center; gap:10px; height:36px; flex-shrink:0; }
.nav-logo img { height:32px; width:auto; }

/* Desktop menu */
.nav-menu {
  display: flex;
  gap: 24px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.nav-menu .nav-link-item {
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 0;
  position: relative;
  transition: color .2s;
  white-space: nowrap;
}
.nav-menu .nav-link-item:hover,
.nav-menu .nav-link-item.active { color: var(--orange-2); }
.nav-menu .nav-link-item .chev { font-size: 8px; opacity: .8; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -20px;
  height: 20px;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #fff;
  box-shadow: 0 18px 40px -10px rgba(20,28,60,.25);
  border-top: 3px solid var(--orange);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s, transform .18s, visibility .18s;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 11px 22px;
  color: var(--navy);
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid #eef0f5;
  transition: background .15s, color .15s;
}
.nav-dropdown-menu a:last-child { border-bottom: 0; }
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active { background: var(--soft); color: var(--orange); }

/* ── Language dropdown ────────────────────────────────────────── */
.lang-dropdown {
  position: relative;
  flex-shrink: 0;
}
/* Trigger button */
.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 7px;
  color: #fff;
  cursor: pointer;
  padding: 5px 9px 4px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  transition: background .2s, border-color .2s;
  white-space: nowrap;
}
.lang-current:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.4);
}
.lang-current .lang-chev {
  font-size: 8px;
  opacity: .7;
  margin-left: 1px;
  transition: transform .22s;
}
.lang-dropdown.open .lang-chev,
.lang-dropdown:focus-within .lang-chev {
  transform: rotate(180deg);
}

/* Dropdown menu */
.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(20,28,60,.18), 0 2px 8px rgba(20,28,60,.1);
  min-width: 175px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 300;
}
.lang-dropdown.open .lang-menu,
.lang-dropdown:hover .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Option row */
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none !important;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: background .15s;
}
.lang-option:hover { background: var(--soft); }
.lang-option.active {
  background: var(--navy);
  color: #fff;
  pointer-events: none;
}
.lang-option .lang-name { flex: 1; }
.lang-option .lang-code {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--muted);
}
.lang-option.active .lang-code { color: rgba(255,255,255,.5); }

/* Flag SVG */
.flag-icon {
  width: 22px;
  height: 15px;
  display: block;
  flex-shrink: 0;
  border-radius: 2px;
  box-shadow: 0 0 0 0.5px rgba(0,0,0,.2);
}

/* Mobile offcanvas lang switcher */
.mobile-lang-bar {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.mobile-lang-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  text-decoration: none !important;
  border: 1.5px solid rgba(255,255,255,.15);
  transition: all .2s;
}
.mobile-lang-opt:hover { color: #fff; border-color: rgba(255,255,255,.4); }
.mobile-lang-opt.active {
  color: #fff;
  border-color: var(--orange);
  background: rgba(238,128,51,.12);
}

/* Flag SVG */
.flag-icon {
  width: 22px;
  height: 15px;
  display: block;
  flex-shrink: 0;
  border-radius: 2px;
  box-shadow: 0 0 0 0.5px rgba(0,0,0,.25);
}

/* Mobile hamburger */
.nav-toggler {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.5);
  border-radius: 4px;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-toggler span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .25s;
}

/* Offcanvas mobile menu */
.offcanvas-cotesa { background: var(--navy) !important; }
.offcanvas-cotesa .offcanvas-header { border-bottom: 1px solid rgba(255,255,255,.1); }
.offcanvas-cotesa .offcanvas-title { color:#fff; font-weight:800; letter-spacing:.05em; }
.offcanvas-cotesa .btn-close { filter: invert(1); }
.offcanvas-cotesa .mobile-nav-link {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .2s;
}
.offcanvas-cotesa .mobile-nav-link:hover,
.offcanvas-cotesa .mobile-nav-link.active { color: var(--orange-2); }
.offcanvas-cotesa .mobile-nav-sub {
  padding-left: 16px;
}
.offcanvas-cotesa .mobile-nav-sub a {
  display: block;
  color: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.offcanvas-cotesa .mobile-nav-sub a:hover { color: var(--orange-2); }

/* ══════════════════════════════════════
   HERO (HOMEPAGE)
   ══════════════════════════════════════ */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(20,28,60,0.35) 0%, rgba(20,28,60,0.15) 40%, rgba(20,28,60,0) 65%),
    url('../assets/hero-team.png') right center / cover no-repeat,
    #141c3c;
  min-height: 640px;
  display: flex;
  flex-direction: column;
}
.hero::before {
  content: "";
  position: absolute;
  left: -40px; top: -20px;
  width: 230px; height: 660px;
  background:
    radial-gradient(circle at 80% 0, transparent 0 220px, rgba(238,128,51,.55) 220px 222px, transparent 223px),
    radial-gradient(circle at 80% 660px, transparent 0 280px, rgba(238,128,51,.45) 280px 282px, transparent 283px);
  pointer-events: none;
  opacity: .9;
}
.hero-content {
  position: relative;
  z-index: 4;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 50px 40px 110px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  font-weight: 600;
  font-size: 12px;
  color: #fff;
  letter-spacing: .42em;
  text-transform: uppercase;
  line-height: 1.6; /* acrescenta espaço acima das maiúsculas Roihu */
  margin-bottom: 24px;
  opacity: .92;
}
.eyebrow .orange-bar {
  display: inline-block;
  width: 32px; height: 2px;
  background: var(--orange);
  vertical-align: middle;
  margin-right: 12px;
  transform: translateY(-3px);
}
.eyebrow.dark { color: var(--orange); }
.eyebrow.dark .orange-bar { background: var(--orange); }

h1.hero-title {
  font-weight: 500;
  font-size: 44px;
  line-height: 1.12;
  letter-spacing: .005em;
  margin: 0 0 36px;
  max-width: 560px;
  text-transform: uppercase;
}
h1.hero-title b, h1.hero-title strong { font-weight: 800; }

/* CTA Link */
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  letter-spacing: .25em;
  font-size: 13px;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  transition: color .2s, gap .2s;
}
.cta-link strong { font-weight: 700; color: var(--orange-2); }
.cta-link::before {
  content: "";
  width: 22px; height: 16px;
  background: url('../assets/cotesa-symbol-light.png') center/contain no-repeat;
  display: inline-block;
  flex-shrink: 0;
  transform: translateY(3px);
}
.cta-link::after {
  content: "+";
  color: var(--orange-2);
  font-weight: 300;
  font-size: 18px;
  margin-left: 2px;
}
.cta-link:hover { gap: 16px; }
.cta-link.dark { color: var(--ink); }
.cta-link.dark strong { color: var(--orange); }
.cta-link.dark::before { background: url('../assets/cotesa-symbol.png') center/contain no-repeat; }

/* ══════════════════════════════════════
   PAGE HEADER (inner pages)
   ══════════════════════════════════════ */
.page-header {
  position: relative;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(20,28,60,0.62) 0%, rgba(20,28,60,0.35) 60%, rgba(20,28,60,0.55) 100%),
    var(--header-bg, url('../assets/transmission.png')) center center / cover no-repeat,
    #141c3c;
  min-height: 360px;
  display: flex;
  flex-direction: column;
}
.page-title-block {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px 72px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.crumbs {
  font-size: 12px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  margin-bottom: 22px;
}
.crumbs a:hover { color: var(--orange-2); }
.crumbs .sep { margin: 0 10px; color: var(--orange); }
.page-title-block h1 {
  font-weight: 800;
  font-size: 56px;
  letter-spacing: .04em;
  margin: 0 0 16px;
  text-transform: uppercase;
  line-height: 1.1;
}
.page-title-block .tag {
  font-weight: 500;
  font-size: 17px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  max-width: 720px;
  line-height: 1.45;
}
.page-title-block .tag b { color: var(--orange-2); font-weight: 700; }
.page-title-block::after {
  content: "";
  display: block;
  width: 56px; height: 3px;
  background: var(--orange);
  margin: 28px auto 0;
}

/* ══════════════════════════════════════
   SECTION BASE
   ══════════════════════════════════════ */
.section-block { padding: 100px 0; }
.section-block.soft { background: var(--soft); }
.section-block.dark { background: var(--navy); color: #fff; }
.section-block.orange-bg { background: var(--orange); color: #fff; }

.section-eyebrow {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .55em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  line-height: 1.6; /* breathing room acima das caps Roihu */
}
.section-eyebrow .bar {
  display: inline-block;
  width: 32px; height: 2px;
  background: var(--orange);
  margin-right: 14px;
}
.section-block.dark .section-eyebrow { color: rgba(255,255,255,.9); }
.section-block.dark .section-eyebrow .bar { background: var(--orange); }
.section-block.orange-bg .section-eyebrow { color: #fff; }
.section-block.orange-bg .section-eyebrow .bar { background: #fff; }

h2.s-title {
  font-weight: 500;
  font-size: 42px;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0 0 24px;
  color: var(--ink);
}
h2.s-title b { font-weight: 800; }
.section-block.dark h2.s-title { color: #fff; }
.section-block.orange-bg h2.s-title { color: #fff; }

p.s-lead {
  color: #5b6177;
  font-size: 14.5px;
  line-height: 1.85;
  margin: 0 0 18px;
}
.section-block.dark p.s-lead { color: #b9bed1; }
.section-block.orange-bg p.s-lead { color: rgba(255,255,255,.9); }

/* ══════════════════════════════════════
   AREAS STRIP
   ══════════════════════════════════════ */
.areas-strip {
  background: var(--orange);
  color: #fff;
  position: relative;
}
.areas-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: stretch;
  min-height: 132px;
}
.areas-inner h3 {
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  margin: 0;
  align-self: center;
  text-transform: uppercase;
  padding: 30px 0;
}
.areas-inner h3 small { display: block; font-weight: 400; font-size: 26px; }
.area-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  padding: 30px 18px;
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
  color: #fff;
}
.area-tile + .area-tile::before,
.area-tile:first-of-type::before {
  content: "";
  position: absolute;
  left: 0; top: 22%; bottom: 22%;
  width: 1px;
  background: rgba(255,255,255,.32);
}
.area-tile:hover { background: rgba(0,0,0,.05); }
.area-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  color: var(--navy);
  flex-shrink: 0;
}
.area-icon svg { width: 48px; height: 48px; }
.area-tile span {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .15em;
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center;
}

/* ══════════════════════════════════════
   SPECIALISTS
   ══════════════════════════════════════ */
.specialists-section { padding: 120px 0 110px; position: relative; }
.specialists-section::after {
  content: "";
  position: absolute;
  right: -120px; top: 50%;
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 1.5px solid rgba(238,128,51,.35);
  transform: translateY(-50%);
  pointer-events: none;
}
.specialists-img img { width: 100%; height: auto; }
.specialists-text h2 {
  font-weight: 500;
  font-size: 46px;
  line-height: 1.1;
  margin: 0 0 22px;
  color: var(--ink);
  text-transform: uppercase;
}
.specialists-text h2 b { font-weight: 800; }
.specialists-text p {
  color: #8b8fa1;
  font-size: 14px;
  line-height: 1.85;
  margin: 0 0 28px;
}

/* ══════════════════════════════════════
   MAP SECTION
   ══════════════════════════════════════ */
.map-section {
  background: var(--soft);
  padding: 90px 0 110px;
  position: relative;
  border-top: 4px solid var(--orange);
}
.map-head { text-align: center; margin-bottom: 28px; }
.map-head h2 {
  font-weight: 500;
  font-size: 42px;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--ink);
}
.map-head h2 b { font-weight: 800; }
.map-head .sub {
  color: var(--orange);
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 13px;
}
.map-head .sub b { color: var(--orange); font-weight: 800; }
.map-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 0 40px;
}
.map-col { display: flex; flex-direction: column; gap: 32px; }
.map-col.left { align-items: flex-end; }
.map-col.right { align-items: flex-start; }
.map-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 280px;
}
.map-col.right .map-stat { flex-direction: row-reverse; text-align: right; }
.map-stat .thumb {
  width: 90px; height: 58px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(20,28,60,.18);
}
.map-stat .thumb img { width: 100%; height: 100%; object-fit: cover; }
.map-stat .txt {
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .04em;
  max-width: 170px;
}
.map-stat .txt .big { font-size: 16px; color: var(--ink); font-weight: 800; }
.map-stat .txt .reg { font-weight: 400; color: #5b6177; }
.map-img {
  width: 460px;
  max-width: 100%;
  filter: drop-shadow(0 30px 30px rgba(20,28,60,.25));
}

/* ══════════════════════════════════════
   PARTNER / VIDEO
   ══════════════════════════════════════ */
.partner-section {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  padding: 100px 0 110px;
}
.partner-section::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='800' height='600'><g fill='none' stroke='%23ffffff' stroke-width='.6' opacity='.18'><circle cx='80' cy='90' r='2.5' fill='%23ffffff' opacity='.45'/><circle cx='220' cy='40' r='2' fill='%23ffffff' opacity='.4'/><circle cx='360' cy='130' r='2.5' fill='%23ffffff' opacity='.45'/><circle cx='510' cy='80' r='2' fill='%23ffffff' opacity='.4'/><circle cx='670' cy='150' r='2.5' fill='%23ffffff' opacity='.45'/><circle cx='770' cy='60' r='2' fill='%23ffffff' opacity='.4'/><circle cx='120' cy='250' r='2' fill='%23ffffff' opacity='.4'/><circle cx='300' cy='280' r='2.5' fill='%23ffffff' opacity='.45'/><circle cx='450' cy='220' r='2' fill='%23ffffff' opacity='.4'/><circle cx='620' cy='300' r='2.5' fill='%23ffffff' opacity='.45'/><circle cx='720' cy='370' r='2' fill='%23ffffff' opacity='.4'/><circle cx='40' cy='420' r='2.5' fill='%23ffffff' opacity='.45'/><line x1='80' y1='90' x2='220' y2='40'/><line x1='220' y1='40' x2='360' y2='130'/><line x1='360' y1='130' x2='510' y2='80'/><line x1='510' y1='80' x2='670' y2='150'/><line x1='300' y1='280' x2='450' y2='220'/><line x1='450' y1='220' x2='620' y2='300'/><line x1='80' y1='90' x2='120' y2='250'/><line x1='300' y1='280' x2='40' y2='420'/></g></svg>");
  background-size: cover;
  opacity: .9;
}
.partner-text h2 {
  font-weight: 500;
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.partner-text h2 b { font-weight: 800; }
.partner-section .video {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.45);
  aspect-ratio: 16/9;
  background: #1a1a1a;
  cursor: pointer;
}
.partner-section .video img { width: 100%; height: 100%; object-fit: cover; }
.video-label {
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.play {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
}
.play .ring {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255,255,255,.6);
  display: grid; place-items: center;
  transition: transform .2s, background .2s;
}
.play:hover .ring { background: rgba(238,128,51,.6); transform: scale(1.06); }
.play .tri {
  width: 0; height: 0;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 6px;
}
.partner-trim {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
}

/* ══════════════════════════════════════
   NEWS / BLOG
   ══════════════════════════════════════ */
.news-section { padding: 100px 0 110px; background: var(--soft); }
.news-head { text-align: center; margin-bottom: 50px; }
.news-head h2 {
  font-weight: 500;
  font-size: 42px;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0;
  color: var(--ink);
}
.news-head h2 b { font-weight: 800; color: var(--orange); }
.news-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 36px -20px rgba(20,28,60,.18);
  display: flex; flex-direction: column;
  height: 100%;
  transition: transform .25s, box-shadow .25s;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(20,28,60,.3); }
.news-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #888;
}
.news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-thumb .tag {
  position: absolute;
  left: 0; bottom: 0;
  background: var(--navy);
  color: #fff;
  padding: 10px 20px 6px; /* +2px topo, -2px baixo: compensa cap-height Roihu */
  border-radius: 0 10px 0 0;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.news-body { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.news-date {
  text-align: center;
  color: var(--orange);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .35em;
  padding: 4px 0 14px;
  border-bottom: 1px solid #ebecf1;
  margin-bottom: 16px;
}
.news-body h3 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 12px;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
}
.news-body p {
  color: #8b8fa1;
  font-size: 12.5px;
  line-height: 1.7;
  margin: 0 0 20px;
  text-align: center;
  flex: 1;
}
.news-cta {
  display: flex; justify-content: center;
  padding-top: 12px;
  border-top: 1px solid #ebecf1;
}
.news-cta .cta-link { font-size: 12px; letter-spacing: .22em; }
.news-foot { text-align: center; margin-top: 40px; }

/* ══════════════════════════════════════
   CERTIFICATIONS HERO
   ══════════════════════════════════════ */
.certs-section {
  position: relative;
  color: #fff;
  overflow: hidden;
  padding: 100px 0 90px;
  background:
    linear-gradient(90deg, rgba(20,28,60,0.35) 0%, rgba(20,28,60,0.10) 35%, rgba(20,28,60,0) 60%),
    url('../assets/certs-bg.png') center / cover no-repeat,
    #141c3c;
}
.certs-trim {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
}
.certs-text h2 {
  font-weight: 500;
  font-size: 44px;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.certs-text h2 b { font-weight: 800; }
.certs-text p { font-size: 14px; color: #cfd3e0; line-height: 1.85; margin: 0 0 36px; max-width: 460px; }
.iso-row { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.iso-row img { width: 86px; height: auto; }

/* ══════════════════════════════════════
   A COTESA PAGE SECTIONS
   ══════════════════════════════════════ */
.who-img {
  aspect-ratio: 1/1;
  background: url('../assets/a-cotesa-01.webp') center/cover no-repeat;
  border-radius: 14px 14px 14px 100px;
  box-shadow: 0 30px 60px -30px rgba(20,28,60,.25);
  position: relative;
}
.who-img::after {
  content: "";
  position: absolute;
  right: -28px; bottom: -28px;
  width: 130px; height: 130px;
  border: 2px solid var(--orange);
  border-radius: 0 0 0 100px;
  z-index: -1;
}
.who2-img {
  aspect-ratio: 5/4;
  background: url('../assets/a-cotesa-02.webp') center/cover no-repeat;
  border-radius: 100px 14px 14px 14px;
  box-shadow: 0 30px 60px -30px rgba(20,28,60,.25);
  min-height: 280px;
}
.cymi-img {
  aspect-ratio: 5/3.5;
  background: url('../assets/a-cotesa-03.webp') center/cover no-repeat;
  border-radius: 14px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.45);
  min-height: 240px;
}
.pill {
  display: inline-block;
  background: rgba(238,128,51,.18);
  color: var(--orange-2);
  border: 1px solid rgba(238,128,51,.45);
  padding: 8px 14px 4px; /* +2px topo, -2px baixo: compensa cap-height Roihu */
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .25em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.network-bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='800' height='600'><g fill='none' stroke='%23ffffff' stroke-width='.6' opacity='.16'><circle cx='80' cy='90' r='2.5' fill='%23ffffff' opacity='.4'/><circle cx='360' cy='130' r='2.5' fill='%23ffffff' opacity='.4'/><circle cx='510' cy='80' r='2' fill='%23ffffff' opacity='.35'/><circle cx='670' cy='150' r='2.5' fill='%23ffffff' opacity='.4'/><circle cx='300' cy='280' r='2.5' fill='%23ffffff' opacity='.4'/><circle cx='450' cy='220' r='2' fill='%23ffffff' opacity='.35'/><line x1='80' y1='90' x2='360' y2='130'/><line x1='360' y1='130' x2='510' y2='80'/><line x1='510' y1='80' x2='670' y2='150'/><line x1='300' y1='280' x2='450' y2='220'/></g></svg>");
  background-size: cover;
  opacity: .8;
  pointer-events: none;
}

/* MVV Board */
.mvv-section { background:#fff; padding:110px 0 130px; }
.mvv-head { text-align:center; margin-bottom:64px; }
.mvv-head h2 { font-weight:500; font-size:40px; line-height:1.1; text-transform:uppercase; margin:0 0 14px; color:var(--ink); }
.mvv-head h2 b { font-weight:800; }
.mvv-head p { color:var(--muted); letter-spacing:.25em; text-transform:uppercase; font-size:13px; margin:0; font-weight:600; }
.mvv-board { position:relative; max-width:1180px; margin:0 auto; padding:0 30px; }
.mvv-grid {
  position:relative;
  display:grid;
  grid-template-columns:1fr 220px 1fr;
  grid-template-rows:165px 220px 175px 140px;
  gap:32px 50px;
  align-items:center;
}
.mvv-card {
  position:relative;
  background:var(--navy);
  color:#fff;
  border-radius:26px;
  padding:22px 26px 24px;
  min-height:130px;
  box-shadow:0 16px 36px -22px rgba(20,28,60,.5);
  display:flex; flex-direction:column;
  z-index:2;
}
.mvv-card .icon {
  position:absolute;
  right:14px; top:-10px;
  width:60px; height:60px;
  background:#fff;
  border:2px solid var(--orange);
  border-radius:50%;
  display:grid; place-items:center;
  box-shadow:0 8px 20px rgba(20,28,60,.18);
}
.mvv-card .icon svg { width:28px; height:28px; color:var(--orange); }
.mvv-card h3 {
  font-weight:800;
  font-size:17px;
  letter-spacing:.04em;
  margin:4px 0 8px;
  text-transform:uppercase;
  color:var(--orange);
  max-width:76%;
  line-height:1.12;
}
.mvv-card p { margin:0; font-size:12.5px; line-height:1.55; color:#d4d8e6; }
.mvv-center {
  grid-row:2; grid-column:2;
  width:220px; height:220px;
  border-radius:50%;
  background:var(--orange);
  color:#fff;
  display:grid; place-items:center;
  text-align:center;
  font-weight:800;
  font-size:21px;
  letter-spacing:.05em;
  text-transform:uppercase;
  line-height:1.12;
  box-shadow:0 18px 40px rgba(238,128,51,.45);
  z-index:3;
  justify-self:center;
  padding-top: 10px; /* compensa cap-height alto do Roihu no place-items:center */
}
.mvv-lines { position:absolute; inset:0; width:100%; height:100%; pointer-events:none; z-index:1; }
.c-mission { grid-row:1; grid-column:1; }
.c-vision  { grid-row:1; grid-column:3; }
.c-adapt   { grid-row:2; grid-column:1; }
.c-excel   { grid-row:2; grid-column:3; }
.c-sust    { grid-row:3; grid-column:1; }
.c-care    { grid-row:3; grid-column:3; }
.c-honor   { grid-row:4; grid-column:2; max-width:540px; justify-self:center; width:100%; }

/* Commits */
.commits-section { background:var(--orange); color:#fff; padding:90px 0; }
.commits-section h2 { font-weight:500; font-size:34px; line-height:1.1; text-transform:uppercase; margin:0; color:#fff; }
.commits-section h2 b { font-weight:800; }
.commits-list { list-style:none; margin:0; padding:0; columns:2; column-gap:40px; }
.commits-list li {
  break-inside:avoid;
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:14px;
  line-height:1.5;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.25);
}
.commits-list li:last-child { border-bottom:0; }
.commits-list .dot { flex-shrink:0; width:8px; height:8px; background:#fff; margin-top:7px; transform:rotate(45deg); }

/* ══════════════════════════════════════
   AREAS DE ATUACAO PAGE
   ══════════════════════════════════════ */
.area-detail-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px -20px rgba(20,28,60,.15);
}
.area-detail-card img { width:100%; height:280px; object-fit:cover; }
.area-detail-card .body { padding: 36px 40px; }
.area-detail-card h3 {
  font-weight:800; font-size:28px;
  text-transform:uppercase; color:var(--ink);
  margin:0 0 20px; letter-spacing:.04em;
}
.area-detail-card ul { padding-left: 0; list-style: none; }
.area-detail-card ul li {
  padding: 7px 0 7px 22px;
  position: relative;
  color: #5b6177;
  font-size: 14px;
  line-height: 1.6;
  border-bottom: 1px solid var(--line);
}
.area-detail-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 15px;
  width: 8px; height: 8px;
  background: var(--orange);
  transform: rotate(45deg);
}

/* ══════════════════════════════════════
   CERTIFICAÇÕES PAGE
   ══════════════════════════════════════ */
.cert-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
}
.cert-block:last-child { border-bottom: 0; }
.cert-block.reverse { direction: rtl; }
.cert-block.reverse > * { direction: ltr; }
.cert-block-img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(20,28,60,.2);
  aspect-ratio: 4/3;
  background: var(--soft);
}
.cert-block-img img { width:100%; height:100%; object-fit:cover; }

/* ══════════════════════════════════════
   CONTATO PAGE
   ══════════════════════════════════════ */
.contact-form .form-label {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.5; /* breathing room acima das maiúsculas Roihu */
}
.contact-form .form-control,
.contact-form .form-select {
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  transition: border-color .2s;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(238,128,51,.12);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.btn-cotesa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 16px 32px 12px; /* +2px topo, -2px baixo: compensa cap-height alto do Roihu */
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-cotesa:hover { background: var(--orange-2); transform: translateY(-2px); color:#fff; }
.contact-info-block {
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 40px;
  height: 100%;
}
.contact-info-block h3 { font-weight:800; font-size:22px; text-transform:uppercase; letter-spacing:.06em; margin:0 0 32px; }
.contact-info-item { display:flex; gap:16px; align-items:flex-start; margin-bottom:28px; }
.contact-info-item .ic { width:44px; height:44px; background:rgba(238,128,51,.15); border-radius:10px; display:grid; place-items:center; flex-shrink:0; }
.contact-info-item .ic svg { width:22px; height:22px; color:var(--orange); }
.contact-info-item .label { font-size:11px; letter-spacing:.3em; text-transform:uppercase; font-weight:700; color:rgba(255,255,255,.55); margin-bottom:4px; }
.contact-info-item .value { font-size:15px; font-weight:600; color:#fff; }
.contact-map { border-radius: 12px; overflow: hidden; }
.contact-map iframe { width:100%; height:400px; border:0; display:block; }

/* Alert styles */
.alert-cotesa { padding:16px 20px; border-radius:8px; font-size:14px; font-weight:600; margin-bottom:24px; }
.alert-success { background:#d4edda; color:#155724; border-left:4px solid #28a745; }
.alert-error   { background:#f8d7da; color:#721c24; border-left:4px solid #dc3545; }

/* ══════════════════════════════════════
   FORNECEDORES
   ══════════════════════════════════════ */
.req-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 40px;
  box-shadow: 0 10px 30px -15px rgba(20,28,60,.12);
  border-top: 4px solid var(--orange);
  height: 100%;
}
.req-card h3 {
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--navy);
  margin: 0 0 20px;
}
.req-card ul { list-style:none; padding:0; margin:0; }
.req-card ul li {
  padding: 8px 0 8px 22px;
  position: relative;
  color: #5b6177;
  font-size: 14px;
  line-height: 1.6;
  border-bottom: 1px solid var(--line);
}
.req-card ul li:last-child { border-bottom:0; }
.req-card ul li::before {
  content:"";
  position:absolute;
  left:0; top:17px;
  width:7px; height:7px;
  background:var(--orange);
  transform:rotate(45deg);
}

/* ══════════════════════════════════════
   GOVERNANÇA
   ══════════════════════════════════════ */
.gov-card {
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 50px 48px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gov-card h3 { font-weight:800; font-size:24px; text-transform:uppercase; letter-spacing:.06em; margin:0 0 20px; }
.gov-card p { color:#b9bed1; font-size:15px; line-height:1.8; margin:0 0 32px; flex:1; }
.btn-outline-cotesa {
  display:inline-flex; align-items:center; gap:10px;
  border:2px solid var(--orange);
  color:var(--orange);
  font-weight:700; font-size:13px;
  letter-spacing:.18em; text-transform:uppercase;
  padding:14px 28px 10px; /* +2px topo, -2px baixo: compensa cap-height alto do Roihu */
  border-radius:8px;
  transition: all .2s;
}
.btn-outline-cotesa:hover { background:var(--orange); color:#fff; }

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  color: #fff;
  padding: 70px 0 30px;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--navy);
  margin-top: 0;
}
.site-footer::after {
  content: "";
  position: absolute;
  right: -100px; top: 20px;
  width: 240px; height: 220px;
  border-radius: 50%;
  border: 1.5px solid rgba(238,128,51,.25);
  pointer-events: none;
}
.foot-logo { display:flex; align-items:center; gap:12px; margin-bottom:28px; }
.foot-logo img { height:32px; }
.foot-phone {
  display:inline-flex; align-items:center; gap:12px;
  font-weight:700; font-size:22px; color:#fff; margin-bottom:16px;
}
.foot-phone .ph-ic { width:26px; height:26px; color:var(--orange); }
.foot-addr { color:#c8ccd9; font-size:13px; line-height:1.7; }
.foot-col h4 {
  font-weight:700; text-transform:uppercase;
  letter-spacing:.22em; font-size:13px;
  margin:0 0 22px; color:#fff;
}
.foot-col ul { list-style:none; margin:0; padding:0; display:grid; gap:12px; }
.foot-col a {
  color:#c8ccd9; text-transform:uppercase;
  font-size:13px; letter-spacing:.16em;
  transition:color .2s;
}
.foot-col a:hover { color:var(--orange-2); }
.socials { display:flex; gap:14px; margin-top:22px; }
.soc {
  width:30px; height:30px;
  border:1.5px solid #c8ccd9;
  border-radius:4px;
  display:grid; place-items:center;
  color:#c8ccd9;
  transition:all .2s;
}
.soc:hover { border-color:var(--orange); color:var(--orange); }
.soc svg { width:14px; height:14px; fill:currentColor; }
.foot-bottom {
  max-width:1280px; margin:50px auto 0;
  padding:22px 40px 0;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex; justify-content:space-between; align-items:center;
  color:#c8ccd9; font-size:12px;
  letter-spacing:.2em; text-transform:uppercase;
}
.estudio { display:inline-flex; align-items:center; transition:opacity .2s; }
.estudio:hover { opacity:.75; }
.estudio img { height:22px; width:auto; }

/* ── Botão WhatsApp (bloco de contato) ── */
.btn-whatsapp {
  display: flex !important;
  align-items: center;
  gap: 18px;                 /* espaço entre ícone e texto */
  background: #25d366 !important;
  color: #fff !important;
  padding: 16px 24px 12px;  /* +2/-2 compensação Roihu */
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: 8px;
  transition: background .2s, transform .15s;
  text-decoration: none !important;
}
.btn-whatsapp:hover { background: #1ead57 !important; color: #fff !important; transform: translateY(-2px); }
.btn-whatsapp svg { flex-shrink: 0; }

/* label de contato: compensação Roihu para texto 11px uppercase */
.contact-info-item .label { line-height: 1.5; }

/* WhatsApp */
.wpp-fixed {
  position:fixed; right:22px; bottom:22px; z-index:9960;
  transition:transform .2s, bottom .35s cubic-bezier(.25,.46,.45,.94);
  width:56px; height:56px; border-radius:50%;
  background:#25d366;
  display:grid; place-items:center;
  box-shadow:0 8px 20px rgba(0,0,0,.25);
  overflow:visible;
  transition: transform .2s, bottom .35s cubic-bezier(.25,.46,.45,.94);
}
.wpp-fixed:hover { transform:scale(1.08); }
.wpp-fixed svg { width:30px; height:30px; color:#fff; }

/* ═══════════════════════════════════════════
   LGPD / COOKIE CONSENT BANNER
   ═══════════════════════════════════════════ */
.lgpd-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9950;
  background: var(--navy-deep);
  border-top: 3px solid var(--orange);
  box-shadow: 0 -6px 32px rgba(20,28,60,.28);
  padding: 20px 0;
  transform: translateY(110%);
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
}
.lgpd-banner.lgpd-visible  { transform: translateY(0); }
.lgpd-banner.lgpd-closing  { transform: translateY(110%); }

.lgpd-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}
.lgpd-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(238,128,51,.15);
  border-radius: 50%;
  display: grid; place-items: center;
}
.lgpd-icon svg { width: 22px; height: 22px; color: var(--orange); }
.lgpd-body { flex: 1; min-width: 0; }
.lgpd-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 5px;
}
.lgpd-text {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
  margin: 0;
}
.lgpd-text a {
  color: var(--orange-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.lgpd-text a:hover { color: #fff; }
.lgpd-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
}
.lgpd-btn-ess {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.28);
  color: rgba(255,255,255,.75);
  padding: 10px 18px 7px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.lgpd-btn-ess:hover { border-color: rgba(255,255,255,.6); color: #fff; }
.lgpd-btn-acc {
  background: var(--orange);
  border: none;
  color: #fff;
  padding: 10px 22px 7px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.lgpd-btn-acc:hover { background: var(--orange-2); }
.lgpd-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.4);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 6px;
  line-height: 1;
  transition: color .2s;
  flex-shrink: 0;
}
.lgpd-close:hover { color: #fff; }

@media (max-width: 767.98px) {
  .lgpd-inner { flex-direction: column; align-items: flex-start; gap: 14px; padding: 0 20px; }
  .lgpd-icon { display: none; }
  .lgpd-btns { width: 100%; }
  .lgpd-btn-ess, .lgpd-btn-acc { flex: 1; text-align: center; }
  .lgpd-close { position: absolute; top: -10px; right: 20px; }
}

/* ══════════════════════════════════════
   BLOG LISTING PAGE
   ══════════════════════════════════════ */
.blog-filter { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:40px; }
.filter-btn {
  padding:10px 20px 6px; /* +2px topo, -2px baixo: compensa cap-height alto do Roihu */
  border-radius:999px;
  border:1.5px solid var(--line);
  background:#fff; color:var(--ink);
  font-weight:700; font-size:12px;
  letter-spacing:.18em; text-transform:uppercase;
  cursor:pointer; transition:all .2s;
}
.filter-btn:hover,
.filter-btn.active { background:var(--orange); border-color:var(--orange); color:#fff; }

/* ══════════════════════════════════════
   BLOG POST PAGE
   ══════════════════════════════════════ */
.post-header { padding:60px 0 40px; }
.post-content { font-size:16px; line-height:1.9; color:#3a3f55; }
.post-content h2 { font-size:28px; font-weight:800; text-transform:uppercase; color:var(--ink); margin:40px 0 16px; }
.post-content h3 { font-size:22px; font-weight:700; color:var(--ink); margin:30px 0 14px; }
.post-content p { margin-bottom:20px; }
.post-content img { border-radius:10px; margin:30px 0; box-shadow:0 16px 40px -20px rgba(20,28,60,.2); }

/* ══════════════════════════════════════
   RESPONSIVE — BOOTSTRAP BREAKPOINTS
   ══════════════════════════════════════ */
@media (max-width:991.98px) {
  .nav-menu { display:none; }
  .nav-toggler { display:flex; }
  .site-navbar .navbar-inner { gap:16px; padding:18px 24px; }

  h1.hero-title { font-size:32px; }
  .hero-content { padding:40px 24px 80px; }
  .hero {
    min-height:520px;
    background-position-x: left;
  }
  .page-title-block h1 { font-size:36px; }
  .page-title-block { padding:90px 24px 52px; }

  .areas-inner { grid-template-columns:1fr 1fr; padding:0 24px; min-height:auto; }
  .areas-inner h3 { grid-column:1/-1; font-size:22px; padding:24px 0 0; }

  .map-wrap { grid-template-columns:1fr; }
  .map-col.left, .map-col.right { align-items:center; }
  .map-col.right .map-stat { flex-direction:row; text-align:left; }
  .map-img { width:100%; max-width:360px; margin:0 auto; }

  .partner-text { text-align:left !important; }

  .mvv-grid { grid-template-columns:1fr; gap:24px; }
  .c-mission,.c-vision,.c-adapt,.c-excel,.c-sust,.c-care,.c-honor { grid-row:auto; grid-column:1; max-width:none; }
  .mvv-center { grid-row:auto; grid-column:1; width:160px; height:160px; font-size:16px; }
  .mvv-lines { display:none; }

  .commits-list { columns:1; }

  .cert-block { grid-template-columns:1fr; gap:32px; }
  .cert-block.reverse { direction:ltr; }

  .cotesa-container { padding:0 20px; }
  .news-head h2 { font-size:32px; }
  h2.s-title { font-size:32px; }
  .certs-text h2 { font-size:34px; }
  .partner-text h2 { font-size:34px; }
}

@media (max-width:575.98px) {
  .areas-inner { grid-template-columns:1fr; }
  .area-tile:first-of-type::before { display:none; }
  .iso-row { gap:12px; }
  .iso-row img { width:70px; }
  .foot-bottom { flex-direction:column; gap:14px; text-align:center; }
  h1.hero-title { font-size:28px; }
  .page-title-block h1 { font-size:28px; }
  .who-img { aspect-ratio:4/3; }
  .who2-img { aspect-ratio:4/3; }
  .cymi-img { aspect-ratio:16/9; }
}

/* ═══════════════════════════════════════════
   BLOG POST — VIDEO & GALLERY
   ═══════════════════════════════════════════ */

/* ── YouTube embed ── */
.post-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  margin: 48px 0;
  box-shadow: 0 20px 50px -20px rgba(20,28,60,.22);
}
.post-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Gallery ── */
.post-gallery { margin: 48px 0 0; }
.post-gallery-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: var(--soft);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .38s cubic-bezier(.25,.46,.45,.94);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(19,28,61,.42);
  color: #fff;
  opacity: 0;
  transition: opacity .25s;
}
.gallery-item:hover .gallery-zoom { opacity: 1; }

/* ── Lightbox ── */
.post-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,.90);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: lb-in .18s ease;
}
@keyframes lb-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.post-lightbox img {
  max-width: 90vw;
  max-height: 86vh;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 40px 80px rgba(0,0,0,.55);
}
.lb-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.lb-close:hover { background: rgba(255,255,255,.25); }

@media (max-width:767.98px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
@media (max-width:479.98px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ── Gallery sidebar override: 2 columns ── */
.gallery-grid-sm {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

/* ═══════════════════════════════════════════
   BLOG POST — SIDEBAR
   ═══════════════════════════════════════════ */

/* Sticky wrapper on desktop */
@media (min-width: 992px) {
  .post-sidebar-sticky {
    position: sticky;
    top: 96px; /* clear fixed navbar */
  }
}

/* Sidebar card */
.post-sidebar-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 22px;
  margin-bottom: 24px;
}
.post-sidebar-card:last-child { margin-bottom: 0; }

/* Section title */
.sidebar-card-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--orange);
  display: block;
}

/* ── Sidebar post list items ── */
.sidebar-post-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none !important;
  transition: opacity .2s;
}
.sidebar-post-item:first-of-type { padding-top: 0; }
.sidebar-post-item:last-of-type  { border-bottom: none; }
.sidebar-post-item:hover         { opacity: .75; }

/* Thumbnail */
.spi-thumb {
  flex-shrink: 0;
  width: 76px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--soft);
}
.spi-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.sidebar-post-item:hover .spi-thumb img { transform: scale(1.06); }

/* Text block */
.spi-body { flex: 1; min-width: 0; }
.spi-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 4px;
}
.spi-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.spi-date {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .05em;
}

/* "Ver todas" link */
.sidebar-more-link {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 10px 0 6px;
  border-top: 1px solid var(--line);
  transition: color .2s;
}
.sidebar-more-link:hover { color: var(--orange); }
