:root {
  --navy: #0a3d64;
  --navy-dark: #0e3a5ced;
  --navy-deep: #06192c;
  --navy-rgb: 14 56 90;
  --navy-deep-rgb: 7 26 44;
  --royal: #155f96;
  --gold: #F0BE7D;
  --gold-light: #fad0a7;
  --gold-deep: #995d10;
  --gold-rgb: 237 168 78;
  --gold-num: #df9738;
  --green: #1f9e6f;
  --green-soft: #e3f4ec;
  --green-rgb: 31 158 111;
  --cream: #ffffff;
  --cream-2: #f4f6fb;
  --ink: #16223d;
  --muted: #3f4557e4;
  --white: #ffffff;
  --bg-paper: #ffffff;
  --line: rgb(var(--navy-rgb) / 0.12);
  --focus: #106396;
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-display: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, -apple-system, sans-serif;
  --font-read: "Figtree", system-ui, -apple-system, sans-serif;
  --font-nav: "Sora", "Segoe UI", system-ui, sans-serif;
  --fs-hero: clamp(2rem, 1.35rem + 3.1vw, 3.4rem);
  --fs-h2: clamp(1.55rem, 1.15rem + 1.85vw, 2.4rem);
  --fs-lead: clamp(1.02rem, 0.97rem + 0.34vw, 1.2rem);
  --fs-body: 1rem;
  --fs-sm: 0.9rem;
  --space-section: clamp(60px, 3.6vw + 44px, 112px);
  --wrap-w: 1180px;
  --wrap-pad: clamp(18px, 5vw, 40px);
  --r-md: 14px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-pill: 999px;
  --sh-sm: 0 2px 10px -4px rgb(var(--navy-rgb) / 0.12);
  --sh-md: 0 14px 34px -18px rgb(var(--navy-rgb) / 0.18);
  --sh-lg: 0 30px 70px -34px rgb(var(--navy-rgb) / 0.22);
  --sh-gold: 0 14px 30px -14px rgb(var(--gold-rgb) / 0.38);
  --shadow: var(--sh-lg);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.65;
  font-size: var(--fs-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgb(var(--gold-rgb) / 0.2);
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.018em;
  text-wrap: balance;
}
p {
  font-family: var(--font-read);
  font-optical-sizing: auto;
  text-wrap: pretty;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}

mark {
  background-color: transparent;
}

.dados {
  display: flex;
  justify-content: center;
  height: 90vh;
}

.mapa {
  width: 30%;
}

.wrap {
  width: 100%;
  max-width: var(--wrap-w);
  margin: 0 auto;
  padding-inline: var(--wrap-pad);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 600;
  font-size: var(--fs-sm);
  padding: 14px 28px;
  min-height: 48px;
  border-radius: var(--r-md);
  transition:
    transform 0.2s,
    box-shadow 0.25s,
    background 0.25s,
    border-color 0.25s;
  cursor: pointer;
  border: 1.5px solid transparent;
  letter-spacing: 0.01em;
}
.btn:active {
  transform: translateY(0) scale(0.985);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  box-shadow: var(--sh-gold);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px -14px rgb(var(--gold-rgb) / 0.9);
}
section {
  padding: var(--space-section) 0;
}
.sec-head {
  max-width: 720px;
  margin: 0 0 56px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sec-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-size: var(--fs-h2);
}
.sec-head p {
  color: var(--muted);
  margin-top: 16px;
  font-weight: 300;
  font-size: var(--fs-lead);
}
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition:
    transform 0.45s cubic-bezier(0.5, 0, 0.15, 1),
    padding 0.3s;
}
header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}
header.scrolled::before {
  opacity: 1;
}
header.hide {
  transform: translateY(-100%);
}
.logo {
  flex: none;
}
.logo img {
  width: auto;
  height: 50px;
  transition: height 0.3s;
  display: block;
}
header.scrolled .logo img {
  height: 38px;
}
.nav-desktop {
  margin-left: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-nav);
  font-weight: 600;
  font-size: 0.88rem !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: 0.2s;
  position: relative;
  border-radius: 100px;
}
.nav-links a:hover {
  opacity: 1;
}

.nav-links a:hover::after {
  width: 100%;
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  z-index: 201;
}
.burger span {
  width: 26px;
  height: 2px;
  border-radius: 2px;
  transition: 0.3s;
}
.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.is-open span:nth-child(2) {
  opacity: 0;
}
.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
body.menu-open {
  overflow: hidden;
}
.m-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  overflow: hidden;
  background: rgba(6, 18, 32, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}
.m-nav.open {
  opacity: 1;
  visibility: visible;
}
.m-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 86%;
  max-width: 380px;
  overflow-y: auto;
  padding: 22px 26px 44px;
  display: flex;
  flex-direction: column;
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.5);
  transform: translateX(104%);
  transition: transform 0.42s cubic-bezier(0.5, 0, 0.15, 1);
}
.m-nav.open .m-nav-panel {
  transform: none;
}
.m-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
}
.m-nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 1.2rem;
}
.m-close {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.25s;
}
.m-close:hover {
  background: rgba(255, 255, 255, 0.15);
}
.m-links {
  display: flex;
  flex-direction: column;
}
.m-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 4px;
  color: #fff;
  font-family: var(--font-nav);
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    color 0.2s;
}
.m-links a:hover {
  color: var(--gold-light);
}
.m-links a svg {
  color: rgba(255, 255, 255, 0.4);
  transition: 0.2s;
  flex: none;
}
.m-links a:hover svg {
  color: var(--gold-light);
  transform: translateX(4px);
}
.m-nav.open .m-links a {
  opacity: 1;
  transform: none;
}
.m-nav.open .m-links a:nth-child(1) {
  transition-delay: 0.06s;
}
.m-nav.open .m-links a:nth-child(2) {
  transition-delay: 0.11s;
}
.m-nav.open .m-links a:nth-child(3) {
  transition-delay: 0.16s;
}
.m-nav.open .m-links a:nth-child(4) {
  transition-delay: 0.21s;
}
.m-nav.open .m-links a:nth-child(5) {
  transition-delay: 0.26s;
}
.m-nav.open .m-links a:nth-child(6) {
  transition-delay: 0.31s;
}
.m-contact {
  display: flex;
  flex-direction: column;
}
.m-contact a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 300;
}
.m-contact a:hover {
  color: var(--gold-light);
}
.m-contact svg {
  color: var(--gold-light);
  flex: none;
}
@media (prefers-reduced-motion: reduce) {
  header {
    transition: none;
  }
  .m-nav-panel {
    transition: none;
  }
  .m-links a {
    transition: opacity 0.2s;
    transform: none;
  }
}
.hero {
  position: relative;
  padding: clamp(120px, 12vh + 70px, 190px) 0 clamp(64px, 8vw, 110px);
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 2;
}
.hero h1 {
  color: #fff;
  font-size: var(--fs-hero);
  font-weight: 700;
  letter-spacing: -0.5px;
}
.hero h1.hero-tagline {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.85rem, 1.1rem + 3.6vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #fff;
}
.hero-tagline .tg-line {
  display: block;
}

.hero-tagline .tg-amp {
  font-family: "Courier New", Courier, monospace;
  color: var(--gold);
  font-weight: 700;
  margin-left: 0.06em;
}
.hero p.lead {
  font-size: var(--fs-lead);
  font-weight: 300;
  margin: 24px 0 32px;
  max-width: 500px;
}
.hero-stats {
  flex-wrap: nowrap;
  width: fit-content;
  max-width: 100%;
  margin-top: 40px;
  position: relative;
  z-index: 2;
  padding: 20px 6px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-stats .s {
  width: 200px;
  height: 110px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 22px;
  position: relative;
  min-width: 0;
  color: var(--gold) !important;
}
.hero-stats .s + .s::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: rgba(255, 255, 255, 0.16);
}
.hero-stats .num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: -0.5px;
}
.hero-stats .num em {
  color: var(--gold);
  font-style: normal;
  font-size: 1.2rem;
  margin-left: 1px;
}
.hero-stats .pl {
  color: var(--gold);
  font-style: normal;
  margin-right: 1px;
}
.hero-stats .lbl {
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.35;
  margin-top: 9px;
  max-width: 150px;
}

@keyframes statRise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero-stats .s {
  opacity: 0;
  animation: statRise 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-stats .s:nth-child(1) {
  animation-delay: 0.4s;
}
.hero-stats .s:nth-child(2) {
  animation-delay: 0.55s;
}
.hero-stats .s:nth-child(3) {
  animation-delay: 0.7s;
}

.trust-item .ti-ico .bi {
  font-size: 34px;
}

.about-contatos {
  display: flex;
  gap: 21px;
  margin-top: 30px;
  margin-bottom: 30px;
  margin-left: 15px;
}
.about-contatos a:hover {
  cursor: pointer;
}

.about-contatos a i {
  font-size: 1.5rem;
  transition: 0.1s ease-out;
  color: var(--navy-dark) !important;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 3.5vw, 44px);
  align-items: center;
  margin-top: -70px;
  margin-bottom: -200px;
}

.about-grid > * {
  min-width: 0;
}
.about-visual {
  position: relative;
}
.about-text h2 {
  display: flex;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-size: clamp(1.5rem, 2.9vw, 2.25rem);
  margin-bottom: 22px;
  width: 100%;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 18px;
  font-weight: 300;
}
.about-text .checks {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 14px;
}
.about-text .checks li {
  display: flex;
  gap: 13px;
  align-items: center;
  justify-content: center;
  font-size: 0.97rem;
  color: var(--ink);
}
.about-text .checks i {
  color: var(--gold-deep);
  font-size: 0.5rem;
}
#solucoes .sec-head {
  margin-bottom: 28px;
}
.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.tst {
  position: relative;
  background: transparent;
  border-radius: 20px;
  padding: 34px 32px 30px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}
.tst:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 164, 92, 0.35);
}
.tst .tst-quote {
  color: var(--gold);
  opacity: 0.55;
  margin-bottom: 14px;
}
.tst p {
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 24px;
  font-size: 1.02rem;
  line-height: 1.6;
  flex: 1;
}
.tst .who {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.tst .av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(155deg, var(--navy), var(--navy-deep));
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  flex: none;
}
.tst .who strong {
  display: block;
  font-size: 0.96rem;
  color: var(--navy);
  font-weight: 600;
}
.tst .who span {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.3;
}
.form {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  position: relative;
  font-family: var(--font-body);
}
.form h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
  font-family: var(--font-read);
  transition: color 0.2s;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 15px 17px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: var(--font-read);
  font-size: 1rem;
  color: var(--ink);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--navy);
  outline-offset: 1px;
  border-color: var(--navy);
}
.field textarea {
  resize: vertical;
  min-height: 96px;
}
.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form .btn-gold {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}
.form .note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 14px;
}
footer {
  padding: 70px 0 30px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.foot-grid img {
  height: 46px !important;
  margin-bottom: 20px;
}
.foot-grid .about p {
  font-weight: 300;
  font-size: 0.92rem;
  max-width: 280px;
}
.foot-grid h5 {
  font-family: var(--font-read);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.foot-grid ul {
  list-style: none;
  display: grid;
  gap: 11px;
}
.foot-grid ul a {
  font-size: 0.9rem;
  font-weight: 300;
  transition: 0.2s;
}
.foot-grid ul a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}
.socials {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.socials a {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
  font-size: 1.3rem;
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 0.82rem;
  font-weight: 300;
  flex-wrap: wrap;
  gap: 10px;
}
.wfloat {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px -8px rgba(0, 0, 0, 0.45);
  transition: 0.2s;
}
.wfloat:hover {
  transform: scale(1.06);
}
.imgbox {
  overflow: hidden;
  position: relative;
  
}
.imgbox img {
  border: 1px solid #ffffffba;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  margin: auto;

}
.photo {
  width: 100%;
  max-width: 900px;
  min-width: 0;
  margin-inline: auto;
}

.photo img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}

@media screen and (max-width: 990px) {
  .photo img {
    width: 70% !important;
  }
}
.hero .wrap {
  display: grid;
  align-items: center;
}
.hero-inner {
  max-width: 620px;
}
.hero-media {
  z-index: 2;
}
.hero-media .frame {
  border-radius: var(--r-xl);

  border: 1px solid rgba(255, 255, 255, 0.14);
}
.hero-media .frame:hover img {
  transform: scale(1.05);
}
.about-visual {
  display: flex;
  justify-content: flex-end;
}

.header-clientes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.clients {
  padding-top: 50px;
}
.logo-marquee {
  margin-top: 14px;

  border-radius: 20px;
  padding: 36px 0;
  overflow: hidden;
  position: relative;
}
.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll-logos 48s linear infinite;
}
.logo-track img {
  margin-right: 60px;
}
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}
.logo-track img {
  height: 50px;
  width: auto;
  flex: none;
  opacity: 0.82;
  transition: 0.3s;
}
.logo-track img:hover {
  opacity: 1;
}
.client-orgs {
  margin-top: 44px;
}
.co-title {
  color: var(--navy) !important;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  margin-bottom: 10px;
}
.co-sub {
  color: var(--muted) !important;
  font-weight: 300;
  font-size: 0.98rem;
  max-width: 560px;
  margin: 0 auto 34px;
}
.co-tags {
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
}
.co-tag:hover {
  color: var(--gold-deep);
}
.imgjs .co-tags:not(.is-expanded) .co-tag:nth-child(n + 17) {
  display: none;
}
.co-tags.is-expanded .co-tag:nth-child(n + 17) {
  animation: co-reveal 0.4s ease both;
}
@keyframes co-reveal {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.co-more-wrap {
  margin-top: 26px;
  display: none;
}
.imgjs .co-more-wrap {
  display: block;
}
.co-more-btn:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  .co-tags.is-expanded .co-tag:nth-child(n + 17) {
    animation: none;
  }
  .co-more-ico {
    transition: none;
  }
}
@keyframes scroll-logos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    row-gap: 24px;
  }
  .logo-track img[aria-hidden="true"] {
    display: none;
  }
}
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.work-photo {
  overflow: hidden;
  position: relative;
}

.work-photo img {
  background-color: var(--navy);  width: 90%;
  height: 90%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  border-radius: 100%;

}
.work-photo:hover img {
  transform: scale(1.04);
}
.work-content h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 8px 0 20px;
}
.work-content > p {
  color: var(--muted);
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.work-list {
  list-style: none;
  margin: 24px 0 32px;
  padding: 0;
  display: grid;
  gap: 15px;
}
.work-list li {
  position: relative;
  padding-left: 26px;
  color: var(--navy);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
}
.work-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 164, 92, 0.14);
}
.work-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px -12px rgba(201, 164, 92, 0.75);
  transition:
    transform 0.25s ease,
    box-shadow 0.3s ease;
}
.work-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -12px rgba(201, 164, 92, 0.85);
}
.work-cta:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}
.work-cta svg {
  transition: transform 0.25s ease;
}
.work-cta:hover svg {
  transform: translateX(4px);
}
@media (max-width: 960px) {
  .nav-desktop,
  .nav > .nav-cta {
    display: none;
  }
  .burger {
    display: flex;
    margin-left: auto;
  }
  .m-nav {
    display: block;
  }
  .hero .wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .hero-inner {
    display: contents;
  }
  .hero-tagline {
    order: 1;
  }
  .hero-media {
    order: 2;
    margin: 26px 0 6px;
  }
  .hero p.lead {
    order: 3;
  }
  .hero-stats {
    order: 5;
    align-self: stretch;
  }
  .hero-tagline,
  .hero p.lead {
    position: relative;
    z-index: 2;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-visual {
    justify-content: center;
  }
  .work-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .sec-head {
    margin-bottom: 34px;
  }
  .tst-grid,
  .foot-grid,
  .row2 {
    grid-template-columns: 1fr;
  }

  .hero p.lead {
    margin: 18px 0 24px;
  }
  .hero-stats {
    width: 100%;
    margin-top: 28px;
    padding: 16px 4px;
  }
  .hero-stats .s {
    flex: 1 1 0;
    padding: 0 12px;
  }
  .hero-stats .num {
    font-size: 1.7rem;
  }
  .hero-stats .lbl {
    max-width: none;
    font-size: 0.72rem;
    margin-top: 6px;
  }

  .work-cta {
    width: 100%;
  }
  .wfloat {
    display: flex;
  }
}
@media (max-width: 400px) {
  .hero-stats {
    flex-wrap: nowrap;
    padding: 14px 2px;
  }
  .hero-stats .s {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 8px;
  }
  .hero-stats .num {
    font-size: 1.35rem;
  }
  .hero-stats .lbl {
    font-size: 0.62rem;
    line-height: 1.25;
  }
}
.faq {
  background: linear-gradient(180deg, var(--cream), var(--cream-2));
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq-item {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.faq-item.open {
  border-color: rgba(201, 164, 92, 0.45);
}
.faq-q {
  margin: 0;
}
.faq-q button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 22px 26px;
  text-align: left;
  font-family: var(--font-display), serif;
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--navy);
  line-height: 1.3;
}
.faq-q button:hover {
  color: var(--navy-dark);
}
.faq-chevron {
  flex: none;
  color: var(--gold-deep);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a p {
  color: var(--muted);
  font-weight: 300;
  font-size: 0.98rem;
  padding: 0 26px 24px;
  margin: 0;
}
@media (max-width: 680px) {
  .faq-q button {
    padding: 18px 20px;
    font-size: 1rem;
  }
  .faq-a p {
    padding: 0 20px 20px;
  }
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 400;
  background: var(--navy);
  color: #fff;
  padding: 11px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transform: translateY(-180%);
  transition: transform 0.25s ease;
  box-shadow: var(--shadow);
}
.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}
:target,
section[id],
[id^="atas"] {
  scroll-margin-top: 88px;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 6px;
}
header .nav-links a:focus-visible {
  outline-offset: 6px;
}
.btn-gold {
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg);
  transition: left 0.6s ease;
}
.btn-gold:hover::after {
  left: 140%;
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}
.nav-links a.active:not(.nav-cta) {
  color: var(--gold-light);
}
.nav-links a.active:not(.nav-cta)::after {
  width: 100%;
}
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].in {
  opacity: 1;
  transform: none;
}
[data-reveal][data-delay="1"] {
  transition-delay: 0.08s;
}
[data-reveal][data-delay="2"] {
  transition-delay: 0.16s;
}
[data-reveal][data-delay="3"] {
  transition-delay: 0.24s;
}
.field input.invalid,
.field select.invalid,
.field textarea.invalid {
  border-color: #d9534f;
  background: #fff7f6;
}
.field .err {
  display: none;
  color: #c0392b;
  font-size: 0.76rem;
  font-weight: 500;
  margin-top: 5px;
}
.field.show-err .err {
  display: block;
}
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .btn-gold::after {
    display: none;
  }
  .faq-a,
  .faq-chevron {
    transition: none;
  }
  .hero-stats .s {
    opacity: 1 !important;
    animation: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}
