:root {
  --brown-950: #1b100d;
  --brown-900: #241914;
  --brown-800: #2f211c;
  --brown-700: #4b372e;
  --gold: #d88a00;
  --gold-soft: #ffbd43;
  --off: #f7f4f0;
  --text: #232323;
  --muted: #707070;
  --line: rgba(47, 33, 28, .12);
  --shadow: 0 28px 70px rgba(36, 25, 20, .22)
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

.container {
  width: min(100% - 44px, 1180px);
  margin-inline: auto
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--brown-950);
  display: grid;
  place-items: center;
  transition: .65s ease
}

.site-loader img {
  width: 150px;
  filter: drop-shadow(0 20px 40px rgba(216, 138, 0, .2))
}

.site-loader.hide {
  opacity: 0;
  visibility: hidden
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 92px;
  z-index: 1000;
  transition: .35s ease;
  border-bottom: 1px solid rgba(216, 138, 0, .16)
}

.topbar.scrolled {
  height: 78px;
  background: rgba(36, 25, 20, .82);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 38px rgba(0, 0, 0, .22)
}

.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.brand img {
  width: 220px;
  transition: .3s
}

.topbar.scrolled .brand img {
  width: 150px
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px
}

.main-nav a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  color: rgba(255, 255, 255, .86);
  transition: .25s
}

.main-nav a:hover {
  color: var(--gold-soft)
}

.nav-cta,
.btn-primary {
  color: #fff !important;
  background: linear-gradient(135deg, rgba(216, 138, 0, .80), rgba(190, 116, 0, .80));
  border: 1px solid rgba(255, 189, 67, .52);
  box-shadow: 0 18px 38px rgba(216, 138, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .25)
}

.nav-cta {
  padding: 13px 18px;
  border-radius: 999px
}

.nav-cta:hover,
.btn-primary:hover,
.btn-light:hover {
  background: linear-gradient(135deg, rgba(255, 184, 54, .96), rgba(216, 138, 0, .82));
  transform: translateY(-3px);
  box-shadow: 0 26px 52px rgba(216, 138, 0, .34), 0 0 0 6px rgba(216, 138, 0, .08)
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 42px;
  height: 42px;
  position: relative
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 6px auto;
  transition: .3s
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brown-900);
  padding: 122px 0 82px
}

.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0
}

.hero-slide {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.3s ease, transform 6s ease
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.09)
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 43%, rgba(216, 138, 0, .22), transparent 28%), linear-gradient(90deg, rgba(36, 25, 20, .96) 0%, rgba(47, 33, 28, .84) 48%, rgba(36, 25, 20, .68) 100%), linear-gradient(0deg, rgba(36, 25, 20, .94), transparent 42%)
}

.hero-word {
  position: absolute;
  right: -4vw;
  bottom: 9vh;
  font-size: clamp(78px, 17vw, 240px);
  font-weight: 900;
  letter-spacing: .02em;
  color: rgba(255, 255, 255, .035);
  line-height: .8
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 60%) minmax(290px, 40%);
  align-items: center;
  gap: 42px
}

.hero-copy {
  max-width: 720px
}

.eyebrow,
.mini-title {
  display: inline-flex;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 20px
}

.hero h1 {
  font-size: clamp(45px, 6.3vw, 74px);
  line-height: .95;
  color: #fff;
  font-weight: 700;
  letter-spacing: -.055em;
  max-width: 780px
}

.hero p {
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  line-height: 1.75;
  max-width: 590px;
  margin-top: 28px
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 38px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  transition: .28s ease
}

.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .30);
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(8px)
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .08)
}

.hero-card {
  justify-self: center;
  align-self: center;
  width: min(340px, 100%);
  background: rgba(255, 253, 249, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(16px);
  padding: 36px;
  border-radius: 26px;
  color: #fff;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 4
}

.hero-card span {
  font-size: 78px;
  color: var(--gold);
  font-weight: 800;
  line-height: .85
}

.hero-card strong {
  display: block;
  font-size: 18px;
  margin: 16px 0 8px
}

.hero-card p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  color: rgba(255, 255, 255, .68)
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px
}

.scroll-indicator span {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-soft);
  margin: 9px auto;
  animation: scroll 1.6s infinite
}

@keyframes scroll {
  0% {
    transform: translateY(0);
    opacity: 1
  }

  100% {
    transform: translateY(17px);
    opacity: 0
  }
}

