:root {
  --font-title: "Classical Garamond BT", "Classical Garamond", Garamond, "Times New Roman", serif;
  --font-body: "Montserrat", Arial, Helvetica, sans-serif;
  --bg: #0a3f63;
  --bg-deep: #052b46;
  --bg-mid: #0a4b73;
  --bg-dark: #041d2b;
  --surface: #ffffff;
  --surface-soft: #f7f6f1;
  --text: #0d2740;
  --text-soft: #5b6775;
  --gold: #cda55e;
  --gold-2: #cda55e;
  --line: rgba(255,255,255,.12);
  --line-dark: rgba(8,53,86,.12);
  --shadow: 0 20px 60px rgba(2,18,31,.18);
  --shadow-strong: 0 34px 92px rgba(2,18,31,.34);
  --radius: 20px;
  --container: min(1180px, calc(100vw - 32px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); color: var(--text); background: var(--surface); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(205,165,94,.35); color: #061c2d; }

.container { width: var(--container); margin: 0 auto; }
.section { padding: 76px 0; position: relative; }
.center { text-align: center; }
.gold { color: var(--gold); }

.section-title { margin: 0; font-family: var(--font-title); font-size: clamp(2.25rem, 3.9vw, 4.8rem); line-height: 1.03; font-weight: 500; color: var(--bg); letter-spacing: -.03em; }
.section-kicker { margin: 0 0 14px; letter-spacing: .05em; text-transform: uppercase; color: var(--gold); font-size: .95rem; font-weight: 700; }
.section-lead { margin: 16px 0 0; color: var(--text-soft); font-size: 1.08rem; line-height: 1.75; }
.section-head { margin-bottom: 34px; }
.section-head.split { display: grid; grid-template-columns: 1fr .82fr; gap: 46px; align-items: end; }
.section-head.split .section-lead { margin: 0; }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border-radius: 14px; border: 1px solid transparent; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease; font-weight: 700; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: #102033; box-shadow: 0 16px 28px rgba(209,162,69,.22); border-color: var(--gold); }
.btn-primary:hover { background: transparent; color: var(--gold); border-color: var(--gold); box-shadow: none; }
.btn-secondary { border-color: rgba(209,162,69,.95); color: #fff; background: rgba(255,255,255,.02); }
.btn-secondary:hover { color: var(--gold); background: rgba(255,255,255,.04); border-color: var(--gold); }
.section-inline-cta { display: flex; justify-content: center; margin-top: 30px; }
.section-cta-button { min-width: 260px; min-height: 54px; padding: 0 26px; border-radius: 14px; text-align: center; }

/* HEADER */
.site-header { --header-height: 82px; position: fixed; top: 0; left: 0; width: 100%; z-index: 9998; background: #0a3f63; backdrop-filter: blur(10px); border-bottom: none; }
.site-header::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 4px; background: #cda55e; }
.site-header__inner { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { position: relative; z-index: 82; flex: 0 0 auto; }
.brand img { width: 152px; height: auto; }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid rgba(255,255,255,.12); background: transparent; color: #fff; position: relative; z-index: 82; }
.site-nav { margin-left: auto; position: relative; z-index: 81; }
.site-nav__list, .site-nav ul { list-style: none; display: flex; align-items: center; gap: 28px; padding: 0; margin: 0; }
.site-nav__item { position: relative; }
.site-nav__link, .site-nav__button { color: rgba(255,255,255,.92); font-size: 1rem; line-height: 1; display: inline-flex; align-items: center; gap: 6px; }
.site-nav__button { border: 0 !important; background: transparent !important; cursor: pointer; padding: 0 !important; margin: 0; box-shadow: none !important; border-radius: 0 !important; appearance: none !important; -webkit-appearance: none !important; }
.site-nav__caret { font-size: .72rem; line-height: 1; transform: translateY(1px); }
.site-nav__link:hover, .site-nav__link.active, .site-nav__item:hover > .site-nav__link, .site-nav__item:hover > .site-nav__button, .site-nav__item.is-open > .site-nav__button { color: var(--gold); }

/* LOGIN HEADER — V425 */
.site-nav__item--login {
  position: absolute;
  left: calc(100% + 28px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 82;
}

.site-nav__login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--gold);
  color: #083a5d;
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: none;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease;
}

.site-nav__login:hover {
  background: #dfb45e;
  color: #083a5d;
  transform: translateY(-1px);
}

@media (max-width: 1160px) and (min-width: 821px) {
  .site-nav__item--login {
    left: calc(100% + 18px);
  }

  .site-nav__login {
    min-height: 36px;
    padding: 0 18px;
    font-size: 0.92rem;
  }
}

@media (max-width: 820px) {
  .site-nav__item--login {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    z-index: auto;
  }

  .site-nav__login {
    width: 100%;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 10px;
    justify-content: center;
  }
}

.mega-menu { position: fixed; left: 50%; top: calc(var(--header-height) + 10px); transform: translateX(-50%); width: min(1180px, calc(100vw - 56px)); background: rgba(255,255,255,.985); border-radius: 14px; box-shadow: 0 18px 42px rgba(2,18,31,.18); padding: 18px 26px 22px; display: grid; gap: 22px; opacity: 0; visibility: hidden; pointer-events: none; z-index: 9999; }
.mega-menu::before { content: ""; position: absolute; inset: -12px 0 auto; height: 12px; }
.mega-menu--3col { grid-template-columns: repeat(3,minmax(0,1fr)); }
.mega-menu--4col { width: min(1260px, calc(100vw - 56px)); grid-template-columns: repeat(4,minmax(0,1fr)); }
.mega-menu--content, .mega-menu--about { left: 50%; transform: translateX(-50%); }
.site-nav__item--has-mega:hover > .mega-menu, .site-nav__item--has-mega:focus-within > .mega-menu, .site-nav__item--has-mega.is-open > .mega-menu { opacity: 1; visibility: visible; pointer-events: auto; }
.mega-menu__card { min-width: 0; text-decoration: none; }
.mega-menu__heading { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.mega-menu__icon { width: 22px; height: 22px; object-fit: contain; flex: 0 0 22px; }
.mega-menu__title { margin: 0; color: #cda55e; font-size: 1rem; line-height: 1.2; font-weight: 700; }
.mega-menu__text { margin: 0; color: #21394d; font-size: .98rem; line-height: 1.28; }

main { padding-top: 82px; }

/* HERO */
.consultoria-hero { position: relative; min-height: calc(100vh - 82px); background: #052b46; color: #fff; overflow: hidden; display: grid; align-items: center; }
.consultoria-hero__media, .consultoria-hero__media img, .consultoria-hero__media video { position: absolute; inset: 0; width: 100%; height: 100%; }
.consultoria-hero__media img, .consultoria-hero__media video { object-fit: cover; object-position: center center; }
.consultoria-hero__media video { display: block; }
.consultoria-hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,21,34,.82) 0%, rgba(3,21,34,.66) 34%, rgba(3,21,34,.28) 60%, rgba(3,21,34,.06) 100%); z-index: 1; }
.consultoria-hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr); align-items: center; min-height: calc(100vh - 82px); }
.consultoria-hero__content { grid-column: 1; width: 100%; max-width: 850px; padding-left: 34px; transform: translateY(80px); }
.consultoria-kicker { font-family: Garamond, "Times New Roman", serif; font-size: clamp(1.16rem, 1.28vw, 1.46rem); font-weight: 700; letter-spacing: 0; color: #fff; display: inline-block; white-space: nowrap; margin-bottom: 18px; }
.consultoria-kicker::after { content: ""; display: block; width: min(560px, 100%); height: 2px; background: var(--gold); margin-top: 10px; }
.consultoria-title { margin: 0 0 18px; width: min(780px, 100%); font-family: "Baskerville Old Face", Baskerville, "Times New Roman", serif; font-size: clamp(2.45rem, 3.38vw, 4rem); line-height: 1.03; font-weight: 500; letter-spacing: -.025em; color: #fff; }
.consultoria-title .gold, .consultoria-title em { color: var(--gold); font-style: italic; }
.consultoria-lead { margin: 0 0 18px; max-width: 720px; font-size: clamp(1rem, 1.04vw, 1.14rem); line-height: 1.48; color: rgba(255,255,255,.94); }
.consultoria-feature-line { display: flex; align-items: center; gap: 34px; margin: 0 0 22px; padding: 0 0 14px; width: min(830px, 100%); position: relative; }
.consultoria-feature-line::after { content: ""; position: absolute; left: 0; bottom: 0; width: min(720px, 100%); height: 2px; background: var(--gold); }
.consultoria-feature-item { display: flex; align-items: center; gap: 10px; }
.consultoria-feature-icon { width: 46px; height: 46px; object-fit: contain; flex: 0 0 46px; }
.consultoria-feature-label { display: block; max-width: 128px; color: #fff; font-size: .74rem; line-height: 1.08; font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 0; }
.hero-actions .btn { width: 260px; min-height: 58px; font-size: .9rem; padding: 0 16px; border-radius: 16px; }

/* INTRO */
.consultoria-intro { background: #fff; }
.consultoria-intro__grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 46px; align-items: start; }
.intro-copy { border-left: 3px solid var(--gold); padding-left: 28px; }
.intro-copy p { margin: 0; color: var(--text-soft); line-height: 1.78; font-size: 1.06rem; }
.intro-copy p + p { margin-top: 18px; }

/* MATURITY */
.maturity-section { background: linear-gradient(180deg, #0a4a73 0%, #073a5b 58%, #041d2b 100%); color: #fff; }
.maturity-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.maturity-card { min-height: 300px; border: 1px solid rgba(255,255,255,.14); border-radius: 22px; padding: 26px; background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.03)); box-shadow: 0 20px 70px rgba(0,0,0,.18); position: relative; overflow: hidden; transition: transform .24s ease, border-color .24s ease; }
.maturity-card:hover { transform: translateY(-6px); border-color: rgba(205,165,94,.5); }
.maturity-card::after { content: ""; position: absolute; right: -50px; top: -50px; width: 150px; height: 150px; border: 1px solid rgba(205,165,94,.24); border-radius: 999px; box-shadow: 0 0 0 24px rgba(255,255,255,.025); }
.maturity-number { display: block; font-family: var(--font-title); color: var(--gold); font-size: 3rem; line-height: 1; margin-bottom: 24px; }
.maturity-card h3 { margin: 0 0 12px; font-family: var(--font-title); font-size: 1.74rem; line-height: 1.06; font-weight: 500; color: #fff; }
.maturity-card p { margin: 0; color: rgba(255,255,255,.78); line-height: 1.64; }

/* PILLARS */
.pillars-section { background: #fff; overflow: hidden; }
.pillar-system { position: relative; min-height: 680px; margin-top: 14px; }
.pillar-system::before { content: ""; position: absolute; left: 50%; top: 50%; width: 560px; height: 560px; border-radius: 50%; transform: translate(-50%,-50%); border: 1px solid rgba(205,165,94,.36); box-shadow: inset 0 0 0 86px rgba(10,63,99,.035), 0 30px 90px rgba(10,63,99,.08); }
.pillar-system::after { content: ""; position: absolute; left: 50%; top: 50%; width: 380px; height: 380px; border-radius: 50%; transform: translate(-50%,-50%); border: 1px dashed rgba(10,63,99,.22); }
.pillar-core { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 235px; height: 235px; border-radius: 50%; background: radial-gradient(circle at 32% 20%, rgba(255,255,255,.22), transparent 30%), linear-gradient(135deg, #cda55e, #e3c47d 48%, #0a3f63); display: grid; place-items: center; align-content: center; color: #fff; box-shadow: 0 32px 82px rgba(2,18,31,.24); z-index: 2; }
.pillar-core span { display: block; text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; font-weight: 800; color: #071d30; }
.pillar-core strong { display: block; font-family: var(--font-title); font-size: 4rem; line-height: .9; font-weight: 400; color: #fff; }
.pillar-node { position: absolute; width: min(360px, 34%); min-height: 210px; border: 1px solid rgba(8,53,86,.12); border-radius: 22px; background: #fff; box-shadow: 0 18px 52px rgba(10,63,99,.1); padding: 26px; transition: transform .24s ease, border-color .24s ease; }
.pillar-node:hover { transform: translateY(-6px); border-color: rgba(205,165,94,.42); }
.pillar-node span { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 14px; background: rgba(205,165,94,.16); color: var(--bg); font-weight: 800; margin-bottom: 18px; }
.pillar-node h3 { margin: 0 0 10px; font-family: var(--font-title); color: var(--bg); font-size: 2rem; font-weight: 500; }
.pillar-node p { margin: 0; color: var(--text-soft); line-height: 1.62; }
.pillar-node--one { left: 0; top: 54px; }
.pillar-node--two { right: 0; top: 54px; }
.pillar-node--three { left: 0; bottom: 54px; }
.pillar-node--four { right: 0; bottom: 54px; }

/* METHOD */
.method-section { color: #fff; background: linear-gradient(180deg, #052b46 0%, #041d2b 100%); }
.method-section .section-title { color: #fff; }
.method-timeline { max-width: 980px; margin: 0 auto; position: relative; display: grid; gap: 16px; }
.method-timeline::before { content: ""; position: absolute; left: 35px; top: 32px; bottom: 32px; width: 1px; background: linear-gradient(var(--gold), rgba(255,255,255,.08)); }
.method-step { position: relative; display: grid; grid-template-columns: 70px 1fr; gap: 22px; align-items: start; }
.method-step > span { width: 70px; height: 70px; display: grid; place-items: center; border-radius: 18px; background: #071f32; border: 1px solid rgba(205,165,94,.48); color: var(--gold); font-weight: 800; position: relative; z-index: 2; box-shadow: 0 0 0 9px rgba(4,29,43,.86); }
.method-step > div { padding: 26px 28px; border-radius: 22px; border: 1px solid rgba(255,255,255,.11); background: rgba(255,255,255,.055); transition: transform .24s ease, border-color .24s ease, background .24s ease; }
.method-step:hover > div { transform: translateX(8px); border-color: rgba(205,165,94,.45); background: rgba(255,255,255,.08); }
.method-step h3 { margin: 0 0 8px; font-family: var(--font-title); color: #fff; font-size: 2rem; font-weight: 500; }
.method-step p { margin: 0; color: rgba(255,255,255,.76); line-height: 1.66; }

/* DELIVERABLES */
.deliverables-section { background: var(--surface-soft); }
.tabs-wrap { border: 1px solid rgba(8,53,86,.12); border-radius: 22px; overflow: hidden; background: #fff; box-shadow: 0 16px 45px rgba(10,63,99,.1); }
.tab-buttons { display: grid; grid-template-columns: repeat(5, 1fr); background: #083a5d; border-bottom: 4px solid var(--gold); }
.tab-button { border: 0; border-right: 1px solid rgba(255,255,255,.12); padding: 22px 14px; background: transparent; color: rgba(255,255,255,.86); font-weight: 800; cursor: pointer; transition: background .2s ease, color .2s ease; }
.tab-button:last-child { border-right: 0; }
.tab-button.active, .tab-button:hover { background: rgba(205,165,94,.16); color: #fff; }
.tab-panel { display: none; grid-template-columns: .85fr 1.15fr; gap: 34px; padding: 38px; min-height: 380px; }
.tab-panel.active { display: grid; animation: fadeUp .28s ease both; }
.tab-copy span { display: block; font-family: var(--font-title); font-size: 4.8rem; line-height: 1; color: rgba(205,165,94,.5); }
.tab-copy h3 { margin: 12px 0 14px; font-family: var(--font-title); font-size: clamp(2rem, 3vw, 3.2rem); line-height: 1; font-weight: 500; color: var(--bg); }
.tab-copy p { margin: 0; color: var(--text-soft); line-height: 1.72; }
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; align-content: start; }
.feature-list li { min-height: 58px; display: flex; align-items: center; position: relative; border: 1px solid rgba(8,53,86,.08); background: #fbfaf6; border-radius: 14px; color: var(--text); padding: 14px 14px 14px 42px; font-weight: 600; line-height: 1.3; }
.feature-list li::before { content: ""; position: absolute; left: 16px; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(205,165,94,.13); }

/* PROOF */
.proof-section { background: #fff; }
.proof-grid { display: grid; grid-template-columns: 1fr 1.08fr; gap: 42px; align-items: center; }
.proof-copy p:not(.section-kicker) { color: var(--text-soft); line-height: 1.78; font-size: 1.06rem; }
.proof-metrics { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.proof-metrics article { min-height: 174px; border: 1px solid rgba(8,53,86,.32); border-radius: 18px; background: #fff; display: grid; place-items: center; text-align: center; padding: 24px; }
.proof-metrics strong { display: block; font-family: var(--font-title); font-size: clamp(2.7rem, 4vw, 4.6rem); line-height: 1; color: var(--bg); font-weight: 700; }
.proof-metrics span { display: block; color: var(--bg); margin-top: 10px; line-height: 1.35; }

.quote-section { background: linear-gradient(180deg, #041d2b 0%, #052b46 100%); color: #fff; padding-top: 0; }
.quote-card { border-top: 1px solid rgba(205,165,94,.36); border-bottom: 1px solid rgba(205,165,94,.36); padding: 46px 0; text-align: center; }
.quote-card p { margin: 0; font-family: var(--font-title); color: var(--gold); font-size: clamp(2.3rem, 4vw, 4.6rem); line-height: 1.04; font-weight: 500; }
.quote-card span { display: block; max-width: 820px; margin: 20px auto 0; color: rgba(255,255,255,.78); line-height: 1.72; }

/* CONTACT */
.contact-section { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1.02fr .82fr; gap: 42px; align-items: start; }
.contact-copy p:not(.section-kicker) { color: var(--text-soft); line-height: 1.78; font-size: 1.06rem; }
.contact-points { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.contact-points span { border: 1px solid rgba(8,53,86,.13); border-radius: 999px; padding: 10px 14px; color: var(--bg); font-weight: 700; background: #fbfaf6; }
.contact-form { background: #083a5d; color: #fff; border-radius: 24px; padding: 30px; box-shadow: var(--shadow); border: 1px solid rgba(205,165,94,.22); }
.contact-form h3 { margin: 0 0 8px; font-family: var(--font-title); font-size: 2.3rem; line-height: 1; font-weight: 500; }
.contact-form p { margin: 0 0 18px; color: rgba(255,255,255,.78); line-height: 1.56; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 13px; }
.contact-form label span { font-size: .86rem; color: rgba(255,255,255,.88); font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.08); color: #fff; min-height: 52px; border-radius: 14px; padding: 0 14px; outline: none; }
.contact-form select { color: rgba(255,255,255,.9); }
.contact-form option { color: var(--text); }
.contact-form textarea { min-height: 112px; resize: vertical; padding-top: 14px; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.5); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(205,165,94,.12); }
.contact-form .btn { width: 100%; margin-top: 4px; }
.contact-form small { display: block; min-height: 20px; margin-top: 12px; color: #f7d991; line-height: 1.4; }

/* FOOTER */
.site-footer { background: #083a5d; color: #fff; padding-top: 38px; }
.site-footer__grid { display: grid; grid-template-columns: 1.55fr 1fr 1fr 1fr 1.15fr; gap: 44px; align-items: start; }
.footer-brand img { width: 320px; max-width: 100%; height: auto; }
.footer-address { margin-top: 22px; color: rgba(255,255,255,.95); line-height: 1.45; font-size: .98rem; }
.footer-social { margin-top: 48px; display: flex; gap: 12px; flex-wrap: wrap; }
.footer-social-link { width: 44px; height: 44px; border-radius: 8px; background: #f2f2f2; display: inline-flex; align-items: center; justify-content: center; transition: transform .2s ease, opacity .2s ease; }
.footer-social-link:hover { transform: translateY(-2px); opacity: .95; }
.footer-social-link img { width: 24px; height: 24px; object-fit: contain; }
.footer-column h4 { margin: 0 0 14px; font-size: 1.05rem; font-weight: 700; color: #fff; }
.footer-column a, .footer-column span { display: block; margin: 0 0 10px; color: rgba(255,255,255,.92); font-size: .96rem; line-height: 1.3; }
.footer-column a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 34px; padding: 18px 0 22px; text-align: center; color: rgba(255,255,255,.9); font-size: .92rem; }
.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; z-index: 99999; text-decoration: none; background: transparent; border: none; box-shadow: none; }
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.03); transition: transform .2s ease; }
.floating-whatsapp img { width: 64px; height: 64px; object-fit: contain; display: block; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .72s ease, transform .72s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1160px) {
  .site-nav__list, .site-nav ul { gap: 22px; }
  .mega-menu { width: min(1060px, calc(100vw - 48px)); }
  .mega-menu--4col { width: min(1120px, calc(100vw - 48px)); }
  .maturity-grid { grid-template-columns: repeat(2,1fr); }
  .pillar-system { min-height: auto; display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 30px; }
  .pillar-system::before, .pillar-system::after, .pillar-core { display: none; }
  .pillar-node { position: relative; width: auto; min-height: 220px; left: auto; top: auto; right: auto; bottom: auto; }
}

@media (max-width: 980px) {
  .site-nav__list, .site-nav ul { gap: 18px; }
  .site-nav__link, .site-nav__button { font-size: .96rem; }
  .mega-menu, .mega-menu--4col { width: calc(100vw - 44px); }
}

@media (max-width: 820px) {
  .section { padding: 58px 0; }
  .section-head.split, .consultoria-intro__grid, .proof-grid, .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .section-title { font-size: clamp(2rem, 8vw, 3.2rem); }
  .section-lead { font-size: 1rem; }
  .site-header { --header-height: 72px; }
  main { padding-top: 72px; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-nav { position: absolute; top: calc(100% + 8px); right: 16px; left: 16px; background: rgba(255,255,255,.98); border: 1px solid rgba(8,53,86,.08); border-radius: 12px; padding: 12px 14px; display: none; box-shadow: 0 8px 18px rgba(2,18,31,.08); backdrop-filter: blur(6px); }
  .site-nav.is-open { display: block; }
  .site-nav__link, .site-nav__button { color: #083a5d; }
  .site-nav__caret { color: #cda55e; }
  .site-nav__list, .site-nav ul { flex-direction: column; align-items: stretch; gap: 10px; }
  .site-nav__link, .site-nav__button { width: 100%; justify-content: space-between; font-size: 1rem; }
  .mega-menu, .mega-menu--4col { position: static; left: auto; top: auto; transform: none; width: 100%; margin-top: 8px; padding: 10px 12px; display: none; grid-template-columns: 1fr; opacity: 1; visibility: visible; pointer-events: auto; background: rgba(255,255,255,.72); border: 1px solid rgba(8,53,86,.06); border-radius: 10px; box-shadow: none; }
  .site-nav__item--has-mega.is-open > .mega-menu { display: grid; }
  .mega-menu__card + .mega-menu__card { border-top: 1px solid rgba(8,53,86,.07); padding-top: 10px; }
  .mega-menu__text { font-size: .94rem; line-height: 1.32; }
  .consultoria-hero { min-height: calc(100svh - 72px); }
  .consultoria-hero__media img, .consultoria-hero__media video { object-position: 68% top; }
  .consultoria-hero__overlay { background: linear-gradient(180deg, rgba(3,21,34,.34) 0%, rgba(3,21,34,.54) 28%, rgba(3,21,34,.72) 60%, rgba(3,21,34,.88) 100%); }
  .consultoria-hero__grid { grid-template-columns: 1fr; min-height: calc(100svh - 72px); padding: 52px 0 80px; align-items: center; }
  .consultoria-hero__content { width: min(84vw, 500px); max-width: min(84vw, 500px); margin: 0 auto; justify-self: center; text-align: center; padding-left: 0; transform: none; }
  .consultoria-kicker { font-size: clamp(.82rem, 2.7vw, .96rem); margin: 0 0 10px; }
  .consultoria-kicker::after { width: 100%; height: 2px; margin-top: 8px; }
  .consultoria-title { font-size: clamp(1.8rem, 6.6vw, 2.62rem); line-height: 1.06; width: 100%; max-width: none; margin-bottom: 12px; }
  .consultoria-lead { max-width: 100%; font-size: clamp(.9rem, 3.3vw, 1rem); line-height: 1.42; margin-bottom: 14px; }
  .consultoria-feature-line { flex-direction: column; align-items: flex-start; gap: 10px; margin: 0 0 14px; padding: 0 0 14px; width: 100%; }
  .consultoria-feature-line::after { width: 100%; }
  .consultoria-feature-item { justify-content: flex-start; text-align: left; width: 100%; gap: 12px; }
  .consultoria-feature-icon { width: 40px; height: 40px; flex: 0 0 40px; }
  .consultoria-feature-label { max-width: none; font-size: .72rem; }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero-actions .btn { width: min(72vw,330px); min-height: 56px; }
  .intro-copy { border-left: 0; padding-left: 0; border-top: 3px solid var(--gold); padding-top: 20px; }
  .maturity-grid, .pillar-system, .proof-metrics, .feature-list { grid-template-columns: 1fr; }
  .maturity-card { min-height: auto; }
  .tab-buttons { grid-template-columns: 1fr; }
  .tab-button { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .tab-panel { grid-template-columns: 1fr; padding: 26px; }
  .case-arrow { display: none; }
  .case-card { padding: 28px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand img { width: 240px; }
  .footer-social { margin-top: 28px; }
  .footer-bottom { font-size: .84rem; line-height: 1.4; padding-left: 12px; padding-right: 12px; }
  .floating-whatsapp { right: 16px; bottom: 16px; width: 58px; height: 58px; }
  .floating-whatsapp img { width: 58px; height: 58px; }
}

@media (max-width: 560px) {
  .brand img { width: 134px; }
  .consultoria-hero__grid { padding-top: 34px; padding-bottom: 66px; }
  .consultoria-title { font-size: clamp(1.56rem, 6.4vw, 2.12rem); }
  .consultoria-lead { font-size: .9rem; }
  .method-step { grid-template-columns: 54px 1fr; gap: 14px; }
  .method-step > span { width: 54px; height: 54px; border-radius: 16px; box-shadow: 0 0 0 7px rgba(4,29,43,.86); }
  .method-timeline::before { left: 27px; }
  .method-step > div { padding: 20px; }
  .contact-form { padding: 22px; }
  .quote-card p { font-size: 2.2rem; }
}


/* =========================================================
   AJUSTES V3 — CONSULTORIA DE EXPANSÃO
========================================================= */

.gold em,
.gold {
  color: var(--gold) !important;
}

.consultoria-feature-line {
  display: none !important;
}

.consultoria-hero .hero-actions {
  margin-top: 22px !important;
}

/* Fundos claros: texto azul escuro */
.consultoria-intro,
.pillars-section,
.deliverables-section,
.contact-section,
.consultoria-intro p,
.pillars-section p,
.deliverables-section p,
.contact-section p,
.consultoria-intro .section-title,
.pillars-section .section-title,
.deliverables-section .section-title,
.contact-section .section-title,
.pillar-node h3,
.tab-copy h3,
.feature-list li {
  color: #083a5d !important;
}

.consultoria-intro .section-lead,
.pillars-section .section-lead,
.deliverables-section .section-lead,
.contact-section .section-lead,
.intro-copy p,
.pillar-node p,
.tab-copy p {
  color: #123a58 !important;
}

/* Fundos azuis: texto branco */
.maturity-section,
.method-section,
.proof-section,
.quote-section,
.maturity-section .section-title,
.method-section .section-title,
.proof-section .section-title,
.quote-section .section-title,
.maturity-section h3,
.method-section h3,
.proof-section h3,
.quote-section h3,
.maturity-section p,
.method-section p,
.proof-section p,
.quote-section p {
  color: #ffffff !important;
}

.deliverables-head,
.proof-head {
  max-width: 980px;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.deliverables-head .section-lead,
.proof-head .section-lead {
  max-width: 880px;
  margin: 18px auto 0 !important;
}

.proof-section {
  background:
    radial-gradient(circle at 82% 12%, rgba(205,165,94,.42), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(205,165,94,.18), transparent 24%),
    linear-gradient(135deg, #083a5d 0%, #0d5f95 54%, #0a3f63 100%) !important;
  overflow: hidden;
}

.proof-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 86%);
}

.proof-section .container {
  position: relative;
  z-index: 1;
}

.proof-section .section-lead {
  color: rgba(255,255,255,.88) !important;
}

.proof-metrics {
  max-width: 1060px;
  margin: 32px auto 0 !important;
}

.proof-metrics article {
  background: rgba(255,255,255,.08) !important;
  border-color: rgba(255,255,255,.24) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  backdrop-filter: blur(8px);
}

.proof-metrics strong,
.proof-metrics span {
  color: #ffffff !important;
}

.proof-metrics strong {
  text-shadow: 0 0 24px rgba(205,165,94,.22);
}

.quote-section {
  background: linear-gradient(180deg, #052b46 0%, #041d2b 100%) !important;
}

.quote-card span {
  color: rgba(255,255,255,.86) !important;
}


/* ===== FORMULÁRIO COPIADO DA HOME ===== */
.contact-form-side {
  min-width: 0;
  max-width: none;
  padding-left: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.contact-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-grid-phone {
  grid-template-columns: 150px 96px minmax(0, 1fr);
  gap: 14px;
}

.contact-field {
  position: relative;
}

.contact-label {
  position: absolute;
  top: -12px;
  left: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 12px;
  border-radius: 4px;
  background: #0a3f63;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.contact-label-static {
  background: #0a3f63;
}

.contact-label.is-error {
  background: #d73a30;
  color: #fff;
}

.contact-input {
  width: 100%;
  height: 48px;
  border: 1.5px solid rgba(55, 55, 55, 0.55);
  border-radius: 2px;
  background: #ffffff;
  color: #202020;
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.contact-input:focus {
  border-color: #083a5d;
}

.contact-input-disabled {
  background: #ffffff;
  color: #202020;
}

.contact-select {
  background-image:
    linear-gradient(45deg, transparent 50%, #083a5d 50%),
    linear-gradient(135deg, #083a5d 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

.contact-textarea {
  height: 122px;
  min-height: 122px;
  resize: none;
  padding-top: 14px;
}

.contact-disclaimer {
  margin: 2px 0 0;
  max-width: 760px;
  color: #3e3e3e;
  font-size: 12.5px;
  line-height: 1.45;
}

.contact-actions {
  display: flex;
  justify-content: flex-start;
  padding-top: 4px;
}

.contact-submit {
  min-width: 180px;
  height: 52px;
  border: 1px solid #083a5d;
  border-radius: 4px;
  background: #083a5d;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.contact-submit:hover {
  transform: translateY(-1px);
  background: #062d48;
}
/* =========================================================
   AJUSTES V268 — VOLTA TAMANHO ANTERIOR + TEXTOS MAIORES
========================================================= */

.mentors-band {
  background:
    radial-gradient(circle at 16% 20%, rgba(209, 162, 69, 0.10), transparent 24%),
    radial-gradient(circle at 84% 82%, rgba(209, 162, 69, 0.14), transparent 20%),
    linear-gradient(135deg, #0d2740 0%, #0d2740 54%, #13334d 78%, #d1a245 145%) !important;
}

.contact-section {
  padding: 56px 0 150px !important;
}

.contact-section .container {
  width: min(1360px, calc(100vw - 34px)) !important;
}

.contact-shell {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(250px, 0.76fr) minmax(520px, 1.24fr) !important;
  column-gap: 28px !important;
  align-items: stretch !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 22px !important;
  border: 1px solid rgba(8, 53, 86, 0.18) !important;
  background: linear-gradient(90deg, #0d2740 0%, #0d2740 42%, #ffffff 42%, #ffffff 100%) !important;
  box-shadow:
  0 0 0 1px rgba(8, 53, 86, 0.24),
  0 0 60px rgba(2, 18, 31, 0.34),
  0 0 120px rgba(2, 18, 31, 0.20) !important;
}

.contact-copy-side {
  min-width: 0 !important;
  padding: 30px 24px 26px 34px !important;
  background:
    radial-gradient(circle at 18% 16%, rgba(209, 162, 69, 0.10), transparent 28%),
    linear-gradient(180deg, #0d2740 0%, #083a5d 100%) !important;
  display: flex !important;
  align-items: center !important;
  min-height: 100% !important;
}

.contact-copy-inner {
  max-width: 360px !important;
}

.contact-title-display {
  margin: 0 0 12px !important;
  color: #ffffff !important;
  font-size: clamp(2.9rem, 4.1vw, 4.4rem) !important;
  line-height: 0.92 !important;
}

.contact-subtitle {
  margin: 0 0 12px !important;
  color: #d1a245 !important;
  font-size: clamp(1.04rem, 1.24vw, 1.24rem) !important;
  line-height: 1.16 !important;
}

.contact-copy-text {
  max-width: 350px !important;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 0.94rem !important;
  line-height: 1.52 !important;
}

.contact-form-side {
  min-width: 0 !important;
  padding: 18px 18px 18px 0 !important;
  background: transparent !important;
}

.contact-form {
  gap: 0 !important;
}

.contact-grid {
  gap: 8px !important;
  margin-bottom: 9px !important;
}

.contact-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.contact-grid-phone {
  grid-template-columns: 118px 74px minmax(0, 1fr) !important;
  gap: 8px !important;
}

.contact-field {
  min-width: 0 !important;
}

.contact-label {
  position: static !important;
  display: block !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 0 5px !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #415262 !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  line-height: 1.22 !important;
  white-space: normal !important;
}

.contact-label-static {
  background: transparent !important;
}

.contact-label.is-error {
  background: transparent !important;
  color: #d73a30 !important;
}

.contact-input,
.contact-select {
  width: 100% !important;
  height: 36px !important;
  min-height: 36px !important;
  padding: 6px 10px !important;
  border: 1px solid rgba(8, 53, 86, 0.18) !important;
  border-radius: 10px !important;
  background: #f7f9fb !important;
  color: #0d2740 !important;
  font-size: 13.5px !important;
  line-height: 1.2 !important;
}

.contact-textarea {
  width: 100% !important;
  height: 64px !important;
  min-height: 64px !important;
  padding: 10px !important;
  border: 1px solid rgba(8, 53, 86, 0.18) !important;
  border-radius: 10px !important;
  background: #f7f9fb !important;
  color: #0d2740 !important;
  font-size: 13.5px !important;
  line-height: 1.35 !important;
  resize: none !important;
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
  border-color: #d1a245 !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(209, 162, 69, 0.12) !important;
}

.contact-select {
  padding-right: 30px !important;
  background-position:
    calc(100% - 16px) calc(50% - 3px),
    calc(100% - 11px) calc(50% - 3px) !important;
  background-size: 5px 5px, 5px 5px !important;
}

.contact-input-disabled {
  background: #eef3f7 !important;
  color: #4a5a6a !important;
}

.contact-disclaimer {
  margin: 4px 0 0 !important;
  max-width: none !important;
  color: #3f5060 !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

.contact-disclaimer a {
  color: #083a5d !important;
  text-decoration: underline !important;
}

.contact-actions {
  padding-top: 18px !important;
}

.contact-submit {
  min-width: 140px !important;
  height: 40px !important;
  padding: 0 18px !important;
  border-radius: 12px !important;
  background: #d1a245 !important;
  border: 0 !important;
  color: #102033 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

.contact-submit:hover {
  background: #dfb45e !important;
}

.case-logo-item {
  min-height: 132px !important;
}

.case-logo-item img {
  max-height: 86px !important;
  max-width: 92% !important;
  width: auto !important;
}

@media (max-width: 1100px) {
  .contact-shell {
    grid-template-columns: 1fr !important;
    row-gap: 14px !important;
    background: #ffffff !important;
  }

  .contact-copy-side {
    padding: 24px 20px 10px !important;
    border-bottom: 1px solid rgba(8, 53, 86, 0.08) !important;
  }

  .contact-copy-inner {
    max-width: 760px !important;
  }

  .contact-title-display {
    font-size: clamp(2.8rem, 7vw, 4rem) !important;
  }

  .contact-subtitle {
    font-size: clamp(1rem, 2.6vw, 1.24rem) !important;
  }

  .contact-copy-text {
    max-width: 760px !important;
    font-size: 1rem !important;
  }

  .contact-form-side {
    padding: 10px 18px 18px !important;
  }

  .case-logo-item {
    min-height: 112px !important;
  }

  .case-logo-item img {
    max-height: 70px !important;
  }
}

@media (max-width: 820px) {
  .contact-section {
    padding: 20px 0 30px !important;
  }

  .contact-shell {
    grid-template-columns: 1fr !important;
    row-gap: 14px !important;
    background: #ffffff !important;
  }

  .contact-copy-side {
    padding: 24px 16px 8px !important;
  }

  .contact-title-display {
    font-size: clamp(2.6rem, 12vw, 4rem) !important;
    margin-bottom: 12px !important;
  }

  .contact-subtitle {
    font-size: clamp(1rem, 5.4vw, 1.24rem) !important;
    margin-bottom: 10px !important;
  }

  .contact-copy-text {
    font-size: 0.96rem !important;
    line-height: 1.48 !important;
  }

  .contact-form-side {
    padding: 8px 16px 16px !important;
  }

  .contact-grid-2,
  .contact-grid-phone {
    grid-template-columns: 1fr !important;
  }

  .contact-label {
    font-size: 13px !important;
  }

  .contact-input,
  .contact-select {
    height: 40px !important;
    min-height: 40px !important;
    font-size: 13px !important;
  }

  .contact-textarea {
    height: 100px !important;
    min-height: 100px !important;
    font-size: 13px !important;
  }

  .contact-disclaimer {
    font-size: 11.5px !important;
    line-height: 1.42 !important;
  }

  .contact-submit {
    width: 100% !important;
    min-width: 0 !important;
    height: 44px !important;
  }

  .case-logo-item {
    min-height: 92px !important;
  }

  .case-logo-item img {
    max-height: 58px !important;
    max-width: 94% !important;
  }
}

@media (max-width: 560px) {
  .case-logo-item img {
    max-height: 52px !important;
  }
}


/* =========================================================
   AJUSTE V269 — SEPARAÇÃO VISUAL DO FORMULÁRIO
========================================================= */

.contact-shell {
  background: #ffffff !important;
  border-right-color: transparent !important;
}

.contact-copy-side {
  background:
    radial-gradient(circle at 18% 16%, rgba(209, 162, 69, 0.10), transparent 28%),
    linear-gradient(180deg, #0d2740 0%, #083a5d 100%) !important;
  border-right: 28px solid #ffffff !important;
}

.contact-form-side {
  background: #ffffff !important;
  padding-left: 18px !important;
}


/* =========================================================
   AJUSTE V270 — AUMENTAR APENAS TEXTOS DA ÁREA AZUL
========================================================= */

.contact-title-display {
  font-size: clamp(3.45rem, 4.6vw, 4.8rem) !important;
  line-height: 0.94 !important;
  margin-bottom: 16px !important;
}

.contact-subtitle {
  font-size: 1.46rem !important;
  line-height: 1.24 !important;
  margin-bottom: 18px !important;
}

.contact-copy-text {
  font-size: 1.28rem !important;
  line-height: 1.58 !important;
  max-width: 560px !important;
}

@media (max-width: 1100px) {
  .contact-title-display {
    font-size: clamp(3.5rem, 8.6vw, 5.5rem) !important;
  }

  .contact-subtitle {
    font-size: clamp(1.45rem, 3.8vw, 2rem) !important;
  }

  .contact-copy-text {
    font-size: 1.16rem !important;
  }
}

@media (max-width: 820px) {
  .contact-title-display {
    font-size: clamp(3.15rem, 13.5vw, 5.1rem) !important;
  }

  .contact-subtitle {
    font-size: clamp(1.28rem, 6.2vw, 1.82rem) !important;
    line-height: 1.2 !important;
  }

  .contact-copy-text {
    font-size: 1.06rem !important;
    line-height: 1.56 !important;
  }
}





/* Correções de compatibilidade do formulário da home dentro da página Consultoria */
.contact-shell .contact-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  background: transparent !important;
  color: #0d2740 !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.contact-shell .contact-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
}

.contact-shell .contact-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.contact-shell .contact-grid-phone {
  grid-template-columns: 118px 74px minmax(0, 1fr) !important;
}

.contact-shell .contact-form label {
  display: block !important;
  margin: 0 0 5px !important;
}

.contact-shell .contact-form input,
.contact-shell .contact-form select,
.contact-shell .contact-form textarea {
  color: #0d2740 !important;
}

.contact-disclaimer a:hover {
  color: var(--gold) !important;
}

.contact-copy-side p,
.contact-copy-side .contact-copy-text {
  color: rgba(255,255,255,.92) !important;
}

@media (max-width: 820px) {
  .contact-shell .contact-grid-2,
  .contact-shell .contact-grid-phone {
    grid-template-columns: 1fr !important;
  }
}

/* =========================================================
   AJUSTES V6 — CONSULTORIA DE EXPANSÃO
   Alterações restritas à página Consultoria
========================================================= */

/* Banner: manter o botão secundário com texto dourado */
.consultoria-hero .btn-secondary,
.consultoria-hero .btn-secondary:visited {
  color: var(--gold) !important;
  border-color: var(--gold) !important;
}

.consultoria-hero .btn-secondary:hover {
  color: var(--gold) !important;
  border-color: var(--gold) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

/* Linhas de fundo claro com texto azul escuro */
.consultoria-intro,
.pillars-section,
.deliverables-section,
.proof-section {
  background: #ffffff !important;
}

.consultoria-intro .section-kicker,
.pillars-section .section-kicker,
.deliverables-section .section-kicker,
.proof-section .section-kicker,
.consultoria-intro .section-title,
.pillars-section .section-title,
.deliverables-section .section-title,
.proof-section .section-title,
.consultoria-intro .intro-copy p,
.pillars-section .section-lead,
.deliverables-section .section-lead,
.proof-section .section-lead,
.proof-section p,
.proof-metrics strong,
.proof-metrics span {
  color: #083a5d !important;
}

.consultoria-intro .section-title .gold,
.consultoria-intro .section-title .gold em,
.pillars-section .section-title .gold,
.pillars-section .section-title .gold em,
.deliverables-section .section-title .gold,
.deliverables-section .section-title .gold em,
.proof-section .section-title .gold,
.proof-section .section-title .gold em {
  color: var(--gold) !important;
}

/* Linha COMO TRABALHAMOS em branco */
.method-section .section-kicker {
  color: #ffffff !important;
}

/* PROVA DE MÉTODO volta para leitura clara em fundo branco */
.proof-section::before {
  content: none !important;
}

.proof-section .container {
  position: relative;
  z-index: 1;
}

.proof-metrics article {
  background: #ffffff !important;
  border-color: rgba(8, 53, 86, 0.32) !important;
  box-shadow: 0 18px 52px rgba(10, 63, 99, 0.08) !important;
  backdrop-filter: none !important;
}

.proof-metrics strong {
  text-shadow: none !important;
}

/* Remoção das linhas douradas da frase final */
.quote-card {
  border-top: 0 !important;
  border-bottom: 0 !important;
}

/* Animação fluida nos blocos abaixo de PARA EMPRESAS EM CRESCIMENTO */
.maturity-grid {
  perspective: 1200px;
}

.maturity-card {
  isolation: isolate;
  overflow: hidden;
  will-change: transform, box-shadow, border-color, background;
  transition:
    transform 0.58s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.58s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.58s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.58s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.58s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.maturity-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  opacity: 0;
  transform: scale(0.96) translateY(10px);
  background:
    radial-gradient(circle at 24% 18%, rgba(205, 165, 94, 0.30), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(255, 255, 255, 0.13), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(205, 165, 94, 0.08));
  transition:
    opacity 0.58s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.58s cubic-bezier(0.16, 1, 0.3, 1);
}

.maturity-card:hover {
  transform: translateY(-10px) scale(1.015) !important;
  border-color: rgba(205, 165, 94, 0.62) !important;
  box-shadow: 0 34px 96px rgba(2, 18, 31, 0.30) !important;
  filter: saturate(1.06);
}

.maturity-card:hover::before {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.maturity-card.visible {
  animation: maturityFloatIn 0.92s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.maturity-card:nth-child(2).visible { animation-delay: 0.08s; }
.maturity-card:nth-child(3).visible { animation-delay: 0.16s; }
.maturity-card:nth-child(4).visible { animation-delay: 0.24s; }

@keyframes maturityFloatIn {
  from {
    opacity: 0;
    transform: translate3d(0, 34px, 0) scale(0.975);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .maturity-card,
  .maturity-card::before,
  .maturity-card.visible {
    animation: none !important;
    transition: none !important;
  }
}



/* =========================================================
   AJUSTES V9 — CONSULTORIA DE EXPANSÃO
   Alterações solicitadas: intro centralizada, blocos em linha,
   Quatro Pilares azul royal e ordem das seções no HTML.
========================================================= */

/* PARA EMPRESAS EM CRESCIMENTO — texto centralizado e fundo branco */
.consultoria-intro {
  background: #ffffff !important;
}

.consultoria-intro__grid {
  grid-template-columns: minmax(0, 1fr) !important;
  max-width: 980px !important;
  gap: 22px !important;
  text-align: center !important;
}

.consultoria-intro .intro-title,
.consultoria-intro .intro-copy {
  max-width: 920px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.consultoria-intro .intro-copy {
  border-left: 0 !important;
  padding-left: 0 !important;
}

.consultoria-intro .intro-copy p {
  max-width: 900px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Blocos abaixo de PARA EMPRESAS EM CRESCIMENTO — mesma linha e fundo branco */
.maturity-section {
  background: #ffffff !important;
  color: #083a5d !important;
}

.maturity-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  align-items: stretch !important;
}

.maturity-card {
  background: #ffffff !important;
  border-color: rgba(8, 58, 92, 0.16) !important;
  box-shadow: 0 18px 52px rgba(8, 58, 92, 0.10) !important;
}

.maturity-card:hover {
  box-shadow: 0 28px 74px rgba(8, 58, 92, 0.16) !important;
}

.maturity-section .maturity-card h3 {
  color: #083a5d !important;
}

.maturity-section .maturity-card p {
  color: #123a58 !important;
}

.maturity-section .maturity-number {
  color: var(--gold) !important;
}

/* QUATRO PILARES — fundo azul royal */
.pillars-section {
  background: #083A5C !important;
  color: #ffffff !important;
}

.pillars-section .section-title,
.pillars-section .section-lead {
  color: #ffffff !important;
}

.pillars-section .section-kicker {
  color: var(--gold) !important;
}

.pillars-section .section-title .gold,
.pillars-section .section-title .gold em {
  color: var(--gold) !important;
}

.pillars-section .pillar-system::before {
  border-color: rgba(205, 165, 94, 0.36) !important;
  box-shadow: inset 0 0 0 86px rgba(255, 255, 255, 0.035), 0 30px 90px rgba(2, 18, 31, 0.16) !important;
}

.pillars-section .pillar-system::after {
  border-color: rgba(255, 255, 255, 0.24) !important;
}

@media (max-width: 980px) {
  .maturity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  .maturity-grid {
    grid-template-columns: 1fr !important;
  }
}

/* =========================================================
   AJUSTES V11 — CONSULTORIA DE EXPANSÃO
   Alterações restritas às linhas solicitadas.
========================================================= */

/* PARA EMPRESAS EM CRESCIMENTO — aproxima os blocos do texto */
.consultoria-intro {
  padding-bottom: 30px !important;
}

.maturity-section {
  padding-top: 20px !important;
  background: #ffffff !important;
}

.maturity-section .section-inline-cta {
  margin-top: 30px !important;
}

/* Blocos da linha PARA EMPRESAS EM CRESCIMENTO em azul royal */
.maturity-card {
  background:
    radial-gradient(circle at 18% 12%, rgba(205, 165, 94, 0.16), transparent 28%),
    linear-gradient(145deg, #083A5C 0%, #0A4B73 58%, #052B46 100%) !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
  box-shadow: 0 22px 68px rgba(2, 18, 31, 0.18) !important;
}

.maturity-card:hover {
  border-color: rgba(205, 165, 94, 0.62) !important;
  box-shadow: 0 34px 96px rgba(2, 18, 31, 0.28) !important;
}

.maturity-section .maturity-card h3,
.maturity-section .maturity-card p {
  color: #ffffff !important;
}

.maturity-section .maturity-card p {
  color: rgba(255, 255, 255, 0.84) !important;
}

.maturity-section .maturity-number {
  color: var(--gold) !important;
}

/* QUATRO PILARES */
.pillars-section .section-kicker {
  color: #ffffff !important;
}

.pillars-section .pillar-core strong {
  color: #041d2b !important;
}

.pillars-section .pillar-node {
  background:
    radial-gradient(circle at 15% 10%, rgba(205, 165, 94, 0.22), transparent 32%),
    linear-gradient(145deg, #ffffff 0%, #f8f4ea 54%, #e8d6ad 100%) !important;
  border-color: rgba(205, 165, 94, 0.32) !important;
  box-shadow: 0 24px 68px rgba(2, 18, 31, 0.20) !important;
}

.pillars-section .pillar-node:hover {
  border-color: rgba(205, 165, 94, 0.58) !important;
  box-shadow: 0 34px 86px rgba(2, 18, 31, 0.28) !important;
}

.pillars-section .section-inline-cta {
  margin-top: 4px !important;
}

/* FRENTES DE IMPLANTAÇÃO */
.deliverables-section .tab-button.active,
.deliverables-section .tab-button.active:hover {
  background: linear-gradient(135deg, #b8842f 0%, #cda55e 44%, #ecd18a 100%) !important;
  color: #041d2b !important;
}

.deliverables-section .feature-list li {
  background:
    radial-gradient(circle at 12% 18%, rgba(205, 165, 94, 0.16), transparent 26%),
    linear-gradient(145deg, #083A5C 0%, #0A4B73 100%) !important;
  border-color: rgba(255, 255, 255, 0.10) !important;
  color: #ffffff !important;
}

.deliverables-section .feature-list li::before {
  background: var(--gold) !important;
  box-shadow: 0 0 0 5px rgba(205, 165, 94, 0.20) !important;
}

.deliverables-section .section-inline-cta {
  margin-top: 30px !important;
}

/* CTA das seções solicitadas */
.maturity-section .section-cta-button,
.pillars-section .section-cta-button,
.deliverables-section .section-cta-button,
.method-section .section-cta-button {
  min-width: 278px !important;
}

/* Frase final — destaque apenas em “Crescer bem” e texto inferior maior */
.quote-card p {
  color: #ffffff !important;
}

.quote-card p .gold,
.quote-card p .gold em {
  color: var(--gold) !important;
}

.quote-card > span {
  max-width: 920px !important;
  font-size: 1.18rem !important;
  line-height: 1.78 !important;
}

@media (max-width: 820px) {
  .consultoria-intro {
    padding-bottom: 22px !important;
  }

  .maturity-section {
    padding-top: 14px !important;
  }

  .pillars-section .section-inline-cta {
    margin-top: 26px !important;
  }

  .quote-card > span {
    font-size: 1.04rem !important;
  }
}


/* =========================================================
   AJUSTE V13 — FRASE FINAL EM UMA LINHA
   Alteração restrita à frase “Crescer bem vem antes de crescer rápido.”
========================================================= */

.quote-card p {
  white-space: nowrap !important;
  font-size: clamp(2.15rem, 5.2vw, 3.8rem) !important;
}



/* =========================================================
   AJUSTE V14 — FRASE FINAL REALMENTE EM UMA LINHA
   Alteração restrita à frase “Crescer bem vem antes de crescer rápido.”
========================================================= */

.quote-card p {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  white-space: nowrap !important;
  font-size: clamp(0.95rem, 4vw, 3rem) !important;
  line-height: 1 !important;
  letter-spacing: -0.025em !important;
}

.quote-card p .gold,
.quote-card p .gold em {
  display: inline !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  white-space: nowrap !important;
}

@media (max-width: 820px) {
  .quote-card p {
    white-space: nowrap !important;
    font-size: clamp(0.88rem, 4vw, 2rem) !important;
  }
}


/* =========================================================
   AJUSTES V22 — LINKS E MENU SEM CARREIRAS
   Escopo: manter o menu Sobre Nós com 3 cards, como na Central de Ajuda.
========================================================= */
.mega-menu--about {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  width: min(930px, calc(100vw - 48px)) !important;
}

@media (max-width: 820px) {
  .mega-menu--about {
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }
}


/* =========================================================
   AJUSTE V24 — DEGRADÊ AZUL ESCURO NO BANNER
   Escopo: somente overlay do banner para melhorar leitura do texto.
========================================================= */
.consultoria-hero__overlay {
  background: linear-gradient(
    90deg,
    rgba(4, 29, 43, 0.94) 0%,
    rgba(4, 43, 70, 0.86) 34%,
    rgba(4, 43, 70, 0.48) 64%,
    rgba(4, 43, 70, 0.14) 100%
  ) !important;
}

/* =========================================================
   AJUSTE V26 — FRASE FINAL SEM QUEBRA NO TRECHO DOURADO
   Escopo: somente o texto abaixo da frase “Crescer bem vem antes de crescer rápido.”
========================================================= */
.quote-card > span .gold,
.quote-card > span .gold em {
  display: inline !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  white-space: normal !important;
}

/* =========================================================
   AJUSTES V30 — FAQ IGUAL À HOME
   Escopo: seção de perguntas frequentes da página Consultorias.
   Textos preservados no HTML.
========================================================= */

.help-center-section {
  background: #ffffff;
  padding: 56px 0 36px;
}

.help-center-section .container {
  width: min(1420px, calc(100vw - 48px));
}

.help-center-header {
  margin: 0 auto 26px;
  max-width: 1080px;
  text-align: center;
}

.help-center-title {
  margin: 0 0 14px;
  color: #0a2438;
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.help-center-title .gold {
  color: #cda55e;
}

.help-center-lead {
  margin: 0 auto;
  max-width: 980px;
  color: #355067;
  font-family: var(--font-body);
  font-size: 1.12rem;
  line-height: 1.55;
}

.help-center-panel {
  max-width: 1420px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(8, 53, 86, 0.20);
  border-radius: 16px;
  overflow: hidden;
}

.help-center-content {
  min-width: 0;
}

.faq-group {
  margin: 0;
}

.faq-group + .faq-group {
  border-top: 1px solid rgba(8, 53, 86, 0.16);
}

.faq-group-title {
  display: none;
}

.faq-item {
  margin: 0;
}

.faq-item + .faq-item {
  border-top: 1px solid rgba(8, 53, 86, 0.16);
}

.faq-question {
  width: 100%;
  min-height: 84px;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  color: #0a2438;
  padding: 0 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
}

.faq-question:hover {
  background: #fafbfd;
}

.faq-item.is-open .faq-question {
  background: #ffffff;
  color: #0a2438;
}

.faq-icon {
  flex: 0 0 auto;
  color: #0a2438;
  font-size: 18px;
  line-height: 1;
  transition: transform .28s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 38px;
  transition:
    max-height 0.34s ease,
    opacity 0.22s ease,
    padding-top 0.34s ease,
    padding-bottom 0.34s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 520px;
  opacity: 1;
  padding-top: 0;
  padding-bottom: 26px;
}

.faq-answer p {
  margin: 0;
  max-width: 1280px;
  color: #355067;
  font-family: var(--font-body);
  font-size: 1.04rem;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .help-center-section .container {
    width: calc(100vw - 28px);
  }

  .help-center-title {
    font-size: clamp(2.1rem, 6vw, 3.4rem);
  }

  .help-center-lead {
    font-size: 1rem;
    line-height: 1.5;
  }

  .faq-question {
    min-height: 76px;
    padding: 0 26px;
    font-size: 1rem;
  }

  .faq-answer {
    padding-left: 26px;
    padding-right: 26px;
  }

  .faq-answer p {
    font-size: 0.98rem;
    line-height: 1.62;
  }
}

@media (max-width: 820px) {
  .help-center-section {
    padding: 44px 0 22px;
  }

  .help-center-section .container {
    width: calc(100vw - 18px);
  }

  .help-center-header {
    margin-bottom: 20px;
  }

  .help-center-title {
    font-size: clamp(2rem, 10vw, 3.4rem);
    line-height: 0.98;
  }

  .help-center-lead {
    max-width: 94%;
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .help-center-panel {
    border-radius: 14px;
  }

  .faq-question {
    min-height: 70px;
    padding: 0 18px;
    font-size: 0.98rem;
    line-height: 1.28;
  }

  .faq-icon {
    font-size: 16px;
  }

  .faq-answer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .faq-item.is-open .faq-answer {
    padding-bottom: 20px;
  }

  .faq-answer p {
    font-size: 0.96rem;
    line-height: 1.54;
  }
}

/* =========================================================
   AJUSTES V31 — BANNER E FAQ
   Escopo: somente banner principal e título do FAQ.
========================================================= */

/* Banner: degradê mais forte para aumentar a leitura do texto */
.consultoria-hero__overlay {
  background: linear-gradient(
    90deg,
    rgba(4, 29, 43, 0.99) 0%,
    rgba(4, 29, 43, 0.96) 28%,
    rgba(4, 43, 70, 0.82) 58%,
    rgba(4, 43, 70, 0.32) 100%
  ) !important;
}

/* Banner: desloca o bloco inteiro de texto um pouco mais para a esquerda */
@media (min-width: 821px) {
  .consultoria-hero__content {
    padding-left: 0 !important;
  }
}

@media (min-width: 1181px) {
  .consultoria-hero__content {
    margin-left: -52px !important;
  }
}

/* FAQ: deixa “Perguntas Frequentes” sem negrito */
.help-center-title,
.help-center-title em {
  font-weight: 400 !important;
}

/* =========================================================
   AJUSTES V32 — CONSULTORIA DE EXPANSÃO MOBILE
   Escopo: somente ajustes solicitados no banner, frase final e formulário mobile.
========================================================= */

@media (max-width: 1100px) {
  .contact-copy-side {
    border-right: 0 !important;
  }
}

@media (max-width: 820px) {
  /* Banner mobile: degradê de baixo para cima */
  .consultoria-hero__overlay {
    background: linear-gradient(
      to top,
      rgba(4, 29, 43, 0.96) 0%,
      rgba(4, 29, 43, 0.86) 34%,
      rgba(4, 43, 70, 0.56) 68%,
      rgba(4, 43, 70, 0.16) 100%
    ) !important;
  }

  /* Banner mobile: mais respiro entre textos e botões */
  .consultoria-hero__grid {
    padding-top: 44px !important;
    padding-bottom: 82px !important;
  }

  .consultoria-kicker {
    margin-bottom: 18px !important;
  }

  .consultoria-title {
    margin-bottom: 22px !important;
  }

  .consultoria-lead {
    margin-bottom: 0 !important;
  }

  .consultoria-hero .hero-actions {
    margin-top: 30px !important;
    gap: 16px !important;
  }

  /* Frase final mobile maior, sem estourar a largura da tela */
  .quote-card p {
    max-width: 94vw !important;
    margin-left: auto !important;
    margin-right: auto !important;
    white-space: normal !important;
    font-size: clamp(1.45rem, 8vw, 2.55rem) !important;
    line-height: 1.06 !important;
    letter-spacing: -0.035em !important;
  }

  /* Formulário mobile: remove a faixa branca que invadia a área azul */
  .contact-copy-side {
    border-right: 0 !important;
  }
}

/* =========================================================
   AJUSTES V33 — TIPOGRAFIA DO FORMULÁRIO
   Escopo: somente título e subtítulo da área azul do formulário.
========================================================= */

.contact-title-display {
  font-family: var(--font-title) !important;
}

.contact-subtitle {
  font-family: var(--font-title) !important;
  font-style: italic !important;
}