@media (max-width: 760px) {
  .co-tags {
    gap: 0 28px;
  }
  .co-tag {
    font-size: 0.88rem;
    padding: 11px 2px;
  }
}
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 300;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 22px 60px -20px rgba(16, 54, 85, 0.5);
  padding: 20px 24px;
  max-width: 880px;
  margin: 0 auto;
  transform: translateY(150%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.show {
  transform: none;
}
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-txt {
  flex: 1;
  min-width: 260px;
}
.cookie-txt strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 5px;
}
.cookie-txt p {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 300;
  margin: 0;
  line-height: 1.5;
}
.cookie-txt a {
  color: var(--gold-deep);
  text-decoration: underline;
  font-weight: 500;
}
.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-gold-sm,
.btn-ghost-sm {
  font-family: var(--font-read);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 11px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.25s;
  border: 1.5px solid transparent;
}
.btn-gold-sm {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  box-shadow: 0 12px 26px -14px rgba(201, 164, 92, 0.8);
}
.btn-gold-sm:hover {
  transform: translateY(-2px);
}
.btn-ghost-sm {
  background: transparent;
  border-color: var(--line);
  color: var(--navy);
}
.btn-ghost-sm:hover {
  border-color: var(--navy);
  background: rgb(var(--navy-rgb) / 0.04);
}
.foot-bottom a {
  text-decoration: underline;
}
.foot-bottom a:hover {
  color: var(--gold-light);
}
@media (max-width: 560px) {
  .cookie-actions {
    width: 100%;
  }
  .btn-gold-sm,
  .btn-ghost-sm {
    flex: 1;
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-banner {
    transition: none;
  }
}
.field label .opt {
  color: var(--muted);
  font-weight: 400;
  font-size: 0.82em;
}
.form.sent .form-body {
  display: none;
}
.form-success {
  text-align: center;
  animation: fsIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes fsIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fs-ico {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(46, 125, 82, 0.12);
  border: 1.5px solid rgba(46, 125, 82, 0.45);
  color: #2e7d52;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.form-success p {
  color: var(--muted);
  font-weight: 300;
  max-width: 400px;
  margin: 0 auto 22px;
}
.fs-mail {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 12px auto 0;
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 50px;
  color: var(--navy);
  background: transparent;
  font-family: var(--font-read);
  font-weight: 600;
  font-size: 0.92rem;
  transition: 0.25s;
}
.fs-mail:hover {
  border-color: var(--navy);
  background: rgba(30, 82, 118, 0.06);
}
.fs-reset {
  display: block;
  margin: 16px auto 0;
  background: none;
  border: none;
  color: var(--gold-deep);
  font-family: var(--font-read);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: underline;
}
.fs-reset:hover {
  color: var(--navy);
}
@media (prefers-reduced-motion: reduce) {
  .form-success {
    animation: none;
  }
}
.imgjs img {
  opacity: 0;
  transform: scale(1.03);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}
.imgjs img.in-view {
  opacity: 1;
  transform: none;
}

.frame {
  border: 0px !important;
}
.imgjs header img,
.imgjs footer img,
.imgjs .hero img,
.imgjs .logo-track img {
  opacity: 1 !important;
  transform: none !important;
  transition: none;
}
@media (prefers-reduced-motion: reduce) {
  .imgjs img {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
svg.bi {
  width: 1em;
  height: 1em;
  fill: currentColor;
  vertical-align: -0.125em;
  flex: none;
}
.m-links a .mi {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}
.m-links a .mi .bi {
  color: var(--gold);
  font-size: 1.2rem;
  flex: none;
}
.field label .bi {
  margin-right: 7px;
  font-size: 0.95em;
}
.nav-item-drop {
  position: relative;
}
.nav-drop-btn {
  font-family: var(--font-nav);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.88;
  transition: 0.2s;
}
.nav-drop-btn i {
  color: var(--gold-light);
}
.nav-drop-btn:hover {
  opacity: 1;
}
.nav-drop-btn .nd-caret,
.nav-drop-btn .nd-x {
  display: inline-flex;
  align-items: center;
  transition: 0.25s;
}
.nav-drop-btn .nd-x {
  display: none;
}
.nav-item-drop.open .nav-drop-btn {
  opacity: 1;
}
.nav-item-drop.open .nav-drop-btn .nd-caret {
  display: none;
}
.nav-item-drop.open .nav-drop-btn .nd-x {
  display: inline-flex;
  color: var(--gold-light);
}
.nav-drop {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  left: auto;
  max-width: 90vw;
  box-shadow: 0 28px 64px -22px rgba(16, 54, 85, 0.55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.25s,
    transform 0.25s,
    visibility 0.25s;
  z-index: 120;
}
.nav-drop::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}
.nav-item-drop.open .nav-drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-drop-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 0;
}
.nav-drop .ndc {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 11px;
  align-items: center;
  padding: 11px 12px;
  border-radius: 12px;

  text-transform: none;
  letter-spacing: 0;
}
.nav-drop .ndc::after {
  content: none !important;
}
.nav-drop .ndc:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -20px rgba(16, 54, 85, 0.5);
}
.nav-drop .ndc-ico {
  grid-row: 1 / span 2;
  align-self: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: 0.22s;
}
.nav-drop .ndc:hover .ndc-ico {
  color: var(--navy);
}
.nav-drop .ndc:hover .ndc-t {
  color: var(--navy);
}
.nav-drop .ndc-t {
  grid-column: 2;
  font-weight: 600;
  font-size: 0.85rem;
  color: #fff;
  line-height: 1.2;
}
.nav-drop .ndc-d {
  grid-column: 2;
  font-weight: 300;
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.25;
  margin-top: 1px;
}
.atas-sec {
  background: linear-gradient(180deg, var(--cream), var(--cream-2));
}
.atas-group {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--navy);
  margin: 56px 0 10px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.atas-group::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.atas-note {
  color: var(--muted);
  font-weight: 300;
  font-size: 1.1rem;
  margin: 0 0 24px;
  max-width: 760px;
}

.atas-note i {
  font-size: 1.5rem;
  color: var(--gold) !important;
}
.atas-note b {
  color: var(--navy);
  font-weight: 600;
}
.ata {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 30px 26px;

  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 2px 4px rgb(var(--navy-rgb) / 0.04),
    0 16px 36px -14px rgb(var(--navy-rgb) / 0.18);
}
.ata:hover {
  transform: translateY(-5px);
  box-shadow:
    0 8px 14px rgb(var(--navy) / 0.07),
    0 28px 56px -18px rgb(var(--navy-rgb) / 0.26);
  border-color: (var(--navy));
}
.ata .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.ata .anum {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-deep);
  letter-spacing: 0.02em;
}
.badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}
.b-vig {
  border: 1px solid rgb(var(--green-rgb) / 0.32);
  color: #157a5a;
  background: transparent;
}
.b-enc {
  border: 1px solid rgba(120, 130, 150, 0.35);
  color: #6b7486;
  background: transparent;
}
.ata:has(.b-enc) {
  opacity: 0.72;
}

.ata:hover .b-vig {
  background: var(--green-soft);
}
.ata h4 {
  font-size: 1.18rem;
  margin-bottom: 6px;
  color: var(--navy);
}
.ata .local {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.ata .cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  border: 1.5px solid var(--navy);
  padding: 5px 12px;
  border-radius: 10px;
  margin-bottom: 13px;
  align-self: flex-start;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.ata .cat {
  color: #fff;
  background-color: var(--navy);
}
.ata .cat:hover {
  background-color: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}
.ata .meta {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ata .meta .row {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.84rem;
  color: var(--muted);
}
.ata .meta .row svg {
  color: var(--gold-deep);
  flex: none;
}
.ata .view {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  background-color: transparent;
  padding: 11px 20px;
  border: 1.6px solid var(--navy);
  border-radius: 12px;
  align-self: flex-start;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}
.ata .view:hover {
  background-color: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-2px);
}
.ata-carousel {
  position: relative;
  margin-top: 6px;
}
.ata-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 2px 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ata-track::-webkit-scrollbar {
  display: none;
}
.ata-track > .ata {
  flex: 0 0 calc((100% - 44px) / 3);
  scroll-snap-align: start;
}
.ata-ctrl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 28px;
}
.ata-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px -10px rgba(16, 54, 85, 0.5);
  transition:
    transform 0.25s ease,
    box-shadow 0.3s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
  flex: none;
}
.ata-arrow svg {
  transition: transform 0.25s ease;
}
.ata-arrow:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -12px rgba(201, 164, 92, 0.75);
}
#ataPrev:hover:not(:disabled) svg {
  transform: translateX(-2px);
}
#ataNext:hover:not(:disabled) svg {
  transform: translateX(2px);
}
.ata-arrow:active:not(:disabled) {
  transform: translateY(-1px) scale(0.97);
}
.ata-arrow:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}
.ata-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  box-shadow: none;
}
.ata-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}
.ata-dot {
  width: 8px;
  height: 8px;
  border-radius: 50px;
  border: 0;
  background: rgba(201, 164, 92, 0.32);
  cursor: pointer;
  padding: 0;
  transition:
    width 0.3s ease,
    background 0.3s ease;
}
.ata-dot.on {
  width: 26px;
  background: var(--gold);
}
@media (max-width: 900px) {
  .ata-track > .ata {
    flex: 0 0 calc((100% - 22px) / 2);
  }
}
@media (max-width: 600px) {
  .ata-track > .ata {
    flex: 0 0 86%;
  }
}
.field {
  position: relative;
}
.field label .bi {
  transition:
    transform 0.2s,
    color 0.2s;
  display: inline-block;
}
.form-success {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 44px 30px 34px;
}
@media (prefers-reduced-motion: reduce) {
  .field label .bi {
    transition: none;
  }
}
.form {
  max-width: none;
  margin: 0;
}
.nav-cta {
  margin-left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.nav-cta i {
  color: #ffffffda !important;
  font-size: 1.2rem;
}

#clientes {
  margin-top: -5px !important;
}

.orc-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}
.orc-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
body.orc-open {
  overflow: hidden;
}
.orc-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.orc-modal.open .orc-overlay {
  opacity: 1;
}
.orc-card {
  position: relative;
  z-index: 2;

  max-height: 95vh;
  display: grid;
  grid-template-columns: 312px 1fr;
  grid-template-rows: minmax(0, 1fr);
  border-radius: 26px;
  overflow: hidden;
  transform: translateY(28px) scale(0.96);
  opacity: 0;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.42s ease;
}
.orc-modal.open .orc-card {
  transform: none;
  opacity: 1;
}
.orc-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 6;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.3s,
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.orc-close:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: rotate(90deg);
}
.orc-aside {
  color: #fff;
  padding: 42px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.orc-aside::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -50px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 164, 92, 0.28), transparent 70%);
  pointer-events: none;
}

.orc-aside .bi {
  font-size: 1.5rem;
  color: var(--gold);
}
.orc-aside-title {
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 24px 0 12px;
  position: relative;
  z-index: 2;
}
.orc-aside-lead {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 300;
  font-size: 0.94rem;
  position: relative;
  z-index: 2;
  margin: 0;
}
.orc-aside-list {
  list-style: none;
  margin: 26px 0 auto;
  padding: 0;
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 2;
}
.orc-aside-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}
.orc-aside-list svg {
  color: var(--gold-light);
  flex: none;
  margin-top: 2px;
}
.orc-aside-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  z-index: 2;
  transition: color 0.2s;
}
.orc-aside-call svg {
  color: var(--gold-light);
}
.orc-aside-call:hover {
  color: var(--gold-light);
}
.orc-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 42px 45px 40px;
}
.orc-mhead {
  display: block;
  margin-bottom: 22px;
  padding-right: 46px;
}
.orc-mhead h3 {
  font-size: 1.5rem;
  margin: 8px 0 6px;
}
.orc-msub {
  color: var(--muted);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
}
.orc-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

@media (max-width: 760px) {
  .orc-modal {
    padding: 0;
    align-items: flex-end;
  }
  .orc-card {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    max-height: 94dvh;
    border-radius: 24px 24px 0 0;
    transform: translateY(100%);
  }
  .orc-aside {
    display: none;
  }
  .orc-main {
    padding: 36px 18px 26px;
  }
  .orc-card::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 4px;
    border-radius: 3px;
    background: rgb(var(--navy-rgb) / 0.2);
    z-index: 6;
  }
  .orc-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
  .orc-mhead {
    display: block;
    margin-bottom: 18px;
    padding-right: 46px;
  }
  .orc-mhead h3 {
    font-size: 1.35rem;
    margin: 5px 0 8px;
  }
  .field {
    margin-bottom: 15px;
  }
  .row2 {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 761px) and (max-width: 980px) {
  .orc-card {
    width: min(720px, 100%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .orc-modal {
    transition:
      opacity 0.2s ease,
      visibility 0.2s ease;
  }
  .orc-overlay {
    transition: opacity 0.2s ease;
  }
  .orc-card {
    transform: none;
    transition: opacity 0.2s ease;
  }
  .orc-close:hover {
    transform: none;
  }
}
.orc-modal .form-body > * {
  opacity: 0;
  transform: translateY(12px);
}
.orc-modal.open .form-body > * {
  animation: orcFieldIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.orc-modal.open .form-body > *:nth-child(1) {
  animation-delay: 0.05s;
}
.orc-modal.open .form-body > *:nth-child(2) {
  animation-delay: 0.11s;
}
.orc-modal.open .form-body > *:nth-child(3) {
  animation-delay: 0.17s;
}
.orc-modal.open .form-body > *:nth-child(4) {
  animation-delay: 0.23s;
}
.orc-modal.open .form-body > *:nth-child(5) {
  animation-delay: 0.29s;
}
.orc-modal.open .form-body > *:nth-child(6) {
  animation-delay: 0.35s;
}
.orc-modal.open .form-body > *:nth-child(7) {
  animation-delay: 0.41s;
}
.orc-modal.open .form-body > *:nth-child(8) {
  animation-delay: 0.47s;
}
@keyframes orcFieldIn {
  to {
    opacity: 1;
    transform: none;
  }
}
.field input,
.field select,
.field textarea {
  transition:
    border-color 0.2s,
    box-shadow 0.25s,
    background 0.2s,
    transform 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -14px rgba(201, 164, 92, 0.5);
}
.field.focused label .bi {
  transform: scale(1.16) rotate(-6deg);
}
.field.filled label .bi {
  color: var(--green);
}
.field.filled input,
.field.filled select,
.field.filled textarea {
  border-color: rgba(29, 158, 117, 0.5);
}
.orc-submit::after {
  animation: orcShine 3.6s ease-in-out infinite;
}
@keyframes orcShine {
  0%,
  70% {
    left: -120%;
  }
  85%,
  100% {
    left: 140%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .orc-modal .form-body > * {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .field input:focus,
  .field select:focus,
  .field textarea:focus {
    transform: none;
  }
  .orc-submit::after {
    animation: none;
  }
}
.pratos {
  padding: var(--space-section) 0;
}
.pratos .sec-head::after {
  align-self: flex-start;
}
.pratos-swiper .swiper-wrapper {
  align-items: stretch;
}
.pg-nav.is-pressed {
  animation: pgPress 0.3s ease;
}
@keyframes pgPress {
  0% {
    transform: scale(1);
  }
  42% {
    transform: scale(0.86);
  }
  100% {
    transform: scale(1.08);
  }
}
.pg-nav .pg-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(220, 177, 105, 0.55);
  transform: scale(0);
  animation: pgRipple 0.6s ease-out forwards;
  pointer-events: none;
  z-index: 0;
}
@keyframes pgRipple {
  to {
    transform: scale(2.8);
    opacity: 0;
  }
}
@media (max-width: 880px) {
  .pratos .sec-head::after {
    align-self: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pg-nav.is-pressed {
    animation: none;
  }
  .pg-nav .pg-ripple {
    animation: none;
    display: none;
  }
}
#sobre {
  margin-top: -80px;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
}

.header-clientes .sec-eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--muted) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
}

.clients .logo-marquee {
  background: #fff;
  padding: 36px 22px;
}
.clients .co-more-btn:hover {
  border-color: var(--gold-light);
  color: var(--navy);
  box-shadow: 0 8px 20px -12px rgba(0, 0, 0, 0.6);
}

.atas-sec,
.clients,
#depoimentos,
.faq {
  border-top: 1px solid var(--line);
}
a:not([class]) {
  color: var(--royal);
  text-underline-offset: 2px;
}
.foot-bottom a,
.orc-aside a:not([class]),
.hero a:not([class]) {
  color: #fff;
}
:focus-visible {
  outline: 3px solid var(--royal);
  outline-offset: 2px;
  border-radius: 4px;
}

.sec-head p {
  margin-bottom: 2px;
}
.sec-eyebrow {
  display: flex;

  gap: 8px;
  padding: 10px 22px;
  margin-bottom: 16px;
  margin-left: -13px;
  font-family: var(--font-head) !important;
  font-size: 1.7rem;
  letter-spacing: 0.12em;
  width: fit-content;
  border: 1px solid var(gold) !important;
  text-transform: uppercase;
  font-weight: 640 !important;
  line-height: 1.12;
}

.wa-intro span img {
  height: 50% !important;
  height: 50% !important;
}

.about-text .sec-eyebrow {
  border-radius: 10px;
}

.sec-eyebrow .bi {
  padding: 13px;
  background-color: var(--navy);
  color: var(--gold);
  border-radius: 100px !important;
  border: 1px solid var(gold) !important;
  font-size: 1.8rem;
  line-height: 1;
  color: #fff !important;
  margin-right: 10px;
}
header::after {
  content: "";
  position: absolute;
  inset: 0 0 -34px 0;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(180deg, rgb(var(--navy-deep-rgb) / 0.5), transparent);
  opacity: 1;
  transition: opacity 0.3s;
}
header.scrolled::after {
  opacity: 0;
}
header::before {
  border-top: 2px solid rgb(var(--gold-rgb) / 0.7);
}
.nav-links a {
  padding: 10px 16px;
}
.nav-links a:hover {
  color: #fff !important;
  background-color: rgb(255 255 255 / 0.12);
}
.nav-links a.active:not(.nav-cta) {
  background-color: transparent !important;

  opacity: 1;
}
.nav-drop-btn {
  padding: 10px 16px;
  border-radius: var(--r-pill);
  font-size: 0.85rem;
}
.nav-drop-btn:hover {
  background: rgb(255 255 255 / 0.12);
}
.nav-drop-btn i {
  font-size: 1.05rem;
}
.nav-item-drop.open .nav-drop-btn {
  background: rgb(var(--gold-rgb) / 0.16);
  color: var(--gold-light);
}
.nav-drop {
  width: 540px;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: var(--r-lg);
  background:
    radial-gradient(420px 180px at 85% -40px, rgb(var(--gold-rgb) / 0.14), transparent 70%),
    linear-gradient(170deg, var(--navy), var(--navy-deep));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 16px;
}
/* balão/seta e borda dourada do topo removidos a pedido */
.nav-drop::after {
  display: none !important;
}
.nav-drop-title {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  align-items: center;
  margin: 2px 4px 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}
.nav-drop-title .bi {
  grid-row: 1 / span 2;
  font-size: 1.35rem;
  color: var(--gold-light);
}
.nav-drop-title span {
  grid-column: 2;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.74rem;
  color: rgb(255 255 255 / 0.6);
  letter-spacing: 0;
  margin-top: 2px;
}
.nav-drop .ndc {
  border: 1px solid rgb(255 255 255 / 0.12);
  background: rgb(255 255 255 / 0.04);
}
.nav-drop .ndc-ico {
  background: rgb(var(--gold-rgb) / 0.14);
  border: 1px solid rgb(var(--gold-rgb) / 0.3);
  color: var(--gold-light);
}
.nav-drop .ndc:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: transparent;
}
.nav-drop .ndc:hover .ndc-ico {
  background: rgb(var(--navy-rgb) / 0.12);
  border-color: transparent;
}
.ndc-d {
  color: rgb(255 255 255 / 0.62) !important;
}
.nav-drop .ndc:hover .ndc-d {
  color: rgb(var(--navy-rgb) / 0.75) !important;
}
.nav-drop .ndc {
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    background 0.22s,
    border-color 0.22s,
    box-shadow 0.22s;
}
.nav-item-drop.open .nav-drop .ndc {
  opacity: 1;
  transform: none;
}
.nav-item-drop.open .nav-drop .ndc:nth-child(2) {
  transition-delay: 0.05s;
}
.nav-item-drop.open .nav-drop .ndc:nth-child(3) {
  transition-delay: 0.1s;
}
.nav-item-drop.open .nav-drop .ndc:nth-child(4) {
  transition-delay: 0.15s;
}
@media (prefers-reduced-motion: reduce) {
  .nav-drop .ndc {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.orc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  z-index: 7;
}
.orc-mhead .sec-eyebrow {
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  border-color: transparent;
}
.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--line);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  background: #fff;
}
.field.filled label {
  color: var(--royal);
}
.orc-submit {
  transition:
    transform 0.22s ease,
    box-shadow 0.25s ease,
    filter 0.2s;
}
.orc-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-gold);
}
.orc-aside img {
  width: 140px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgb(255 255 255 / 0.12);
}
.pratos .sec-head h2,
.trabalhe .work-content h2 {
  color: #fff;
}