.stats {
  padding: 60px 0;
  background: #fff
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px
}

.stat {
  border-left: 1px solid var(--gold);
  padding-left: 26px
}

.stat strong {
  display: block;
  font-size: clamp(34px, 4.4vw, 58px);
  color: var(--brown-800);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.04em
}

.stat span {
  color: var(--muted);
  font-weight: 600
}

.section-soft {
  background: var(--off)
}

section {
  position: relative
}

.areas,
.method {
  padding: 60px 0
}

.section-head {
  max-width: 100%;
  margin-bottom: 5px
}

.section-head h2,
.about-copy h2,
.cta h2 {
  font-size: clamp(30px, 4.6vw, 30px);
  line-height: 1.03;
  color: var(--brown-800);
  font-weight: 700;
  letter-spacing: -.055em
}

.section-head p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.service-card,
.step {
  background: #fff;
  border: 1px solid rgba(47, 33, 28, .08);
  border-radius: 25px;
  box-shadow: 0 18px 55px rgba(36, 25, 20, .06);
  transition: .35s ease;
  position: relative;
  overflow: hidden
}

.service-card:before,
.step:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(.18);
  transform-origin: left;
  transition: .35s;
  z-index: 2
}

.service-card:hover,
.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 72px rgba(36, 25, 20, .14)
}

.service-card:hover:before,
.step:hover:before {
  transform: scaleX(1)
}

.service-card {
  display: flex;
  flex-direction: column
}

.service-card:after,
.step:after {
  content: "";
  position: absolute;
  inset: auto -20% -45% auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(216, 138, 0, .08);
  transition: .35s;
  pointer-events: none
}

.service-card:hover:after,
.step:hover:after {
  transform: scale(1.25);
  background: rgba(216, 138, 0, .13)
}

.card-photo {
  height: 182px;
  background-size: cover;
  background-position: center;
  filter: saturate(.72);
  position: relative
}

.card-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(47, 33, 28, .05), rgba(47, 33, 28, .70))
}

.card-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.service-card h3,
.step h3 {
  font-size: 23px;
  color: var(--brown-800);
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -.03em
}

.service-card p,
.step p {
  color: var(--muted);
  line-height: 1.75;
  margin-top: 14px;
  font-size: 14.5px
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 23px;
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  position: relative;
  z-index: 3
}

.card-link span {
  transition: .25s
}

.card-link:hover {
  color: var(--brown-800)
}

.card-link:hover span {
  transform: translateX(4px)
}

.about {
  background: var(--brown-900);
  padding: 120px 0;
  color: #fff;
  overflow: hidden
}

.about-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(36, 25, 20, .95), rgba(47, 33, 28, .82) 48%, rgba(216, 138, 0, .33)), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=1900&auto=format&fit=crop') center/cover fixed;
  filter: saturate(.8)
}

.about:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 35%, rgba(216, 138, 0, .22), transparent 32%)
}

.about-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 76px;
  align-items: center
}

.about-media {
  min-height: 510px;
  border-radius: 34px;
  border: 1px solid rgba(216, 138, 0, .28);
  background: linear-gradient(140deg, rgba(255, 255, 255, .08), rgba(216, 138, 0, .16));
  box-shadow: var(--shadow);
  backdrop-filter: blur(2px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center
}

.ana-portrait {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 510px;
  display: flex;
  align-items: flex-end;
  justify-content: center
}

.ana-portrait img {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  height: 110%;
  max-width: none;
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, .25))
}

.ana-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(36, 25, 20, .4);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(12px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, .22)
}

.ana-caption strong {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.15
}

.ana-caption span {
  display: block;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-top: 6px
}

.about-copy h2 {
  color: #fff
}

.about-copy p {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .78);
  margin: 22px 0
}

.light {
  color: var(--gold-soft)
}

.method .timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px
}

.step {
  padding: 30px
}

.step-icon {
  display: inline-grid;
  place-items: center;
  width: 59px;
  height: 59px;
  border-radius: 50%;
  background: var(--brown-800);
  color: var(--gold-soft);
  font-weight: 800;
  margin-bottom: 22px;
  font-size: 27px;
  line-height: 1
}

.step h3 {
  font-size: 21px
}

.section-cta {
  margin-top: 40px;
  text-align: center
}

