/* ─────────────────────────────────────────────
   4I Group – static site stylesheet
   ───────────────────────────────────────────── */

/* ── Fonts ── */
@font-face { font-family:'Aptos'; src:url('../fonts/Aptos-Light.ttf') format('truetype'); font-weight:300; font-style:normal; }
@font-face { font-family:'Aptos'; src:url('../fonts/Aptos-Display.ttf') format('truetype'); font-weight:400; font-style:normal; }
@font-face { font-family:'Aptos'; src:url('../fonts/Aptos-Bold.ttf') format('truetype'); font-weight:700; font-style:normal; }
@font-face { font-family:'Georgia'; src:url('../fonts/georgia.woff') format('woff'); font-weight:400; font-style:normal; }
@font-face { font-family:'Georgia'; src:url('../fonts/georgiab.woff') format('woff'); font-weight:700; font-style:normal; }
@font-face { font-family:'Georgia'; src:url('../fonts/georgiai.woff') format('woff'); font-weight:400; font-style:italic; }
@font-face { font-family:'Georgia'; src:url('../fonts/georgiaz.woff') format('woff'); font-weight:700; font-style:italic; }

/* ── Tokens ── */
:root {
  --purple-main: #30083F;
  --purple-secondary: #5B4B6E;
  --orange-main: #E06F11;
  --orange-hover: #F48220;
  --orange-secondary: #F4B37A;
  --gray-light: #EDEDED;
  --white: #FFFFFF;
  --font-sans: 'Aptos', sans-serif;
  --font-serif: 'Georgia', serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: #333; overflow-x: hidden; line-height: 1.5; }
a  { color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
p  { font-size: 16px; line-height: 1.75; }
h2 { font-size: 28px; }
h3 { font-size: 22px; }

/* ── Layout container ── */
.site-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

/* ── Buttons ── */
button { font-family: inherit; }
.btn-cta {
  display: inline-block;
  background-color: var(--orange-main);
  color: #fff;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .2s ease;
}
.btn-cta:hover {
  background-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.22);
}
.btn-cta:active { transform: translateY(0); box-shadow: 0 2px 6px rgba(0,0,0,0.15); }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-cta-outline {
  display: inline-block;
  background-color: transparent;
  color: #fff;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background-color .2s, border-color .2s, transform .18s;
}
.btn-cta-outline:hover {
  background-color: rgba(255,255,255,0.12);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ── Proposta de Valor / Quem somos ── */
.valor-proposta { padding: 96px 0; background: #fff; }
.valor-proposta .intro { margin-bottom: 0; }
.valor-proposta .eyebrow {
  font-size: 12px; font-weight: 700; color: var(--orange-main);
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 14px;
}
.valor-proposta .intro h2 {
  font-size: clamp(26px, 3vw, 38px); font-weight: 700;
  color: var(--purple-main); line-height: 1.25; margin-bottom: 28px;
}
.valor-proposta .intro p { color: #555; font-size: 17px; line-height: 1.75; margin-bottom: 16px; }

.valor-proposta .vp-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 64px; align-items: center; margin-bottom: 64px;
}
.valor-proposta .vp-intro-text { max-width: 620px; }
.valor-proposta .vp-intro-media { position: relative; }
.valor-proposta .vp-intro-media-frame {
  position: relative; width: 100%;
  aspect-ratio: 4 / 5; border-radius: 14px; overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(48,8,63,0.35), 0 6px 16px rgba(48,8,63,0.08);
}
.valor-proposta .vp-intro-media-frame img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.valor-proposta .vp-intro-media-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(48,8,63,0.10) 0%, rgba(48,8,63,0) 35%, rgba(48,8,63,0.55) 100%),
    radial-gradient(ellipse at top right, rgba(224,111,17,0.18), transparent 55%);
  pointer-events: none;
}
.valor-proposta .vp-intro-media-accent {
  position: absolute; top: 0; left: 0;
  width: 72px; height: 4px; background: var(--orange-main);
}
.valor-proposta .vp-intro-media-accent::after {
  content: ""; position: absolute; top: 0; left: 0;
  width: 4px; height: 72px; background: var(--orange-main);
}
.valor-proposta .vp-intro-media-caption {
  position: absolute; left: 20px; right: 20px; bottom: 20px;
  background: rgba(48,8,63,0.78);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  color: #fff; padding: 14px 18px; border-radius: 8px;
  border-left: 3px solid var(--orange-main);
  display: flex; flex-direction: column; gap: 2px;
}
.valor-proposta .vp-cap-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--orange-main);
}
.valor-proposta .vp-cap-text { font-size: 14px; font-weight: 600; line-height: 1.4; }
@media (max-width: 960px) {
  .valor-proposta .vp-intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .valor-proposta .vp-intro-media-frame { aspect-ratio: 16 / 10; max-height: 360px; }
}
.valor-proposta .intro p:last-child { margin-bottom: 0; }

.pillars-divider { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; }
.pillars-divider .bar { width: 44px; height: 3px; background: var(--orange-main); border-radius: 2px; }
.pillars-divider span {
  color: var(--orange-main); font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
}

.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 32px 28px 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(48,8,63,0.10);
  border-color: transparent;
}
.pillar-logo {
  background: var(--purple-main);
  border-radius: 8px;
  padding: 14px 18px;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  height: 56px;
}
.pillar-logo img { height: 26px; object-fit: contain; }
.pillar-card h3 {
  font-size: 20px; font-weight: 700;
  color: var(--purple-main); line-height: 1.3;
}
.pillar-card h3 .sub { color: var(--orange-main); font-weight: 700; }
.pillar-card p { color: #555; font-size: 15px; line-height: 1.7; }
.pillar-card .pillar-link {
  margin-top: auto;
  color: var(--orange-main);
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .2s;
}
.pillar-card .pillar-link:hover { color: var(--orange-hover); }

@media (max-width: 960px) {
  .pillars-grid { grid-template-columns: 1fr; gap: 18px; }
  .valor-proposta { padding: 64px 0; }
}

/* ── Ciclo de Vida / Atuação Integrada ── */
.ciclo-section {
  padding: 96px 0;
  background: linear-gradient(180deg, #fafafa 0%, #f3f1f7 100%);
  position: relative;
  overflow: hidden;
}
.ciclo-section::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--purple-main) 0%, var(--orange-main) 100%);
}

.ciclo-head { max-width: 880px; margin: 0 auto 64px; text-align: center; }
.ciclo-head .eyebrow {
  font-size: 12px; font-weight: 700; color: var(--orange-main);
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 14px;
}
.ciclo-head h2 {
  font-size: clamp(26px, 3vw, 38px); font-weight: 700;
  color: var(--purple-main); line-height: 1.25; margin-bottom: 20px;
}
.ciclo-head p { color: #555; font-size: 17px; line-height: 1.7; }

/* Horizontal timeline (desktop) */
.ciclo-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding-top: 48px;
}
.ciclo-line {
  position: absolute;
  top: 32px; left: 6%; right: 6%; height: 2px;
  background: repeating-linear-gradient(90deg,
    rgba(48,8,63,0.3) 0 6px, transparent 6px 12px);
  z-index: 0;
}