.pratos .about-contatos a:hover i {
  color: var(--navy) !important;
}
.trabalhe .work-list li::before {
  box-shadow: 0 0 0 4px rgb(var(--gold-rgb) / 0.22);
}
h1,
h2,
h3 {
  font-family: var(--font-head);
  letter-spacing: -0.01em;
}
.sec-head h2,
.about-text h2,
.work-content h2,
.hero h1.hero-tagline {
  font-family: var(--font-head);
  font-weight: 640;
  line-height: 1.12;
}
.sec-head p,
.about-text > p,
.work-content > p,
.hero .lead,
.faq-a p,
.atas-note {
  font-family: var(--font-read);
  line-height: 1.72;
}
.sec-eyebrow,
.btn,
.nav-links a,
.nav-drop-btn,
.work-cta,
.num {
  font-family: var(--font-display);
}
::selection {
  background: var(--navy);
  color: #fff;
}
::-webkit-scrollbar {
  width: 11px;
}
::-webkit-scrollbar-track {
  background: var(--cream-2);
}
::-webkit-scrollbar-thumb {
  background: rgb(var(--navy-rgb) / 0.35);
  border-radius: 8px;
  border: 3px solid var(--cream-2);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--navy);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgb(255 255 255 / 0.055) 1px, transparent 1.4px);
  background-size: 26px 26px;
  mask-image: radial-gradient(720px 520px at 76% 30%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(720px 520px at 76% 30%, #000 30%, transparent 78%);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 420px;
  height: 420px;
  right: -120px;
  top: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(var(--gold-rgb) / 0.2), transparent 68%);
  filter: blur(10px);
  animation: heroFloat 11s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes heroFloat {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-36px, 30px, 0) scale(1.12);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero::after {
    animation: none;
  }
}
.atas-sec,
#depoimentos,
.faq {
  background:
    radial-gradient(680px 340px at 100% 0%, rgb(var(--gold-rgb) / 0.09), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #eef2fb 100%);
}
#sobre,
.clients {
  background:
    radial-gradient(560px 300px at 0% 100%, rgb(var(--gold-rgb) / 0.07), transparent 62%),
    linear-gradient(180deg, #ffffff 0%, #fdfdfd 100%);
}
.trabalhe {
  position: relative;
}
.trabalhe::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgb(255 255 255 / 0.05) 1px, transparent 1.4px);
  background-size: 28px 28px;
  mask-image: linear-gradient(115deg, transparent 42%, #000);
  -webkit-mask-image: linear-gradient(115deg, transparent 42%, #000);
}
.trabalhe > .wrap {
  position: relative;
  z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
  .ata {
    position: relative;
  }
  .ata::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
    background: radial-gradient(
      340px circle at var(--mx, 50%) var(--my, 50%),
      rgb(var(--gold-rgb) / 0.14),
      transparent 62%
    );
    z-index: 1;
  }
  .ata:hover::after {
    opacity: 1;
  }
}
.scroll-progress {
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2.5px;
  width: 100%;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  z-index: 5;
  pointer-events: none;
}
.atas-sec,
.pratos,
.clients,
.trabalhe,
.faq {
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}
.hero .wrap {
  grid-template-columns: 1fr 1.08fr;
  gap: clamp(34px, 4.5vw, 70px);
}
.hero-media {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

@media screen and (max-width: 720px) {
  .imgbox {
    margin-left: -20px;
  }
}

.hero-media .frame {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 4 / 4.5;
  position: relative;
  z-index: 1;

}
.hero-media .frame img {
  object-position: center 32%;
}
.frame-veil {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(to top, rgb(var(--navy-deep-rgb) / 0.6), transparent);
  pointer-events: none;
  z-index: 1;
}
.hero-badge .bi {
  font-size: 1.5rem;
  color: var(--gold-deep);
}
@keyframes badgeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 960px) {
  .hero-media {
    width: min(430px, 94%);
    justify-content: center;
  }
  .hero-media::before {
    right: -12px;
    left: 20px;
  }
  .hero-media .frame {
    aspect-ratio: 4 / 4.2;
  }
}
.co-tags {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}
.co-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgb(var(--navy-rgb) / 0.14);
  background: #fff;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.2;
  box-shadow: 0 1px 3px rgb(var(--navy-rgb) / 0.06);
  cursor: default;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.co-tag i {
  color: var(--gold-deep);
}

.co-tag:hover {
  transform: translateY(-3px);
  border-color: rgb(var(--gold-rgb) / 0.65);
  background: linear-gradient(135deg, #ffffff 30%, rgb(var(--gold-rgb) / 0.16));
  box-shadow: 0 12px 26px -14px rgb(var(--navy-rgb) / 0.3);
}
.co-tag:hover::before {
  box-shadow: 0 0 0 4px rgb(var(--gold-rgb) / 0.3);
}
.co-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 11px 24px;
  border-radius: var(--r-pill);
  border: 1.5px solid rgb(var(--gold-rgb) / 0.6);
  background: transparent;
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.22s,
    color 0.22s,
    transform 0.2s,
    box-shadow 0.25s;
}
.co-more-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -12px rgb(var(--gold-rgb) / 0.7);
}
.co-more-btn[aria-expanded="true"] .co-more-ico {
  transform: rotate(180deg);
}
.co-more-ico {
  transition: transform 0.3s ease;
}
.g-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(24px, 3vw, 44px);
  align-items: start;
}
.g-summary {
  position: sticky;
  top: 96px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  text-align: center;
  box-shadow: 0 18px 44px -26px rgb(var(--navy-rgb) / 0.28);
  overflow: hidden;
}
.g-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  color: var(--muted);
}
.g-brand strong {
  color: var(--ink);
  font-weight: 700;
}
.g-score {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
  color: var(--navy-deep);
  margin: 18px 0 10px;
}
.g-stars {
  gap: 3px;
}
.g-stars svg {
  width: 18px;
  height: 18px;
  fill: #fbbc05;
  filter: drop-shadow(0 1px 1px rgb(0 0 0 / 0.12));
}
.g-rating-lg .g-stars svg {
  width: 24px;
  height: 24px;
}
.g-note {
  margin: 14px 0 22px;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}
.g-actions {
  display: grid;
  gap: 10px;
}
.g-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition:
    transform 0.2s,
    box-shadow 0.25s,
    background 0.22s,
    color 0.22s,
    border-color 0.22s;
}
.g-btn-solid {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 12px 26px -14px rgb(var(--navy-rgb) / 0.6);
}
.g-btn-solid:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
}
.g-btn-ghost {
  border: 1.5px solid rgb(var(--gold-rgb) / 0.65);
  color: var(--gold-deep);
  background: transparent;
}
.g-btn-ghost:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  border-color: transparent;
  transform: translateY(-2px);
}
.g-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
}
.tst.g-review {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  padding: 22px 22px 24px;
  transition:
    transform 0.25s ease,
    box-shadow 0.3s ease,
    border-color 0.25s ease;
}
.tst.g-review:hover {
  transform: translateY(-2px);
}
.g-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 12px;
}
.g-review .av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(135deg, var(--royal), var(--navy));
}
.g-review:nth-child(2) .av {
  background: linear-gradient(135deg, #b06f09, var(--gold-deep));
}
.g-review:nth-child(3) .av {
  background: linear-gradient(135deg, #1f9e6f, #14705a);
}
.g-id {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  min-width: 0;
}
.g-id strong {
  font-size: 0.96rem;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.g-date {
  font-size: 0.78rem;
  color: var(--muted);
}
.g-head .g-logo {
  opacity: 0.9;
}
.g-review .g-rating {
  margin: 12px 0 10px;
}
.g-review .g-stars svg {
  width: 15px;
  height: 15px;
}
.g-review .g-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 400;
}
.g-review .av.av-img {
  padding: 0;
  object-fit: cover;
  background: #eef2fb;
}
.g-id a {
  color: inherit;
  text-decoration: none;
}
.g-id a:hover strong,
.g-id a:focus-visible strong {
  text-decoration: underline;
}
.g-id a:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}
.g-skeleton {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
  width: 100%;
}
.g-sk-card {
  height: 196px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(100deg, #fff 30%, #eef2fb 50%, #fff 70%);
  background-size: 200% 100%;
  animation: g-shimmer 1.2s linear infinite;
}
@keyframes g-shimmer {
  to {
    background-position: -200% 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .g-sk-card {
    animation: none;
  }
}
@media (max-width: 960px) {
  .g-layout {
    grid-template-columns: 1fr;
  }
  .g-summary {
    position: static;
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
  }
  .g-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 4px 4px 18px;
    margin: 0 -4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgb(var(--navy-rgb) / 0.3) transparent;
  }
  .g-grid .tst.g-review {
    flex: 0 0 min(84%, 330px);
    scroll-snap-align: start;
  }
}
@media (max-width: 960px) {
  .hero .about-contatos {
    order: 3;
    margin: 16px 0 2px;
    position: relative;
    z-index: 2;
    justify-content: flex-start;
  }
  .hero .about-contatos a i {
    color: var(--gold-light) !important;
  }
}
.m-nav-panel .m-links > a {
  color: #fff;
}
.m-nav-panel .m-contact a {
  color: rgb(255 255 255 / 0.85);
}
body:has(.m-nav.open) .burger {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s,
    visibility 0.2s;
}
.m-nav-panel {
  background:
    radial-gradient(420px 300px at 100% 0%, rgb(var(--gold-rgb) / 0.1), transparent 62%),
    radial-gradient(380px 320px at -10% 108%, rgb(16 99 150 / 0.22), transparent 66%),
    linear-gradient(180deg, rgb(var(--navy-rgb) / 0.55), rgb(var(--navy-deep-rgb) / 0.68));
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border-left: 1px solid rgb(255 255 255 / 0.16);
  padding-bottom: calc(40px + env(safe-area-inset-bottom));
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .m-nav-panel {
    background:
      radial-gradient(420px 300px at 100% 0%, rgb(var(--gold-rgb) / 0.14), transparent 62%),
      radial-gradient(380px 320px at -10% 108%, rgb(16 99 150 / 0.35), transparent 66%),
      linear-gradient(180deg, var(--navy), var(--navy-deep));
  }
}
.m-nav-panel > * {
  position: relative;
}
.m-nav-top {
  padding-bottom: 18px;
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
  margin-bottom: 18px;
}
.m-nav-brand b {
  color: var(--gold-light);
}
.m-close:hover,
.m-close:active {
  background: rgb(var(--gold-rgb) / 0.18);
  border-color: rgb(var(--gold-rgb) / 0.5);
  transform: rotate(90deg);
}
.m-links > a {
  border-radius: 12px;
  padding: 17px 10px;
  margin: 0 -10px;
  transition:
    background 0.2s,
    color 0.2s;
}
.m-links > a:active {
  background: rgb(255 255 255 / 0.06);
}
.m-links > a::after {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--gold-light);
  border-right: 2px solid var(--gold-light);
  transform: rotate(45deg);
  opacity: 0.55;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
.m-links > a:active::after {
  transform: translateX(4px) rotate(45deg);
  opacity: 1;
}
.m-links > a {
  opacity: 0;
  transform: translateX(22px);
  transition:
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.2s;
}
.m-nav.open .m-links > a {
  opacity: 1;
  transform: none;
}
.m-nav.open .m-links > a:nth-child(1) {
  transition-delay: 0.05s;
}
.m-nav.open .m-links > a:nth-child(2) {
  transition-delay: 0.1s;
}
.m-nav.open .m-links > *:nth-child(3) {
  transition-delay: 0.15s;
}
.m-nav.open .m-links > a:nth-child(4) {
  transition-delay: 0.2s;
}
.m-nav.open .m-links > a:nth-child(5) {
  transition-delay: 0.25s;
}
.m-nav.open .m-links > a:nth-child(6) {
  transition-delay: 0.3s;
}
@media (prefers-reduced-motion: reduce) {
  .m-links > a {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.m-contact {
  border-top: 1px solid rgb(255 255 255 / 0.1);
  padding-top: 22px;
  margin-top: 28px;
  gap: 10px;
}
.m-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border-radius: 12px;
  background: rgb(255 255 255 / 0.05);
  border: 1px solid rgb(255 255 255 / 0.1);
  font-size: 0.95rem;
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s;
}
.m-contact a:active {
  background: rgb(var(--gold-rgb) / 0.1);
}
.m-contact a svg {
  color: var(--gold-light);
  flex: none;
}
.m-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.m-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgb(255 255 255 / 0.06);
  border: 1px solid rgb(255 255 255 / 0.12);
  color: var(--gold-light) !important;
  font-size: 1.15rem;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.m-social a:active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep) !important;
  transform: scale(0.94);
}
.pratos {
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: clamp(70px, 9vh, 120px);
  padding-bottom: clamp(70px, 9vh, 120px);
  margin-top: 150px;
}
.pratos > .wrap {
  width: 100%;
}

.wa-split {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) 1.6fr;
  gap: clamp(34px, 4.5vw, 70px);
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.wa-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.wa-intro h2 {
  font-size: clamp(2rem, 3.3vw, 3.2rem);
  font-family: var(--font-head);
  font-weight: 240;
  line-height: 1.12;
}

.wa-intro-img {
  width: 270px;
  margin-top: 25px;
}

.wa-intro p {
  font-family: var(--font-read);
  color: rgb(255 255 255 / 0.75);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0;
  max-width: 40ch;
}
.wa-arrows {
  display: flex;
  gap: 14px;
  margin-top: auto;
  padding-top: 34px;
}
.wa-nav {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgb(255 255 255 / 0.55);
  background: transparent;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    background 0.22s,
    border-color 0.22s,
    color 0.22s,
    transform 0.2s;
}
.wa-nav:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: transparent;
  color: var(--navy-deep);
  transform: translateY(-2px);
}
.wa-nav:active {
  transform: scale(0.94);
}
.wa-nav:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}
.wa-carousel {
  min-width: 0;
}
.wa-swiper {
  overflow: visible;
  clip-path: inset(-90px -100vw -90px 0px);
}
.wa-swiper .swiper-slide {
  height: auto;
}
.wa-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 26px 54px -28px rgb(0 0 0 / 0.55);
  transition:
    transform 0.3s ease,
    box-shadow 0.35s ease;
}
.wa-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 66px -28px rgb(0 0 0 / 0.6);
}
.wa-media {
  aspect-ratio: 16 / 11.5;
  overflow: hidden;
  flex: none;
}
.wa-media picture,
.wa-media img {
  padding: 3px;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  transition: transform 0.55s ease;
}