.cta {
  padding: 52px 0;
  background: linear-gradient(115deg, rgba(216, 138, 0, .94), rgba(216, 138, 0, .84) 48%, rgba(47, 33, 28, .92)), url('cta-contato.jpg') center/cover;
  background-blend-mode: multiply;
  overflow: hidden
}

.cta:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 22% 30%, rgba(255, 255, 255, .16), transparent 28%), linear-gradient(90deg, rgba(216, 138, 0, .78), rgba(47, 33, 28, .50));
  pointer-events: none
}

.cta-box {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.55fr .7fr;
  align-items: center;
  gap: 34px;
  color: #fff
}

.cta h2 {
  color: #fff;
  font-size: clamp(28px, 3.8vw, 46px)
}

.cta p {
  color: rgba(255, 255, 255, .86);
  font-size: 16px;
  line-height: 1.65;
  margin-top: 14px;
  max-width: 700px
}

.cta-action {
  display: flex;
  justify-content: center
}

.btn-light {
  background: rgba(36, 25, 20, .92);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 18px 40px rgba(36, 25, 20, .26)
}

.footer {
  background: linear-gradient(135deg, var(--brown-700), var(--brown-950) 42%, #160d0b);
  color: rgba(255, 255, 255, .7);
  padding: 58px 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 34px;
  align-items: start
}

.footer img {
  width: 115px;
  margin: 30px 0 2px
}

.footer-brand p {
  margin-top: 2px;
  line-height: 1.65;
  max-width: 300px
}

.footer h4 {
  color: #fff;
  margin-bottom: 18px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .08em
}

.footer a {
  display: block;
  margin: 10px 0;
  color: rgba(255, 255, 255, .68);
  font-size: 14px
}

.footer a:hover {
  color: var(--gold-soft)
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 5px
}

.socials img {
  width: 40px;
  margin: 2px 0 2px
}

/*.socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(216, 138, 0, .36);
  color: #fff;
  margin: 0;
  font-weight: 800;
  background: rgba(255, 255, 255, .04)
}

.socials a:hover {
  background: rgba(216, 138, 0, .22)
}*/

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 46px;
  padding: 22px;
  color: rgba(255, 255, 255, .44);
  font-size: 13px
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

.delay-1 {
  transition-delay: .1s
}

.delay-2 {
  transition-delay: .2s
}

.delay-3 {
  transition-delay: .3s
}

.delay-4 {
  transition-delay: .4s
}

@media(max-width:980px) {
  .menu-toggle {
    display: block;
    z-index: 1002
  }

  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(380px, 86vw);
    background: rgba(36, 25, 20, .98);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 45px;
    transform: translateX(100%);
    transition: .35s ease;
    box-shadow: -20px 0 70px rgba(0, 0, 0, .35)
  }

  .main-nav.open {
    transform: translateX(0)
  }

  .menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg)
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0
  }

  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg)
  }

  .hero-grid,
  .about-grid,
  .cta-box {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .hero-card {
    justify-self: start;
    max-width: 360px
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .method .timeline {
    grid-template-columns: 1fr 1fr
  }

  .about-media {
    min-height: 440px
  }

  .ana-portrait {
    min-height: 440px
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .cta-box {
    text-align: center
  }

  .cta-action {
    justify-content: center
  }
}

@media(max-width:640px) {
  .container {
    width: min(100% - 34px, 1180px)
  }

  .topbar {
    height: 102px
  }

  .topbar.scrolled {
    height: 86px
  }

  .brand img {
    width: 158px
  }

  .topbar.scrolled .brand img {
    width: 140px
  }

  .hero {
    min-height: auto;
    padding: 128px 0 56px
  }

  .hero-grid {
    padding-top: 0;
    gap: 34px
  }

  .hero h1 {
    font-size: 40px
  }

  .hero p {
    font-size: 15px
  }

  .hero-actions {
    gap: 12px
  }

  .btn {
    width: 100%;
    min-height: 58px
  }

  .hero-card {
    max-width: 100%;
    padding: 28px;
    margin-bottom: 0
  }

  .scroll-indicator {
    display: none
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px
  }

  .stat {
    padding-left: 18px
  }

  .stat strong {
    font-size: 34px
  }

  .stat span {
    font-size: 13px
  }

  .cards-grid,
  .method .timeline,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .areas,
  .method,
  .about {
    padding: 60px 0
  }

  .cta {
    padding: 44px 0;
    background-position: center
  }

  .hero-word {
    font-size: 78px;
    right: -42px
  }

  .section-head {
    margin-bottom: 5px
  }

  .card-photo {
    height: 170px
  }

  .hero-card span {
    font-size: 66px
  }

  .about-bg {
    background-attachment: scroll
  }

  .about-media,
  .ana-portrait {
    min-height: 430px
  }

  .ana-portrait img {
    height: 104%;
    left: 48%
  }

  .ana-caption {
    left: 18px;
    right: 18px;
    bottom: 18px
  }

  .footer img {
    width: 138px
  }

  .footer-brand p {
    margin-top: 0
  }
}

/* === Ajustes finais - Versão 3 corrigida === */
@media (max-width: 980px) {
  .topbar {
    z-index: 3000;
  }

  .main-nav {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    z-index: 2999 !important;
    background: linear-gradient(135deg, rgba(36, 25, 20, .99), rgba(47, 33, 28, .98) 58%, rgba(27, 16, 13, .99)) !important;
    backdrop-filter: blur(18px);
    transform: translateX(100%);
    display: flex !important;
    flex-direction: column;
    align-items: center !important;
    justify-content: center !important;
    gap: 28px !important;
    padding: 120px 38px 56px !important;
    overflow: auto;
    box-shadow: none;
  }

  .main-nav.open {
    transform: translateX(0) !important;
  }

  .main-nav a {
    font-size: 16px !important;
    color: #fff !important;
    text-align: center;
    width: auto;
    margin: 0 !important;
  }

  .main-nav .nav-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: min(100%, 310px) !important;
    min-height: 54px !important;
    padding: 0 24px !important;
    margin-top: 8px !important;
    position: relative !important;
  }

  .menu-toggle {
    z-index: 3001 !important;
  }

  body.menu-open {
    overflow: hidden;
  }
}

.footer-grid {
  align-items: flex-start;
}

.footer-brand {
  margin-top: -34px;
}

.footer-brand img {
  margin-bottom: -10px;
}

.footer-brand p {
  margin-top: -2px;
}

@media(max-width:980px) {
  .footer-brand {
    margin-top: 0;
  }

  .footer-brand img {
    margin-bottom: -6px;
  }
}

.footer .socials img {
  width: 40px !important;
  height: auto;
  margin: 2px 0;
  display: block;
}

/* === Ajuste de alinhamento da Hero interna === */

.internal-hero {
  min-height: 500px;
  padding: 142px 0 92px
}

.internal-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none
}

