/* ═══════════════════════════════════════════════════════════════════
   Rácios & Análises – style.css
   Folha de estilos global. Todos os componentes do site.
═══════════════════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Sora', sans-serif; background: #F5F2F0; color: #132B49; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; }
ul { list-style: none; }
button { cursor: pointer; }

/* ── CSS Variables ────────────────────────────────────────────────── */
:root {
  --navy:       #132B49;
  --navy-dark:  #0A2544;
  --green:      #052E26;
  --gold:       #A77721;
  --bg:         #F5F2F0;
  --white:      #fff;
  --btn-green:  rgba(189, 225, 98, 0.30);
}

/* ═══════════════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 100px; background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.20);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 86px;
  transition: background .3s;
}
.navbar--transparent {
  position: absolute;
  background: transparent;
  border-bottom-color: rgba(255,255,255,0.30);
}
.navbar__logo img { height: 72px; object-fit: contain; }
.navbar__nav {
  display: flex; align-items: center; gap: 28px;
}
.navbar__nav a, .navbar__nav span {
  font-family: 'Montserrat', sans-serif; font-weight: 500;
  font-size: 16px; color: #fff; letter-spacing: -0.16px; cursor: pointer;
}
.navbar__nav .bold  { font-weight: 700; }
.navbar__nav .semi  { font-family: 'Sora', sans-serif; font-weight: 600; }
.navbar__nav .nav-active { opacity: 1; border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
.nav-dd { display: flex; align-items: center; gap: 4px; }
.nav-dd svg { width: 16px; height: 16px; stroke: #fff; fill: none; }

/* Hambúrguer (oculto em desktop) */
.navbar__toggle {
  display: none; background: none; border: none; padding: 8px;
}

/* ═══════════════════════════════════════════════════════════════════
   PAGE HERO (páginas internas)
═══════════════════════════════════════════════════════════════════ */
.page-hero {
  margin-top: 100px;
  position: relative; height: 406px;
  background: url('https://www.figma.com/api/mcp/asset/c0c15369-867e-45e6-a56c-8df818428777') center/cover no-repeat;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(10,37,68,0.75); z-index: 1;
}
.page-hero--tall { height: 576px; }
.page-hero__content { position: relative; z-index: 2; }
.page-hero__title {
  font-size: 64px; font-weight: 600; line-height: 76px;
  letter-spacing: -1.92px; color: #fff; margin-bottom: 16px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  font-size: 16px; color: rgba(255,255,255,0.70); flex-wrap: wrap;
}
.breadcrumb a  { color: rgba(255,255,255,0.70); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 14px; height: 14px; stroke: currentColor; fill: none; flex-shrink: 0; }
.breadcrumb .active { color: #fff; }

/* ═══════════════════════════════════════════════════════════════════
   UTILITÁRIOS PARTILHADOS
═══════════════════════════════════════════════════════════════════ */
.tag {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--btn-green); border-radius: 6px; padding: 6px 24px;
  font-size: 16px; font-weight: 500; color: var(--green); letter-spacing: -0.16px;
}
.section-label {
  font-size: 13px; font-weight: 700; letter-spacing: 2px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 16px;
}
.btn-gold {
  display: flex; align-items: center; justify-content: center;
  background: var(--gold); color: #fff;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 16px;
  padding: 14px 32px; border-radius: 6px; border: none;
  transition: opacity .2s; width: 100%;
}
.btn-gold:hover { opacity: .88; }
.btn-cta {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold); color: #fff;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 16px;
  padding: 18px 36px; border-radius: 6px; white-space: nowrap;
  border: none; transition: opacity .2s;
}
.btn-cta:hover { opacity: .88; }