.phase-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 56px 22px 24px;
  box-shadow: 0 4px 20px rgba(48,8,63,0.05);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s ease, box-shadow .3s ease;
  animation: phaseIn .6s ease backwards;
}
.phase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(48,8,63,0.14);
}
@keyframes phaseIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.phase-node {
  position: absolute;
  top: -32px; left: 50%; transform: translateX(-50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: #fff;
  border: 4px solid var(--orange-main);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  box-shadow: 0 6px 16px rgba(224,111,17,0.25);
}
.phase-num {
  color: var(--purple-main);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.phase-body { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.phase-body h3 {
  font-size: 16px; font-weight: 700;
  color: var(--purple-main); line-height: 1.3;
  margin-top: 8px;
}
.phase-body > p { color: #666; font-size: 13.5px; line-height: 1.65; }

.phase-who {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #eee;
}
.phase-who-label {
  display: block;
  font-size: 10px; font-weight: 700;
  color: #888;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.phase-who-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.phase-chip {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

@media (max-width: 1100px) {
  .ciclo-timeline { grid-template-columns: repeat(2, 1fr); }
  .ciclo-line { display: none; }
}
@media (max-width: 640px) {
  .ciclo-section { padding: 64px 0; }
  .ciclo-timeline { grid-template-columns: 1fr; gap: 28px; }
  .phase-card { padding-top: 52px; }
}

/* ── Header (topbar + chips + sticky shrink) ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--purple-main);
  transition: box-shadow .25s ease, background-color .25s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 6px 20px rgba(20, 4, 28, 0.25);
  background: rgba(30, 6, 42, 0.96);
  backdrop-filter: saturate(140%) blur(6px);
  -webkit-backdrop-filter: saturate(140%) blur(6px);
}

.topbar {
  background: #1f0529;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 12.5px;
  transition: max-height .3s ease, opacity .25s ease, padding .25s ease;
  overflow: hidden;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0; gap: 16px;
}
.topbar-link {
  display: inline-flex; align-items: center; gap: 7px;
  color: #fff; text-decoration: none;
  letter-spacing: 0.01em; transition: color .2s;
}
.topbar-link:hover { color: var(--orange-main); }
.topbar-link svg { opacity: .95; }
.site-header.is-scrolled .topbar {
  max-height: 0; padding: 0; opacity: 0; border-bottom-color: transparent;
}

.header-main { transition: padding .25s ease; }
.header-main-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; transition: padding .25s ease;
}
.site-header.is-scrolled .header-main-inner { padding: 12px 0; }

.header-left { display: flex; align-items: center; gap: 36px; }
.header-logo img { height: 44px; object-fit: contain; transition: height .25s ease; }
.site-header.is-scrolled .header-logo img { height: 34px; }

.brand-group {
  display: flex; flex-direction: column; gap: 6px;
  padding-left: 32px; border-left: 1px solid rgba(255,255,255,0.14);
  transition: opacity .25s ease, max-width .3s ease, padding .25s ease, border-color .25s;
  overflow: hidden;
}
.brand-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 0.22em;
  color: var(--orange-main); text-transform: uppercase;
}
.brand-chips { display: flex; align-items: center; gap: 10px; }
.brand-chip {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
  transition: all .2s;
}
.brand-chip img { height: 18px; object-fit: contain; display: block; opacity: .92; }
.brand-chip.brand-chip-wide img { height: 22px; }
.brand-chip:hover {
  border-color: rgba(224,111,17,0.55);
  background: rgba(224,111,17,0.08);
  box-shadow: 0 0 0 1px rgba(224,111,17,0.15);
}
.brand-chip:hover img { opacity: 1; }
.site-header.is-scrolled .brand-group {
  opacity: 0; max-width: 0; padding-left: 0; border-left-color: transparent;
  pointer-events: none;
}

.header-nav { display: flex; align-items: center; gap: 36px; }
.header-nav .nav-link, .header-nav a:not(.btn-cta):not(.nav-cta) {
  position: relative;
  color: rgba(255,255,255,0.82);
  font-size: 13.5px; font-weight: 500;
  text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 0; transition: color .2s;
  border-bottom: none;
}
.header-nav .nav-link::after, .header-nav a:not(.btn-cta):not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--orange-main);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.header-nav .nav-link:hover, .header-nav a:not(.btn-cta):not(.nav-cta):hover { color: #fff; }
.header-nav .nav-link:hover::after, .header-nav a:not(.btn-cta):not(.nav-cta):hover::after { transform: scaleX(1); }

.nav-cta, .header-nav .btn-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-main); color: #fff;
  padding: 11px 22px; border-radius: 4px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  text-decoration: none; text-transform: uppercase;
  white-space: nowrap;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(224,111,17,0.25);
}
.nav-cta:hover, .header-nav .btn-cta:hover {
  background: #F48220; transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(224,111,17,0.35);
}
.nav-cta span { transition: transform .2s; display: inline-block; }
.nav-cta:hover span { transform: translateX(3px); }

.header-burger {
  background: none; border: none; color: #fff; cursor: pointer; padding: 4px;
}
.mobile-menu {
  background-color: var(--purple-main);
  padding: 16px 24px 24px;
  display: none; flex-direction: column; gap: 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #fff; font-size: 15px; font-weight: 500; text-decoration: none; padding: 8px 0; letter-spacing: 0.04em; }
.mobile-menu a:hover { color: var(--orange-main); }
.mobile-menu .brand-row { display: flex; gap: 12px; align-items: center; }
.mobile-menu .brand-row img { height: 18px; }
.mobile-menu .btn-cta, .mobile-menu .nav-cta { text-align: center; justify-content: center; padding: 12px 20px; }

@media (max-width: 900px) {
  .topbar-inner { padding: 6px 0; font-size: 11.5px; }
  .topbar-link:first-child { max-width: 65%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .header-main-inner { padding: 14px 0; }
  .header-logo img { height: 36px; }
}

/* ── Hero ── */
.hero {
  position: relative; width: 100%;
  min-height: 520px;
  display: flex; align-items: center;
  overflow: hidden;
  background-color: var(--purple-main);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/banner-hero.png') center right / cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(20,4,28,0.85) 0%,
    rgba(20,4,28,0.65) 35%,
    rgba(20,4,28,0.2)  65%,
    rgba(20,4,28,0)   100%);
}
.hero { min-height: 640px; }
.hero-overlay {
  background:
    linear-gradient(180deg, rgba(20,4,28,0) 60%, rgba(20,4,28,0.45) 100%),
    linear-gradient(90deg,
      rgba(20,4,28,0.88) 0%,
      rgba(20,4,28,0.7) 45%,
      rgba(20,4,28,0.35) 75%,
      rgba(20,4,28,0.1) 100%);
}
.hero-content { position: relative; z-index: 10; width: 100%; padding: 110px 0 100px; }
.hero-text { max-width: 880px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 22px; color: var(--orange-main);
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em;
}
.hero-eyebrow::before {
  content: ""; width: 32px; height: 2px; background: var(--orange-main);
}
.hero h1 {
  font-size: clamp(34px, 5vw, 64px); font-weight: 700;
  color: #fff; line-height: 1.08; margin-bottom: 28px; letter-spacing: -0.01em;
}
.hero h1 .accent { color: var(--orange-main); }
.hero p {
  color: rgba(255,255,255,0.86); font-size: clamp(17px, 1.4vw, 21px); line-height: 1.6;
  margin-bottom: 44px; max-width: 720px;
}
.hero-ctas .btn-cta, .hero-ctas .btn-cta-outline {
  padding: 16px 34px; font-size: 15px; font-weight: 700; letter-spacing: 0.02em;
}
.hero-trust {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  margin-top: 56px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.18); max-width: 720px;
}
.hero-trust-item { display: flex; flex-direction: column; gap: 2px; }
.hero-trust-num {
  font-family: var(--font-main); font-size: 26px; font-weight: 700;
  color: var(--orange-main); line-height: 1;
}
.hero-trust-label {
  font-size: 12px; color: rgba(255,255,255,0.7);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.hero-trust-sep { width: 1px; height: 32px; background: rgba(255,255,255,0.2); }
@media (max-width: 768px) {
  .hero-text { max-width: 100%; }
  .hero-trust { gap: 18px; margin-top: 36px; }
  .hero-trust-sep { display: none; }
}

/* ── Section base ── */
.section { padding: 72px 0; }
.section.bg-light { background-color: #f9f9f9; }
.section.bg-white { background-color: #fff; }
.section.bg-purple { background-color: var(--purple-main); }

/* ── Section heading (icon + title centered) ── */
.section-head {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 40px;
}
.section-head svg { color: var(--orange-main); flex-shrink: 0; }
.section-head h2 {
  font-size: 28px; font-weight: 700; color: var(--purple-main); font-family: var(--font-sans);
}

/* ── About cards (2 col) ── */
.about-card {
  background: #fff; border-radius: 6px; box-shadow: 0 1px 6px rgba(0,0,0,0.08);
  overflow: hidden; display: flex; flex-direction: column;
}
.about-card .photo { height: 180px; background-size: cover; background-position: center; }
.about-card .body  { padding: 28px 28px 32px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.about-card .icon  { color: var(--orange-main); }
.about-card h3     { font-size: 22px; font-weight: 700; color: var(--purple-main); }
.about-card p      { color: #666; font-size: 16px; line-height: 1.7; }
.about-card .more  {
  color: var(--orange-main); font-size: 13px; font-weight: 600;
  text-decoration: none; margin-top: auto;
  display: flex; align-items: center; gap: 4px; transition: color .2s;
}
.about-card .more:hover { color: var(--orange-hover); }
.brand-georgia { font-family: 'Georgia', serif; font-weight: 700; }

/* ── Video section ── */
.video-box {
  position: relative; border-radius: 8px; overflow: hidden;
  background: linear-gradient(135deg, var(--purple-main) 0%, var(--purple-secondary) 100%);
  min-height: 300px; cursor: pointer;
}
.video-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(48,8,63,.5);
}
.video-play {
  width: 64px; height: 64px; border-radius: 50%;
  background-color: var(--orange-main);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s;
}
.video-box:hover .video-play { transform: scale(1.1); }
.video-text { display: flex; flex-direction: column; gap: 16px; }
.video-text .icon { color: var(--orange-main); }
.video-text h3 { font-size: 22px; font-weight: 700; color: var(--purple-main); }
.video-text p { color: #666; font-size: 17px; line-height: 1.75; }
.video-text a {
  color: var(--orange-main); font-size: 13px; font-weight: 600;
  text-decoration: none; display: flex; align-items: center; gap: 4px;
  margin-top: 8px; transition: color .2s;
}
.video-text a:hover { color: var(--orange-hover); }

/* ── Orange banner ── */
.orange-banner {
  position: relative; padding: 64px 0;
  background: url('../images/banner-orange.png') center/cover no-repeat;
  overflow: hidden;
}
.orange-banner-content {
  display: flex; flex-direction: row; align-items: center; gap: 60px; flex-wrap: wrap;
}
.orange-banner-text { flex: 1; min-width: 280px; }
.orange-banner-text .logo {
  height: 52px; object-fit: contain; margin-bottom: 24px; filter: brightness(0) invert(1);
}
.orange-banner-text h2 {
  font-size: 28px; font-weight: 700; color: #fff; line-height: 1.35; margin-bottom: 16px;
}
.orange-banner-text p {
  color: rgba(255,255,255,0.85); font-size: 17px; line-height: 1.7; max-width: 480px;
}

/* ── Services / flip cards ── */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.flip-card { perspective: 1000px; cursor: pointer; height: 595px; }
.flip-card-inner {
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d; transition: transform .6s ease;
}
.flip-card:hover .flip-card-inner { transform: rotateY(180deg); }
.flip-card-front, .flip-card-back {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  border-radius: 6px; overflow: hidden;
}
.flip-card-back { transform: rotateY(180deg); }
.flip-card-front {
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.flip-card-front .num-tag {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}
.flip-card-front .num-tag span {
  width: 36px; height: 36px; border-radius: 50%;
  background-color: var(--orange-main); color: #fff;
  font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.flip-card-back {
  background: linear-gradient(135deg, var(--purple-main) 0%, var(--purple-secondary) 100%);
  color: #fff; padding: 36px 28px;
  display: flex; flex-direction: column; gap: 18px;
}
.flip-card-back .icon { color: var(--orange-main); }
.flip-card-back .head { font-size: 12px; color: var(--orange-secondary); letter-spacing: .15em; font-weight: 600; }
.flip-card-back h3 { font-size: 22px; font-weight: 700; line-height: 1.3; }
.flip-card-back .divider { width: 40px; height: 3px; background: var(--orange-main); border-radius: 2px; }
.flip-card-back p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.85); }

/* ── Valor / Slider section heading ── */
.valor-head { text-align: center; margin-bottom: 48px; }
.valor-head .row {
  display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 12px;
}
.valor-head .row svg { color: var(--orange-main); }
.valor-head h2 { font-size: 28px; font-weight: 700; color: #fff; }
.valor-head p { color: rgba(255,255,255,0.65); font-size: 17px; }
.valor-divider {
  display: flex; align-items: center; gap: 12px; margin-bottom: 40px;
}
.valor-divider .line { flex: 1; height: 1px; background-color: var(--orange-main); }
.valor-divider span { color: var(--orange-main); font-size: 11px; font-weight: 700; letter-spacing: .15em; }

/* ── CMS Slider ── */
.cms-root { --gap:1.25rem; --speed:0.55s cubic-bezier(.25,.46,.45,.94); --closed:5.5rem; --open:32rem; --accent: var(--orange-main); }
.cms-header {
  position: relative; margin-bottom: 28px; text-align: center;
}
.cms-header h3 {
  font-size: clamp(1.1rem, 2vw, 1.6rem); font-weight: 400; color: #fff;
  line-height: 1.25;
}
.cms-nav-row {
  display: flex; gap: .5rem; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
}
.cms-nav {
  width: 2.5rem; height: 2.5rem; border: none; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: #fff; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: .3s;
}
.cms-nav:hover { background: var(--accent); }
.cms-nav:disabled { opacity: .3; cursor: default; }

.cms-wrap { overflow: hidden; }
.cms-track {
  display: flex; gap: var(--gap); align-items: flex-start;
  justify-content: center; padding-bottom: 36px; overflow: visible;
}
.cms-card {
  position: relative; flex: 0 0 var(--closed); height: 26rem;
  border-radius: 1rem; overflow: hidden; cursor: pointer;
  transition: flex-basis var(--speed), transform var(--speed);
}
.cms-card.active {
  flex-basis: var(--open); transform: translateY(-6px);
  box-shadow: 0 18px 55px rgba(0,0,0,0.5);
}
.cms-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  filter: brightness(0.7) saturate(70%);
  transition: filter .3s, transform var(--speed);
}
.cms-card:hover .cms-bg { filter: brightness(0.85) saturate(100%); transform: scale(1.05); }
.cms-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(transparent 30%, rgba(0,0,0,0.82) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  padding: 28px 12px 0; gap: 14px;
  transition: all var(--speed);
}
.cms-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-size: 15px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: opacity var(--speed);
}
.cms-title {
  color: #fff; font-weight: 700; font-size: 1.1rem;
  writing-mode: vertical-rl; transform: rotate(180deg);
  line-height: 1.2; text-align: center;
  transition: writing-mode 0s, font-size var(--speed);
  max-height: 18rem; overflow: hidden;
}
.cms-thumb-placeholder, .cms-desc, .cms-btn { display: none; }
.cms-card.active .cms-overlay {
  flex-direction: row; align-items: center; justify-content: flex-start;
  padding: 1.4rem 1.6rem; gap: 1.1rem;
  background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, transparent 100%);
}
.cms-card.active .cms-num { display: none; }
.cms-card.active .cms-title {
  writing-mode: horizontal-tb; transform: none;
  font-size: 1.6rem; line-height: 1.25; max-height: none; margin-bottom: 6px;
}
.cms-card.active .cms-thumb-placeholder { display: block; }
.cms-card.active .cms-desc  { display: block; }
.cms-card.active .cms-btn   { display: inline-block; }
.cms-thumb-placeholder {
  width: 120px; height: 220px; border-radius: .45rem; flex-shrink: 0;
  background: rgba(255,255,255,0.08); border: 1px dashed rgba(255,255,255,0.2);
}
.cms-right { display: flex; flex-direction: column; gap: .55rem; }
.cms-desc { color: rgba(255,255,255,0.82); font-size: .9rem; line-height: 1.5; max-width: 18rem; }
.cms-btn {
  margin-top: 4px; padding: .5rem 1.2rem; border: none; border-radius: 9999px;
  background: var(--accent); color: #fff; font-size: .85rem; font-weight: 600; cursor: pointer; align-self: flex-start;
}
.cms-btn:hover { background: var(--orange-hover); }
.cms-dots { display: flex; gap: .5rem; justify-content: center; padding-top: 10px; }
.cms-dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: rgba(255,255,255,0.3); border: none; cursor: pointer; transition: .3s;
}
.cms-dot.on { background: var(--accent); transform: scale(1.25); }

/* ── Clients grid ── */
.clients-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px;
  background: #e5e5e5; border: 1px solid #e5e5e5; border-radius: 8px; overflow: hidden;
}
.client-cell {
  display: flex; align-items: center; justify-content: center;
  padding: 22px 16px; background: #fff; transition: background-color .2s;
}
.client-cell:hover { background-color: #fafafa; }
.client-cell img {
  max-width: 110px; max-height: 52px; width: 100%; height: auto;
  object-fit: contain; filter: grayscale(30%); transition: filter .25s;
}
.client-cell:hover img { filter: grayscale(0%); }

/* ── Footer ── */
.footer {
  background-color: var(--purple-main);
  padding-top: 64px; padding-bottom: 36px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-col-logo { display: flex; flex-direction: column; gap: 20px; }
.footer-col-logo .main-logo { height: 44px; object-fit: contain; object-position: left; }
.footer-brands { display: flex; align-items: center; gap: 10px; }
.footer-brands img { height: 18px; object-fit: contain; }
.footer-brands .sep { color: rgba(255,255,255,0.25); font-size: 13px; }
.footer-brands a { transition: opacity .2s; opacity: .85; }
.footer-brands a:hover { opacity: 1; }
.footer-tag { color: rgba(255,255,255,0.45); font-size: 12px; line-height: 1.6; }

.footer h4 {
  color: #fff; font-weight: 600; font-size: 12px; margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: .1em;
}
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul a {
  color: rgba(255,255,255,0.55); font-size: 13px; text-decoration: none; transition: color .2s;
}
.footer ul a:hover { color: #fff; }
.footer .channels li { display: flex; align-items: center; gap: 8px; }
.footer .channels svg { color: var(--orange-secondary); flex-shrink: 0; }
.footer .channels span,
.footer .channels a { color: rgba(255,255,255,0.55); font-size: 13px; }
.footer address {
  font-style: normal; color: rgba(255,255,255,0.55); font-size: 15px; line-height: 1.8;
}
.footer-bottom {
  padding-top: 24px; display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 14px; }
.footer-bottom a { color: rgba(255,255,255,0.3); font-size: 12px; text-decoration: none; }

/* ── Contact page ── */
.contact-hero-bg {
  position: absolute; inset: 0;
  background-image: var(--hero-img, none);
  background-size: cover; background-position: center;
  opacity: 0.28;
}
.contact-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(48,8,63,0.75) 0%, rgba(91,75,110,0.5) 60%, rgba(48,8,63,0.75) 100%),
    radial-gradient(circle at 85% 25%, rgba(224,111,17,0.18), transparent 55%);
  pointer-events: none;
  z-index: 1;
}
.contact-hero-content { z-index: 3 !important; }
.contact-hero-stripe { z-index: 2 !important; }
.contact-hero {
  min-height: 260px !important;
  padding: 56px 0 !important;
  height: auto !important;
  height: 200px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--purple-main) 0%, #5B4B6E 60%, #7a6a8e 100%);
  display: flex; align-items: center;
}
.contact-hero-pattern {
  position: absolute; inset: 0; opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.contact-hero-stripe {
  position: absolute; left: 0; top: 0; width: 5px; height: 100%; background: var(--orange-main);
}
.contact-hero-content { position: relative; z-index: 10; width: 100%; padding-left: 5px; }
.contact-hero h1 {
  font-size: clamp(20px, 2.5vw, 30px); font-weight: 700; color: #fff;
  line-height: 1.2; margin-bottom: 10px;
}
.contact-hero p { color: rgba(255,255,255,0.72); font-size: 17px; max-width: 520px; line-height: 1.6; }

.contact-title-block { background: #fff; border-bottom: 1px solid #f0f0f0; }
.contact-title-block .inner { padding: 40px 60px; text-align: center; }
.contact-title-block .row {
  display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 10px;
}
.contact-title-block h2 {
  font-size: 28px; font-weight: 800; color: var(--purple-main);
  letter-spacing: .04em; text-transform: uppercase;
}
.contact-title-block p { color: var(--purple-main); font-size: 16px; }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: flex-start;
}
.contact-info h3 {
  font-size: 22px; font-weight: 700; color: var(--purple-main); margin-bottom: 8px;
}
.contact-info .h-divider {
  width: 48px; height: 3px; background: var(--orange-main); border-radius: 2px; margin-bottom: 36px;
}
.contact-rows { display: flex; flex-direction: column; gap: 28px; }
.contact-row { display: flex; align-items: flex-start; gap: 16px; }
.contact-row .ico { width: 24px; flex-shrink: 0; padding-top: 2px; }
.contact-row .ico svg { stroke: var(--purple-main); }
.contact-row .label {
  font-size: 12px; font-weight: 600; color: var(--orange-main);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px;
}
.contact-row .val,
.contact-row a {
  font-size: 17px; color: var(--purple-main); font-weight: 400; text-decoration: none; transition: color .2s;
}
.contact-row a:hover { color: var(--orange-main); }
.contact-row address { font-style: normal; font-size: 16px; color: var(--purple-main); line-height: 1.7; }

.contact-form {
  background: #fafafa; border-radius: 12px; padding: 44px 40px; border: 1px solid #eeeeee;
}
.contact-form h3 { font-size: 22px; font-weight: 700; color: var(--purple-main); margin-bottom: 8px; }
.contact-form .h-divider {
  width: 40px; height: 3px; background: var(--orange-main); border-radius: 2px; margin-bottom: 32px;
}
.contact-form form { display: flex; flex-direction: column; gap: 20px; }
.contact-form label {
  display: block; font-size: 13px; font-weight: 600; color: var(--purple-main);
  margin-bottom: 7px; text-transform: uppercase; letter-spacing: .06em;
}
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid #ddd; border-radius: 6px;
  font-size: 16px; color: #333; outline: none; transition: border-color .2s;
  font-family: var(--font-sans); background: #fff;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--purple-secondary); }
.contact-form button {
  background: var(--orange-main); color: #fff;
  padding: 14px 32px; border-radius: 6px;
  font-size: 15px; font-weight: 700; border: none;
  align-self: flex-start; cursor: pointer; font-family: var(--font-sans);
  transition: background-color .2s, transform .18s, box-shadow .18s;
}
.contact-form button:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.22); }

.map-section { height: 420px; width: 100%; position: relative; }
.map-section iframe { border: 0; display: block; width: 100%; height: 100%; }
.map-pill {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: var(--purple-main); color: #fff;
  padding: 12px 24px; border-radius: 6px;
  font-size: 14px; font-weight: 600;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  white-space: nowrap; pointer-events: none;
  display: flex; align-items: center; gap: 8px;
}
.map-pill svg { stroke: var(--orange-main); }

/* ── Visibility helpers ── */
.hidden-mobile { display: flex; }
.show-mobile   { display: none; }

/* ── Responsive breakpoints ── */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .clients-grid  { grid-template-columns: repeat(4, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
  .flip-card     { height: 480px; }
}

@media (max-width: 768px) {
  .site-container { padding: 0 20px; }
  .topbar-inner,
  .header-main-inner { padding-left: 20px !important; padding-right: 20px !important; }
  .hidden-mobile  { display: none !important; }
  .show-mobile    { display: flex !important; }

  .about-grid    { grid-template-columns: 1fr !important; }
  .video-grid    { grid-template-columns: 1fr !important; }
  .contact-grid  { grid-template-columns: 1fr !important; gap: 40px; }
  .clients-grid  { grid-template-columns: repeat(3, 1fr); }

  .section { padding: 48px 0 !important; }
  .hero { min-height: 360px !important; }
  .flip-card { height: 420px !important; }
  .cms-track { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .contact-title-block .inner { padding: 32px 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .contact-form button { align-self: stretch; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .clients-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr; }
  .flip-card     { height: 360px; }
}

/* About + Video grids (defined here so media queries above can override) */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* ════════════════════════════════════════
   PÁGINA HOME — Novas Seções
   ════════════════════════════════════════ */

/* shared eyebrow helper */
.eyebrow-light { color: #F5A623 !important; }

/* ── Header nav link ── */
.nav-link {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.nav-link:hover {
  color: #fff;
  border-bottom-color: var(--orange-main);
}

/* ── SEÇÃO 4 — Diferenciais ── */
.diferenciais-section {
  background: linear-gradient(135deg, #1f0529 0%, #30083F 50%, #3d0a52 100%);
  color: #fff;
  padding: 96px 0;
  position: relative;
}
.dif-head { text-align: center; max-width: 920px; margin: 0 auto 56px; }
.dif-head h2 {
  color: #fff; font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.25; margin-top: 14px;
}
.dif-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.dif-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px 24px;
  transition: transform .3s, background .3s, border-color .3s;
}
.dif-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.07);
  border-color: var(--orange-main);
}
.dif-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--orange-main), #F5A623);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; margin-bottom: 18px;
}
.dif-card h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 12px; line-height: 1.3; }
.dif-card p { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.72); }

@media (max-width: 980px) { .dif-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .dif-grid { grid-template-columns: 1fr; } .diferenciais-section { padding: 64px 0; } }

/* ── SEÇÃO 5 — Números ── */
.numeros-section {
  position: relative;
  background: #1a0428;
  padding: 96px 0;
  overflow: hidden;
}
.numeros-bg {
  position: absolute; inset: 0;
  background-image: url('../images/about-port.jpg');
  background-size: cover; background-position: center;
  opacity: 0.22;
  filter: grayscale(0.2);
}
.numeros-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(26,4,40,0.92) 0%, rgba(48,8,63,0.85) 50%, rgba(26,4,40,0.95) 100%),
    radial-gradient(ellipse at 80% 20%, rgba(224,111,17,0.15), transparent 50%);
}
.numeros-section .site-container { position: relative; z-index: 1; }
.num-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.numeros-section .num-head h2 { color: #fff; }
.numeros-section .num-head .eyebrow { color: var(--orange-main); }
.num-head .eyebrow {
  font-size: 12px; font-weight: 700; color: var(--orange-main);
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 14px;
}
.num-head h2 {
  font-size: clamp(24px, 2.6vw, 34px);
  color: var(--purple-main); line-height: 1.25; font-weight: 700;
}
.num-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.num-card {
  background: linear-gradient(135deg, rgba(91,75,110,0.55) 0%, rgba(48,8,63,0.55) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.num-card::after {
  content: ""; position: absolute; right: -30px; bottom: -30px;
  width: 110px; height: 110px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,111,17,0.25), transparent 70%);
}
.num-value { display: flex; align-items: baseline; justify-content: center; gap: 8px; margin-bottom: 12px; }
.num-num {
  font-family: Georgia, serif; font-weight: 700;
  font-size: clamp(38px, 4.4vw, 56px);
  color: var(--orange-main); line-height: 1;
}
.num-label {
  font-size: 17px; font-weight: 700;
  color: #fff; text-transform: lowercase;
}
.num-card p { font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,0.78); position: relative; z-index: 1; }