.wa-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 28px 30px;
  flex: 1;
}
.wa-body h3 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 640;
  font-size: clamp(1.4rem, 1.8vw, 1.7rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--navy-deep);
}
.wa-desc {
  margin: 0 0 6px;
  font-family: var(--font-read);
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--muted);
}
.wa-media {
  position: relative;
}
.wa-badge {
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.wa-dots {
  display: flex;
  align-items: center;
  margin-top: 22px;
  min-height: 14px;
}
.wa-dots .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 5px 0 0;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.35);
  opacity: 1;
  transition:
    width 0.3s ease,
    background 0.3s ease;
}
.wa-dots .swiper-pagination-bullet-active {
  width: 26px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
}
@media (max-width: 960px) {
  .wa-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .wa-arrows {
    margin-top: 4px;
    padding-top: 18px;
  }
  .wa-nav {
    width: 46px;
    height: 46px;
  }
  .wa-body {
    padding: 17px 18px 20px;
    gap: 13px;
  }
  .wa-body h3 {
    font-size: 1.22rem;
  }
  .wa-desc {
    font-size: 0.92rem;
  }
  .wa-dots {
    margin-top: 16px;
  }
}
@media (max-width: 960px) {
  .pratos {
    min-height: 0;
    display: block;
    padding-top: 64px;
    padding-bottom: 72px;
  }
}
.services > .wrap {
  position: relative;
  z-index: 1;
}
.services .sec-head h2 {
  color: #fff;
}
.services .sec-head p {
  color: rgb(255 255 255 / 0.78);
}
.services .sec-head mark {
  color: #fff;
}
.pratos .wa-intro h2 {
  color: #fff;
}
.pratos .wa-intro p {
  color: rgb(255 255 255 / 0.78);
}
.pratos .wa-nav {
  border-color: rgb(255 255 255 / 0.5);
  color: #fff;
}
.pratos .wa-nav:hover {
  border-color: transparent;
  background: #fff;
  color: var(--navy-deep);
}
.pratos .wa-dots .swiper-pagination-bullet-active {
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
}
.wa-nav {
  position: relative;
  overflow: hidden;
}
.wa-nav .pg-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgb(var(--gold-rgb) / 0.55);
  transform: scale(0);
  animation: pgRipple 0.6s ease-out forwards;
  pointer-events: none;
  z-index: 0;
}
.wa-nav > svg {
  position: relative;
  z-index: 1;
}
.wa-nav.is-pressed {
  animation: pgPress 0.3s ease;
}
.wa-nav.swiper-button-disabled {
  opacity: 0.38;
  cursor: default;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .wa-nav.is-pressed {
    animation: none;
  }
  .wa-nav .pg-ripple {
    display: none;
  }
}
.bt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 16px;
}
.bt-cell {
  color: #fff !important;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: var(--r-xl);
  background: rgb(255 255 255 / 0.045);
  border: 1px solid rgb(255 255 255 / 0.12);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.35s ease;
}

.bt-cell i {
  font-size: 1.3rem;
}
.bt-cell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transform: scale(0.9);
  transform-origin: 78% 18%;
  transition:
    opacity 0.4s ease,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.bt-cell:hover {
  transform: translateY(-4px);
  border-color: rgb(var(--gold-rgb) / 0.5);
}
.bt-cell:hover::before {
  opacity: 1;
  transform: scale(1.15);
}
.bt-cell:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}
.bt-cell h3 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 640;
  font-size: 1.22rem;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: #fff;
}
.bt-cell p {
  margin: 0;
  font-family: var(--font-read);
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgb(255 255 255 / 0.68);
}
.bt-cell:hover .bt-ico {
  color: var(--gold);
  transform: scale(1.07) rotate(-4deg);
}
.bt-cell:hover .bt-arrow {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: transparent;
  color: var(--navy-deep);
  transform: translate(3px, -3px);
}
@media (max-width: 1080px) {
  .bt-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
}
@media (max-width: 560px) {
  .bt-grid {
    gap: 10px;
  }
  .bt-cell {
    padding: 16px;
    gap: 10px;
  }
  .bt-cell h3 {
    font-size: 1rem;
  }
  .bt-cell p {
    font-size: 0.82rem;
  }
}
.bt-grid {
  counter-reset: bento;
}
.bt-cell:not(.bt-hero) {
  counter-increment: bento;
}
.bt-cell:not(.bt-hero)::after {
  content: "0" counter(bento);
  position: absolute;
  right: 12px;
  bottom: -6px;
  z-index: -1;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 4.4rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgb(255 255 255 / 0.06);
  pointer-events: none;
  transition: color 0.35s ease;
}
.bt-cell:not(.bt-hero):hover::after {
  color: rgb(var(--gold-rgb) / 0.16);
}
@media (max-width: 560px) {
  .bt-cell:not(.bt-hero)::after {
    font-size: 3.2rem;
  }
}


.leve-ap__eyebrow .bi {
  font-size: 0.95rem;
}
.inh {
  position: relative;
  z-index: 2;
  isolation: isolate;
  margin-top: clamp(-96px, -9vw, -64px);
  padding: 0 0 clamp(52px, 7vw, 96px);
  overflow: visible;
}
.inh-glow {
  display: none;
}
.inh-inner {
  position: relative;
  z-index: 1;
}
.inh-cards {
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.6vw, 22px);
  perspective: 1400px;
}
.inh-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(26px, 3vw, 40px) clamp(12px, 1.8vw, 22px) clamp(18px, 2vw, 26px);
  border-radius: var(--r-lg);
  transform-origin: 50% 100%;
  opacity: 0;
  transform: perspective(1000px) rotateX(14deg) translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s ease,
    background 0.25s ease;
}
.inh-card.inh-in {
  opacity: 1;
  transform: perspective(1000px) rotateX(0deg) translateY(0);
}