/* ═══════════════════════════════════════════════════════════════════
   CTA BANNER (partilhado)
═══════════════════════════════════════════════════════════════════ */
.cta-banner {
  background: var(--navy-dark); padding: 60px 152px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-banner h2 {
  font-size: 48px; font-weight: 600; line-height: 58px;
  letter-spacing: -1.5px; color: #fff; max-width: 560px;
}
.cta-banner p {
  font-size: 16px; line-height: 28px; color: rgba(255,255,255,0.75);
  max-width: 520px; margin-top: 12px;
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════ */
.footer { background: var(--navy); position: relative; overflow: hidden; }
.footer::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 538px; height: 567px;
  background: url('https://www.figma.com/api/mcp/asset/639c7e44-7a15-40c5-afdd-194cbaaa5245') center/cover no-repeat;
  opacity: .12;
}
.footer__inner {
  max-width: 1296px; margin: 0 auto; padding: 80px 152px 40px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; align-items: start; position: relative; z-index: 1;
}
.footer__logo img { height: 90px; object-fit: contain; }
.footer__col-title {
  font-size: 20px; font-weight: 600; color: #fff;
  line-height: 30px; letter-spacing: -0.4px; margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 16px; color: #F5F2F0; line-height: 30px; }
.footer__links a:hover { opacity: .75; }
.footer__bottom {
  max-width: 1296px; margin: 0 auto; padding: 0 152px 40px;
  position: relative; z-index: 1;
}
.footer__social { display: flex; gap: 8px; margin-bottom: 16px; }
.sb2 {
  width: 44px; height: 44px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.sb2--w { background: #fff; }
.sb2--l { background: #F5F2F0; }
.sb2 svg { width: 20px; height: 20px; }
.footer__hr { border: none; border-top: 1px solid rgba(255,255,255,0.30); margin: 8px 0 16px; }
.footer__copy { font-size: 14px; color: #F5F2F0; line-height: 28px; text-align: center; }

/* ═══════════════════════════════════════════════════════════════════
   PÁGINA DE SERVIÇO (layout com sidebar)
═══════════════════════════════════════════════════════════════════ */
.sp-layout {
  max-width: 1296px; margin: 0 auto; padding: 80px 152px;
  display: grid; grid-template-columns: 1fr 412px; gap: 60px; align-items: start;
}
.sp-img { width: 100%; border-radius: 16px; overflow: hidden; height: 540px; }
.sp-img img { width: 100%; height: 100%; object-fit: cover; }
.sp-h2 {
  font-size: 28px; font-weight: 600; color: var(--navy);
  line-height: 38px; letter-spacing: -0.56px; margin: 36px 0 16px;
}
.sp-body {
  font-size: 16px; line-height: 28px; color: var(--navy);
  text-align: justify; margin-bottom: 16px;
}
.sp-list { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.sp-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 16px; line-height: 28px; color: var(--navy);
}
.sp-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sb-box { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 24px rgba(19,43,73,0.08); }
.sb-box__title { font-size: 20px; font-weight: 600; color: var(--navy); padding: 28px 30px 16px; }
.sb-links { display: flex; flex-direction: column; }
.sb-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 30px; border-top: 1px solid rgba(19,43,73,0.10);
  font-size: 16px; color: var(--navy); transition: background .15s;
}
.sb-link:hover { background: #F5F2F0; }
.sb-link.active { background: var(--navy-dark); color: #fff; font-weight: 600; }
.sb-link svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }
.sb-cta { background: var(--navy-dark); border-radius: 16px; padding: 36px 30px; text-align: center; }
.sb-cta__icon {
  width: 80px; height: 80px; margin: 0 auto 20px;
  background: rgba(255,255,255,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.sb-cta__icon svg { width: 40px; height: 40px; }
.sb-cta__txt { font-size: 22px; font-weight: 600; color: #fff; line-height: 32px; margin-bottom: 24px; }

/* ═══════════════════════════════════════════════════════════════════
   INDEX – HERO
═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative; height: 950px; overflow: hidden;
  background: url('https://www.figma.com/api/mcp/asset/c0c15369-867e-45e6-a56c-8df818428777') center/cover no-repeat;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: url('https://www.figma.com/api/mcp/asset/696aed1f-2755-4bf8-8fdf-e4873bddcad9') center/cover no-repeat;
}
.hero__content { position: relative; z-index: 2; padding: 220px 152px 0; }
.hero__title {
  font-size: 90px; font-weight: 600; line-height: 104px;
  letter-spacing: -2.7px; color: #fff; max-width: 746px; margin-bottom: 32px;
}
.hero__sub {
  font-size: 18px; font-weight: 400; line-height: 32px;
  color: #F5F2F0; max-width: 734px; text-align: justify;
}

/* ── INDEX – Features ─────────────────────────────────────────────── */
.features { background: #fff; padding: 40px 0; border-bottom: 1px solid rgba(19,43,73,0.30); }
.features__inner {
  max-width: 1296px; margin: 0 auto; padding: 0 152px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px;
}
.feature { display: flex; align-items: center; gap: 24px; }
.feature__icon {
  width: 90px; height: 90px; flex-shrink: 0;
  background: rgba(167,119,33,0.27); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.feature__icon img { width: 48px; height: 48px; object-fit: contain; }
.feature__label { font-size: 20px; font-weight: 600; line-height: 30px; color: var(--navy-dark); letter-spacing: -0.4px; }

/* ── INDEX – Clients Ticker ────────────────────────────────────────── */
.clients { background: #fff; padding: 32px 0 48px; overflow: hidden; }
.clients__title {
  text-align: center; font-size: 20px; font-weight: 600;
  color: var(--green); letter-spacing: -0.4px; margin-bottom: 28px;
}
.clients__track {
  display: flex; align-items: center; gap: 48px;
  animation: ticker 30s linear infinite; width: max-content;
}
.clients__track img { height: 54px; object-fit: contain; flex-shrink: 0; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── INDEX – About ────────────────────────────────────────────────── */
.about { background: #fff; padding: 100px 0; }
.about__inner {
  max-width: 1296px; margin: 0 auto; padding: 0 152px;
  display: flex; align-items: stretch; gap: 80px;
}
.about__imgs { position: relative; flex-shrink: 0; width: 480px; min-height: 580px; }
.img-back {
  position: absolute; top: 0; left: 0; width: 306px; height: 450px;
  border-radius: 100px 20px 20px 20px; overflow: hidden; background: var(--navy-dark);
}
.img-back img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.img-front {
  position: absolute; top: 77px; left: 170px; width: 306px; height: 508px;
  border-radius: 20px 20px 100px 20px; overflow: hidden; background: var(--navy-dark);
}
.img-front img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.about__badge {
  position: absolute; bottom: 0; left: 0; width: 306px;
  background: var(--navy-dark); border-radius: 20px; padding: 20px 30px;
  display: flex; align-items: center; gap: 14px; z-index: 5;
}
.badge-num { font-size: 64px; font-weight: 600; color: #F5F2F0; line-height: 64px; letter-spacing: -1.92px; }
.badge-txt { font-size: 20px; font-weight: 600; color: #F5F2F0; line-height: 30px; }
.about__content { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.about__lead {
  font-family: 'Montserrat', sans-serif; font-weight: 500;
  font-size: 18px; line-height: 32px; color: var(--navy); text-align: justify; margin-bottom: 16px;
}
.about__body { font-size: 18px; font-weight: 400; line-height: 32px; color: var(--navy); text-align: justify; margin-bottom: 36px; }
.checks { display: flex; flex-direction: column; gap: 12px; }
.check { display: flex; align-items: center; gap: 12px; font-size: 18px; font-weight: 600; color: var(--navy); line-height: 32px; }
.check-ic {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.check-ic svg { width: 14px; height: 14px; fill: none; stroke: #fff; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ── INDEX – Services ─────────────────────────────────────────────── */
.services { background: var(--bg); padding: 100px 0; }
.services__hd { max-width: 1296px; margin: 0 auto; padding: 0 152px 40px; }
.services__lead { font-size: 18px; line-height: 32px; color: var(--navy); text-align: justify; max-width: 1100px; margin-top: 20px; }
.services__grid {
  max-width: 1296px; margin: 0 auto; padding: 0 152px;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 30px;
}
.svc-card {
  position: relative; border-radius: 16px; overflow: hidden; min-height: 348px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 30px 28px 36px;
  background: url('https://www.figma.com/api/mcp/asset/225c847a-135e-4985-b78b-8e39933a6918') center/cover no-repeat;
  transition: transform .2s;
}
.svc-card:hover { transform: translateY(-4px); }
.svc-card__ic {
  position: absolute; top: 30px; left: 28px; width: 70px; height: 70px;
  background: #F5F2F0; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.svc-card__ic img { width: 36px; height: 36px; object-fit: contain; }
.svc-card__name { font-size: 24px; font-weight: 600; line-height: 34px; letter-spacing: -0.48px; color: var(--green); margin-bottom: 10px; }
.svc-card__desc { font-size: 12px; line-height: 17px; color: var(--navy); }

/* ── INDEX – Testimonials ─────────────────────────────────────────── */
.testi {
  background: url('https://www.figma.com/api/mcp/asset/f6b71c89-643e-4c2b-8ae0-7b40e6f0bdad') center/cover no-repeat;
  position: relative; padding: 80px 0 100px;
}
.testi::before { content: ''; position: absolute; inset: 0; background: rgba(10,37,68,0.82); }
.testi__inner { position: relative; z-index: 2; max-width: 1296px; margin: 0 auto; padding: 0 152px; }
.testi__header { text-align: center; margin-bottom: 48px; }
.testi__title { font-size: 24px; font-weight: 600; line-height: 34px; color: #fff; letter-spacing: -0.48px; margin-top: 16px; }
.testi__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-bottom: 36px; }
.tc { background: #fff; border-radius: 20px; padding: 72px 28px 32px; position: relative; display: flex; flex-direction: column; }
.tc__bar { position: absolute; top: 48px; left: 28px; height: 34px; width: 188px; background: var(--gold); border-radius: 4px; }
.tc__author { font-size: 20px; font-weight: 600; color: #fff; line-height: 30px; margin-bottom: 4px; position: relative; z-index: 1; }
.tc__role { font-size: 14px; color: var(--navy); line-height: 20px; margin-bottom: 20px; }
.tc__text { font-family: 'Montserrat', sans-serif; font-size: 12px; line-height: 17px; color: var(--navy); text-align: center; }
.dots { display: flex; align-items: center; justify-content: center; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.40); }
.dot.active { width: 16px; height: 16px; background: #fff; }

/* ── INDEX – Contact Form ─────────────────────────────────────────── */
.contact { background: var(--bg); padding: 80px 0; }
.contact__inner {
  max-width: 1296px; margin: 0 auto; padding: 0 152px;
  display: grid; grid-template-columns: 1fr 1fr; border-radius: 20px;
  overflow: hidden; box-shadow: 0 8px 48px rgba(19,43,73,0.10);
}
.cf { background: #fff; padding: 80px 60px 60px; }
.cf__title { font-size: 24px; font-weight: 600; color: var(--green); margin-bottom: 8px; letter-spacing: -0.48px; }
.cf__sub { font-size: 16px; color: var(--navy); line-height: 30px; margin-bottom: 40px; }
.cf__row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.cf input, .cf select, .cf textarea {
  width: 100%; border: none; border-bottom: 1px solid rgba(19,43,73,0.30);
  background: transparent; padding: 12px 0; font-family: 'Sora', sans-serif;
  font-size: 16px; color: var(--navy); outline: none; resize: none; line-height: 30px;
  transition: border-color .2s;
}
.cf input:focus, .cf select:focus, .cf textarea:focus { border-bottom-color: var(--gold); }
.cf input::placeholder, .cf textarea::placeholder { color: rgba(19,43,73,0.50); }
.cf__msg textarea { height: 180px; }
.cf__btn {
  width: 100%; margin-top: 32px; padding: 18px 28px; border-radius: 6px;
  background: var(--navy); color: #F5F2F0; font-family: 'Sora', sans-serif;
  font-size: 16px; font-weight: 600; border: none; transition: background .2s;
}
.cf__btn:hover { background: #0d1f36; }
.ci { position: relative; overflow: hidden; min-height: 500px; }
.ci img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ci__ov { position: absolute; inset: 0; background: rgba(10,22,94,0.50); }
.ci__sym { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center; }
.ci__sym img { position: static; width: 70%; height: auto; opacity: 0.70; }

/* ═══════════════════════════════════════════════════════════════════
   SOBRE NÓS
═══════════════════════════════════════════════════════════════════ */
.about-wrap { max-width: 1296px; margin: 0 auto; padding: 80px 152px; }
.about-hero-img { width: 100%; border-radius: 16px; overflow: hidden; height: 700px; margin-bottom: 60px; position: relative; }
.about-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.about-hero-img__logo { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.about-hero-img__logo img { width: 70%; opacity: 0.15; }
.about-text { max-width: 746px; }
.about-text h2 { font-size: 28px; font-weight: 600; color: var(--navy); margin-bottom: 20px; letter-spacing: -0.56px; }
.about-text p { font-size: 18px; line-height: 32px; color: var(--navy); text-align: justify; margin-bottom: 16px; }
.mvv { background: var(--navy-dark); padding: 80px 152px; }
.mvv__tag { display: inline-flex; background: var(--btn-green); border-radius: 6px; padding: 6px 24px; font-size: 16px; font-weight: 500; color: var(--green); margin-bottom: 20px; }
.mvv__lead { font-size: 18px; line-height: 32px; color: rgba(255,255,255,0.75); max-width: 1030px; margin-bottom: 56px; text-align: justify; }
.mvv__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; border-top: 1px solid rgba(255,255,255,0.20); padding-top: 40px; }
.mvv-item__label { font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 8px; letter-spacing: -0.4px; display: flex; flex-direction: column; align-items: center; }
.mvv-item__label::before { content: ''; display: block; width: 2px; height: 88px; background: rgba(255,255,255,0.30); margin-bottom: 12px; }
.mvv-item__text { font-size: 15px; line-height: 24px; color: rgba(255,255,255,0.75); text-align: center; }
.about-contact { max-width: 1296px; margin: 0 auto; padding: 80px 152px; display: grid; grid-template-columns: 1fr 493px; gap: 60px; align-items: start; }
.ac-left h2 { font-size: 28px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.ac-left p { font-size: 16px; line-height: 28px; color: var(--navy); margin-bottom: 12px; text-align: justify; }
.ac-form { background: #fff; border-radius: 16px; padding: 40px 36px; box-shadow: 0 4px 24px rgba(19,43,73,0.08); }
.ac-form h3 { font-size: 22px; font-weight: 600; color: var(--green); margin-bottom: 8px; }
.ac-form__sub { font-size: 14px; color: var(--navy); margin-bottom: 28px; line-height: 22px; }
.ac-form input, .ac-form textarea {
  width: 100%; border: none; border-bottom: 1px solid rgba(19,43,73,0.30);
  background: transparent; padding: 12px 0; font-family: 'Sora', sans-serif;
  font-size: 15px; color: var(--navy); outline: none; resize: none; margin-bottom: 20px; line-height: 26px;
}
.ac-form input::placeholder, .ac-form textarea::placeholder { color: rgba(19,43,73,0.50); }
.ac-form textarea { height: 100px; }
.ac-form__btn { width: 100%; padding: 16px 28px; border-radius: 6px; background: var(--navy); color: #F5F2F0; font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 600; border: none; transition: background .2s; }
.ac-form__btn:hover { background: #0d1f36; }

/* ═══════════════════════════════════════════════════════════════════
   MENSAGEM CEO
═══════════════════════════════════════════════════════════════════ */
.ceo-wrap { max-width: 1296px; margin: 0 auto; padding: 80px 152px; display: grid; grid-template-columns: 480px 1fr; gap: 80px; align-items: start; }
.ceo-img-col { position: relative; }
.ceo-photo { width: 100%; border-radius: 24px; overflow: hidden; height: 620px; }
.ceo-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.ceo-badge {
  position: absolute; bottom: -24px; left: 50%; transform: translateX(-50%);
  background: var(--navy-dark); border-radius: 16px; padding: 24px 36px; text-align: center;
  min-width: 300px; box-shadow: 0 8px 40px rgba(10,37,68,0.25);
}
.ceo-badge__name { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.ceo-badge__role { font-size: 15px; color: rgba(255,255,255,0.70); }
.ceo-content { padding-top: 16px; }
.ceo-content .tag { margin-bottom: 24px; }
.ceo-content h2 { font-size: 36px; font-weight: 700; line-height: 48px; letter-spacing: -0.72px; color: var(--navy); margin-bottom: 32px; }
.ceo-content p { font-family: 'Montserrat', sans-serif; font-size: 17px; line-height: 30px; color: var(--navy); text-align: justify; margin-bottom: 20px; }
.ceo-signature { margin-top: 36px; border-top: 2px solid var(--gold); padding-top: 24px; }
.ceo-signature__name { font-size: 20px; font-weight: 700; color: var(--navy); }
.ceo-signature__title { font-size: 15px; color: var(--gold); font-weight: 500; margin-top: 4px; }
.quote-banner { background: var(--green); padding: 60px 152px; text-align: center; }
.quote-banner blockquote { font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 500; line-height: 38px; color: #fff; font-style: italic; max-width: 900px; margin: 0 auto; }
.quote-banner cite { display: block; margin-top: 20px; font-size: 16px; font-weight: 600; color: rgba(255,255,255,0.70); font-style: normal; }

/* ═══════════════════════════════════════════════════════════════════
   NOSSO TEAM
═══════════════════════════════════════════════════════════════════ */
.team-intro { max-width: 1296px; margin: 0 auto; padding: 60px 152px 0; text-align: center; }
.team-intro p { font-family: 'Montserrat', sans-serif; font-size: 18px; line-height: 32px; color: var(--navy); max-width: 1100px; margin: 0 auto; text-align: justify; }
.team-grid { max-width: 1296px; margin: 0 auto; padding: 60px 152px 80px; }
.team-top { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 30px; }
.team-bottom { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.team-card { border-radius: 16px; overflow: hidden; position: relative; height: 470px; }
.team-card img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-card__overlay { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(10,37,68,0.85); padding: 24px 28px; }
.team-card__name { font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.team-card__role { font-size: 15px; color: rgba(255,255,255,0.75); }

/* ═══════════════════════════════════════════════════════════════════
   CONTACTO
═══════════════════════════════════════════════════════════════════ */
.info-strip { background: var(--navy-dark); padding: 48px 152px; }
.info-strip__inner { max-width: 1296px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.info-item { display: flex; align-items: flex-start; gap: 20px; }
.info-item__ic { width: 56px; height: 56px; flex-shrink: 0; background: rgba(255,255,255,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.info-item__ic svg { width: 28px; height: 28px; stroke: #fff; fill: none; }
.info-item__label { font-size: 14px; color: rgba(255,255,255,0.60); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 1px; }
.info-item__val { font-size: 17px; font-weight: 600; color: #fff; line-height: 26px; }
.contact-wrap { max-width: 1296px; margin: 0 auto; padding: 80px 152px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-wrap .cf { background: #fff; border-radius: 20px; padding: 60px 52px; box-shadow: 0 4px 32px rgba(19,43,73,0.08); }
.contact-wrap .cf__title { font-size: 28px; font-weight: 700; color: var(--green); margin-bottom: 8px; letter-spacing: -0.56px; }
.contact-wrap .cf__sub { font-size: 16px; color: var(--navy); line-height: 28px; margin-bottom: 40px; opacity: .75; }
.contact-wrap .cf__row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 28px; }
.cf__field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.cf__label { font-size: 13px; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: 0.8px; opacity: .60; }
.contact-wrap .cf input, .contact-wrap .cf select, .contact-wrap .cf textarea {
  border-bottom-width: 2px; border-bottom-color: rgba(19,43,73,0.15);
}
.cf select { appearance: none; cursor: pointer; color: rgba(19,43,73,0.50); }
.cf select option:not([value=""]) { color: var(--navy); }
.contact-wrap .cf textarea { height: 140px; line-height: 26px; }
.contact-wrap .cf__btn { margin-top: 8px; border-radius: 8px; font-size: 17px; letter-spacing: -0.17px; }
.contact-side { display: flex; flex-direction: column; gap: 28px; padding-top: 8px; }
.cs-card { background: #fff; border-radius: 16px; padding: 32px 28px; box-shadow: 0 4px 24px rgba(19,43,73,0.07); }
.cs-card__title { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 20px; letter-spacing: -0.4px; }
.cs-row { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.cs-row__ic { width: 40px; height: 40px; flex-shrink: 0; background: rgba(167,119,33,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.cs-row__ic svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; }
.cs-row__text { font-size: 15px; color: var(--navy); line-height: 22px; }
.cs-row__text span { display: block; font-size: 12px; opacity: .55; margin-bottom: 2px; text-transform: uppercase; letter-spacing: .8px; }
.cs-hours { display: flex; flex-direction: column; gap: 10px; }
.cs-hours__row { display: flex; justify-content: space-between; font-size: 15px; color: var(--navy); padding-bottom: 10px; border-bottom: 1px solid rgba(19,43,73,0.08); }
.cs-hours__row:last-child { border: none; padding-bottom: 0; }
.cs-hours__day { font-weight: 600; }
.cs-map { border-radius: 16px; overflow: hidden; height: 280px; position: relative; background: #ddd; }
.cs-map__ov { position: absolute; inset: 0; background: rgba(10,37,68,0.40); display: flex; align-items: center; justify-content: center; }
.cs-map__label { background: #fff; border-radius: 8px; padding: 12px 20px; font-size: 14px; font-weight: 600; color: var(--navy); display: flex; align-items: center; gap: 8px; }
.cs-map__label svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; }

/* ── Mensagem de sucesso/erro do formulário ─────────────────────── */
.form-msg { padding: 14px 20px; border-radius: 8px; margin-bottom: 24px; font-size: 15px; font-weight: 500; }
.form-msg--ok { background: rgba(5,46,38,0.10); color: var(--green); border: 1px solid rgba(5,46,38,0.20); }
.form-msg--err { background: rgba(200,30,30,0.08); color: #b00; border: 1px solid rgba(200,30,30,0.20); }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVO
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .navbar { padding: 0 40px; }
  .hero__title { font-size: 60px; line-height: 72px; }
  .hero__content { padding: 180px 40px 0; }
  .features__inner { padding: 0 40px; }
  .about__inner { flex-direction: column; padding: 0 40px; }
  .about__imgs { width: 100%; min-height: 420px; }
  .services__hd, .services__grid { padding-left: 40px; padding-right: 40px; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .testi__inner { padding: 0 40px; }
  .testi__grid { grid-template-columns: 1fr; }
  .contact__inner { padding: 0 40px; grid-template-columns: 1fr; }
  .cta-banner { padding: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; padding: 40px; }
  .footer__bottom { padding: 0 40px 40px; }
  .page-hero__title { font-size: 42px; line-height: 54px; }
  .sp-layout { grid-template-columns: 1fr; padding: 40px; }
  .about-wrap, .about-contact { padding: 40px; }
  .about-contact { grid-template-columns: 1fr; }
  .mvv { padding: 60px 40px; }
  .mvv__grid { grid-template-columns: 1fr; }
  .ceo-wrap { grid-template-columns: 1fr; padding: 40px; }
  .ceo-badge { position: static; transform: none; margin-top: 20px; width: 100%; }
  .quote-banner, .info-strip { padding-left: 40px; padding-right: 40px; }
  .info-strip__inner { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; padding: 40px; }
  .team-intro, .team-grid { padding-left: 40px; padding-right: 40px; }
  .team-top, .team-bottom { grid-template-columns: 1fr 1fr; }
  .navbar__toggle { display: flex; }
  .navbar__nav {
    display: none; position: absolute; top: 100px; left: 0; right: 0;
    background: var(--navy); flex-direction: column; padding: 20px 40px 28px;
    gap: 16px; border-top: 1px solid rgba(255,255,255,0.15);
  }
  .navbar__nav.open { display: flex; }
}

@media (max-width: 640px) {
  .hero { height: 700px; }
  .hero__title { font-size: 42px; line-height: 52px; }
  .hero__content { padding: 160px 20px 0; }
  .features__inner, .navbar { padding-left: 20px; padding-right: 20px; }
  .about__inner, .services__hd, .services__grid, .testi__inner, .contact__inner { padding-left: 20px; padding-right: 20px; }
  .services__grid { grid-template-columns: 1fr; }
  .cf__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; padding: 32px 20px; }
  .footer__bottom { padding: 0 20px 32px; }
  .cta-banner { flex-direction: column; padding: 32px 20px; }
  .sp-layout, .about-wrap, .about-contact, .mvv, .ceo-wrap { padding-left: 20px; padding-right: 20px; }
  .about-hero-img { height: 300px; }
  .ceo-content h2 { font-size: 26px; }
  .team-intro, .team-grid { padding-left: 20px; padding-right: 20px; }
  .team-top, .team-bottom { grid-template-columns: 1fr; }
  .contact-wrap, .info-strip { padding-left: 20px; padding-right: 20px; }
  .contact-wrap .cf { padding: 32px 24px; }
  .contact-wrap .cf__row { grid-template-columns: 1fr; }
  .quote-banner { padding-left: 20px; padding-right: 20px; }
}