@media (max-width: 980px) { .num-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .num-grid { grid-template-columns: 1fr; } .numeros-section { padding: 64px 0; } }

/* ── SEÇÃO 6 — Mercados ── */
.mercados-section { padding: 96px 0; background: #fafafa; }
.merc-head { text-align: center; max-width: 880px; margin: 0 auto 56px; }
.merc-head .eyebrow {
  font-size: 12px; font-weight: 700; color: var(--orange-main);
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 14px;
}
.merc-head h2 {
  font-size: clamp(24px, 2.6vw, 34px);
  color: var(--purple-main); line-height: 1.3; font-weight: 700;
}
.merc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.merc-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 32px 26px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.merc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(48,8,63,0.10);
  border-color: var(--orange-main);
}
.merc-icon {
  width: 60px; height: 60px;
  background: rgba(224,111,17,0.10);
  color: var(--orange-main);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.merc-card h3 { color: var(--purple-main); font-weight: 700; font-size: 18px; margin-bottom: 12px; }
.merc-card p { color: #555; font-size: 14px; line-height: 1.65; }

@media (max-width: 980px) { .merc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .merc-grid { grid-template-columns: 1fr; } .mercados-section { padding: 64px 0; } }

/* ── SEÇÃO 7 — Clientes ── */
.clientes-section { padding: 96px 0; background: #fff; }
.cli-head { text-align: center; max-width: 880px; margin: 0 auto 48px; }
.cli-head .eyebrow {
  font-size: 12px; font-weight: 700; color: var(--orange-main);
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 14px;
}
.cli-head h2 {
  font-size: clamp(24px, 2.6vw, 34px); color: var(--purple-main);
  line-height: 1.25; font-weight: 700; margin-bottom: 16px;
}
.cli-head p { color: #555; font-size: 16px; line-height: 1.7; }
.cli-rows {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cli-carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.cli-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation-name: cli-scroll;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes cli-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.cli-item {
  flex: 0 0 auto;
  width: 180px;
  height: 90px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 14px;
  transition: border-color .2s, box-shadow .2s;
}
.cli-item:hover { border-color: var(--orange-main); box-shadow: 0 6px 18px rgba(48,8,63,0.08); }
.cli-item img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%); opacity: 0.75;
  transition: filter .2s, opacity .2s;
}
.cli-item:hover img { filter: none; opacity: 1; }

@media (max-width: 740px) {
  .cli-item { width: 150px; height: 76px; padding: 10px; }
  .cli-rows { gap: 14px; }
}
@media (max-width: 460px) {
  .cli-item { width: 130px; height: 66px; padding: 10px; }
  .clientes-section { padding: 64px 0; }
}

/* ── SEÇÃO 8 — Parceiros ── */
.parceiros-section {
  padding: 88px 0;
  background: linear-gradient(180deg, #f9f7fb 0%, #fff 100%);
}
.parc-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}
.parc-grid .eyebrow {
  font-size: 12px; font-weight: 700; color: var(--orange-main);
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 14px;
}
.parc-grid h2 {
  color: var(--purple-main); font-weight: 700;
  font-size: clamp(24px, 2.6vw, 32px); line-height: 1.25;
  margin-bottom: 20px;
}
.parc-grid > div > p { color: #555; font-size: 16px; line-height: 1.7; }
.parc-cats {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.parc-cats li {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border: 1px solid #ececec; border-left: 4px solid var(--orange-main);
  padding: 18px 22px; border-radius: 8px;
  font-size: 15px; font-weight: 600; color: var(--purple-main);
  transition: transform .2s, box-shadow .2s;
}
.parc-cats li:hover { transform: translateX(4px); box-shadow: 0 8px 22px rgba(48,8,63,0.08); }
.parc-bullet { font-size: 22px; }

@media (max-width: 900px) { .parc-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ── SEÇÃO 9 — CTA Final ── */
.cta-final-section {
  padding: 96px 0;
  background: linear-gradient(135deg, #30083F 0%, #1a0428 100%);
  color: #fff;
  position: relative; overflow: hidden;
}
.cta-final-section::before {
  content: ""; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,111,17,0.18), transparent 65%);
}
.cta-final-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  position: relative; z-index: 1;
}
.cta-final-text h2 {
  color: #fff; font-weight: 700;
  font-size: clamp(26px, 3vw, 38px); line-height: 1.25;
  margin: 14px 0 18px;
}
.cta-final-text p { color: rgba(255,255,255,0.78); font-size: 16px; line-height: 1.7; margin-bottom: 28px; }
.cta-final-btn {
  display: inline-block;
  background: var(--orange-main); color: #fff;
  padding: 14px 28px; border-radius: 6px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  transition: background .2s, transform .2s;
}
.cta-final-btn:hover { background: #F48220; transform: translateY(-2px); }

.cta-final-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
  backdrop-filter: blur(6px);
}
.cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cta-final-form input, .cta-final-form textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 6px;
  padding: 12px 14px;
  color: #fff; font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s, background .2s;
  width: 100%; box-sizing: border-box;
}
.cta-final-form input::placeholder, .cta-final-form textarea::placeholder { color: rgba(255,255,255,0.5); }
.cta-final-form input:focus, .cta-final-form textarea:focus {
  border-color: var(--orange-main);
  background: rgba(255,255,255,0.12);
}
.cta-final-form button {
  background: var(--orange-main); color: #fff;
  border: none; border-radius: 6px;
  padding: 13px 24px; font-weight: 700; font-size: 14px;
  cursor: pointer; transition: background .2s;
  align-self: flex-start;
}
.cta-final-form button:hover { background: #F48220; }

@media (max-width: 900px) { .cta-final-grid { grid-template-columns: 1fr; gap: 36px; } .cta-row { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .cta-final-section { padding: 64px 0; } }

/* ════════════════════════════════════════
   PRE-FOOTER CTA BAND
   ════════════════════════════════════════ */
.prefooter-cta {
  position: relative;
  overflow: hidden;
  background: #4a3c5b;
  color: #fff;
}
.prefooter-cta-bg {
  position: absolute; inset: 0;
  background-image: url("images/port-aerial.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}
.prefooter-cta-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(135deg, rgba(48,8,63,0.88) 0%, rgba(74,60,91,0.82) 100%),
    radial-gradient(circle at 85% 75%, rgba(224,111,17,0.18), transparent 55%);
  pointer-events: none;
}
.prefooter-cta-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.4fr auto; gap: 56px;
  align-items: center;
  padding-top: 84px; padding-bottom: 84px;
}
.prefooter-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--orange-main);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.22em;
  margin-bottom: 22px;
}
.prefooter-eyebrow-bar {
  width: 36px; height: 2px; background: var(--orange-main);
}
.prefooter-title {
  font-family: var(--font-main);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff; margin: 0 0 18px;
}
.prefooter-title .accent { color: var(--orange-main); }
.prefooter-sub {
  color: rgba(255,255,255,0.82);
  font-size: 16px; line-height: 1.6;
  max-width: 580px; margin: 0;
}
.prefooter-cta-actions {
  display: flex; flex-direction: column; gap: 12px;
  min-width: 240px;
}
.prefooter-btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--orange-main); color: #fff;
  padding: 16px 28px; border-radius: 4px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; text-decoration: none;
  box-shadow: 0 8px 24px rgba(224,111,17,0.35);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.prefooter-btn-primary:hover {
  background: #F48220; transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(224,111,17,0.45);
}
.prefooter-btn-primary span { transition: transform .2s; }
.prefooter-btn-primary:hover span { transform: translateX(4px); }
.prefooter-btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: #fff;
  padding: 15px 28px; border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.4);
  font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; text-decoration: none;
  transition: border-color .2s, background-color .2s;
}
.prefooter-btn-outline:hover {
  border-color: #fff; background: rgba(255,255,255,0.08);
}
@media (max-width: 900px) {
  .prefooter-cta-inner { grid-template-columns: 1fr; gap: 32px; padding-top: 60px; padding-bottom: 60px; }
  .prefooter-cta-actions { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 560px) {
  .prefooter-cta-actions { flex-direction: column; }
  .prefooter-btn-primary, .prefooter-btn-outline { width: 100%; }
}

/* ════════════════════════════════════════
   FOOTER refinado
   ════════════════════════════════════════ */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, #1f0529 0%, var(--purple-main) 100%);
  color: #fff;
  padding: 80px 0 28px;
}
.site-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224,111,17,0.4), transparent);
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.4fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer .footer-logo { height: 48px; object-fit: contain; object-position: left; }
.site-footer .footer-tag {
  color: rgba(255,255,255,0.6); font-size: 13.5px; line-height: 1.65;
  margin-top: 18px; max-width: 320px;
}
.footer-social-row { display: flex; gap: 10px; margin-top: 22px; }
.footer-icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  transition: all .2s;
}
.footer-icon-btn:hover {
  background: var(--orange-main);
  border-color: var(--orange-main);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(224,111,17,0.35);
}