.inh-badge {

  position: absolute;
  top: clamp(-20px, -2vw, -24px);
  left: 50%;
  transform: translateX(-50%);
  width: clamp(38px, 4.6vw, 48px);
  height: clamp(38px, 4.6vw, 48px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: -42px;
  border: 1px solid #ffffff34;
  background: linear-gradient(180deg, var(--navy-dark), var(--navy));
  border-radius: 100pxpx !important;
  
}

.inh-badge svg {
 color: #fff !important;
}

.in-badgesvg {
    color: var(--gold-deep ) !important;
}

@media screen and (max-width: 970px) {
  .hero-tagline {
    margin-top: 0;
  }

  .hero {
    margin-top: 0px !important;
  }

  .inh-inner {
    margin-top: 20px;
  }

  .inh-badge {
    margin-top: 0px;
    margin-bottom: 10px !important;
  }

  .inh-card-title {
    margin-top: 14px !important;
  }

  .logo {
    width: 50%;
  }

  #nav {
    margin-bottom: 50px !important;
  }
}
.inh-badge svg {
  color: #fff;
  width: clamp(18px, 2.2vw, 23px);
  height: clamp(18px, 2.2vw, 23px);
}
.inh-card-title {
  margin: clamp(4px, 1vw, 8px) 0 clamp(8px, 1.4vw, 14px);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.72rem, 0.5rem + 1.1vw, 1.12rem);
  line-height: 1.2;
}
.inh-card-desc {
  width: 100%;
  margin: 0;
  padding-top: clamp(8px, 1.4vw, 14px);
  border-top: 1px solid rgb(255 255 255 / 0.14);
  font-family: var(--font-body);
  font-size: clamp(0.62rem, 0.45rem + 0.8vw, 0.9rem);
  line-height: 1.45;
}
@media (max-width: 720px) {
  .inh {
    margin-top: clamp(-64px, -12vw, -40px);
  }
  .inh-cards {
    gap: 8px;
  }
  .inh-card {
    padding: 24px 8px 14px;
  }
  .inh-card-desc {
    line-height: 1.35;
  }
}
@media (prefers-reduced-motion: reduce) {
  .inh-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .inh-card:hover {
    transform: translateY(-4px);
  }
}
.nav-links a {
  opacity: 0.92;
}
.nav-drop-btn:hover {
  color: var(--navy);
}
.hero {
  height: 80vh;
  color: var(--ink);
  background:
    radial-gradient(760px 460px at 88% -6%, rgb(var(--gold-rgb) / 0.14), transparent 60%),
    radial-gradient(680px 520px at -10% 112%, rgb(16 99 150 / 0.12), transparent 62%),
    linear-gradient(180deg, #ffffff 0%, #eef1f7 100%);
}

@media screen and (max-width: 720px) {
  .hero {
    height: 100vh !important;
  }
}
.hero h1,
.hero h1.hero-tagline {
  color: var(--navy);
}
.hero .lead {
  color: var(--muted);
}
.hero-stats .num {
  color: var(--navy);
}
.hero-stats .num .pl {
  color: var(--gold);
}
.hero-stats .lbl {
  color: var(--muted);
}
.hero a:not([class]) {
  color: var(--royal);
}
.about-contatos a {
  color: var(--navy);
}
.inh {
  color: var(--ink);
  background: linear-gradient(180deg, #eef1f7 0%, #ffffff 58%);
}
.inh-card {
  background: #ffffff;
  border: 1px solid rgb(var(--navy-rgb) / 0.1);
  backdrop-filter: none;
  box-shadow:
    0 30px 60px -30px rgb(var(--navy-rgb) / 0.4),
    0 1px 0 rgb(255 255 255 / 0.9) inset;
}
.inh-card:hover {
  background: #ffffff;
  border-color: rgb(var(--gold-rgb) / 0.6);
  box-shadow: 0 42px 74px -30px rgb(var(--navy-rgb) / 0.5);
}
.inh-card-desc {
  color: var(--muted);
  border-top-color: rgb(var(--navy-rgb) / 0.12);
}
.pratos {
  background:
    radial-gradient(680px 340px at 100% 0%, rgb(var(--gold-rgb) / 0.1), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #eef1f7 100%);
}
.pratos .wa-intro h2,
.wa-intro h2 {
  color: var(--navy);
}
.pratos .wa-intro p,
.wa-intro p {
  color: var(--muted);
}
.pratos .sec-head p {
  color: var(--muted);
}
.pratos .wa-nav,
.wa-nav {
  border-color: rgb(var(--navy-rgb) / 0.35);
  color: var(--navy);
}
.pratos .wa-nav:hover,
.wa-nav:hover {
  border-color: transparent;
  background: var(--navy);
  color: #fff;
}
.pratos .wa-dots .swiper-pagination-bullet {
  background: rgb(var(--navy-rgb) / 0.25);
}
.trabalhe {
  background: linear-gradient(180deg, #f5f7fb 0%, #ffffff 100%);
}
.trabalhe .work-content h2 {
  color: var(--navy);
}
.trabalhe .work-content > p {
  color: var(--muted);
}
.trabalhe .work-list li {
  color: var(--ink);
}
.clients {
  background: linear-gradient(180deg, #ffffff 0%, #eef1f7 100%);
}
.clients .co-title {
  color: var(--navy);
}
.clients .sec-eyebrow {
  color: var(--navy);
}
.clients .co-sub {
  color: var(--muted) !important;
}
.logo-marquee {
  background: #ffffff;
  border: 1px solid rgb(var(--navy-rgb) / 0.08);
  box-shadow: 0 18px 44px -30px rgb(var(--navy-rgb) / 0.35);
}
mark {
  color: var(--gold);
  border-radius: 6px;
  font-weight: 600;
}
.hero p.lead {
  font-size: 1.1rem !important;
  color: var(--muted);
}
.clients .co-more-btn {
  border-color: rgb(var(--gold-rgb) / 0.6) !important;
  background: transparent;
}
body {
  background-attachment: scroll;
}
.co-more-btn,
.g-btn,
.orc-submit,
.btn {
  border-radius: 12px;
}
.fold {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
}
.fold .hero {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  overflow: visible;
  padding-top: clamp(62px, 7vh, 92px);
  padding-bottom: clamp(4px, 0.8vh, 12px);
}
.fold .inh {
  flex: 0 0 auto;
  margin-top: 0;
  padding-top: 0;
  overflow: visible;
}
.fold .hero p.lead {
  margin: 10px 0 10px;
  font-size: clamp(0.94rem, 0.9rem + 0.3vw, 1.06rem);
}
.fold .about-contatos {
  margin: 5px 0;
}
.fold .hero-stats {
  margin-top: 6px;
}
.fold .inh-card-title {
  margin: clamp(3px, 0.6vh, 5px) 0 clamp(5px, 0.9vh, 10px);
}
.fold .inh-card-desc {
  padding-top: clamp(5px, 0.9vh, 10px);
}
@media (max-width: 880px) {
  .fold .hero {
    padding-top: clamp(62px, 9vh, 80px);
  }
  .fold .hero .wrap {
    gap: 0;
  }
  .fold .about-contatos {
    display: none;
  }
  .fold .hero-tagline {
    font-size: clamp(1.4rem, 1rem + 2.3vw, 1.85rem);
  }
  .fold .hero p.lead {
    margin: 5px 0 5px;
    font-size: 0.92rem;
  }
  .fold .hero-stats {
    margin-top: 5px;
  }
  .fold .inh-card {
    padding: 12px 8px 9px;
  }
}
.fold .hero h1,
.fold .hero h1.hero-tagline {
  color: #fff;
}
.fold .hero p.lead {
  color: rgb(255 255 255 / 0.85);
}
.fold .hero-stats .num {
  color: #fff;
}
.fold .hero-stats .num .pl {
  color: var(--gold-light);
}
.fold .hero-stats .lbl {
  color: rgb(255 255 255 / 0.75);
}
.fold .about-contatos a {
  color: #fff;
}
.nav-links a {
  color: #fff !important;
}
.nav-links a:hover,
.nav-links a.active:not(.nav-cta) {
  color: var(--navy) !important;
}
.nav-drop-btn {
  color: #fff;
}
.burger span {
  background: #fff;
}
header::before {
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
  box-shadow: 0 12px 30px -18px rgb(0 0 0 / 0.55);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.fold .inh-inner {
  border-radius: var(--r-xl);
  padding-top: clamp(24px, 2.8vh, 34px);
  padding-bottom: clamp(10px, 1.4vh, 18px);
}
.fold .inh {
  padding-bottom: clamp(8px, 1.2vh, 18px);
}
.fold .inh-card {
  background: #ffffff;
  border: 1px solid rgb(16 54 85 / 0.12);
  box-shadow: 0 16px 34px -22px rgb(16 54 85 / 0.4);
  padding: clamp(14px, 1.5vh, 20px) clamp(10px, 1.5vw, 16px) clamp(9px, 1.2vh, 14px);
}
.fold .inh-card:hover {
  border-color: rgb(var(--gold-rgb) / 0.6);
  box-shadow: 0 26px 48px -24px rgb(16 54 85 / 0.5);
}
.inh-card-title {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: #175a89;
}
.fold .inh-card-desc {
  color: var(--muted);
  border-top-color: rgb(16 54 85 / 0.12);
}
.fold .hero-tagline {
  font-size: min(clamp(1.3rem, 0.85rem + 1.9vw, 2.35rem), 3.5svh);
  line-height: 1.02;
}
@media (max-width: 880px) and (max-height: 800px) {
  .fold .hero-media {
    display: none;
  }
  .fold .hero-stats .num {
    font-size: 1.5rem;
  }
  .fold .hero-stats .lbl {
    font-size: 0.66rem;
  }
  .fold .hero p.lead {
    margin: 4px 0;
  }
}
.clients .co-more-btn {
  color: var(--navy);
}
.fold {
  background: #ffffff;
}
.fold .hero {
  color: #fff;
}
.fold .inh {
  background: transparent;
}
.fold .inh-inner {
  background: #ffffff;
  box-shadow: none;
}
.fold .inh-card,
.fold .inh-card.inh-in,
.fold .inh-card:hover {
  background: transparent;
  border: none;
  box-shadow: none;
}
.fold .hero-media .frame {
  width: auto;
  max-width: 100%;
  aspect-ratio: 4 / 4.5;
  overflow: hidden;
}
.fold .hero-media::before {
  border-width: 2.5px;
  top: 20px;
  right: -16px;
  bottom: -18px;
  left: 28px;
}
@media (max-width: 880px) {
  .fold .hero-media {
    display: block !important;
    width: min(460px, 90%);
    margin: 16px 0 6px;
    align-self: center;
  }
  .fold .hero-media .frame {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 4.3;
  }
  .fold .hero h1.hero-tagline {
    font-size: clamp(1.7rem, 1.1rem + 3.4vw, 2.5rem);
  }
}
.fold .hero-media .frame {
  border-radius: var(--r-xl);
}
.fold .hero-media::before {
  border-radius: 0 46% 0 46% / 0 46% 0 46%;
}
.pratos .wa-media {
  aspect-ratio: 16 / 13.5;
}
.pratos .wa-body {
  padding: 28px 30px 32px;
}
body,
.fold,
.fold .inh,
.fold .inh-inner,
.pratos,
.trabalhe,
.clients,
.clients .logo-marquee,
footer {
  background: #f4f7fb;
  background-image: none;
}
.fold .inh-inner,
.clients .logo-marquee {
  background: #f4f7fb;
}
.fold .hero-media .frame {
  height: clamp(340px, 55svh, 600px);
}
.fold .hero h1.hero-tagline {
  font-size: clamp(1.75rem, 1rem + 2.3vw, 2.9rem);
  line-height: 1.05;
  color: #fff;
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .fold .hero h1.hero-tagline {
    background-image: linear-gradient(180deg, #ffffff 0%, rgb(255 255 255 / 0.82) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .fold .hero h1.hero-tagline .tg-amp {
    color: var(--gold);
  }
}
#sobre .hero-stats {
  margin-top: 26px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: transparent;
  padding: 18px 0 0;
}
#sobre .hero-stats .num {
  color: var(--navy);
}
#sobre .hero-stats .num .pl {
  color: var(--gold);
}
#sobre .hero-stats .lbl {
  color: var(--muted);
}
header {
  padding: 20px 0;
}
header.scrolled {
  padding: 11px 0;
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 40px);
}
.nav-links {
  gap: 4px;
}
.nav-links > li > a,
.nav-drop-btn {
  font-family: var(--font-nav);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  opacity: 1;
  color: rgb(255 255 255 / 0.86) !important;
  padding: 11px 16px;
  border-radius: 10px;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}
.nav-drop-btn {
  background: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.nav-links > li > a:hover,
.nav-drop-btn:hover,
.nav-item-drop.open .nav-drop-btn {
  color: var(--gold-light) !important;
  background-color: rgb(var(--gold-rgb) / 0.16);
}
.nav-links > li > a.active:not(.nav-cta) {
  color: var(--gold-light) !important;
}
header .nav-links > li > a:focus-visible,
header .nav-drop-btn:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}
.nav-cta {
  width: auto;
  margin: 0 0 0 clamp(6px, 1vw, 16px);
  padding: 12px 22px;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  border-radius: 12px;
  margin-top: -3px;
  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease,
    filter 0.2s ease;

    background-color: var(--gold-light);
    color: var(--navy-deep);
}


html {
  background: #ffffff;
}
body {
  background: transparent;
  background-image: none;
}
main,
section,
.fold,
.fold .inh,
.fold .inh-inner,
#sobre,
#regioes,
.sobre-2,
.pratos,
.trabalhe,
.clients,
.clients .logo-marquee,
.atas-sec,
#depoimentos,
.faq,
footer {
  background: transparent;
  background-image: none;
}
.atas-sec,
.clients,
#depoimentos,
.faq,
.pratos,
.trabalhe,
.sobre-2,
#sobre,
#regioes,
footer,
.fold {
  border-top: 0;
  border-bottom: 0;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(1100px 760px at 88% 6%, rgb(var(--gold-rgb) / 0.07), transparent 62%),
    radial-gradient(980px 880px at -8% 58%, rgb(var(--navy-rgb) / 0.06), transparent 60%),
    radial-gradient(900px 700px at 60% 108%, rgb(var(--gold-rgb) / 0.05), transparent 62%);
}
.clients .logo-marquee,
.logo-marquee {
  border: 0;
  box-shadow: none;
}
.pratos .wa-card {
  background: transparent;
  border: 1px solid rgb(var(--navy-rgb) / 0.22);
  box-shadow: none;
}
.pratos .wa-card:hover {
  border-color: rgb(var(--navy-rgb) / 0.45);
  box-shadow: none;
}
.pratos .wa-card .wa-body h3 {
  color: var(--navy);
}
.pratos .wa-card .wa-desc {
  color: var(--muted);
}
.wa-badge {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 6px 16px -6px rgb(var(--navy-rgb) / 0.7);
}
footer {
  color: #fff;
}
footer .about p {
  color: rgb(255 255 255 / 0.78);
}
.foot-grid h5 {
  color: #fff;
}
footer li a {
  color: rgb(255 255 255 / 0.78) !important;
}
footer li a:hover {
  color: var(--gold-light) !important;
}
.foot-bottom {
  color: rgb(255 255 255 / 0.72);
  border-top: 1px solid rgb(255 255 255 / 0.14);
}
.foot-bottom a {
  color: var(--gold-light);
}
.socials a {
  border-color: rgb(var(--gold-rgb) / 0.7);
  background: transparent;
  color: var(--gold-light) !important;
}
.socials a:hover {
  background: var(--gold);
  color: var(--navy-deep) !important;
}
.wa-badge {
  position: static;
  align-self: flex-start;
  pointer-events: auto;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  margin: 0;
}
.wa-body {
  gap: 10px;
}
.about-servicos {
  list-style: none;
  margin: 0 0 6px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.text-atendemos {
  margin-top: 50px;
  display: flex;
  margin-bottom: -250px;
}

@media screen and (max-width: 400px) {
  .text-atendemos {
    display: flex;
    flex-wrap: wrap !important;
  }
}
.about-servicos li {
  font-family: var(--font-read);
  font-weight: 300;
  font-size: 0.99rem;
  line-height: 1.6;
  color: var(--muted);
}
.about-servicos li b {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-deep);
}
.g-stars {
  position: relative;
  display: inline-block;
  line-height: 0;
}
.g-stars-bg,
.g-stars-fg {
  display: inline-flex;
  gap: 3px;
  white-space: nowrap;
}
.g-stars-bg svg {
  fill: rgb(var(--navy-rgb) / 0.18);
  filter: none;
}
.g-stars-fg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.g-stars-fg svg {
  fill: #fbbc05;
  flex: none;
}
.g-review .g-text {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
}
.g-review.is-open .g-text {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}
.g-more {
  align-self: flex-start;
  margin-top: 10px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.g-more:hover {
  color: #9a6514;
}
.g-more:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}
.g-grid {
  align-items: stretch;
}
.tst.g-review {
  height: 100%;
}
.g-review .g-text {
  flex: 1 1 auto;
}
.g-powered {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  font-family: var(--font-body);
  font-size: 0.76rem;
  color: var(--muted);
  text-align: right;
}
.g-powered strong {
  color: var(--navy);
  font-weight: 600;
}
.orc-overlay {
  background: rgb(8 24 40 / 0.55);
  backdrop-filter: blur(14px) saturate(1.25);
  -webkit-backdrop-filter: blur(14px) saturate(1.25);
}
.orc-card {
  backdrop-filter: blur(30px) saturate(1.6);
  -webkit-backdrop-filter: blur(30px) saturate(1.6);
  border: 1px solid rgb(255 255 255 / 0.55);
  box-shadow:
    0 50px 120px -34px rgb(0 0 0 / 0.7),
    0 1px 0 rgb(255 255 255 / 0.7) inset;
}
.orc-main {
  background: transparent;
}
.orc-aside {
  background: linear-gradient(162deg, rgb(16 54 85 / 0.88), rgb(11 31 56 / 0.92));
  backdrop-filter: blur(8px) saturate(1.2);
  -webkit-backdrop-filter: blur(8px) saturate(1.2);
  border-right: 1px solid rgb(255 255 255 / 0.12);
}
.orc-close {
  background: rgb(255 255 255 / 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgb(255 255 255 / 0.5);
}
.field input,
.field select,
.field textarea {
  background: rgb(255 255 255 / 0.92);
}
@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .orc-card {
    background: #f7f9fc;
  }
  .orc-overlay {
    background: rgb(8 24 40 / 0.8);
  }
  .orc-aside {
    background: linear-gradient(162deg, #175a89, #051827);
  }
}
.client-orgs {
  text-align: left;
}
.co-tags {
  justify-content: flex-start;
  margin-inline: 0;
  max-width: 100%;
  gap: 9px;
  text-align: left;
}
.co-more-wrap {
  text-align: left;
}
.co-tags-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.co-tags-head h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}
.co-tags-count {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--muted);
}
.orc-card {
  background: rgb(255 255 255 / 0.88);
}
.field.focused label,
.field.filled label {
  color: #7e5310;
}
.field label .bi {
  color: #7e5310;
}
.tst.g-review {
  background: transparent;
  border: 1px solid rgb(var(--gold-rgb) / 0.55);
  box-shadow: none;
}
.tst.g-review:hover {
  background: transparent;
  border-color: var(--gold);
  box-shadow: none;
}
.g-review .g-id strong,
.g-review .g-id a strong {
  color: var(--navy);
}
.g-review .g-id a:hover strong {
  color: var(--royal);
}
.g-review .g-date {
  color: var(--muted);
}
.g-review .g-text {
  color: var(--muted);
}
.g-review .g-stars-bg svg {
  fill: rgb(var(--navy-rgb) / 0.18);
}
.g-review .g-more {
  color: var(--navy);
}
.g-review .g-more:hover {
  color: #7e5310;
}
.g-review .g-more:focus-visible {
  outline-color: var(--focus);
}
.fold .hero {
  background:
    radial-gradient(760px 460px at 88% -6%, rgb(var(--gold-rgb) / 0.16), transparent 60%),
    radial-gradient(680px 520px at -10% 112%, rgb(16 99 150 / 0.26), transparent 62%),
    linear-gradient(158deg, #123f66 0%, #175a89 52%, #1f689e 100%);
}
header::before {
  background:
    radial-gradient(680px 300px at 90% -40%, rgb(var(--gold-rgb) / 0.14), transparent 60%),
    linear-gradient(160deg, #123f66 0%, #175a89 60%, #1f689e 100%);
}
footer {
  background:
    radial-gradient(680px 320px at 92% 0%, rgb(var(--gold-rgb) / 0.12), transparent 60%),
    linear-gradient(165deg, #175a89 0%, #123f66 100%);
}
#sobre .hero-stats .num .pl,
#sobre .hero-stats .num em {
  color: var(--gold-num);
}
.inh-card-desc {
  overflow-wrap: anywhere;
  hyphens: auto;
}
@media (max-width: 1200px) {
  .about-grid {
    margin-top: 0;
    margin-bottom: 0;
  }
  #sobre {
    padding-bottom: 28px;
  }
  #regioes {
    padding-top: 28px;
  }
}

header .logo {
  width: auto;
  flex: none;
}

header .logo img {
  max-width: none;
}

/* Moldura folha: linha dourada + simbolo da marca (path do favicon.svg) */
.hero-media,
#sobre .photo,
.trabalhe .work-photo {
  position: relative;
}

.trabalhe .work-photo {
  overflow: visible;
}




/* Fundo: branco puro, sem lavagem de gradiente */
body::before {
  background: none;
}

/* ============================================================
   REFINAMENTO FINAL — v6
   Ajustes solicitados + polimento avançado de design.
     1. .sec-eyebrow  →  chip de ícone + rótulo da seção
     2. Atas  →  grid 4×2 responsivo (sem carrossel)
     3. Depoimentos  →  layout profissional e moderno
     4. Hero  →  textura de fundo removida no mobile
     5. Cards INHIRE  →  empilhados no mobile (ícone esq. / texto dir.)
     6. Header  →  sem as linhas douradas (topo e base)
     7. Cores, tipografia e micro-interações em todas as seções
   ============================================================ */

/* ---------- Tokens de apoio ---------- */
:root {
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --r-2xl: 26px;
  --sh-card: 0 1px 2px rgb(16 54 85 / 0.05), 0 20px 44px -26px rgb(16 54 85 / 0.3);
  --sh-card-hover: 0 10px 20px -12px rgb(16 54 85 / 0.2), 0 44px 78px -34px rgb(16 54 85 / 0.42);
}

/* ============================================================
   6 · HEADER — remove as linhas douradas (topo e base)
   ============================================================ */
header::before {
  border-top: 0 !important;   /* linha dourada superior */
}
.scroll-progress {
  display: none !important;    /* barra dourada inferior (progresso) */
}

/* ============================================================
   1 · SEC-EYEBROW — chip de ícone + rótulo apresentativo
   ============================================================ */
.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  margin: 0 0 20px !important;
  padding: 6px 18px 6px 6px !important;
  font-family: var(--font-display) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--navy) !important;
  background: linear-gradient(135deg, rgb(var(--gold-rgb) / 0.18), rgb(var(--gold-rgb) / 0.05)) !important;
  border: 1px solid rgb(var(--gold-rgb) / 0.38) !important;
  border-radius: var(--r-pill) !important;
  box-shadow: 0 8px 20px -14px rgb(var(--gold-rgb) / 0.8);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);

}
.sec-eyebrow:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px -14px rgb(var(--gold-rgb) / 0.9);
}
.sec-eyebrow .bi {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  flex: none;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 1.4rem !important;
  border: 0 !important;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.15);
  border-radius: 100px !important;
  
}
/* cabeçalho centralizado opcional (usado em Depoimentos) */
.sec-head-center {
  max-width: 720px;
  margin-inline: auto;
  align-items: center;
  text-align: center;
}
.sec-head-center .sec-eyebrow {
  margin-inline: auto !important;
}

/* ============================================================
   2 · ATAS — grid 4×2 responsivo
   ============================================================ */
.ata-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.5vw, 22px);
  margin-top: 10px;
  align-items: stretch;
}
.ata-grid .ata {
  padding: 24px 22px 20px;
  border-radius: 16px;
}
.ata-grid .ata h4 {
  font-size: 1.04rem;
  line-height: 1.28;
}
.ata-grid .ata .cat {
  font-size: 0.68rem;
}
.ata-grid .ata .view {
  padding: 10px 16px;
  font-size: 0.82rem;
}
@media (max-width: 1140px) {
  .ata-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .ata-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .ata-grid { grid-template-columns: 1fr; }
  .ata-grid .ata { max-width: 460px; margin-inline: auto; width: 100%; }
}

/* ============================================================
   3 · DEPOIMENTOS — profissional e moderno
   ============================================================ */
#depoimentos .g-layout {
  grid-template-columns: 330px 1fr;
  gap: clamp(24px, 3vw, 48px);
}
/* Cartão-resumo: destaque escuro da marca com brilho dourado */
#depoimentos .g-summary {
  background: linear-gradient(168deg, #16527e 0%, #144468 55%, #0a2740 100%) !important;
  border: 1px solid rgb(255 255 255 / 0.08) !important;
  border-radius: var(--r-2xl) !important;
  box-shadow: 0 34px 66px -32px rgb(10 39 64 / 0.75) !important;
  padding: 36px 30px !important;
  color: #fff;
}
#depoimentos .g-summary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(380px 200px at 82% -8%, rgb(var(--gold-rgb) / 0.24), transparent 62%),
    radial-gradient(300px 200px at -10% 110%, rgb(16 99 150 / 0.35), transparent 66%);
}
#depoimentos .g-summary > * {
  position: relative;
  z-index: 1;
}
#depoimentos .g-brand {
  color: rgb(255 255 255 / 0.82);
}
#depoimentos .g-brand strong {
  color: #fff;
}
#depoimentos .g-score {
  color: #fff;
  text-shadow: 0 6px 24px rgb(0 0 0 / 0.25);
}
#depoimentos .g-summary .g-stars svg {
  filter: drop-shadow(0 2px 4px rgb(0 0 0 / 0.28));
}
#depoimentos .g-note {
  color: rgb(255 255 255 / 0.72);
}
#depoimentos .g-btn-solid {
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
  color: var(--navy-deep) !important;
  box-shadow: 0 14px 30px -14px rgb(var(--gold-rgb) / 0.7);
}
#depoimentos .g-btn-solid:hover {
  filter: brightness(1.03);
  transform: translateY(-2px);
}
#depoimentos .g-btn-ghost {
  border: 1.5px solid rgb(255 255 255 / 0.35) !important;
  color: #fff !important;
  background: rgb(255 255 255 / 0.04) !important;
}
#depoimentos .g-btn-ghost:hover {
  background: rgb(255 255 255 / 0.12) !important;
  border-color: rgb(255 255 255 / 0.6) !important;
  color: #fff !important;
}
/* Cartões de avaliação: brancos, sombra suave, acento dourado */
#depoimentos .tst.g-review {
  position: relative;
  overflow: hidden;
  background: #fff !important;
  border: 1px solid rgb(16 54 85 / 0.08) !important;
  border-radius: var(--r-lg) !important;
  box-shadow: var(--sh-card) !important;
  padding: 26px 24px 24px !important;
  transition: transform 0.3s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.3s ease;
}
#depoimentos .tst.g-review::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.4s var(--ease-out);
}
#depoimentos .tst.g-review:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-card-hover) !important;
  border-color: rgb(var(--gold-rgb) / 0.4) !important;
}
#depoimentos .tst.g-review:hover::after {
  transform: scaleX(1);
}
#depoimentos .g-review .g-text {
  color: var(--muted) !important;
}
#depoimentos .g-review .g-id strong {
  font-family: var(--font-display);
}
/* skeleton segue o novo padrão de cartão */
#depoimentos .g-sk-card {
  border-color: rgb(16 54 85 / 0.08);
}
@media (max-width: 960px) {
  #depoimentos .g-layout {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   4 · HERO — remove a textura/SVG de fundo no mobile
   ============================================================ */
@media (max-width: 820px) {
  .hero::before,
  .hero::after {
    display: none !important;
  }
}

/* ============================================================
   5 · INHIRE — cards empilhados no mobile
        (ícone à esquerda · título + descrição à direita)
   ============================================================ */
@media (max-width: 600px) {
  .inh-cards {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    max-width: 440px;
    margin-inline: auto;
    perspective: none;
  }
  .inh-card,
  .fold .inh-card,
  .fold .inh-card.inh-in,
  .fold .inh-card:hover {
    display: grid !important;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 16px;
    row-gap: 2px;
    text-align: left !important;
    padding: 16px 18px !important;
    background: #fff !important;
    border: 1px solid rgb(16 54 85 / 0.12) !important;
    border-radius: 16px !important;
    box-shadow: 0 14px 30px -22px rgb(16 54 85 / 0.55) !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .inh-badge {
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    grid-row: 1 / span 2;
    align-self: center;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    background: linear-gradient(140deg, var(--navy), var(--navy-deep)) !important;
    box-shadow: 0 10px 22px -12px rgb(16 54 85 / 0.7);
  }
  .inh-badge svg {
    width: 22px !important;
    height: 22px !important;
    color: #fff !important;
  }
  .inh-card-title {
    grid-column: 2;
    align-self: end;
    margin: 0 !important;
    text-align: left !important;
    font-size: 1.02rem !important;
    color: var(--navy) !important;
  }
  .inh-card-desc {
    grid-column: 2;
    align-self: start;
    width: auto !important;
    margin: 0 !important;
    padding-top: 0 !important;
    border-top: 0 !important;
    text-align: left !important;
    font-size: 0.84rem !important;
    line-height: 1.4 !important;
    color: var(--muted) !important;
  }
}

/* ============================================================
   7 · POLIMENTO GERAL — cores, tipografia, micro-interações
   ============================================================ */
/* ritmo dos cabeçalhos */
.sec-head h2,
.about-text h2,
.wa-intro h2,
.work-content h2 {
  letter-spacing: -0.02em;
}
.sec-head p {
  max-width: 60ch;
}

/* cartões de serviço (Pratos) */
.pratos .wa-card {
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), border-color 0.3s ease, box-shadow 0.35s var(--ease-out);
}
.pratos .wa-card:hover {
  transform: translateY(-5px);
  border-color: rgb(var(--gold-rgb) / 0.5) !important;
  box-shadow: var(--sh-card-hover);
}
.pratos .wa-media img {
  transition: transform 0.6s var(--ease-out);
}
.pratos .wa-card:hover .wa-media img {
  transform: scale(1.045);
}

/* cartões de ata — sombra e realce coerentes */
.ata {
  box-shadow: var(--sh-card) !important;
}
.ata:hover {
  box-shadow: var(--sh-card-hover) !important;
  border-color: rgb(var(--gold-rgb) / 0.45) !important;
}

/* FAQ — cartões nítidos sobre o fundo claro */
.faq-item {
  background: #fff !important;
  box-shadow: 0 1px 2px rgb(16 54 85 / 0.05);
}
.faq-item:hover {
  border-color: rgb(var(--gold-rgb) / 0.4) !important;
}
.faq-item.open {
  box-shadow: var(--sh-card) !important;
}

/* botões dourados — brilho consistente ao passar o mouse */
.btn-gold:focus-visible,
.work-cta:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* marquee de clientes — respiro e leve moldura */
.clients .logo-marquee,
.logo-marquee {
  border-radius: var(--r-lg);
  border: 1px solid rgb(16 54 85 / 0.08) !important;
  box-shadow: var(--sh-card) !important;
}

/* rótulos co-tags — chips mais definidos */
.co-tag {
  transition: transform 0.2s var(--ease-out), background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.co-tag:hover {
  transform: translateY(-1px);
}

/* seleção e foco coerentes com a marca */
:focus-visible {
  outline-color: var(--gold);
}

@media (prefers-reduced-motion: reduce) {
  .sec-eyebrow,
  .pratos .wa-card,
  .pratos .wa-media img,
  #depoimentos .tst.g-review,
  #depoimentos .tst.g-review::after {
    transition: none !important;
  }
}

/* ============================================================
   REFINAMENTO v7
     1. Atas — remover bloco .meta dos cards
     2. Sec-eyebrow — sem fundo; ícone branco no círculo azul
     3. Depoimentos — g-summary sem aparência de card
     4. Modal — orc-card com vidro quase transparente e legível
     5. Botões universais — fundo azul e border-radius iguais
     6. Responsividade mobile refinada
   ============================================================ */

/* ---------- 1 · ATAS: remover meta ---------- */
.ata .meta {
  display: none !important;
}
.ata-grid .ata .view {
  margin-top: auto;
}

/* ---------- 2 · SEC-EYEBROW: sem fundo, ícone branco ---------- */
.sec-eyebrow {
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  gap: 12px;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}
.sec-eyebrow:hover {
  transform: none;
  box-shadow: none;
}
.sec-eyebrow .bi {
  color: #fff !important;                 /* ícone branco */

  box-shadow: 0 8px 18px -10px rgb(var(--navy-rgb) / 0.55);
}

/* ---------- 3 · DEPOIMENTOS: g-summary sem card ---------- */
#depoimentos .g-summary {
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 4px 6px !important;
  overflow: visible;
}
#depoimentos .g-summary::before {
  display: none !important;
}
#depoimentos .g-brand {
  color: var(--muted);
}
#depoimentos .g-brand strong {
  color: var(--ink);
}
#depoimentos .g-score {
  color: var(--navy-deep);
  text-shadow: none;
}
#depoimentos .g-summary .g-stars svg {
  filter: drop-shadow(0 1px 1px rgb(0 0 0 / 0.12));
}
#depoimentos .g-note {
  color: var(--muted);
}