.internal-hero h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: .96;
  color: #fff;
  font-weight: 800;
  letter-spacing: -.055em;
  max-width: 100%
}

.internal-hero p {
  color: rgba(255, 255, 255, .82);
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.42;
  max-width: 100%;
  margin-top: 26px;
  font-weight: 500
}

  .internal-hero {
    min-height: 455px;
    padding: 132px 0 58px
  }

  .internal-hero h1 {
    font-size: 42px
  }

  .internal-hero p {
    font-size: 18px
  }

.internal-hero {
  min-height: 520px;
  padding: 150px 0 82px;
}

.internal-hero>.container {
  position: relative;
  z-index: 2;
  width: min(100% - 44px, 1180px);
  margin-left: auto;
  margin-right: auto;
}

.internal-hero .internal-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.internal-hero .eyebrow,
.internal-hero h1,
.internal-hero p {
  margin-left: 0;
  margin-right: 0;
}

.internal-hero h1 {
  max-width: 100%;
}

.internal-hero p {
  max-width: 100%;
}

@media(max-width: 640px) {
  .internal-hero {
    min-height: 430px;
    padding: 132px 0 56px;
  }

  .internal-hero>.container {
    width: min(100% - 34px, 1180px);
  }
}

/* === aplications ===*/
.applications {
  padding: 96px 0;
  background: #fff
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px
}

.content-section,
  .applications {
    padding: 72px 0
  }

.info-card {
  background: #f6f6f6;
  border: 1px solid rgba(47, 33, 28, .08);
  border-radius: 28px;
  padding: 38px;
  box-shadow: 0 18px 55px rgba(36, 25, 20, .06);
  transition: .35s ease;
  position: relative;
  overflow: hidden
}