.site-footer h4 {
  color: #fff; font-weight: 700; font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  margin: 0 0 22px; position: relative; padding-bottom: 12px;
}
.site-footer h4::after {
  content: ""; position: absolute; bottom: 0; left: 0;
  width: 28px; height: 2px; background: var(--orange-main);
}

.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.site-footer ul a, .site-footer ul span {
  color: rgba(255,255,255,0.6); font-size: 13.5px;
  text-decoration: none; transition: color .2s, transform .2s;
  display: inline-block;
}
.site-footer ul a:hover { color: var(--orange-main); transform: translateX(2px); }

.footer-brand-chips { display: flex; flex-direction: column; gap: 8px; }
.footer-brand-chip {
  display: flex; flex-direction: column; gap: 2px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  background: rgba(255,255,255,0.025);
  text-decoration: none;
  transition: all .2s;
}
.footer-brand-chip:hover:not(.is-static) {
  border-color: rgba(224,111,17,0.45);
  background: rgba(224,111,17,0.06);
  transform: translateY(-1px);
}
.footer-brand-chip.is-static { opacity: 0.78; cursor: default; }
.footer-chip-mark { color: #fff; font-size: 14px; font-weight: 600; }
.footer-chip-sub { color: rgba(255,255,255,0.5); font-size: 11.5px; letter-spacing: 0.02em; }

.footer-contact-link {
  display: inline-flex !important; align-items: center; gap: 9px;
}
.footer-contact-link svg { opacity: 0.6; transition: opacity .2s; flex-shrink: 0; }
.footer-contact-link:hover svg { opacity: 1; color: var(--orange-main); }

.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 12.5px; margin: 0; letter-spacing: 0.02em; }
.footer-bottom-meta { letter-spacing: 0.1em !important; text-transform: uppercase; }