/* ---------- 4 · MODAL: orc-card em vidro ---------- */
.orc-card {
  background: rgb(255 255 255 / 0.42) !important;
  -webkit-backdrop-filter: blur(46px) saturate(1.9) !important;
  backdrop-filter: blur(46px) saturate(1.9) !important;
  border: 1px solid rgb(255 255 255 / 0.45) !important;
  box-shadow:
    0 50px 120px -34px rgb(0 0 0 / 0.6),
    0 1px 0 rgb(255 255 255 / 0.5) inset !important;
}
.orc-main {
  background: transparent !important;
}
/* mantém a legibilidade dos campos sobre o vidro */
.field input,
.field select,
.field textarea {
  background: rgb(255 255 255 / 0.9) !important;
}
@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .orc-card {
    background: #f6f8fc !important;
  }
}

/* ---------- 5 · BOTÕES UNIVERSAIS: azul + radius iguais ---------- */
/* primários — preenchidos em azul */
.btn-gold,
.orc-submit,
.work-cta,
#depoimentos .g-btn-solid,
.co-more-btn,
.clients .co-more-btn,
.ata .view,
.btn-gold-sm,
.form-success .btn-gold {
  background: var(--navy) !important;
  background-image: none !important;
  color: #fff !important;
  border: 1.5px solid var(--navy) !important;
  border-radius: 12px !important;
  box-shadow: 0 12px 26px -14px rgb(var(--navy-rgb) / 0.55) !important;
}
.btn-gold svg,
.orc-submit svg,
.work-cta svg,
#depoimentos .g-btn-solid svg,
.ata .view svg {
  color: #fff !important;
}
.btn-gold:hover,
.orc-submit:hover,
.work-cta:hover,
#depoimentos .g-btn-solid:hover,
.co-more-btn:hover,
.clients .co-more-btn:hover,
.ata .view:hover,
.btn-gold-sm:hover,
.form-success .btn-gold:hover {
  background: var(--navy-deep) !important;
  border-color: var(--navy-deep) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -14px rgb(var(--navy-rgb) / 0.6) !important;
}
/* secundários — contorno azul, mesmo raio */
#depoimentos .g-btn-ghost,
.btn-ghost-sm,
.fs-mail {
  background: transparent !important;
  color: var(--navy) !important;
  border: 1.5px solid rgb(var(--navy-rgb) / 0.4) !important;
  border-radius: 12px !important;
  box-shadow: none !important;
}
#depoimentos .g-btn-ghost:hover,
.btn-ghost-sm:hover,
.fs-mail:hover {
  background: var(--navy) !important;
  border-color: var(--navy) !important;
  color: #fff !important;
}
/* botão CTA do header (sobre fundo escuro) mantém legibilidade em contorno claro */
.nav-cta {
  border: 1.5px solid rgba(255, 255, 255, 0.267);
  border-radius: 8px;
  padding: 10px 18px !important;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.nav-cta:hover {
  background: rgb(255 255 255 / 0.12);
  border-color: rgb(255 255 255 / 0.7);
}

/* ============================================================
   6 · RESPONSIVIDADE MOBILE REFINADA
   ============================================================ */
@media (max-width: 600px) {
  :root {
    --space-section: 54px;
  }
  section {
    padding: 52px 0;
  }

  /* — títulos e textos equilibrados — */
  .sec-head h2,
  .about-text h2,
  .work-content h2 {
    font-size: clamp(1.5rem, 6.2vw, 1.9rem);
    line-height: 1.14;
  }
  .wa-intro h2 {
    font-size: clamp(1.4rem, 6vw, 1.75rem);
  }
  .co-title {
    font-size: clamp(1.35rem, 5.6vw, 1.65rem) !important;
  }
  .about-text > p,
  .wa-intro p,
  .sec-head p,
  .work-content > p,
  .about-servicos li,
  .faq-a p,
  .atas-note {
    font-size: 0.96rem !important;
    line-height: 1.62 !important;
  }
  .atas-group {
    font-size: 1.25rem !important;
  }

  /* — imagens dimensionadas para o mobile — */
  #sobre .photo img {
    width: 100% !important;
    max-width: 500px;
  }
  #regioes .photo img,
  .sobre-2 .photo img {
    width: 92% !important;
  }
  .wa-intro-img {
    width: 190px;
    margin-top: 12px;
  }
  .trabalhe .work-photo {
    max-width: 400px;
    margin-inline: auto;
  }
  .hero-media {
    width: min(340px, 84%) !important;
    margin-inline: auto;
  }

  /* — eyebrow compacto — */
  .sec-eyebrow {
    font-size: 0.66rem !important;
    letter-spacing: 0.14em;
    margin-bottom: 16px !important;
  }
  .sec-eyebrow .bi {
    width: 27px !important;
    height: 27px !important;
    font-size: 0.82rem !important;
  }

  /* — Atas: card único mais folgado — */
  .ata-grid .ata {
    padding: 22px 20px 18px;
  }
  .ata-grid .ata h4 {
    font-size: 1.08rem;
  }

  /* — Depoimentos: resumo aberto e centrado — */
  #depoimentos .g-summary {
    max-width: 420px;
    margin-inline: auto;
    padding: 0 6px 6px !important;
  }
  #depoimentos .g-score {
    font-size: 3.1rem;
    margin: 12px 0 8px;
  }

  /* — Stats do sobre: respiro e alinhamento — */
  #sobre .hero-stats {
    gap: 6px;
    padding-top: 14px;
  }
  #sobre .hero-stats .num {
    font-size: 1.5rem;
  }
  #sobre .hero-stats .lbl {
    font-size: 0.66rem;
    line-height: 1.3;
  }

  /* — botões full-width mais confortáveis no toque — */
  .work-cta,
  .co-more-btn,
  .clients .co-more-btn {
    width: 100%;
    justify-content: center;
    min-height: 50px;
  }
  .g-actions .g-btn {
    min-height: 48px;
  }
}

@media (max-width: 400px) {
  .sec-head h2,
  .about-text h2,
  .work-content h2 {
    font-size: 1.48rem;
  }
  .wa-intro-img {
    width: 160px;
  }
  #sobre .hero-stats .num {
    font-size: 1.32rem;
  }
  #depoimentos .g-score {
    font-size: 2.8rem;
  }
}

/* ============================================================
   REFINAMENTO v8
     1. Ícones menos arredondados (mais quadrados)
     2. Atas: descrição no lugar do badge de categoria (.cat)
   ============================================================ */

/* 1 · ícones mais quadrados (squircle) */
.sec-eyebrow .bi {
  border-radius: 9px !important;
}
.inh-badge {
  border-radius: 14px !important;
}
@media (max-width: 600px) {
  .inh-badge {
    border-radius: 13px !important;
  }
}

/* 2 · descrição curta da ata (substitui o .cat) */
.ata .ata-desc {
  margin: 4px 0 6px;
  font-family: var(--font-read);
  font-size: 0.86rem;
  line-height: 1.5;
  font-weight: 400;
  color: var(--muted);
}
.ata-grid .ata .ata-desc {
  margin-bottom: 8px;
}
@media (max-width: 600px) {
  .ata .ata-desc {
    font-size: 0.9rem;
  }
}

/* ============================================================
   REFINAMENTO v9
     A. Menu mobile (m-nav-panel) — layout moderno
     B. Depoimentos — mural em movimento + faixa de reputação
     C. Footer — moderno, com faixa de CTA
   ============================================================ */

/* ============================================================
   A · MENU MOBILE
   ============================================================ */
.m-nav-panel {
  width: 88%;
  max-width: 400px;
  padding: 18px 18px calc(34px + env(safe-area-inset-bottom));
  gap: 0;
}
.m-nav-top {
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.m-nav-brand {
  display: inline-flex;
  align-items: center;
}
.m-nav-brand img {
  height: 40px;
  width: auto;
  display: block;
}
.m-close {
  border-radius: 12px;
}

.m-links {
  gap: 8px;
}
.m-links > a {
  display: grid !important;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 13px !important;
  margin: 0 !important;
  border-radius: 14px;
  background: rgb(255 255 255 / 0.045);
  border: 1px solid rgb(255 255 255 / 0.08);
}
.m-links > a::after {
  display: none !important;
}
.m-ico {
  width: 42px;
  height: 42px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(140deg, rgb(var(--gold-rgb) / 0.2), rgb(var(--gold-rgb) / 0.06));
  border: 1px solid rgb(var(--gold-rgb) / 0.28);
  color: var(--gold-light);
}
.m-ico svg {
  width: 21px;
  height: 21px;
}
.m-txt {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  min-width: 0;
}
.m-txt b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}
.m-txt small {
  font-size: 0.75rem;
  color: rgb(255 255 255 / 0.52);
  font-weight: 400;
}
.m-arrow {
  width: 18px;
  height: 18px;
  color: rgb(255 255 255 / 0.4);
  transition: transform 0.2s ease, color 0.2s ease;
}
.m-links > a:hover,
.m-links > a:active {
  background: rgb(var(--gold-rgb) / 0.12);
  border-color: rgb(var(--gold-rgb) / 0.35);
}
.m-links > a:hover .m-arrow {
  color: var(--gold-light);
  transform: translateX(3px);
}

.m-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 18px 0 6px;
  padding: 15px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 30px -14px rgb(var(--gold-rgb) / 0.7);
  transition: transform 0.2s var(--ease-out), box-shadow 0.25s;
}
.m-cta:hover {
  transform: translateY(-2px);
}
.m-cta svg {
  width: 18px;
  height: 18px;
}

.m-contact {
  gap: 2px;
  margin-top: 12px;
}
.m-contact a {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 11px 4px !important;
  border: 0 !important;
  background: none !important;
  color: rgb(255 255 255 / 0.82) !important;
  font-size: 0.95rem;
  font-weight: 500;
}
.m-contact a:hover {
  color: var(--gold-light) !important;
}
.m-ico-sm {
  width: 36px;
  height: 36px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgb(255 255 255 / 0.06);
  border: 1px solid rgb(255 255 255 / 0.1);
  color: var(--gold-light);
}
.m-ico-sm svg {
  width: 18px;
  height: 18px;
}

.m-social {
  gap: 10px;
  margin-top: 18px;
}
.m-social a {
  width: 46px;
  height: 46px;
  border-radius: 12px !important;
  background: rgb(255 255 255 / 0.06);
  border: 1px solid rgb(255 255 255 / 0.12);
  color: #fff;
  display: grid;
  place-items: center;
  transition: 0.25s var(--ease-out);
}
.m-social a:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  border-color: transparent;
  transform: translateY(-2px);
}
.m-social a i {
  font-size: 1.15rem;
}

/* ============================================================
   B · DEPOIMENTOS — mural em movimento
   ============================================================ */
#depoimentos.tw-sec {
  position: relative;
  overflow: hidden;
}

/* Faixa de reputação */
.tw-summary {
  max-width: 880px;
  margin: 0 auto 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
  padding: 24px 30px;
  border-radius: var(--r-2xl);
  background: linear-gradient(120deg, #123f66 0%, #175a89 55%, #1f689e 100%);
  color: #fff;
  border: 1px solid rgb(255 255 255 / 0.08);
  box-shadow: 0 34px 66px -34px rgb(10 39 64 / 0.7);
  position: relative;
  overflow: hidden;
}
.tw-summary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(320px 170px at 86% -25%, rgb(var(--gold-rgb) / 0.28), transparent 62%);
}
.tw-summary > * {
  position: relative;
  z-index: 1;
}
.tw-sum-main {
  display: flex;
  align-items: center;
  gap: 18px;
}
.tw-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 1;
  color: #fff;
  text-shadow: 0 6px 22px rgb(0 0 0 / 0.25);
}
.tw-sum-meta {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.tw-summary .g-stars svg {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 2px 4px rgb(0 0 0 / 0.3));
}
.tw-sum-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgb(255 255 255 / 0.78);
  margin: 0;
  max-width: 30ch;
}
.tw-glogo {
  display: inline-flex;
  flex: none;
}
.tw-glogo svg {
  width: 18px;
  height: 18px;
}
.tw-sum-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
#depoimentos .tw-summary .g-btn-solid {
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
  color: var(--navy-deep) !important;
  border: 1.5px solid transparent !important;
}
#depoimentos .tw-summary .g-btn-ghost {
  background: rgb(255 255 255 / 0.06) !important;
  color: #fff !important;
  border: 1.5px solid rgb(255 255 255 / 0.35) !important;
}
#depoimentos .tw-summary .g-btn-ghost:hover {
  background: rgb(255 255 255 / 0.14) !important;
  border-color: rgb(255 255 255 / 0.6) !important;
}

/* Mural (marquee) */
.tw-wall {
  overflow: hidden;
  padding: 10px 0 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.tw-track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.tw-half {
  display: flex;
  gap: 20px;
  padding-right: 20px;
  align-items: stretch;
}
.tw-anim {
  animation: tw-scroll linear infinite;
}
.tw-wall:hover .tw-anim {
  animation-play-state: paused;
}
@keyframes tw-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.tw-card {
  width: clamp(280px, 82vw, 350px);
  flex: none;
  background: #fff;
  border: 1px solid rgb(16 54 85 / 0.08) !important;
  border-radius: 18px !important;
  box-shadow: var(--sh-card) !important;
  padding: 26px 24px 22px !important;
  position: relative;
  overflow: hidden;
  white-space: normal;
}
.tw-card::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  right: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.2rem;
  line-height: 1;
  color: rgb(var(--gold-rgb) / 0.16);
  pointer-events: none;
  z-index: 0;
}
.tw-wall .tst.g-review::after {
  transform: scaleX(1);
  opacity: 0.9;
}
.tw-wall .tst.g-review:hover {
  transform: none;
}
.tw-card > * {
  position: relative;
  z-index: 1;
}
.tw-card .g-text {
  -webkit-line-clamp: 5;
  line-clamp: 5;
}