.info-card:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(.22);
  transform-origin: left;
  transition: .35s
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 72px rgba(36, 25, 20, .14)
}

.info-card:hover:before {
  transform: scaleX(1)
}

.info-card ul {
  list-style: none;
  margin-top: 12px
}

.info-card li {
  position: relative;
  padding-left: 28px;
  margin: 16px 0;
  color: #555;
  line-height: 1.55;
  font-size: 15.5px
}

.info-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 900
}

  .info-card {
    padding: 28px
  }
/* === Página Quem Somos === */
.institutional-intro,
.audience-section,
.differentials,
.ana-section {
  padding: 92px 0;
}

.intro-text {
  max-width: 95%;
}

.intro-text p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.4;
  margin: 0 0 22px;
}

.audience-grid {
  grid-template-columns: repeat(3, 1fr);
}

.audience-card .card-body {
  min-height: 340px;
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--brown-800);
  color: var(--gold-soft);
  font-size: 26px;
  margin-bottom: 24px;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.differentials-grid .info-card h3 {
  color: var(--brown-800);
  font-size: 21px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.differentials-grid .info-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 14.5px;
}

.ana-section {
  background: var(--brown-900);
  color: #fff;
  overflow: hidden;
}

.ana-section:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 28% 40%, rgba(216, 138, 0, .20), transparent 34%);
  pointer-events: none;
}

.ana-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.ana-photo-card {
  min-height: 560px;
  border-radius: 34px;
  border: 1px solid rgba(216, 138, 0, .28);
  background: linear-gradient(140deg, rgba(255, 255, 255, .08), rgba(216, 138, 0, .16));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.ana-photo-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  min-height: 560px;
  filter: saturate(.92);
}

.ana-content h2 {
  color: #fff;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.03;
  font-weight: 700;
  letter-spacing: -.055em;
}

.ana-content p {
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  line-height: 1.85;
  margin: 20px 0;
}

.ana-content .btn {
  margin-top: 14px;
}

@media(max-width: 980px) {
  .audience-grid,
  .differentials-grid,
  .ana-grid {
    grid-template-columns: 1fr;
  }

  .audience-card .card-body {
    min-height: auto;
  }

  .ana-grid {
    gap: 42px;
  }
}

@media(max-width: 640px) {
  .institutional-intro,
  .audience-section,
  .differentials,
  .ana-section {
    padding: 66px 0;
  }

  .intro-text p,
  .ana-content p {
    font-size: 15px;
  }

  .ana-photo-card,
  .ana-photo-card > img {
    min-height: 430px;
  }
}


/* === Clientes - Quem Somos v2 === */
.clients-section {
  padding: 96px 0;
  background: #fff;
}

.clients-board {
  background: linear-gradient(145deg, #fff, var(--off));
  border: 1px solid rgba(47, 33, 28, .09);
  border-radius: 32px;
  padding: 34px;
  box-shadow: 0 24px 70px rgba(36, 25, 20, .08);
  position: relative;
  overflow: hidden;
}

.clients-board:before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), rgba(216, 138, 0, 0));
}

.clients-board:after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -130px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: rgba(216, 138, 0, .08);
  pointer-events: none;
}

.clients-board-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.clients-board-head strong {
  display: block;
  color: var(--brown-800);
  font-size: 22px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.03em;
}

.clients-board-head span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  max-width: 390px;
  text-align: right;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
}

.client-logo {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(47, 33, 28, .08);
  transition: .3s ease;
  filter: grayscale(1);
}

.client-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(36, 25, 20, .12);
  filter: grayscale(0);
  border-color: rgba(216, 138, 0, .32);
}

.client-logo span {
  color: rgba(47, 33, 28, .54);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
}

.client-logo img {
  width: auto;
  max-width: 120px;
  max-height: 52px;
  object-fit: contain;
}

@media(max-width: 980px) {
  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .clients-board-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .clients-board-head span {
    text-align: left;
  }
}

@media(max-width: 640px) {
  .clients-section {
    padding: 70px 0;
  }

  .clients-board {
    padding: 24px;
    border-radius: 26px;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .client-logo {
    min-height: 84px;
  }
}

.imagens {
  display: flex;
  gap: 10px;
  margin-top: 5px
}

.imagens img {
  width: auto;
  height: 50px;
  margin: 2px 0 2px
}