@media (max-width: 900px) {
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .site-footer { padding-top: 60px; }
}
@media (max-width: 560px) {
  .site-footer .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; align-items: flex-start; }
}

/* ════════════════════════════════════════
   PÁGINAS INTERNAS — Hero compartilhado
   ════════════════════════════════════════ */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, #30083F 0%, #1a0428 70%);
  padding: 110px 0 96px;
  overflow: hidden;
  color: #fff;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-image: var(--hero-img, none);
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  filter: saturate(0.85);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(48,8,63,0.78) 0%, rgba(26,4,40,0.55) 55%, rgba(48,8,63,0.85) 100%),
    radial-gradient(circle at 82% 22%, rgba(224,111,17,0.22), transparent 55%),
    repeating-linear-gradient(45deg, transparent 0 30px, rgba(255,255,255,0.02) 30px 31px);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 920px; }
.page-hero-inner .eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(224,111,17,0.16);
  border: 1px solid rgba(224,111,17,0.4);
  border-radius: 999px;
  color: #F5A623 !important;
  margin-bottom: 0 !important;
}
.page-hero h1 {
  color: #fff; font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.2; margin: 16px 0 18px;
}
.page-hero p { color: rgba(255,255,255,0.78); font-size: 18px; line-height: 1.6; max-width: 720px; }