/* Fonte acessível (oculta visualmente, mantida para leitores/observer) */
.tw-source {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
/* rede de segurança: revela a fonte como grade se o mural não montar */
.tw-fallback-grid .tw-wall {
  display: none;
}
.tw-fallback-grid .tw-source {
  position: static;
  width: auto;
  height: auto;
  margin: 0 auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  max-width: var(--wrap-w);
  padding-inline: var(--wrap-pad);
}

@media (prefers-reduced-motion: reduce) {
  .tw-wall {
    overflow-x: auto;
    scrollbar-width: thin;
  }
}
@media (max-width: 720px) {
  .tw-summary {
    justify-content: center;
    text-align: center;
    padding: 22px 20px;
  }
  .tw-sum-main {
    flex-direction: column;
    gap: 10px;
  }
  .tw-num {
    font-size: 3rem;
  }
  .tw-sum-note {
    justify-content: center;
    max-width: none;
  }
  .tw-sum-cta {
    justify-content: center;
    width: 100%;
  }
  .tw-sum-cta .g-btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}

/* ============================================================
   C · FOOTER moderno
   ============================================================ */
footer {
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 0.1), transparent);
}

/* Faixa de CTA */
.foot-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  padding: clamp(26px, 3.4vw, 40px);
  border-radius: var(--r-2xl);
  margin-bottom: clamp(40px, 5vw, 64px);
  background:
    radial-gradient(380px 220px at 92% -20%, rgb(var(--gold-rgb) / 0.22), transparent 60%),
    linear-gradient(120deg, rgb(255 255 255 / 0.08), rgb(255 255 255 / 0.03));
  border: 1px solid rgb(255 255 255 / 0.12);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.foot-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.foot-cta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgb(var(--gold-rgb) / 0.2);
}
.foot-cta-txt h3 {
  font-family: var(--font-head);
  color: #fff;
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
  font-weight: 640;
  line-height: 1.14;
  margin: 0 0 8px;
}
.foot-cta-txt p {
  color: rgb(255 255 255 / 0.72);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 54ch;
  margin: 0;
}
.foot-cta-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.foot-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 18px 34px -16px rgb(var(--gold-rgb) / 0.7);
  transition: transform 0.2s var(--ease-out), box-shadow 0.25s;
}
.foot-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 46px -16px rgb(var(--gold-rgb) / 0.9);
}
.foot-cta-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}
.foot-cta-call svg {
  color: var(--gold-light);
}
.foot-cta-call:hover {
  color: var(--gold-light);
}

/* Social tiles */
footer .socials a {
  width: 44px;
  height: 44px;
  border-radius: 12px !important;
  border: 1px solid rgb(var(--gold-rgb) / 0.5) !important;
  background: rgb(255 255 255 / 0.04) !important;
  color: var(--gold-light) !important;
  display: grid;
  place-items: center;
  transition: 0.25s var(--ease-out);
}
footer .socials a:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
  color: var(--navy-deep) !important;
  border-color: transparent !important;
  transform: translateY(-2px);
}

/* Contato com ícones */
.foot-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.foot-contact li {
  display: block;
}
footer .foot-contact a,
footer .foot-contact .foot-static {
  display: flex !important;
  align-items: center;
  gap: 12px;
  color: rgb(255 255 255 / 0.85) !important;
  transition: color 0.2s ease;
}
.foot-contact a:hover {
  color: var(--gold-light) !important;
}
.foot-ci {
  width: 38px;
  height: 38px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgb(255 255 255 / 0.05);
  border: 1px solid rgb(255 255 255 / 0.1);
  color: var(--gold-light);
}
.foot-ci svg {
  width: 18px;
  height: 18px;
}
.foot-cv {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  font-weight: 500;
  font-size: 0.9rem;
  min-width: 0;
  overflow-wrap: break-word;
}
.foot-cv small {
  font-size: 0.72rem;
  color: rgb(255 255 255 / 0.5);
  font-weight: 400;
}
.foot-quote-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  transition: gap 0.2s ease;
}
.foot-quote-link:hover {
  gap: 12px;
}

.foot-bottom {
  flex-wrap: wrap;
  gap: 8px 16px;
}
.foot-bottom-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.foot-sep {
  opacity: 0.5;
}

@media (max-width: 720px) {
  .foot-cta {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .foot-cta-actions {
    width: 100%;
  }
  .foot-cta-btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}

/* ============================================================
   REFINAMENTO v10
     - Depoimentos: grade responsiva (sem carrossel)
     - Mais efeitos de hover
   ============================================================ */

/* ---------- Depoimentos: grade responsiva ---------- */
.tw-grid {
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: var(--wrap-pad);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(16px, 2vw, 26px);
  align-items: stretch;
  justify-content: center;
}
.tw-grid .tst.g-review {
  height: 100%;
}
/* aparência + hover dos cards de avaliação */
#depoimentos .tst.g-review {
  position: relative;
  overflow: hidden;
  transition: transform 0.32s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.3s ease;
}
#depoimentos .tst.g-review::before {
  content: "\201C";
  position: absolute;
  top: 4px;
  right: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  line-height: 1;
  color: rgb(var(--gold-rgb) / 0.14);
  pointer-events: none;
  z-index: 0;
}
#depoimentos .tst.g-review > * {
  position: relative;
  z-index: 1;
}
#depoimentos .tst.g-review:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-card-hover) !important;
  border-color: rgb(var(--gold-rgb) / 0.45) !important;
}
#depoimentos .tst.g-review:hover::after {
  transform: scaleX(1);
}
#depoimentos .g-review .av {
  transition: transform 0.3s var(--ease-out);
}
#depoimentos .tst.g-review:hover .av {
  transform: scale(1.07) rotate(-3deg);
}

/* ---------- Mais efeitos de hover no site ---------- */

/* eyebrow: ícone reage */
.sec-eyebrow .bi {
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
}
.sec-eyebrow:hover .bi {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 10px 22px -8px rgb(var(--navy-rgb) / 0.6);
}

/* logos clicáveis */
.logo img,
footer .about .logo {
  transition: transform 0.3s var(--ease-out), filter 0.3s ease;
}
.logo:hover img {
  transform: scale(1.04);
}
footer .about .logo:hover {
  transform: scale(1.03);
}

/* links do footer deslizam */
footer .foot-grid ul:not(.foot-contact) li a {
  display: inline-block;
  transition: transform 0.2s var(--ease-out), color 0.2s ease;
}
footer .foot-grid ul:not(.foot-contact) li a:hover {
  transform: translateX(5px);
  color: var(--gold-light) !important;
}

/* chips de instituições */
.co-tag {
  transition: transform 0.2s var(--ease-out), background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.co-tag:hover {
  transform: translateY(-2px);
  border-color: rgb(var(--gold-rgb) / 0.55) !important;
  color: var(--navy) !important;
  background: rgb(var(--gold-rgb) / 0.08) !important;
  box-shadow: 0 8px 18px -12px rgb(var(--navy-rgb) / 0.5);
}

/* setas / CTAs com ícone deslizam */
.work-cta svg,
.foot-quote-link svg,
.foot-cta-btn svg {
  transition: transform 0.2s var(--ease-out);
}
.work-cta:hover svg,
.foot-quote-link:hover svg,
.foot-cta-btn:hover svg {
  transform: translateX(4px);
}

/* faixa de CTA do footer reage */
.foot-cta {
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s var(--ease-out);
}
.foot-cta:hover {
  border-color: rgb(var(--gold-rgb) / 0.3);
  box-shadow: 0 30px 60px -34px rgb(0 0 0 / 0.5);
}

/* faixa de reputação reage sutilmente */
.tw-summary {
  transition: box-shadow 0.35s ease, transform 0.35s var(--ease-out);
}
.tw-summary:hover {
  transform: translateY(-3px);
  box-shadow: 0 40px 74px -34px rgb(10 44 70 / 0.75);
}

/* estatísticas do sobre */
#sobre .hero-stats .s {
  transition: transform 0.25s var(--ease-out);
}
#sobre .hero-stats .s:hover {
  transform: translateY(-3px);
}

/* itens do FAQ */
.faq-item .faq-q button {
  transition: color 0.2s ease, background 0.25s ease;
}
.faq-item:hover .faq-q button {
  color: var(--navy-dark);
}
.faq-chevron {
  transition: transform 0.3s ease, color 0.2s ease;
}
.faq-item:hover .faq-chevron {
  color: var(--gold);
}

/* imagens com moldura reagem */
#sobre .photo img,
#regioes .photo img,
.trabalhe .work-photo img {
  transition: transform 0.5s var(--ease-out);
}
#sobre .photo:hover img,
#regioes .photo:hover img,
.trabalhe .work-photo:hover img {
  transform: scale(1.025);
}

@media (prefers-reduced-motion: reduce) {
  #depoimentos .tst.g-review,
  #depoimentos .g-review .av,
  .sec-eyebrow .bi,
  .logo img,
  .co-tag,
  .foot-cta,
  .tw-summary,
  #sobre .photo img,
  #regioes .photo img,
  .trabalhe .work-photo img {
    transition: none !important;
  }
}

/* ============================================================
   REFINAMENTO v11
     - Azul mais escuro + gradiente imersivo (hero, header, footer)
     - orc-card: gradiente branco (sem vidro)
     - m-nav-panel: mais escuro, mantendo o vidro
     - tw-summary: sem fundo/bordas
     - foot-cta removido
     - wa-nav (is-pressed / ripple): efeito azul
     - co-tags: grade de chips com selo de verificado
   ============================================================ */

/* ---------- Gradiente imersivo (meio-escuro -> escuro) ---------- */
.fold .hero {
  background:
    radial-gradient(760px 460px at 88% -6%, rgb(var(--gold-rgb) / 0.13), transparent 60%),
    radial-gradient(680px 520px at -10% 112%, rgb(20 96 148 / 0.20), transparent 62%),
    linear-gradient(165deg, #0e3a5f 0%, #0a2b47 46%, #05192e 100%) !important;
}
header::before {
  background:
    radial-gradient(680px 300px at 90% -40%, rgb(var(--gold-rgb) / 0.12), transparent 60%),
    linear-gradient(165deg, #0f3d63 0%, #0a2b47 100%) !important;
}
footer {
  background:
    radial-gradient(720px 340px at 92% 0%, rgb(var(--gold-rgb) / 0.10), transparent 60%),
    linear-gradient(165deg, #0e3a5f 0%, #071f36 100%) !important;
}
/* faixa promo (INHIRE) e blocos escuros acompanham o tom */
.orc-aside {
  background: linear-gradient(162deg, #0e3a5f, #06192c) !important;
}

/* ---------- orc-card: gradiente branco, sem vidro ---------- */
.orc-card {
  background: linear-gradient(180deg, #ffffff 0%, #eef3fa 100%) !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  border: 1px solid rgb(var(--navy-rgb) / 0.1) !important;
  box-shadow: 0 50px 120px -34px rgb(0 0 0 / 0.5), 0 1px 0 #fff inset !important;
}
.orc-main {
  background: transparent !important;
}
.field input,
.field select,
.field textarea {
  background: #ffffff !important;
  border: 1px solid rgb(var(--navy-rgb) / 0.14) !important;
}
.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgb(var(--navy-rgb) / 0.3) !important;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--royal) !important;
}

/* ---------- m-nav-panel: mais escuro, ainda com vidro ---------- */
.m-nav-panel {
  background:
    radial-gradient(420px 300px at 100% 0%, rgb(var(--gold-rgb) / 0.12), transparent 60%),
    linear-gradient(180deg, rgba(9, 32, 52, 0.9), rgba(4, 15, 26, 0.94)) !important;
  -webkit-backdrop-filter: blur(26px) saturate(1.4) !important;
  backdrop-filter: blur(26px) saturate(1.4) !important;
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .m-nav-panel {
    background: linear-gradient(180deg, #0b2338, #060f1a) !important;
  }
}

/* ---------- tw-summary: sem fundo/bordas ---------- */
.tw-summary {
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 0 6px !important;
  overflow: visible;
}
.tw-summary::before {
  display: none !important;
}
.tw-summary:hover {
  transform: none !important;
  box-shadow: none !important;
}
.tw-num {
  color: var(--navy-deep) !important;
  text-shadow: none !important;
}
.tw-summary .g-stars svg {
  filter: drop-shadow(0 1px 1px rgb(0 0 0 / 0.12)) !important;
}
.tw-sum-note {
  color: var(--muted) !important;
}
#depoimentos .tw-summary .g-btn-solid {
  background: var(--navy) !important;
  color: #fff !important;
  border: 1.5px solid var(--navy) !important;
}
#depoimentos .tw-summary .g-btn-solid:hover {
  background: var(--navy-deep) !important;
  border-color: var(--navy-deep) !important;
}
#depoimentos .tw-summary .g-btn-ghost {
  background: transparent !important;
  color: var(--navy) !important;
  border: 1.5px solid rgb(var(--navy-rgb) / 0.4) !important;
}
#depoimentos .tw-summary .g-btn-ghost:hover {
  background: var(--navy) !important;
  color: #fff !important;
  border-color: var(--navy) !important;
}

/* ---------- wa-nav: efeito de clique azul ---------- */
.wa-nav .pg-ripple {
  background: rgb(90 165 225 / 0.5) !important;
}

/* ---------- co-tags: grade de chips "verificados" ---------- */
.client-orgs .co-tags {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(212px, 1fr));
  gap: 10px;
  margin: 0 !important;
}
.client-orgs .co-tag {
  justify-content: flex-start;
  gap: 11px;
  padding: 12px 15px !important;
  border-radius: 13px !important;
  border: 1px solid rgb(var(--navy-rgb) / 0.1) !important;
  background: #fff !important;
  box-shadow: 0 1px 3px rgb(var(--navy-rgb) / 0.05) !important;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy) !important;
}

.client-orgs .co-tag:hover {
  transform: translateY(-3px);
  border-color: rgb(var(--gold-rgb) / 0.5) !important;
  background: linear-gradient(140deg, #ffffff 45%, rgb(var(--gold-rgb) / 0.12)) !important;
  box-shadow: 0 14px 26px -14px rgb(var(--navy-rgb) / 0.4) !important;
}
.client-orgs .co-tag:hover::before {
  transform: scale(1.08);
}
@media (max-width: 520px) {
  .client-orgs .co-tags {
    grid-template-columns: 1fr 1fr;
  }
  .client-orgs .co-tag {
    font-size: 0.82rem;
    padding: 11px 12px !important;
  }
}

/* ============================================================
   REFINAMENTO v12
     1. Ícones com fundo azul voltam a ser redondos
     2. Botão de orçamento (header): só borda branca translúcida, sem fundo
     3. Sem efeito de hover nas fotos
     4. Mobile: m-ico com fundo dourado e ícone branco
     5. Logo da Leve acima do h3 no modal (para o mobile)
   ============================================================ */

/* 1 · ícones com fundo azul → redondos */
.sec-eyebrow .bi {
  border-radius: 50% !important;
}
.inh-badge,
.fold .inh-badge {
  border-radius: 50% !important;
}
@media (max-width: 600px) {
  .inh-badge {
    border-radius: 50% !important;
  }
}

/* 2 · botão "Realizar Orçamento" (header): borda branca quase transparente, sem fundo */
.nav-cta {
  background: transparent !important;
  background-image: none !important;
  border: 1.5px solid rgb(255 255 255 / 0.3) !important;
  color: #fff !important;
  box-shadow: none !important;
}
.nav-cta:hover,
.nav-cta:focus-visible {
  background: transparent !important;
  border-color: rgb(255 255 255 / 0.6) !important;
}

/* 3 · remover efeito de hover nas fotos */
.hero-media .frame:hover img,
.work-photo:hover img,
.trabalhe .work-photo:hover img,
.pratos .wa-card:hover .wa-media img,
#sobre .photo:hover img,
#regioes .photo:hover img,
.sobre-2 .photo:hover img {
  transform: none !important;
}

/* 4 · mobile: m-ico com fundo dourado e ícone branco */
.m-ico {
  background: linear-gradient(140deg, var(--gold-light), var(--gold)) !important;
  border-color: transparent !important;
  color: #fff !important;
}
.m-ico svg {
  color: #fff !important;
}

/* 5 · logo da Leve acima do h3 no modal — visível no mobile (onde o aside some) */
.orc-mhead-logo {
  display: none;
  height: 34px;
  width: auto;
  margin: 0 0 14px;
}
@media (max-width: 760px) {
  .orc-mhead-logo {
    display: block;
  }
}

/* ============================================================
   REFINAMENTO v13
     1. Remover bordas dos inh-cards
     2. inh-badge com o mesmo background do desktop (no mobile)
     3. bi-geo-alt-fill maior no mobile
     4. bi-geo-alt-fill sempre no estado de hover
     5. Estilização do <mark> aprimorada
     6. m-cta (mobile): borda branca, sem background
   ============================================================ */

/* 1 · inh-cards sem bordas */
.inh-card,
.fold .inh-card,
.fold .inh-card.inh-in,
.fold .inh-card:hover {
  border: 0 !important;
}
@media (max-width: 600px) {
  .inh-card,
  .fold .inh-card,
  .fold .inh-card.inh-in,
  .fold .inh-card:hover {
    border: 0 !important;
  }
}

/* 2 · inh-badge com o background do desktop, inclusive no mobile */
.inh-badge,
.fold .inh-badge {
  background: linear-gradient(180deg, var(--navy-dark), var(--navy)) !important;
}
@media (max-width: 600px) {
  .inh-badge {
    background: linear-gradient(180deg, var(--navy-dark), var(--navy)) !important;
  }
}

/* 3 e 4 · ícone de localização (Regiões): sempre "no hover" + maior no mobile */
.sec-eyebrow .bi-geo-alt-fill {
  transform: scale(1.08) rotate(-3deg) !important;
  box-shadow: 0 10px 22px -8px rgb(var(--navy-rgb) / 0.6) !important;
}
@media (max-width: 600px) {
  .sec-eyebrow .bi-geo-alt-fill {
    width: 34px !important;
    height: 34px !important;
    font-size: 1.05rem !important;
  }
}

/* 5 · <mark> — destaque dourado elegante (legível em fundo claro e escuro) */
mark {
  color: var(--gold) !important;
  font-weight: 700;
}

/* 6 · botão "Realizar orçamento" no menu mobile: só borda branca, sem fundo */
.m-cta {
  background: transparent !important;
  background-image: none !important;
  border: 1.5px solid rgb(255 255 255 / 0.4) !important;
  color: #fff !important;
  box-shadow: none !important;
}
.m-cta:hover {
  background: transparent !important;
  border-color: rgb(255 255 255 / 0.7) !important;
}
.m-cta svg {
  color: #fff !important;
}

/* ============================================================
   REFINAMENTO v14
     1. Dropdown Atas (#atasMenu): ícone/svg/texto alinhados e organizados
     2. Botão "Realizar Orçamento" no hero (abaixo do lead) — 100% no mobile
     3. .inh-badge: fundo branco, borda azul, ícone dourado
   ============================================================ */

/* 1 · dropdown de Atas — alinhamento limpo (span + svg + texto) */
.nav-drop .ndc {
  align-items: center !important;
  min-height: 60px;                 /* mesma altura nos 4 cards, mesmo com texto em 2 linhas */
}
.nav-drop .ndc-ico {
  grid-row: 1 / -1 !important;       /* ícone centralizado verticalmente qualquer que seja a altura do texto */
  align-self: center !important;
  flex: 0 0 auto;
}
.nav-drop .ndc-ico svg {
  display: block;                    /* remove o gap de baseline do svg inline */
}
.nav-drop .ndc-t {
  grid-column: 2 !important;
  align-self: center !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  min-height: 34px;                  /* alinha o texto ao centro do ícone */
  line-height: 1.25;
}

/* 2 · CTA "Realizar Orçamento" no hero */
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin: 4px 0 6px;
  padding: 15px 30px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.72rem, 0.64rem + 0.4vw, 0.82rem);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--navy-deep);
  border: 0;
  border-radius: 14px;
  color: #fff;
  margin-left: -22px;

}
.hero-cta:hover {
  transform: translateY(-2px);
  
  filter: brightness(1.03);
 

    color: var(--gold-light);
}
.hero-cta:active {
  transform: translateY(0);
}
.hero-cta:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}
.hero-cta .hero-cta-arrow {
  font-size: 2rem;
  color: var(--gold) !important;
  flex: 0 0 auto;
  transition: transform 0.25s var(--ease-out);
}
.hero-cta:hover .hero-cta-arrow {
  transform: translateX(4px);
}

/* mobile: botão ocupa 100% da largura e nunca quebra o layout */
@media (max-width: 880px) {
  .hero-cta {
    order: 4;                        /* entre o lead (3) e as stats (5) */
    align-self: stretch;
  }
}
@media (max-width: 640px) {
  .hero-cta {
    width: 100%;
    max-width: 100%;
    padding: 15px 20px;
    margin: 8px 0 4px;
  }
}
@media (max-width: 360px) {
  .hero-cta {
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    padding: 14px 14px;
    gap: 7px;
  }
}

/* 3 · .inh-badge — fundo branco, borda azul, ícone dourado */
.inh-badge,
.fold .inh-badge {
  background: #0A2943 !important;
  background-image: none !important;
  border: 1.5px solid #ffffff23 !important;
  box-shadow: 0 10px 22px -14px rgb(var(--navy-rgb) / 0.5) !important;
}
.inh-badge svg,
.fold .inh-badge svg {
  color: #fff !important;
}
@media (max-width: 600px) {
  .inh-badge {
    background: #ffffff !important;
    background-image: none !important;
    border: 1.5px solid var(--navy) !important;
  }
  .inh-badge svg {
    color: #fff !important;
  }
}

/* v14 · hero no mobile: em telas pequenas o conteúdo (agora com o botão) fica mais
   alto que uma tela. O layout "preencher 1 tela" do .fold (min-height:100dvh + flex)
   travava a altura do hero e fazia a seção seguinte (INHIRE) sobrepor o botão. No
   mobile passamos para fluxo em bloco natural: o hero ocupa a altura do seu conteúdo,
   alinhado ao topo, com folga para o header/logo, e as seções empilham sem sobrepor. */
@media (max-width: 880px) {
  .fold {
    display: block;
    min-height: 0;
  }
  .fold .hero,
  .hero {
    flex: 0 0 auto;
    align-items: flex-start;
    height: auto !important;      /* remove o "height:100vh" que travava o hero em 1 tela */
    min-height: 0 !important;
    padding-top: clamp(102px, 12vh + 44px, 128px);
  }
}

/* ============================================================
   REFINAMENTO v15
     1. hero-tagline sem margin-top no mobile (hero 100%)  [feito acima]
     2. #sobre sem a foto do mascote → layout centrado e apresentável
     3. #trabalhe: foto passa a ser o mascote, sem fundo azul
   ============================================================ */

/* 2 · #sobre — bloco de texto único, centralizado e destacado */
#sobre {
  margin-top: 0 !important;
  padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 6vw, 80px) !important;
}
#sobre .about-grid.about-solo {
  grid-template-columns: 1fr !important;

  gap: 0 !important;
  align-items: right;
  margin-bottom: 10px;
}
#sobre .about-text {

  display: flex;
  flex-direction: column;

}

#sobre .about-title {
  display: block !important;

  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-size: clamp(1.7rem, 1.2rem + 2.4vw, 2.6rem);
  color: var(--navy-deep);
  margin: 10px 0 16px;
  max-width: 18ch;
}
#sobre .about-text > p {
  color: var(--muted);
  font-weight: 300;
  font-size: clamp(1rem, 0.95rem + 0.45vw, 1.2rem);
  line-height: 1.7;
  max-width: 720px;

}
/* serviços como 3 cards */
#sobre .about-servicos {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  margin: 4px 0 38px;
  text-align: left;
}
#sobre .about-servicos li {
  position: relative;


  border-radius: 18px;


  transition:
    transform 0.28s var(--ease-out),
    box-shadow 0.28s var(--ease-out),
    border-color 0.28s var(--ease-out);
}


#sobre .about-servicos li b {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy-deep);
}

@media (max-width: 760px) {
  #sobre .about-servicos {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
  #sobre .about-title {
    max-width: none;
  }
}

/* 3 · #trabalhe — mascote sem fundo azul, exibido por inteiro */
.trabalhe .work-photo img {
  background-color: transparent !important;
  background: none !important;
  border-radius: 0 !important;
  width: 100% !important;
  height: auto !important;
  max-height: 460px;
  object-fit: contain !important;
  margin: 0 auto;
}
.trabalhe .work-photo {
  overflow: visible !important;
  display: flex;
  justify-content: center;
}

/* v15 · #sobre no mobile — evitar estouro horizontal das estatísticas */
@media (max-width: 760px) {
  #sobre .about-text {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  #sobre .hero-stats {
    flex-wrap: nowrap !important;
    width: 100% !important;
    max-width: 100%;
    justify-content: center;
    gap: 6px;
    padding: 14px 2px;
  }
  #sobre .hero-stats .s {
    width: auto !important;
    min-width: 0 !important;
    flex: 1 1 0 !important;
    height: auto !important;
    padding: 0 8px !important;
    align-items: center;
    text-align: center;
  }
  #sobre .hero-stats .num {
    font-size: 1.35rem !important;
  }
  #sobre .hero-stats .lbl {
    font-size: 0.62rem !important;
    max-width: none !important;
  }
}

/* ============================================================
   REFINAMENTO v16 — Formulário de orçamento em ETAPAS (wizard)
   Mesma informação, experiência tipo cadastro de app mobile:
   progresso, uma etapa por vez, transições e navegação.
   ============================================================ */

/* desliga o reveal escalonado antigo dos filhos do form-body */
.orc-modal .form-body > *,
.orc-modal.open .form-body > * {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

/* ---- barra de progresso / stepper ---- */
.orc-prog {
  position: relative;
  margin: 2px 0 20px;
}
.orc-prog-track {
  position: absolute;
  top: 15px;
  left: 16px;
  right: 16px;
  height: 3px;
  transform: translateY(-50%);
  background: rgb(var(--navy-rgb) / 0.14);
  border-radius: 3px;
  overflow: hidden;
}
.orc-prog-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  border-radius: 3px;
  transition: width 0.45s var(--ease-out);
}
.orc-prog-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.orc-pstep {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
}
.orc-pnum {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  background: #fff;
  border: 2px solid rgb(var(--navy-rgb) / 0.18);
  color: var(--muted);
  transition:
    transform 0.3s var(--ease-out),
    background 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out),
    color 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out);
}
.orc-plabel {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--muted);
  text-transform: uppercase;
  transition: color 0.3s;
}
.orc-pstep.is-active .orc-pnum {
  border-color: var(--gold);
  background: linear-gradient(140deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  box-shadow: 0 8px 18px -8px rgb(var(--gold-rgb) / 0.75);
  transform: scale(1.08);
}
.orc-pstep.is-active .orc-plabel {
  color: var(--navy-deep);
}
.orc-pstep.is-done .orc-pnum {
  border-color: var(--navy);
  background: var(--navy);
  color: transparent;
}
.orc-pstep.is-done .orc-pnum::after {
  content: "✓";
  color: #fff;
  font-size: 0.95rem;
}
.orc-pstep.is-done .orc-plabel {
  color: var(--navy);
}

.orc-step-hint {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 16px;
  font-weight: 500;
}

/* ---- etapas ---- */
.orc-step {
  display: none;
}
.orc-step.is-active {
  display: block;
  animation: orcStepIn 0.4s var(--ease-out) both;
}
@keyframes orcStepIn {
  from {
    opacity: 0;
    transform: translateX(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.orc-steps-wrap.is-back .orc-step.is-active {
  animation-name: orcStepInBack;
}
@keyframes orcStepInBack {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---- navegação ---- */
.orc-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.orc-nav .btn-gold {
  width: auto;
  flex: 1 1 auto;
  margin-top: 0;
}
.orc-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  padding: 13px 18px;
  border-radius: 12px;
  background: transparent;
  border: 1.5px solid rgb(var(--navy-rgb) / 0.2);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.orc-back:hover {
  background: rgb(var(--navy-rgb) / 0.05);
  border-color: var(--navy);
}
.orc-back:active {
  transform: translateY(1px);
}
.orc-back svg {
  flex: 0 0 auto;
}

@media (prefers-reduced-motion: reduce) {
  .orc-step.is-active {
    animation: none;
  }
  .orc-prog-fill {
    transition: none;
  }
}

@media (max-width: 760px) {
  .orc-plabel {
    font-size: 0.62rem;
  }
  .orc-prog {
    margin-bottom: 16px;
  }
  .orc-nav {
    margin-top: 16px;
  }
}

/* v16 · garantir que botões da navegação escondidos fiquem realmente ocultos
   (o [hidden] do HTML é sobreposto pelo display dos .btn) */
.orc-nav .orc-back[hidden],
.orc-nav .orc-next[hidden],
.orc-nav .orc-submit[hidden] {
  display: none !important;
}

/* ============================================================
   REFINAMENTO v17 — ajustes finais
     1. #sobre (about-solo) — apresentação institucional só com
        textos: eyebrow, serviços em 3 colunas e hero-stats
        em painel profissional.
     2. Modal de orçamento — remoção do aside (só orc-main),
        logo responsiva acima do h3 e card em coluna única.
     3. orc-prog-list removido → barra de progresso enxuta.
   ============================================================ */

/* ---------- 1 · #sobre — apresentação só com texto, alinhada à direita ---------- */

/* bloco de texto encostado à direita */
#sobre .about-text {
  max-width: 760px;
}

#sobre .about-text > p {
  max-width: 680px;


}

/* serviços como lista simples (sem cards), à direita */
#sobre .about-servicos {
  display: flex !important;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 620px;


}
#sobre .about-servicos li {
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  color: var(--muted);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
}
#sobre .about-servicos li b {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy-deep);
  letter-spacing: normal;
}

/* hero-stats sem fundo, à direita */
#sobre .hero-stats {

  padding: 0 !important;
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  width: fit-content;
  max-width: 100%;
  gap: 8px !important;
  justify-content: flex-end;
}
#sobre .hero-stats .s {
  width: auto;
  min-width: 0;
  height: auto;
  padding: 4px 26px;
  align-items: flex-end;
  text-align: right;
}
#sobre .hero-stats .s + .s::before {
  background: rgb(var(--navy-rgb) / 0.16);
  top: 6px;
  bottom: 6px;
}
#sobre .hero-stats .num {
  color: var(--navy);
  font-size: 2.6rem;
}
#sobre .hero-stats .num .pl,
#sobre .hero-stats .num em {
  color: var(--gold-num, var(--gold));
}
#sobre .hero-stats .lbl {
  color: var(--muted);
  max-width: 150px;
}

@media (max-width: 760px) {
  #sobre .about-text {
    max-width: 100%;
  }
  #sobre .hero-stats {
    width: 100%;
    justify-content: flex-end;
    gap: 4px !important;
  }
  #sobre .hero-stats .s {
    flex: 1 1 0;
    padding: 4px 10px;
  }
  #sobre .hero-stats .num {
    font-size: 1.5rem;
  }
  #sobre .hero-stats .lbl {
    font-size: 0.6rem;
    max-width: none;
  }
}

/* ---------- 2 · Modal — só orc-main + logo, mais largo ---------- */
.orc-card {
  grid-template-columns: 1fr !important;
}
@media (min-width: 761px) {
  .orc-card {
    width: min(840px, 94vw) !important;
    max-width: 840px !important;
  }
  .orc-main {
    padding: 48px 56px 44px;
  }
}
/* logo sempre visível, responsiva e sem distorção */
.orc-mhead {
  text-align: left;
}
.orc-mhead-logo {
  display: block !important;
  width: auto;
  height: clamp(38px, 3vw + 26px, 50px);
  margin: 0 0 16px;
}
@media (max-width: 760px) {
  .orc-mhead-logo {
    height: clamp(34px, 9vw, 44px);
  }
}

/* ---------- 3 · barra de progresso (orc-prog) removida ---------- */
.orc-prog {
  display: none !important;
}

/* ============================================================
   REFINAMENTO v18 — #sobre e #regioes lado a lado (flex)
   Une as duas seções numa mesma linha horizontal, sem alterar
   o conteúdo interno de nenhuma das seções.
   ============================================================ */
.sobre-flex {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;

}
.sobre-flex > section {
  flex: 1 1 0;
  min-width: 0;
}
@media (max-width: 900px) {
  .sobre-flex {
    flex-direction: column;
  }
}

/* ============================================================
   REFINAMENTO v19 — .sobre-2 (#regioes) com a MESMA tipografia
   do #sobre (h2, p e texto), e margem lateral em ambas as seções.
   ============================================================ */

/* título igual ao #sobre (sans bold, não serif) */
.sobre-2 .about-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-size: clamp(1.7rem, 1.2rem + 2.4vw, 2.6rem);
  color: var(--navy-deep);
  margin: 10px 0 16px;
}
/* parágrafo igual ao #sobre */
.sobre-2 .about-text > p {
  color: var(--muted);
  font-family: var(--font-read);
  font-weight: 300;
  font-size: clamp(1rem, 0.95rem + 0.45vw, 1.2rem);
  line-height: 1.7;
}
/* lista/texto igual ao #sobre */
.sobre-2 .about-servicos li {
  font-family: var(--font-read);
  font-weight: 300;
  color: var(--muted);
}
.sobre-2 .about-servicos li b {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy-deep);
}

/* margem lateral em ambas as seções sobre */
.sobre-flex > section {
  margin-inline: clamp(14px, 2vw, 40px);
}

/* ============================================================
   REFINAMENTO v20 — #sobre com os MESMOS textos do .sobre-2
   Equaliza h2, parágrafo e lista das duas seções. As larguras
   de coluna seguem diferentes (o .sobre-2 divide espaço com o
   mapa) — só a TIPOGRAFIA/ESPAÇAMENTO do texto fica idêntica.
   ============================================================ */
#sobre .about-text {
  max-width: none;
}
#sobre .about-title {
  max-width: none;
}
#sobre .about-text > p {
  max-width: none;
}
#sobre .about-servicos {
  gap: 12px;
  margin: 0 0 6px;
  max-width: none;
  text-align: start;
}
#sobre .about-servicos li {
  font-size: 0.99rem;
  line-height: 1.6;
  text-align: start;
}
#sobre .about-servicos li b {
  margin-bottom: 6px;
}

/* ============================================================
   REFINAMENTO v21 — #sobre unificado (sobre + regiões numa seção)
   • conteúdo centralizado (margin auto)
   • responsivo em todas as telas
   • mapa em tamanho adequado e centralizado
   ============================================================ */

/* wrapper agora tem só UMA seção → centraliza, sem flex-row */
.sobre-flex {
  display: block;
}
.sobre-flex > section {
  margin-inline: auto !important;
}

/* grid unificado: coluna única, sem margens negativas, centralizado */
#sobre .about-grid.about-solo {
  grid-template-columns: 1fr !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  gap: 0 !important;
  justify-items: center;
}

/* bloco de texto centralizado, com largura de leitura confortável */
#sobre .about-text {
  width: 100%;
  max-width: 920px;
  margin-inline: auto !important;
  align-items: stretch;
}

/* corrige a ordem no mobile (regra .hero-stats{order:5} era só do hero) */
#sobre .hero-stats {
  order: 0;
}

/* espaçamento do parágrafo/lista extra que vieram do antigo #regioes */
#sobre .about-text > p {
  margin: 0 0 18px;
}

/* ---- MAPA: centralizado, adequado e 100% responsivo ---- */
#sobre .about-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 20px auto 0;
}
#sobre .photo {
  width: 100%;
  max-width: clamp(300px, 56vw, 560px) !important;
  margin: 0 auto !important;
}
#sobre .photo img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  display: block;
  margin: 0 auto;
}