/* ── SOBRE — História ── */
.sobre-historia { padding: 88px 0; background: #fff; }
.historia-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 64px; align-items: center;
}
.historia-text .eyebrow {
  font-size: 12px; font-weight: 700; color: var(--orange-main);
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 14px;
}
.historia-text h2 {
  color: var(--purple-main); font-weight: 700;
  font-size: clamp(24px, 2.6vw, 34px); line-height: 1.25; margin-bottom: 24px;
}
.historia-body p { color: #444; font-size: 16px; line-height: 1.75; margin-bottom: 18px; }
.historia-media { position: relative; }
.historia-media-frame {
  position: relative; width: 100%;
  aspect-ratio: 4 / 5; border-radius: 14px; overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(48,8,63,0.35), 0 6px 16px rgba(48,8,63,0.08);
}
.historia-media-frame img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.historia-media-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(48,8,63,0.10) 0%, rgba(48,8,63,0) 35%, rgba(48,8,63,0.55) 100%),
    radial-gradient(ellipse at top right, rgba(224,111,17,0.18), transparent 55%);
  pointer-events: none;
}
.historia-media-accent {
  position: absolute; top: 0; right: 0;
  width: 72px; height: 4px; background: var(--orange-main);
}
.historia-media-accent::after {
  content: ""; position: absolute; top: 0; right: 0;
  width: 4px; height: 72px; background: var(--orange-main);
}
.historia-media-caption {
  position: absolute; left: 20px; right: 20px; bottom: 20px;
  background: rgba(48,8,63,0.82);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  color: #fff; padding: 16px 20px; border-radius: 10px;
  border-left: 3px solid var(--orange-main);
  display: flex; align-items: baseline; gap: 12px;
}
.historia-cap-num {
  font-family: Georgia, serif; font-weight: 700;
  font-size: 32px; color: var(--orange-main); line-height: 1;
}
.historia-cap-text { font-size: 14px; font-weight: 600; line-height: 1.4; color: #fff; }
@media (max-width: 900px) {
  .historia-wrap { grid-template-columns: 1fr; gap: 36px; }
  .historia-media-frame { aspect-ratio: 16 / 10; max-height: 360px; }
}

/* ── SOBRE — Identidade ── */
.sobre-identidade {
  padding: 88px 0;
  background: linear-gradient(135deg, #30083F 0%, #1f0529 100%);
  color: #fff;
}
.ident-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.ident-head h2 { color: #fff; font-weight: 700; font-size: clamp(24px, 2.6vw, 32px); margin-top: 12px; }
.ident-blocks { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.ident-block {
  background: rgba(255,255,255,0.06);
  border-left: 4px solid var(--orange-main);
  border-radius: 10px;
  padding: 28px 28px;
}
.ident-block h3 { color: #F5A623; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.ident-block p { color: rgba(255,255,255,0.85); font-size: 16px; line-height: 1.7; }
@media (max-width: 800px) { .ident-blocks { grid-template-columns: 1fr; } }

/* ── SOBRE — Fazemos / Não fazemos ── */
.sobre-fazemos { padding: 88px 0; background: #fafafa; }
.fazemos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.fazemos-col { background: #fff; border-radius: 12px; padding: 32px 30px; border: 1px solid #eee; }
.fazemos-tag {
  font-size: 12px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 20px;
  display: inline-block; padding: 6px 14px; border-radius: 999px;
}
.fazemos-yes .fazemos-tag { background: rgba(34,139,67,0.10); color: #228B43; }
.fazemos-no .fazemos-tag  { background: rgba(192,30,30,0.10); color: #C01E1E; }
.fazemos-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.fazemos-col li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; line-height: 1.55; color: #333;
}
.fazemos-yes svg { color: #228B43; flex-shrink: 0; margin-top: 2px; }
.fazemos-no svg  { color: #C01E1E; flex-shrink: 0; margin-top: 2px; }
@media (max-width: 800px) { .fazemos-grid { grid-template-columns: 1fr; } }

/* ── SOBRE — Liderança ── */
.sobre-lideranca { padding: 80px 0; background: #fafafa; }
.lid-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.lid-head .eyebrow { font-size: 12px; font-weight: 700; color: var(--orange-main); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 14px; }
.lid-head h2 { color: var(--purple-main); font-weight: 700; font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 14px; }
.lid-head p { color: #555; font-size: 16px; line-height: 1.7; }
.lid-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.lid-card {
  background: linear-gradient(160deg, #30083F 0%, #1f0529 100%);
  border-radius: 14px; padding: 28px 26px; color: #fff;
  display: flex; flex-direction: column; gap: 18px;
  position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.lid-card::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 56px; height: 3px; background: var(--orange-main);
}
.lid-avatar {
  width: 84px; height: 84px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
}
.lid-card-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--orange-main);
  margin-bottom: 6px;
}
.lid-card-body h3 { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 8px; }

/* Bio cards (sócios) */
.bio-stack { display: flex; flex-direction: column; gap: 24px; max-width: 1080px; margin: 0 auto; }
.bio-card {
  background: #fff;
  border: 1px solid rgba(48, 8, 63, 0.08);
  border-radius: 16px;
  padding: 32px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  box-shadow: 0 4px 24px rgba(48, 8, 63, 0.06);
  position: relative;
  overflow: hidden;
}
.bio-card::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; background: var(--orange-main);
}
.bio-photo {
  width: 200px; height: 200px; border-radius: 12px;
  overflow: hidden; background: #f3eef6;
}
.bio-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bio-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--orange-main);
  margin-bottom: 8px;
}
.bio-name {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--purple-main);
  font-size: 26px; font-weight: 700;
  margin-bottom: 8px; line-height: 1.2;
}
.bio-lead {
  color: var(--purple-main);
  font-size: 15px; font-weight: 600; line-height: 1.6;
  margin-bottom: 16px;
}
.bio-body p { color: #444; font-size: 14.5px; line-height: 1.75; margin-bottom: 12px; }
.bio-body p:last-of-type { margin-bottom: 18px; }
.bio-links {
  display: flex; flex-wrap: wrap; gap: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(48, 8, 63, 0.08);
}
.bio-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--purple-main);
  text-decoration: none; transition: color 0.2s;
}
.bio-link:hover { color: var(--orange-main); }
.bio-link svg { width: 16px; height: 16px; flex-shrink: 0; }
@media (max-width: 760px) {
  .bio-card { grid-template-columns: 1fr; padding: 24px; gap: 20px; }
  .bio-photo { width: 140px; height: 140px; }
  .bio-name { font-size: 22px; }
  .bio-links { gap: 12px; }
}
.lid-card-body p { color: rgba(255,255,255,0.72); font-size: 14px; line-height: 1.6; }
@media (max-width: 900px) { .lid-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════
   EMPRESAS DO GRUPO
   ════════════════════════════════════════ */
.empresas-section { padding: 80px 0; background: #fff; }
.empresa-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #eee;
  border-top: 5px solid var(--purple-main);
  padding: 40px 44px;
  margin-bottom: 36px;
  box-shadow: 0 4px 20px rgba(48,8,63,0.05);
}
.empresa-head {
  display: flex; align-items: center; gap: 22px; margin-bottom: 22px;
}
.empresa-logo-wrap {
  width: 84px; height: 84px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  padding: 14px;
  flex-shrink: 0;
}
.empresa-logo-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; }
.empresa-head h2 { color: var(--purple-main); font-size: 28px; font-weight: 700; margin-bottom: 4px; }
.empresa-tagline { color: var(--orange-main); font-size: 15px; font-weight: 600; }
.empresa-about { color: #444; font-size: 16px; line-height: 1.75; margin-bottom: 28px; }
.empresa-blocks { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 24px; }
.empresa-block h4 {
  color: var(--purple-main); font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px;
  padding-bottom: 8px; border-bottom: 2px solid var(--orange-main);
  display: inline-block;
}
.empresa-block ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.empresa-block li {
  font-size: 14.5px; color: #444; line-height: 1.55;
  padding-left: 18px; position: relative;
}
.empresa-block li::before {
  content: "→"; position: absolute; left: 0; color: var(--orange-main); font-weight: 700;
}
.empresa-link {
  display: inline-block; font-weight: 700; font-size: 14px;
  text-decoration: none; padding-top: 14px;
  border-top: 1px solid #eee; width: 100%;
  transition: opacity .2s;
}
.empresa-link:hover { opacity: 0.7; }
.empresa-card-compact .empresa-blocks { display: none; }
@media (max-width: 800px) {
  .empresa-card { padding: 28px 22px; }
  .empresa-blocks { grid-template-columns: 1fr; gap: 22px; }
  .empresa-head { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ── Contact form (new fields) ── */
.contact-form-wrap { background:#fafafa; border-radius:12px; padding:44px 40px; border:1px solid #eee; }
.contact-form-title { font-size:22px; font-weight:700; color:var(--purple-main); margin-bottom:8px; }
.contact-form-bar { width:40px; height:3px; background:var(--orange-main); border-radius:2px; margin-bottom:28px; }
.contact-form { display:flex; flex-direction:column; gap:18px; }
.cf-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.cf-field { display:flex; flex-direction:column; }
.cf-field label { font-size:12px; font-weight:700; color:var(--purple-main); text-transform:uppercase; letter-spacing:0.08em; margin-bottom:6px; }
.cf-field input, .cf-field select, .cf-field textarea {
  padding:12px 14px; border:1.5px solid #ddd; border-radius:6px;
  font-size:15px; color:#333; outline:none; background:#fff;
  transition:border-color .2s; font-family:inherit; box-sizing:border-box; width:100%;
}
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus { border-color:var(--orange-main); }
.cf-field textarea { resize:vertical; }
.cf-submit {
  background:var(--orange-main); color:#fff; border:none; border-radius:6px;
  padding:14px 32px; font-weight:700; font-size:15px; cursor:pointer;
  align-self:flex-start; transition:background .2s;
}
.cf-submit:hover { background:#F48220; }
@media (max-width:640px){ .cf-row { grid-template-columns:1fr; } .contact-form-wrap { padding:28px 22px; } }
