/* ==========================================================================
   NOBRE ORIQUE — style.css
   Estilos da experiência DESKTOP (telas > 768px).

   Este arquivo passou por uma auditoria completa:
   - Todas as declaracoes CSS que eram sobrescritas por regras posteriores
     (codigo morto) foram removidas, comparando o resultado computado
     (cascade) contra o arquivo original em mais de 30 breakpoints antes
     de qualquer remocao ser aceita.
   - Seletores que nao correspondem a nenhum elemento do HTML (classes de
     uma versao anterior do site, ex: .google-box, .cream, .dark) foram
     removidos, verificado inclusive em estados dinamicos (menu aberto,
     carrossel ativo, etc).
   - Nenhuma regra vencedora foi reposicionada — o resultado visual é
     pixel-a-pixel identico ao aprovado.
   - Indicador de foco (:focus-visible) foi adicionado para navegação
     por teclado; só aparece nesse contexto, não altera a aparência
     padrão do site.
   ========================================================================== */

a:focus-visible, button:focus-visible {
  outline: 2px solid #f0c967;
  outline-offset: 3px;
  border-radius: 6px;
}
:root {
  --bg: #070604;
  --bg2: #10100e;
  --panel: #151411;
  --gold: #c99627;
  --gold2: #f0c967;
  --cream: #fff7e7;
  --muted: #cfc6b4;
  --line: rgba(240,201,103,.28);
  --white: #fff;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, Montserrat, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--sans);
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.links a {
  text-transform: uppercase;
  font-weight: 800;
  position: relative;
}
.links a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background: var(--gold2);
  transition: .25s;
}
.links a:hover {
  color: var(--gold2);
}
.links a:hover:after {
  width: 100%;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(240,201,103,.35);
  background: linear-gradient(135deg,var(--gold2),var(--gold) 55%,#8a6215);
  color: #120d05;
  font-weight: 900;
  box-shadow: 0 18px 52px rgba(201,150,39,.25);
  transition: .25s;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 78px rgba(201,150,39,.36);
}
.btn.small {
  min-height: 46px;
  padding: 0 22px;
  font-size: 13px;
}
.menu {
  margin-left: auto;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.menu span {
  width: 26px;
  height: 2px;
  background: #fff;
}
.hero-bg:after {
  content: "";
  position: absolute;
  inset: 0;
}
.gold-curve {
  position: absolute;
  border-top: 2px solid rgba(240,201,103,.48);
  border-radius: 50%;
  width: 620px;
  height: 170px;
  z-index: 2;
  filter: drop-shadow(0 0 12px rgba(201,150,39,.28));
}
.gold-curve.one {
  transform: rotate(-8deg);
}
.gold-curve.two {
  transform: rotate(-15deg);
}
.eyebrow {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-weight: 900;
}
.eyebrow:before {
  content: "";
}
h1,h2,h3,p {
  margin-top: 0;
}
h1,h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .96;
}
.gold-text {
  color: var(--gold2);
}
.hero-stats strong {
  font-family: var(--serif);
}
.hero-stats span {
  display: block;
  color: rgba(255,255,255,.62);
  font-weight: 800;
}
.section {
  padding: 104px 0;
}
.section.light {
  background: linear-gradient(180deg,#fffaf1,#f2e3c8);
  color: #18130c;
}
.section-title {
  max-width: 810px;
  margin: 0 auto 52px;
  text-align: center;
}
.section-title.left {
  margin-left: 0;
  text-align: left;
}
.kicker {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 14px;
}
h2 {
  font-size: clamp(40px,5vw,74px);
  margin-bottom: 18px;
}
.section-title p,.copy p {
  font-size: 17px;
  line-height: 1.75;
  color: #6c604e;
}
.services {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
}
.service {
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 30px;
  padding: 32px 25px;
  min-height: 276px;
  box-shadow: 0 24px 70px rgba(62,43,9,.08);
  transition: .28s;
}
.service:hover {
  transform: translateY(-8px);
  border-color: rgba(201,150,39,.45);
  box-shadow: 0 35px 90px rgba(62,43,9,.14);
}
.icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  border: 1px solid rgba(201,150,39,.25);
  display: grid;
  place-items: center;
  color: var(--gold);
  margin-bottom: 24px;
}
.icon svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
}
.service h3 {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.03;
  margin-bottom: 14px;
}
.service p {
  color: #6c604e;
  line-height: 1.65;
  margin: 0;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.photo-card {
  overflow: hidden;
  border-radius: 40px;
  border: 1px solid var(--line);
  box-shadow: 0 36px 120px rgba(0,0,0,.28);
  background: #111;
}
.photo-card img {
  width: 100%;
  height: 570px;
  object-fit: cover;
}
.process {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 22px;
  padding: 18px;
}
.step b {
  font-family: var(--serif);
  font-size: 33px;
  color: var(--gold);
}
.step p {
  margin: 0;
  color: #6c604e;
  line-height: 1.55;
}
.gallery {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  grid-auto-rows: 285px;
  gap: 18px;
}
.tile {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #111;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 24px 80px rgba(0,0,0,.14);
}
.tile.big {
  grid-row: span 2;
}
.tile.wide {
  grid-column: span 2;
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .6s;
}
.tile:hover img {
  transform: scale(1.06);
}
.tile:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,transparent 45%,rgba(0,0,0,.84));
}
.tile div {
  position: absolute;
  z-index: 2;
  left: 25px;
  right: 25px;
  bottom: 24px;
  color: #fff;
}
.tile b {
  font-family: var(--serif);
  font-size: 34px;
  display: block;
  line-height: 1;
}
.tile span {
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}
.gold-section {
  background: radial-gradient(circle at 78% 16%,rgba(201,150,39,.18),transparent 34%),#070604;
  color: #fff;
}
.checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}
.checks span {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 800;
  color: rgba(255,255,255,.78);
}
.reviews {
  background: #080705;
  color: #fff;
}
.stars {
  color: var(--gold2);
  letter-spacing: .16em;
  font-size: 21px;
  font-weight: 900;
}
.testimonials {
  position: relative;
}
.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}
.testimonial-card {
  border: 1px solid rgba(201,150,39,.30);
  background: linear-gradient(145deg,rgba(255,255,255,.078),rgba(255,255,255,.034));
  border-radius: 32px;
  padding: 32px;
  min-height: 292px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 28px 80px rgba(0,0,0,.24);
}
.testimonial-card p {
  font-size: 18px;
  line-height: 1.72;
  color: rgba(255,255,255,.82);
  margin: 22px 0 28px;
}
.testimonial-card b {
  font-size: 20px;
  color: #fff;
}
.testimonial-card small {
  display: block;
  color: var(--gold2);
  font-weight: 900;
  margin-top: 4px;
}
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(7,6,4,.78);
  color: var(--gold2);
  font-size: 26px;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 5;
}
.testimonial-arrow.prev {
  left: -22px;
}
.testimonial-arrow.next {
  right: -22px;
}
.testimonial-dots {
  display: none;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
}
.testimonial-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
}
.testimonial-dots button.active {
  width: 28px;
  border-radius: 99px;
  background: var(--gold2);
}
.cta {
  background: linear-gradient(135deg,#fff7e8,#ead4ad);
  color: #18130c;
}
.cta-box {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: #070604;
  color: #fff;
  border-radius: 46px;
  border: 1px solid var(--line);
  padding: 76px 28px;
  box-shadow: 0 36px 110px rgba(0,0,0,.24);
}
.cta-box:before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../assets/images/aliancas2.jpg') center/cover;
  opacity: .18;
}
.cta-box>* {
  position: relative;
}
.cta-box p {
  color: rgba(255,255,255,.72);
  font-size: 18px;
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 30px;
}
.footer {
  background: radial-gradient(circle at 86% 0%,rgba(201,150,39,.10),transparent 34%),#050403;
  color: #fff;
  padding: 68px 0 24px;
  border-top: 1px solid rgba(240,201,103,.10);
}
.foot-grid.footer-grid-premium {
  display: grid;
  grid-template-columns: 1.15fr .95fr .9fr .62fr;
  gap: 34px;
  align-items: start;
}
.footer-logo {
  width: 180px;
  margin-bottom: 16px;
}
.footer p {
  color: rgba(255,255,255,.64);
  line-height: 1.65;
  margin: 0;
}
.footer h4 {
  margin: 0 0 14px;
  color: var(--gold2);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer a {
  display: block;
  margin: 9px 0;
  color: rgba(255,255,255,.70);
}
.footer a:hover {
  color: var(--gold2);
}
.footer-brand-block p {
  max-width: 310px;
}
.footer-since {
  display: inline-flex;
  margin-top: 16px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
  background: rgba(255,255,255,.035);
}
.map-card {
  margin-top: 16px !important;
  display: flex !important;
  gap: 12px;
  align-items: center;
  max-width: 276px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg,rgba(255,255,255,.075),rgba(255,255,255,.028));
  transition: .25s;
}
.map-card:hover {
  transform: translateY(-2px);
  border-color: rgba(240,201,103,.58);
  box-shadow: 0 18px 44px rgba(0,0,0,.22);
}
.map-icon {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(240,201,103,.10);
  color: var(--gold2);
  flex: 0 0 auto;
}
.map-icon svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}
.map-card strong {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
}
.map-card small {
  display: block;
  margin-top: 3px;
  color: rgba(255,255,255,.55);
  font-size: 12px;
}
.social {
  display: flex;
  gap: 12px;
}
.social a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--gold2);
  background: rgba(255,255,255,.025);
  transition: .25s;
}
.social a:hover {
  transform: translateY(-2px);
  background: rgba(240,201,103,.10);
  border-color: rgba(240,201,103,.64);
}
.social svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
}
.social a:nth-child(2) svg {
  fill: currentColor;
  stroke: none;
}
.copy {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  color: rgba(255,255,255,.50);
  font-size: 13px;
  line-height: 1.7;
}
.copy a {
  display: inline;
  color: var(--gold2);
  font-weight: 900;
}
@media (max-width:900px) {
  .foot-grid.footer-grid-premium {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand-block {
    grid-column: 1/-1;
  }
  .footer-brand-block p {
    max-width: none;
  }
}
@media (max-width:700px) {
  .foot-grid.footer-grid-premium {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer {
    text-align: left;
  }
  .footer-logo {
    width: 158px;
  }
  .map-card {
    max-width: 100%;
  }
  .copy {
    text-align: left;
  }
}
.float {
  position: fixed;
  border-radius: 50%;
  color: #111;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: .7s;
}
.reveal.show {
  opacity: 1;
  transform: none;
}
@media (max-width:980px) {
  .hero-bg {
    width: 100%;
  }
  .hero-stats,.services,.split,.testimonial-track,.foot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .split {
    gap: 42px;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
  .tile.big {
    grid-row: span 1;
  }
  .tile.wide {
    grid-column: span 1;
  }
}
@media (max-width:680px) {
  h2 {
    font-size: clamp(36px,11vw,50px);
  }
  .hero p,.section-title p,.copy p {
    font-size: 15.5px;
  }
  .btn {
    width: 100%;
    min-height: 52px;
  }
  .hero-stats,.services,.split,.gallery,.checks,.testimonial-track,.foot-grid {
    grid-template-columns: 1fr;
  }
  .service {
    min-height: auto;
    padding: 26px 22px;
  }
  .section {
    padding: 72px 0;
  }
  .photo-card img {
    height: 360px;
  }
  .tile,.tile.big,.tile.wide {
    height: 315px;
  }
  .testimonial-track {
    display: block;
    overflow: hidden;
  }
  .testimonial-card {
    display: none;
    min-height: 275px;
    padding: 26px 22px;
  }
  .testimonial-card.active {
    display: flex;
  }
  .testimonial-dots {
    display: flex;
  }
  .testimonial-arrow {
    top: auto;
    bottom: -62px;
  }
  .testimonial-arrow.prev {
    left: 0;
  }
  .testimonial-arrow.next {
    right: 0;
  }
  .footer-logo {
    width: 150px;
  }
}
.header {
  box-shadow: 0 12px 38px rgba(0,0,0,.34);
}
.nav>.btn {
  border-radius: 24px;
  box-shadow: 0 16px 44px rgba(201,150,39,.24), inset 0 1px 0 rgba(255,255,255,.36);
}
.hero-bg:after {
  background: linear-gradient(90deg,rgba(0,0,0,.54) 0%,rgba(0,0,0,.14) 38%,rgba(0,0,0,.03) 100%), radial-gradient(circle at 58% 50%,transparent 0 34%,rgba(0,0,0,.10) 62%,rgba(0,0,0,.28) 100%);
}
.gold-curve.one {
  border-top-color: rgba(240,201,103,.55);
}
.gold-curve.two {
  border-top-color: rgba(240,201,103,.58);
}
.hero-inner {
  margin-left: 0;
  padding-top: 0;
}
.eyebrow:before {
  height: 2px;
  background: #f3c846;
}
h1 {
  margin-bottom: 30px;
}
.btn {
  min-height: 58px;
  padding: 0 30px;
  border-radius: 22px;
  font-size: 16px;
}
.btn.ghost {
  background: rgba(0,0,0,.28);
  color: #fff;
  border-color: rgba(240,201,103,.80);
  box-shadow: inset 0 0 0 1px rgba(240,201,103,.13);
}
.btn-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-stats div {
  backdrop-filter: blur(12px);
}
.stat-icon {
  margin-bottom: 22px;
}
.stat-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-stats strong {
  letter-spacing: -.035em;
  margin-bottom: 8px;
}
.float {
  right: 50px;
  bottom: 48px;
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg,#f5ca4f,#c58a16);
  box-shadow: 0 20px 50px rgba(201,150,39,.28);
}
.light h2 {
  color: #15100a;
  text-shadow: none;
}
.light .copy h2 {
  color: #15100a;
}
.light .copy p {
  color: #4b3f32;
}
.light .kicker {
  color: #c58a16;
}
@media (max-width:1180px) {
  .links {
    gap: 20px;
  }
  .hero-bg {
    inset: 94px 0 0 0;
    height: calc(100% - 94px);
  }
}
@media (max-width:980px) {
  .hero-bg {
    inset: 84px 0 0 0;
    height: calc(100% - 84px);
    opacity: 1;
  }
  .hero-stats div {
    min-height: 150px;
  }
  .links.open {
    top: 92px;
  }
}
@media (max-width:680px) {
  .hero-bg {
    inset: 78px 0 0 0;
    height: calc(100% - 78px);
  }
  .hero:before {
    background: linear-gradient(90deg,rgba(0,0,0,.98) 0%,rgba(0,0,0,.82) 55%,rgba(0,0,0,.38) 100%);
  }
  .eyebrow {
    line-height: 1.5;
  }
  .eyebrow:before {
    width: 32px;
  }
  .float {
    width: 58px;
    height: 58px;
    right: 16px;
    bottom: 16px;
  }
}
@media (min-width: 1181px) {
  .container {
    width: min(1680px,calc(100% - 150px));
  }
  .header {
    height: 120px;
  }
  .nav {
    height: 120px;
    gap: 26px;
  }
  .brand img {
    width: 220px;
    max-height: 104px;
    object-fit: contain;
  }
  .links {
    flex: 1;
    justify-content: center;
    margin-left: 34px;
    gap: 38px;
    min-width: 0;
  }
  .links a {
    font-size: 14px;
    letter-spacing: .12em;
    white-space: nowrap;
  }
  .nav>.btn {
    min-height: 62px;
    padding: 0 34px;
    border-radius: 24px;
    font-size: 15px;
    flex: 0 0 auto;
  }
  .hero {
    min-height: 100vh;
    padding: 166px 0 42px;
    align-items: flex-start;
  }
  .hero-bg {
    inset: 120px 0 0 0;
    width: 100%;
    height: calc(100% - 120px);
  }
  .hero-bg img {
    object-position: center right;
  }
  .hero:before {
    background: linear-gradient(90deg,rgba(0,0,0,.97) 0%,rgba(0,0,0,.91) 22%,rgba(0,0,0,.55) 43%,rgba(0,0,0,.12) 72%,rgba(0,0,0,.02) 100%);
  }
  .hero-bg:after {
    background: linear-gradient(90deg,rgba(0,0,0,.60) 0%,rgba(0,0,0,.20) 40%,rgba(0,0,0,.02) 100%);
  }
  .hero-inner {
    max-width: 610px;
    margin-left: 0;
    padding-top: 0;
  }
  .eyebrow {
    font-size: 13px;
    letter-spacing: .18em;
    margin-bottom: 24px;
  }
  h1 {
    font-size: clamp(68px,5.3vw,96px);
    line-height: .96;
    letter-spacing: -.05em;
    margin-bottom: 24px;
  }
  .hero p {
    font-size: 17px;
    line-height: 1.68;
    max-width: 570px;
    color: rgba(255,255,255,.86);
  }
  .actions {
    gap: 18px;
    margin-top: 28px;
  }
  .btn {
    min-height: 56px;
    padding: 0 28px;
    border-radius: 22px;
    font-size: 15px;
  }
  .hero-stats {
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
    margin-top: 36px;
    max-width: 760px;
    width: 760px;
  }
  .hero-stats div {
    min-height: 146px;
    border-radius: 18px;
    padding: 22px 26px;
    background: linear-gradient(145deg,rgba(12,11,9,.84),rgba(25,21,15,.73));
  }
  .stat-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 17px;
  }
  .stat-icon svg {
    width: 44px;
    height: 44px;
  }
  .hero-stats strong {
    font-size: 27px;
    margin-bottom: 8px;
  }
  .hero-stats span:not(.stat-icon) {
    font-size: 16px;
  }
  .float {
    right: 50px;
    bottom: 42px;
    width: 72px;
    height: 72px;
  }
}
@media (min-width:1181px) and (max-width:1500px) {
  .container {
    width: calc(100% - 88px);
  }
  .brand img {
    width: 190px;
  }
  .links {
    gap: 24px;
    margin-left: 20px;
  }
  .links a {
    font-size: 12.5px;
  }
  .nav>.btn {
    padding: 0 24px;
    font-size: 14px;
  }
  h1 {
    font-size: clamp(62px,5.1vw,86px);
  }
  .hero-inner {
    max-width: 560px;
  }
  .hero-stats {
    width: 690px;
    max-width: 690px;
  }
}
*,*::before,*::after {
  box-sizing: border-box !important;
}
html,body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
}
.container {
  width: min(100% - 48px, 1240px) !important;
  margin-inline: auto !important;
  max-width: 1240px !important;
}
.header {
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
}
.nav {
  justify-content: space-between !important;
  min-width: 0 !important;
}
.brand {
  display: flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
  min-width: 0 !important;
}
.brand img {
  height: auto !important;
  display: block !important;
}
.links {
  min-width: 0 !important;
  white-space: nowrap !important;
}
.links a {
  color: rgba(255,255,255,.78) !important;
  text-decoration: none !important;
}
.nav>.btn {
  padding: 13px 18px !important;
  min-height: 42px !important;
  line-height: 1 !important;
  font-size: 12px !important;
  white-space: nowrap !important;
  max-width: max-content !important;
}
.menu {
  display: none !important;
}
.hero {
  max-height: none !important;
}
.hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background: linear-gradient(90deg,rgba(0,0,0,.96) 0%,rgba(0,0,0,.90) 24%,rgba(0,0,0,.58) 47%,rgba(0,0,0,.18) 70%,rgba(0,0,0,.04) 100%) !important;
  pointer-events: none !important;
}
.hero-bg {
  overflow: hidden !important;
}
.hero-bg img {
  filter: saturate(1.05) contrast(1.04) !important;
  transform: none !important;
}
.hero-bg::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: radial-gradient(circle at 70% 44%,rgba(240,201,103,.16),transparent 27%),linear-gradient(180deg,rgba(0,0,0,.18),rgba(0,0,0,.52)) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}
.gold-curve {
  display: none !important;
}
.hero>.container {
  position: relative !important;
  z-index: 3 !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
  padding: 20px 0 0 !important;
  min-height: 0 !important;
}
.hero-inner {
  max-width: 560px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
  z-index: 4 !important;
}
.eyebrow {
  margin: 0 0 16px !important;
  color: #f0c967 !important;
}
.eyebrow::before {
  width: 34px !important;
  flex: 0 0 34px !important;
  background: #f0c967 !important;
}
h1 {
  font-size: clamp(54px,5.35vw,74px) !important;
  line-height: .94 !important;
  letter-spacing: -.055em !important;
  margin: 0 0 16px !important;
  max-width: 600px !important;
}
.hero p {
  font-size: clamp(15px,1.22vw,17px) !important;
  line-height: 1.58 !important;
  max-width: 520px !important;
  margin: 0 !important;
  color: rgba(255,255,255,.82) !important;
}
.actions .btn,.btn {
  border-radius: 999px !important;
  min-height: 46px !important;
  padding: 14px 20px !important;
  font-size: 12px !important;
  letter-spacing: .11em !important;
  max-width: 100% !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
}
.hero-stats {
  width: min(720px,100%) !important;
  margin: 28px 0 0 !important;
  position: relative !important;
  z-index: 4 !important;
}
.hero-stats div {
  min-width: 0 !important;
  height: auto !important;
  background: linear-gradient(145deg,rgba(12,11,9,.82),rgba(25,21,15,.70)) !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  box-shadow: 0 18px 46px rgba(0,0,0,.30),inset 0 1px 0 rgba(255,255,255,.08) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}
.stat-icon {
  width: 34px !important;
  height: 34px !important;
  display: grid !important;
  place-items: center !important;
  margin: 0 0 10px !important;
  color: #f0c967 !important;
  flex: 0 0 auto !important;
}
.stat-icon svg {
  width: 34px !important;
  height: 34px !important;
  display: block !important;
}
.hero-stats strong {
  color: #f0c967 !important;
  margin: 0 0 6px !important;
  display: block !important;
  white-space: normal !important;
}
.hero-stats span:not(.stat-icon) {
  font-size: clamp(12px,1.1vw,15px) !important;
  line-height: 1.28 !important;
  color: rgba(255,255,255,.83) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 600 !important;
  display: block !important;
  white-space: normal !important;
  overflow-wrap: break-word !important;
}
.float {
  z-index: 1001 !important;
}
@media (max-width:1180px) {
  .container {
    width: min(100% - 40px,1120px) !important;
  }
  .nav {
    height: 76px !important;
  }
  .brand img {
    width: 150px !important;
    max-height: 58px !important;
  }
  .hero {
    padding-top: 76px !important;
    min-height: 700px !important;
  }
  h1 {
    font-size: clamp(48px,6vw,66px) !important;
  }
  .hero-inner {
    max-width: 520px !important;
  }
  .hero-stats {
    width: min(650px,100%) !important;
    max-width: 710px !important;
  }
  .hero-stats div {
    min-height: 110px !important;
    padding: 16px !important;
  }
}
@media (max-width:980px) {
  .menu {
    place-items: center !important;
  }
  .nav>.btn {
    display: none !important;
  }
  .links {
    position: fixed !important;
    left: 20px !important;
    right: 20px !important;
    top: 86px !important;
    background: rgba(7,6,4,.98) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 22px !important;
    padding: 22px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    white-space: normal !important;
  }
  .links.open {
    display: flex !important;
  }
  .hero::before {
    background: linear-gradient(90deg,rgba(0,0,0,.96) 0%,rgba(0,0,0,.78) 58%,rgba(0,0,0,.32) 100%) !important;
  }
  .hero>.container {
    justify-content: center !important;
    padding-top: 0 !important;
  }
  .hero-inner {
    max-width: 620px !important;
  }
  .hero-stats {
    width: 100% !important;
    margin-top: 26px !important;
  }
}
@media (max-width:680px) {
  .container {
    width: calc(100% - 28px) !important;
  }
  .nav {
    height: 72px !important;
  }
  .brand img {
    width: 128px !important;
    max-height: 52px !important;
  }
  .links {
    top: 80px !important;
    left: 14px !important;
    right: 14px !important;
  }
  .hero {
    padding: 86px 0 34px !important;
    min-height: 100svh !important;
  }
  .hero::before {
    background: linear-gradient(90deg,rgba(0,0,0,.98) 0%,rgba(0,0,0,.84) 58%,rgba(0,0,0,.45) 100%) !important;
  }
  .hero-bg img {
    object-position: 68% center !important;
  }
  .eyebrow {
    font-size: 10px !important;
    margin-bottom: 12px !important;
  }
  h1 {
    font-size: clamp(40px,12.5vw,56px) !important;
    line-height: .96 !important;
    margin-bottom: 14px !important;
  }
  .hero p {
    font-size: 14.5px !important;
    line-height: 1.55 !important;
    max-width: 96% !important;
  }
  .actions {
    margin-top: 20px !important;
    gap: 10px !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  .actions .btn {
    width: 100% !important;
    min-height: 48px !important;
    white-space: normal !important;
    text-align: center !important;
  }
  .hero-stats {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-top: 22px !important;
  }
  .hero-stats div {
    min-height: auto !important;
    padding: 16px !important;
    border-radius: 16px !important;
  }
  .stat-icon,.stat-icon svg {
    width: 30px !important;
    height: 30px !important;
  }
  .hero-stats strong {
    font-size: 23px !important;
  }
  .hero-stats span:not(.stat-icon) {
    font-size: 13.5px !important;
  }
}
@media (min-width:1280px) and (max-height:820px) {
  .nav {
    height: 74px !important;
  }
  .brand img {
    width: 150px !important;
    max-height: 56px !important;
  }
  .hero {
    height: 100svh !important;
    min-height: 0 !important;
    padding: 74px 0 22px !important;
  }
  .hero>.container {
    justify-content: center !important;
    padding-top: 0 !important;
  }
  .eyebrow {
    margin-bottom: 12px !important;
    font-size: 10.5px !important;
  }
  h1 {
    font-size: clamp(50px,4.8vw,66px) !important;
    margin-bottom: 13px !important;
  }
  .hero p {
    font-size: 15px !important;
    line-height: 1.5 !important;
    max-width: 500px !important;
  }
  .actions {
    margin-top: 18px !important;
  }
  .actions .btn {
    min-height: 42px !important;
    padding: 12px 18px !important;
  }
  .hero-stats {
    margin-top: 20px !important;
    width: min(660px,100%) !important;
    max-width: 660px !important;
    gap: 12px !important;
  }
  .hero-stats div {
    min-height: 96px !important;
    padding: 14px 16px !important;
  }
  .stat-icon,.stat-icon svg {
    width: 28px !important;
    height: 28px !important;
    margin-bottom: 6px !important;
  }
  .hero-stats strong {
    font-size: 22px !important;
    margin-bottom: 4px !important;
  }
  .hero-stats span:not(.stat-icon) {
    font-size: 12.5px !important;
    line-height: 1.18 !important;
  }
}
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}
body {
  min-width: 0 !important;
}
.header {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  height: 112px !important;
  background: linear-gradient(180deg,rgba(7,6,4,.98),rgba(7,6,4,.92)) !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
  z-index: 50 !important;
}
.nav {
  width: min(1680px, calc(100% - 72px)) !important;
  max-width: 1680px !important;
  margin: 0 auto !important;
  height: 112px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 28px !important;
}
.brand img {
  width: 156px !important;
  max-height: 88px !important;
  object-fit: contain !important;
}
.links {
  margin-left: auto !important;
  gap: 44px !important;
  display: flex !important;
  align-items: center !important;
}
.links a {
  font-size: 13px !important;
  letter-spacing: .15em !important;
  line-height: 1.1 !important;
  white-space: nowrap !important;
}
.nav > .btn {
  min-height: 56px !important;
  padding: 0 34px !important;
  font-size: 15px !important;
  max-width: 280px !important;
  overflow: hidden !important;
}
.hero {
  position: relative !important;
  min-height: calc(100vh - 112px) !important;
  height: calc(100vh - 112px) !important;
  padding: 42px 0 30px !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
  background: #070604 !important;
}
.hero-bg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 1 !important;
  z-index: 0 !important;
}
.hero-bg img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}
.hero:before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background: linear-gradient(90deg,rgba(0,0,0,.92) 0%,rgba(0,0,0,.72) 28%,rgba(0,0,0,.32) 58%,rgba(0,0,0,.08) 100%) !important;
}
.hero-bg:after {
  display: none !important;
}
.gold-curve {
  pointer-events: none !important;
  opacity: .75 !important;
}
.gold-curve.one {
  left: -180px !important;
  top: 42px !important;
  width: 520px !important;
  height: 140px !important;
}
.gold-curve.two {
  right: -240px !important;
  bottom: 34px !important;
  width: 520px !important;
  height: 140px !important;
}
.container.hero-inner {
  width: min(1500px, calc(100% - 96px)) !important;
  max-width: 1500px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  position: relative !important;
  z-index: 3 !important;
}
.hero-inner > * {
  max-width: 600px !important;
}
.eyebrow {
  font-size: 12px !important;
  letter-spacing: .18em !important;
  margin-bottom: 18px !important;
  gap: 12px !important;
  line-height: 1.2 !important;
}
.eyebrow:before {
  width: 54px !important;
  flex: 0 0 54px !important;
}
.hero h1,
.hero-inner h1 {
  font-size: clamp(48px, 4.6vw, 78px) !important;
  line-height: .94 !important;
  letter-spacing: -.045em !important;
  margin: 0 0 18px !important;
  max-width: 620px !important;
}
.hero p,
.hero-inner p {
  font-size: 17px !important;
  line-height: 1.58 !important;
  max-width: 590px !important;
  margin: 0 !important;
  color: rgba(255,255,255,.84) !important;
}
.actions {
  display: flex !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
  margin-top: 24px !important;
  max-width: 620px !important;
}
.hero .btn {
  min-height: 50px !important;
  height: 50px !important;
  padding: 0 24px !important;
  font-size: 14px !important;
  border-radius: 999px !important;
  gap: 10px !important;
}
.hero .btn svg {
  width: 22px !important;
  height: 22px !important;
}
.hero-stats {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
  margin-top: 28px !important;
  max-width: 720px !important;
}
.hero-stats div {
  min-height: 122px !important;
  padding: 18px 20px !important;
  border-radius: 18px !important;
  overflow: hidden !important;
}
.hero-stats .stat-icon svg {
  width: 32px !important;
  height: 32px !important;
}
.hero-stats strong {
  font-size: 28px !important;
  line-height: .96 !important;
  margin-top: 10px !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}
.hero-stats span {
  font-size: 13px !important;
  line-height: 1.25 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  margin-top: 6px !important;
}
@media (max-width:1280px) {
  .nav {
    width: min(1180px, calc(100% - 44px)) !important;
    gap: 20px !important;
  }
  .brand img {
    width: 136px !important;
  }
  .links {
    gap: 26px !important;
  }
  .links a {
    font-size: 12px !important;
    letter-spacing: .12em !important;
  }
  .nav>.btn {
    max-width: 230px !important;
    padding: 0 24px !important;
  }
  .container.hero-inner {
    width: calc(100% - 56px) !important;
  }
  .hero h1 {
    font-size: clamp(44px, 5.6vw, 70px) !important;
    max-width: 570px !important;
  }
  .hero p {
    font-size: 16px !important;
    max-width: 540px !important;
  }
  .hero-stats {
    max-width: 700px !important;
  }
  .hero-stats strong {
    font-size: 24px !important;
  }
}
@media (max-width:980px) {
  .links {
    display: none !important;
  }
  .menu {
    display: flex !important;
  }
  .hero-bg img {
    object-position: 60% center !important;
  }
  .hero:before {
    background: linear-gradient(90deg,rgba(0,0,0,.94) 0%,rgba(0,0,0,.78) 54%,rgba(0,0,0,.40) 100%) !important;
  }
  .hero-inner > * {
    max-width: 100% !important;
  }
  .hero h1 {
    font-size: clamp(42px, 13vw, 66px) !important;
    max-width: 100% !important;
  }
  .hero p {
    font-size: 16px !important;
    line-height: 1.55 !important;
    max-width: 100% !important;
  }
  .hero-stats {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
  }
}
@media (max-width:560px) {
  .hero {
    padding-top: 42px !important;
  }
  .eyebrow {
    font-size: 10px !important;
    letter-spacing: .13em !important;
  }
  .eyebrow:before {
    width: 34px !important;
    flex-basis: 34px !important;
  }
  .hero h1 {
    font-size: clamp(38px, 14vw, 54px) !important;
  }
  .actions {
    gap: 10px !important;
  }
  .hero .btn {
    width: 100% !important;
  }
  .hero-stats div {
    min-height: auto !important;
  }
}
@media (min-width: 981px) {
  html, body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  .header {
    position: relative !important;
    height: 78px !important;
    min-height: 78px !important;
    inset: auto !important;
    background: linear-gradient(180deg,rgba(7,6,4,.98),rgba(7,6,4,.91)) !important;
    border-bottom: 1px solid rgba(255,255,255,.07) !important;
    z-index: 20 !important;
  }
  .nav {
    height: 78px !important;
    width: min(1420px,calc(100% - 80px)) !important;
    max-width: 1420px !important;
    margin-inline: auto !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
  }
  .brand img {
    width: 118px !important;
    max-height: 62px !important;
    object-fit: contain !important;
  }
  .links {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(22px,2.2vw,42px) !important;
    margin-left: auto !important;
    white-space: nowrap !important;
  }
  .links a {
    font-size: 11px !important;
    line-height: 1 !important;
    letter-spacing: .17em !important;
    font-weight: 900 !important;
  }
  .nav > .btn {
    min-height: 42px !important;
    height: 42px !important;
    padding: 0 24px !important;
    font-size: 12px !important;
    letter-spacing: .08em !important;
    max-width: 235px !important;
    border-radius: 999px !important;
    margin-left: 14px !important;
    overflow: visible !important;
  }
  .hero {
    position: relative !important;
    height: calc(100vh - 78px) !important;
    min-height: 590px !important;
    max-height: 920px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
    background: #070604 !important;
  }
  .hero-bg {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0 !important;
    opacity: 1 !important;
    overflow: hidden !important;
  }
  .hero-bg img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: none !important;
  }
  .hero:before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    pointer-events: none !important;
    background: linear-gradient(90deg,rgba(0,0,0,.94) 0%,rgba(0,0,0,.80) 29%,rgba(0,0,0,.43) 55%,rgba(0,0,0,.08) 100%) !important;
  }
  .hero-bg:after {
    display: none !important;
  }
  .gold-curve {
    display: none !important;
  }
  .container.hero-inner {
    position: relative !important;
    z-index: 3 !important;
    width: min(1180px,calc(100% - 96px)) !important;
    max-width: 1180px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: block !important;
  }
  .hero-inner > * {
    max-width: 520px !important;
  }
  .eyebrow {
    margin: 0 0 12px !important;
    font-size: 10px !important;
    line-height: 1.15 !important;
    letter-spacing: .18em !important;
    gap: 10px !important;
    max-width: 620px !important;
  }
  .eyebrow:before {
    width: 38px !important;
    flex: 0 0 38px !important;
    height: 1px !important;
  }
  .hero h1,.hero-inner h1 {
    font-size: clamp(44px,3.6vw,62px) !important;
    line-height: .94 !important;
    letter-spacing: -.05em !important;
    margin: 0 0 13px !important;
    max-width: 520px !important;
  }
  .hero p,.hero-inner p {
    font-size: 14px !important;
    line-height: 1.5 !important;
    max-width: 500px !important;
    margin: 0 !important;
    color: rgba(255,255,255,.86) !important;
  }
  .actions {
    display: flex !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
    margin-top: 18px !important;
    max-width: 560px !important;
  }
  .hero .btn,.actions .btn {
    min-height: 40px !important;
    height: 40px !important;
    padding: 0 18px !important;
    font-size: 12px !important;
    letter-spacing: .10em !important;
    border-radius: 999px !important;
    gap: 9px !important;
    max-width: none !important;
    white-space: nowrap !important;
  }
  .hero .btn svg,.actions .btn svg {
    width: 18px !important;
    height: 18px !important;
    flex: 0 0 18px !important;
  }
  .hero-stats {
    display: grid !important;
    grid-template-columns: repeat(3,minmax(0,1fr)) !important;
    gap: 12px !important;
    width: 610px !important;
    max-width: 610px !important;
    margin: 22px 0 0 !important;
  }
  .hero-stats div {
    min-height: 96px !important;
    height: 96px !important;
    padding: 14px 16px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }
  .stat-icon {
    width: 24px !important;
    height: 24px !important;
    margin: 0 0 6px !important;
  }
  .stat-icon svg {
    width: 24px !important;
    height: 24px !important;
    display: block !important;
  }
  .hero-stats strong {
    line-height: 1.0 !important;
    margin: 0 0 4px !important;
    max-width: 100% !important;
    overflow-wrap: normal !important;
  }
  .hero-stats span:not(.stat-icon) {
    letter-spacing: 0 !important;
    text-transform: none !important;
    margin: 0 !important;
    white-space: normal !important;
  }
  .float {
    width: 58px !important;
    height: 58px !important;
    right: 34px !important;
    bottom: 34px !important;
  }
  .float svg {
    width: 27px !important;
    height: 27px !important;
  }
}
@media (min-width: 1600px) and (min-height: 850px) {
  .header {
    height: 86px !important;
    min-height: 86px !important;
  }
  .nav {
    height: 86px !important;
  }
  .brand img {
    width: 132px !important;
    max-height: 70px !important;
  }
  .hero {
    height: calc(100vh - 86px) !important;
    min-height: 650px !important;
  }
  .container.hero-inner {
    width: min(1280px,calc(100% - 120px)) !important;
    max-width: 1280px !important;
  }
  .hero h1,.hero-inner h1 {
    font-size: clamp(52px,4vw,72px) !important;
    max-width: 600px !important;
    margin-bottom: 16px !important;
  }
  .hero p,.hero-inner p {
    font-size: 15.5px !important;
    max-width: 540px !important;
  }
  .hero-stats {
    width: 690px !important;
    max-width: 690px !important;
  }
  .hero-stats div {
    height: 112px !important;
    min-height: 112px !important;
  }
  .hero-stats strong {
    font-size: 25px !important;
  }
}
@media (max-width: 980px) {
  .header {
    position: sticky !important;
    top: 0 !important;
    height: 72px !important;
    min-height: 72px !important;
  }
  .nav {
    height: 72px !important;
    width: calc(100% - 28px) !important;
  }
  .brand img {
    width: 122px !important;
    max-height: 54px !important;
  }
  .hero {
    height: auto !important;
    min-height: calc(100svh - 72px) !important;
    padding: 32px 0 !important;
  }
  .container.hero-inner {
    width: calc(100% - 28px) !important;
  }
}
@media (min-width:981px) {
  .container.hero-inner {
    transform: translateY(42px) !important;
  }
  .section {
    padding: 72px 0 !important;
  }
  .section-title.left {
    margin-bottom: 32px !important;
  }
  h2 {
    line-height: .98 !important;
    margin-bottom: 14px !important;
  }
  .kicker {
    font-size: 10px !important;
    letter-spacing: .20em !important;
    margin-bottom: 10px !important;
  }
  .section-title p,.copy p {
    font-size: 14.5px !important;
    line-height: 1.62 !important;
  }
  .service {
    border-radius: 22px !important;
  }
  .service h3 {
    font-size: 23px !important;
    margin-bottom: 10px !important;
  }
  .service p {
    font-size: 14px !important;
    line-height: 1.55 !important;
  }
  .icon {
    width: 46px !important;
    height: 46px !important;
    border-radius: 14px !important;
    margin-bottom: 18px !important;
  }
  .icon svg {
    width: 27px !important;
    height: 27px !important;
  }
  .split {
    gap: 46px !important;
  }
  .photo-card {
    border-radius: 30px !important;
  }
  .process {
    gap: 11px !important;
    margin-top: 20px !important;
  }
  .step {
    grid-template-columns: 44px 1fr !important;
    gap: 14px !important;
    padding: 14px !important;
    border-radius: 18px !important;
  }
  .step b {
    font-size: 27px !important;
  }
  .step p {
    font-size: 14px !important;
  }
  .gallery {
    gap: 14px !important;
  }
  .tile {
    border-radius: 22px !important;
  }
  .tile div {
    left: 20px !important;
    right: 20px !important;
    bottom: 18px !important;
  }
  .tile b {
    font-size: 26px !important;
  }
  .tile span {
    font-size: 14px !important;
  }
  .checks {
    gap: 10px !important;
    margin: 20px 0 !important;
  }
  .checks span {
    padding: 11px 13px !important;
    border-radius: 14px !important;
    font-size: 14px !important;
  }
  .stars {
    font-size: 18px !important;
  }
  .testimonial-track {
    gap: 16px !important;
  }
  .testimonial-card {
    padding: 24px !important;
    border-radius: 24px !important;
  }
  .testimonial-card p {
    font-size: 15px !important;
    line-height: 1.6 !important;
    margin: 16px 0 20px !important;
  }
  .testimonial-card b {
    font-size: 17px !important;
  }
  .cta-box {
    padding: 58px 24px !important;
    border-radius: 34px !important;
  }
  .foot-grid {
    gap: 24px !important;
  }
  .footer {
    padding: 54px 0 24px !important;
  }
}
@media (min-width:981px) and (max-height:760px) {
  .container.hero-inner {
    transform: translateY(28px) !important;
  }
}
@media (min-width:981px) {
  .hero-stats strong {
    white-space: nowrap !important;
    font-size: clamp(20px,1.35vw,22px) !important;
  }
  .hero-stats span:not(.stat-icon) {
    font-size: clamp(11.5px,.86vw,12px) !important;
    line-height: 1.18 !important;
  }
  .section {
    padding-block: clamp(58px,7.2vh,76px) !important;
  }
  .section > .container,
  .footer > .container {
    width: min(1120px,calc(100% - 96px)) !important;
    max-width: 1120px !important;
  }
  .section-title {
    max-width: min(720px,100%) !important;
    margin-bottom: clamp(30px,4.2vh,40px) !important;
  }
  h2 {
    font-size: clamp(32px,2.85vw,52px) !important;
  }
  .services {
    gap: clamp(12px,1.15vw,16px) !important;
  }
  .service {
    min-height: clamp(200px,21vh,220px) !important;
    padding: clamp(20px,1.7vw,24px) !important;
  }
  .gallery {
    grid-auto-rows: clamp(200px,22vh,230px) !important;
  }
  .photo-card img {
    height: clamp(380px,46vh,430px) !important;
  }
  .testimonial-card {
    min-height: clamp(210px,25vh,230px) !important;
  }
}
@media (min-width:1500px) {
  .section > .container,
  .footer > .container {
    width: min(1180px,calc(100% - 120px)) !important;
    max-width: 1180px !important;
  }
}
@media (max-width:980px) {
  .section > .container,
  .footer > .container {
    width: calc(100% - 32px) !important;
    max-width: 720px !important;
  }
  .hero-stats strong {
    white-space: normal !important;
  }
}
.reviews-premium {
  background: radial-gradient(circle at 50% 0%, rgba(201,150,39,.10), transparent 38%),
    linear-gradient(180deg,#070604 0%,#080705 100%) !important;
  color: #fff !important;
  padding-top: clamp(72px,8vw,112px) !important;
  padding-bottom: clamp(72px,8vw,112px) !important;
}
.reviews-premium .reviews-symbol {
  font-size: 42px;
  line-height: 1;
}
.reviews-premium .reviews-trust-panel .kicker {
  color: var(--gold2) !important;
  margin-bottom: 10px !important;
}
.reviews-premium .reviews-trust-panel h2 {
  color: #fff !important;
}
.reviews-premium .proof-item + .proof-item {
  border-left: 1px solid rgba(240,201,103,.26);
}
.reviews-premium .proof-icon {
  font-size: 36px;
  line-height: 1;
}
.reviews-premium .stars {
  color: var(--gold2) !important;
}
.reviews-premium .proof-item strong {
  margin: 10px 0 8px;
}
.reviews-premium .reviews-google-btn {
  margin: 0 auto !important;
}
.reviews-premium .testimonials-premium {
  max-width: 1180px;
  margin: 0 auto;
}
.reviews-premium .testimonial-card {
  border: 1px solid rgba(201,150,39,.38) !important;
  background: radial-gradient(circle at 85% 10%, rgba(240,201,103,.055), transparent 30%),
    linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.026)) !important;
  box-shadow: 0 26px 90px rgba(0,0,0,.30) !important;
  flex-direction: column;
  justify-content: space-between;
}
.reviews-premium .testimonial-card:after {
  content: '”';
  position: absolute;
  top: 24px;
  right: 30px;
  font-family: var(--serif);
  font-size: 68px;
  line-height: 1;
  color: rgba(240,201,103,.72);
}
.reviews-premium .testimonial-card p {
  color: rgba(255,255,255,.86) !important;
}
.reviews-premium .review-author b {
  color: #fff !important;
}
.reviews-premium .review-author small {
  color: var(--gold2) !important;
  font-weight: 900 !important;
}
.reviews-premium .google-mark {
  white-space: nowrap;
}
.reviews-premium .testimonial-arrow {
  background: rgba(7,6,4,.88) !important;
  border-color: rgba(240,201,103,.55) !important;
  color: var(--gold2) !important;
}
.reviews-premium .reviews-transparency {
  margin: 28px auto 0;
  max-width: 820px;
}
.reviews-premium .reviews-transparency span {
  margin-right: 8px;
}
@media (max-width:980px) {
  .reviews-premium .reviews-proof-grid {
    gap: 0;
  }
  .reviews-premium .testimonial-track {
    overflow: hidden;
  }
  .reviews-premium .testimonial-dots {
    display: flex !important;
  }
}
@media (max-width:680px) {
  .reviews-premium .reviews-trust-panel {
    padding: 30px 18px;
    border-radius: 24px;
  }
  .reviews-premium .reviews-google-btn {
    width: 100% !important;
  }
  .reviews-premium .testimonial-card {
    padding: 26px 20px !important;
  }
  .reviews-premium .testimonial-card:after {
    font-size: 54px;
    right: 22px;
  }
  .reviews-premium .google-mark {
    grid-column: 1;
    grid-row: auto;
    margin-top: 14px;
  }
}
.reviews-premium {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.reviews-premium:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 10%,rgba(240,201,103,.12),transparent 34%),radial-gradient(circle at 12% 70%,rgba(240,201,103,.07),transparent 30%),linear-gradient(180deg,#080705 0%,#030302 100%);
  z-index: -1;
}
.reviews-container {
  max-width: 1260px !important;
}
.reviews-premium .reviews-trust-panel {
  position: relative;
  text-align: center;
  border: 1px solid rgba(240,201,103,.45);
  background: linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.018));
  box-shadow: 0 32px 120px rgba(0,0,0,.34),inset 0 1px 0 rgba(255,255,255,.06);
  overflow: hidden;
}
.reviews-premium .reviews-trust-panel:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 22%,rgba(240,201,103,.09),transparent 33%);
  pointer-events: none;
}
.reviews-premium .reviews-symbol {
  position: relative;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold2);
}
.reviews-premium .reviews-symbol:before,.reviews-premium .reviews-symbol:after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg,transparent,rgba(240,201,103,.75));
}
.reviews-premium .reviews-symbol:after {
  background: linear-gradient(90deg,rgba(240,201,103,.75),transparent);
}
.reviews-premium .reviews-symbol svg {
  margin: 0 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}
.reviews-premium .kicker {
  position: relative;
  color: var(--gold2);
  text-transform: none;
  font-weight: 500;
}
.reviews-premium .reviews-trust-panel h2 {
  position: relative;
  text-align: center;
  text-wrap: balance;
}
.reviews-premium .reviews-proof-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 0;
}
.reviews-premium .proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.reviews-premium .proof-item+.proof-item {
  border-left: 1px solid rgba(240,201,103,.25);
}
.reviews-premium .stars {
  line-height: 1;
  font-weight: 900;
  text-shadow: 0 0 24px rgba(240,201,103,.18);
}
.reviews-premium .proof-icon {
  color: var(--gold2);
}
.reviews-premium .proof-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.reviews-premium .proof-item strong {
  display: block;
  font-family: var(--serif);
  color: var(--gold2);
  font-weight: 600;
  letter-spacing: -.04em;
}
.reviews-premium .proof-item strong span {
  font-family: var(--sans);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0;
}
.reviews-premium .proof-item:not(.proof-rating) strong {
  font-family: var(--sans);
  letter-spacing: .02em;
  font-weight: 900;
}
.reviews-premium .proof-item:not(.proof-rating) strong span {
  font-size: inherit;
  color: var(--gold2);
  font-weight: 900;
}
.reviews-premium .proof-item p {
  color: rgba(255,255,255,.78);
  margin: 13px 0 0;
}
.reviews-premium .mini-google {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.reviews-premium .reviews-google-btn {
  position: relative;
  border-radius: 999px;
  letter-spacing: .01em;
  gap: 12px;
  color: #fff !important;
  background: linear-gradient(135deg,#f0c967,#c99627 55%,#7f590f) !important;
  border: 1px solid rgba(240,201,103,.45) !important;
  box-shadow: 0 22px 66px rgba(201,150,39,.28),inset 0 1px 0 rgba(255,255,255,.25);
}
.reviews-premium .reviews-google-btn .arrow-symbol {
  line-height: 1;
}
.reviews-premium .testimonials-premium {
  position: relative;
}
.reviews-premium .testimonial-card {
  position: relative;
  overflow: hidden;
  opacity: 1 !important;
  transform: none !important;
}
.reviews-premium .testimonial-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 16%,rgba(240,201,103,.08),transparent 34%);
  pointer-events: none;
}
.reviews-premium .testimonial-card .stars {
  letter-spacing: .08em;
}
.reviews-premium .testimonial-card .quote-mark {
  position: absolute;
  font-family: var(--serif);
  line-height: 1;
  color: var(--gold2);
  opacity: .92;
}
.reviews-premium .testimonial-card p {
  position: relative;
}
.reviews-premium .review-author {
  position: relative;
  margin-top: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
}
.reviews-premium .review-author:before {
  content: "";
  grid-column: 1/3;
  height: 1px;
  background: var(--gold2);
}
.reviews-premium .review-author b {
  grid-column: 1/2;
  line-height: 1.2;
}
.reviews-premium .review-author small {
  grid-column: 1/2;
  display: block;
  margin-top: 4px;
}
.reviews-premium .verified {
  grid-column: 2/3;
  grid-row: 2/4;
  color: var(--gold2);
  align-self: center;
  filter: drop-shadow(0 0 8px rgba(240,201,103,.4));
}
.reviews-premium .google-mark {
  grid-column: 3/4;
  grid-row: 2/4;
  justify-self: end;
  align-self: end;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  line-height: 1;
}
.reviews-premium .google-mark em {
  font-style: normal;
  color: rgba(255,255,255,.68);
  white-space: nowrap;
}
.reviews-premium .testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(240,201,103,.55);
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 6;
  transition: .22s;
}
.reviews-premium .testimonial-arrow:hover {
  background: rgba(240,201,103,.14);
  transform: translateY(-50%) scale(1.05);
}
.reviews-premium .testimonial-dots {
  display: flex !important;
  justify-content: center;
  gap: 9px;
}
.reviews-premium .testimonial-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.24);
  cursor: pointer;
  transition: .2s;
}
.reviews-premium .testimonial-dots button.active {
  width: 26px;
  border-radius: 99px;
  background: var(--gold2);
}
.reviews-premium .reviews-transparency {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255,255,255,.9);
}
.reviews-premium .reviews-transparency span {
  color: var(--gold2);
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}
.reviews-premium .reviews-transparency svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}
.reviews-premium .reviews-transparency p {
  margin: 0;
  color: rgba(255,255,255,.9);
}
.reviews-premium .reviews-transparency b {
  font-weight: 500;
  color: #fff;
}
@media (max-width:980px) {
  .reviews-premium .proof-item+.proof-item {
    border-left: 0;
    border-top: 1px solid rgba(240,201,103,.22);
  }
  .reviews-premium .testimonial-track {
    grid-template-columns: 1fr !important;
  }
  .reviews-premium .testimonial-card {
    display: none !important;
  }
  .reviews-premium .testimonial-card.active {
    display: flex !important;
  }
  .reviews-premium .reviews-transparency {
    font-size: 17px;
  }
}
@media (max-width:700px) {
  .reviews-premium {
    padding: 58px 0;
  }
  .reviews-premium .reviews-trust-panel {
    border-radius: 22px;
  }
  .reviews-premium .testimonial-card {
    padding: 26px 20px;
  }
  .reviews-premium .review-author {
    grid-template-columns: 1fr;
  }
  .reviews-premium .google-mark {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    align-items: flex-start;
    margin-top: 14px;
  }
  .reviews-premium .verified {
    display: none;
  }
}
.reviews-premium {
  padding: 42px 0 46px !important;
  min-height: auto !important;
}
.reviews-premium .reviews-container {
  max-width: 1180px !important;
}
.reviews-premium .reviews-trust-panel {
  max-width: 1080px !important;
  border-radius: 26px !important;
  padding: 30px 44px 28px !important;
  margin: 0 auto 26px !important;
}
.reviews-premium .reviews-symbol {
  width: 126px !important;
  margin-bottom: 10px !important;
}
.reviews-premium .reviews-symbol svg {
  width: 30px !important;
  height: 30px !important;
}
.reviews-premium .kicker {
  font-size: 15px !important;
  letter-spacing: .15em !important;
  margin-bottom: 8px !important;
}
.reviews-premium .reviews-trust-panel h2 {
  font-size: clamp(40px,3.4vw,58px) !important;
  line-height: 1.02 !important;
  margin: 0 0 22px !important;
}
.reviews-premium .reviews-proof-grid {
  max-width: 900px !important;
  margin: 0 auto 26px !important;
}
.reviews-premium .proof-item {
  min-height: 128px !important;
  padding: 4px 26px !important;
}
.reviews-premium .stars {
  font-size: 22px !important;
  letter-spacing: .07em !important;
}
.reviews-premium .proof-rating .stars {
  font-size: 27px !important;
  margin-bottom: 14px !important;
}
.reviews-premium .proof-icon {
  width: 40px !important;
  height: 40px !important;
  margin-bottom: 10px !important;
}
.reviews-premium .proof-item strong {
  font-size: 56px !important;
  line-height: .9 !important;
}
.reviews-premium .proof-item strong span {
  font-size: 21px !important;
}
.reviews-premium .proof-item:not(.proof-rating) strong {
  font-size: 32px !important;
}
.reviews-premium .proof-item p {
  font-size: 15px !important;
  line-height: 1.36 !important;
  margin-top: 9px !important;
}
.reviews-premium .mini-google {
  margin-top: 9px !important;
}
.reviews-premium .mini-google .stars {
  font-size: 22px !important;
}
.reviews-premium .reviews-google-btn {
  min-height: 54px !important;
  padding: 0 30px !important;
  font-size: 17px !important;
}
.reviews-premium .reviews-google-btn .arrow-symbol {
  font-size: 24px !important;
}
.reviews-premium .testimonials-premium {
  margin-top: 0 !important;
  padding: 0 18px !important;
}
.reviews-premium .testimonial-track {
  display: grid !important;
  grid-template-columns: repeat(3,minmax(0,1fr)) !important;
  gap: 20px !important;
  transition: opacity .22s ease, transform .22s ease;
}
.reviews-premium .testimonial-track.is-changing {
  opacity: .28;
  transform: translateY(4px);
}
.reviews-premium .testimonial-card {
  display: none !important;
  min-height: 238px !important;
  padding: 26px 26px 22px !important;
  border-radius: 20px !important;
}
.reviews-premium .testimonial-card.is-visible {
  display: flex !important;
}
.reviews-premium .testimonial-card .stars {
  font-size: 23px !important;
  margin-bottom: 18px !important;
}
.reviews-premium .testimonial-card .quote-mark {
  top: 20px !important;
  right: 24px !important;
  font-size: 48px !important;
}
.reviews-premium .testimonial-card p {
  font-size: 16px !important;
  line-height: 1.56 !important;
  margin: 0 0 22px !important;
  max-width: 94% !important;
}
.reviews-premium .review-author {
  column-gap: 7px !important;
}
.reviews-premium .review-author:before {
  width: 40px !important;
  margin-bottom: 17px !important;
}
.reviews-premium .review-author b {
  font-size: 18px !important;
}
.reviews-premium .review-author small {
  font-size: 14px !important;
}
.reviews-premium .verified {
  font-size: 12px !important;
}
.reviews-premium .google-mark em {
  font-size: 11px !important;
}
.reviews-premium .testimonial-arrow {
  width: 46px !important;
  height: 46px !important;
  font-size: 34px !important;
}
.reviews-premium .testimonial-arrow.prev {
  left: -12px !important;
}
.reviews-premium .testimonial-arrow.next {
  right: -12px !important;
}
.reviews-premium .testimonial-dots {
  margin-top: 14px !important;
}
.reviews-premium .reviews-transparency {
  margin-top: 16px !important;
  gap: 12px !important;
  font-size: 17px !important;
  line-height: 1.38 !important;
}
.reviews-premium .reviews-transparency span {
  width: 26px !important;
  height: 26px !important;
}
@media (max-width:980px) {
  .reviews-premium {
    padding: 58px 0 !important;
  }
  .reviews-premium .reviews-trust-panel {
    padding: 32px 22px !important;
  }
  .reviews-premium .reviews-proof-grid {
    grid-template-columns: 1fr !important;
    max-width: 560px !important;
  }
  .reviews-premium .proof-item {
    min-height: auto !important;
    padding: 22px 18px !important;
  }
  .reviews-premium .proof-item + .proof-item {
    border-left: 0 !important;
    border-top: 1px solid rgba(240,201,103,.22) !important;
  }
  .reviews-premium .testimonial-track {
    display: block !important;
  }
  .reviews-premium .testimonial-card {
    min-height: 245px !important;
  }
  .reviews-premium .testimonial-card.is-visible {
    display: flex !important;
  }
  .reviews-premium .testimonial-card:not(.is-visible) {
    display: none !important;
  }
  .reviews-premium .testimonial-arrow.prev {
    left: 0 !important;
  }
  .reviews-premium .testimonial-arrow.next {
    right: 0 !important;
  }
}
@media (max-width:700px) {
  .reviews-premium .reviews-trust-panel h2 {
    font-size: 36px !important;
  }
  .reviews-premium .reviews-google-btn {
    width: 100% !important;
    font-size: 14px !important;
    padding: 0 16px !important;
  }
  .reviews-premium .testimonial-arrow {
    top: auto !important;
    bottom: -62px !important;
  }
  .reviews-premium .testimonial-dots {
    margin-top: 74px !important;
  }
}
#avaliacoes.reviews-premium {
  padding: 46px 0 50px !important;
}
#avaliacoes .reviews-container {
  max-width: 1180px !important;
  width: min(1180px, calc(100% - 76px)) !important;
}
#avaliacoes .reviews-trust-panel {
  margin: 0 auto 22px !important;
}
#avaliacoes .reviews-symbol {
  width: 118px !important;
  margin: 0 auto 8px !important;
}
#avaliacoes .reviews-symbol svg {
  width: 28px !important;
  height: 28px !important;
  margin: 0 10px !important;
}
#avaliacoes .kicker {
  letter-spacing: .15em !important;
}
#avaliacoes .reviews-trust-panel h2 {
  line-height: 1.02 !important;
  margin: 0 0 22px !important;
}
#avaliacoes .reviews-proof-grid {
  margin: 0 auto 22px !important;
}
#avaliacoes .stars {
  font-size: 22px !important;
  letter-spacing: .07em !important;
}
#avaliacoes .proof-item p {
  margin: 8px 0 0 !important;
}
#avaliacoes .mini-google {
  gap: 8px !important;
}
#avaliacoes .reviews-google-btn {
  gap: 10px !important;
}
#avaliacoes .google-mark {
  gap: 2px !important;
}
@media (max-width:980px) {
  #avaliacoes.reviews-premium {
    padding: 56px 0 !important;
  }
  #avaliacoes .reviews-container {
    width: min(100% - 32px, 720px) !important;
  }
  #avaliacoes .reviews-trust-panel {
    padding: 30px 22px !important;
  }
  #avaliacoes .reviews-proof-grid {
    grid-template-columns: 1fr !important;
    max-width: 520px !important;
  }
  #avaliacoes .proof-item {
    min-height: auto !important;
    padding: 18px 16px !important;
  }
  #avaliacoes .proof-item + .proof-item {
    border-left: 0 !important;
    border-top: 1px solid rgba(240,201,103,.22) !important;
  }
  #avaliacoes .testimonial-track {
    display: block !important;
  }
  #avaliacoes .testimonial-card.is-visible {
    display: flex !important;
  }
  #avaliacoes .testimonial-card:not(.is-visible) {
    display: none !important;
  }
  #avaliacoes .testimonial-arrow.prev {
    left: 0 !important;
  }
  #avaliacoes .testimonial-arrow.next {
    right: 0 !important;
  }
}
@media (max-width:700px) {
  #avaliacoes .reviews-trust-panel h2 {
    font-size: 34px !important;
  }
  #avaliacoes .testimonial-arrow {
    top: auto !important;
    bottom: -60px !important;
  }
  #avaliacoes .testimonial-dots {
    margin-top: 70px !important;
  }
}
#avaliacoes.reviews-premium {
  padding-top: 34px !important;
  padding-bottom: 36px !important;
}
#avaliacoes .reviews-trust-panel {
  max-width: 1040px !important;
  padding: 24px 38px 22px !important;
  margin-bottom: 20px !important;
  border-radius: 24px !important;
}
#avaliacoes .reviews-symbol {
  margin-bottom: 6px !important;
  transform: scale(.86) !important;
  transform-origin: center !important;
}
#avaliacoes .kicker {
  font-size: 13px !important;
  margin-bottom: 6px !important;
}
#avaliacoes .reviews-trust-panel h2 {
  font-size: clamp(34px,3vw,50px) !important;
  margin-bottom: 18px !important;
}
#avaliacoes .reviews-proof-grid {
  max-width: 840px !important;
  margin-bottom: 20px !important;
}
#avaliacoes .proof-item {
  min-height: 108px !important;
  padding: 2px 22px !important;
}
#avaliacoes .proof-rating .stars {
  font-size: 23px !important;
  margin-bottom: 10px !important;
}
#avaliacoes .proof-icon {
  width: 32px !important;
  height: 32px !important;
  margin-bottom: 7px !important;
}
#avaliacoes .proof-item strong {
  font-size: 46px !important;
  line-height: .9 !important;
  margin: 7px 0 6px !important;
}
#avaliacoes .proof-item:not(.proof-rating) strong {
  font-size: 26px !important;
}
#avaliacoes .proof-item strong span {
  font-size: 17px !important;
}
#avaliacoes .proof-item p {
  font-size: 13px !important;
  line-height: 1.3 !important;
  margin-top: 6px !important;
}
#avaliacoes .mini-google {
  margin-top: 7px !important;
}
#avaliacoes .mini-google .stars {
  font-size: 18px !important;
}
#avaliacoes .reviews-google-btn {
  min-height: 46px !important;
  padding: 0 26px !important;
  font-size: 15px !important;
}
#avaliacoes .reviews-google-btn .arrow-symbol {
  font-size: 21px !important;
}
#avaliacoes .testimonials-premium {
  margin-top: 0 !important;
  padding: 0 14px !important;
}
#avaliacoes .testimonial-track {
  gap: 18px !important;
}
#avaliacoes .testimonial-card {
  min-height: 188px !important;
  padding: 20px 22px 18px !important;
  border-radius: 18px !important;
}
#avaliacoes .testimonial-card .stars {
  font-size: 19px !important;
  margin-bottom: 13px !important;
}
#avaliacoes .testimonial-card .quote-mark {
  top: 12px !important;
  right: 18px !important;
  font-size: 28px !important;
  line-height: 1 !important;
  opacity: .28 !important;
  color: var(--gold2) !important;
  pointer-events: none !important;
}
#avaliacoes .testimonial-card p {
  font-size: 14px !important;
  line-height: 1.42 !important;
  margin: 0 0 15px !important;
  max-width: 96% !important;
}
#avaliacoes .review-author:before {
  width: 32px !important;
  margin-bottom: 10px !important;
}
#avaliacoes .review-author b {
  font-size: 15px !important;
  line-height: 1.1 !important;
}
#avaliacoes .review-author small {
  font-size: 12.5px !important;
  margin-top: 1px !important;
}
#avaliacoes .verified {
  font-size: 10px !important;
}
#avaliacoes .google-mark {
  font-size: 9px !important;
}
#avaliacoes .google-mark em {
  font-size: 9.5px !important;
}
#avaliacoes .testimonial-arrow {
  width: 38px !important;
  height: 38px !important;
  font-size: 28px !important;
}
#avaliacoes .testimonial-arrow.prev {
  left: -8px !important;
}
#avaliacoes .testimonial-arrow.next {
  right: -8px !important;
}
#avaliacoes .testimonial-dots {
  margin-top: 10px !important;
}
#avaliacoes .testimonial-dots button {
  width: 6px !important;
  height: 6px !important;
}
#avaliacoes .testimonial-dots button.active {
  width: 20px !important;
}
#avaliacoes .reviews-transparency {
  margin-top: 10px !important;
  gap: 9px !important;
  font-size: 13.5px !important;
  line-height: 1.28 !important;
}
#avaliacoes .reviews-transparency span {
  width: 20px !important;
  height: 20px !important;
}
@media (max-width:980px) {
  #avaliacoes .testimonial-card {
    min-height: 210px !important;
    padding: 22px 20px !important;
  }
  #avaliacoes .testimonial-card p {
    font-size: 14.5px !important;
    line-height: 1.48 !important;
  }
}
.gold-section .copy h2 {
  color: #f7f2e8 !important;
  text-shadow: 0 14px 46px rgba(0,0,0,.48) !important;
  opacity: 1 !important;
}
.gold-section .copy p {
  color: rgba(255,255,255,.82) !important;
  text-shadow: 0 10px 34px rgba(0,0,0,.45) !important;
}
.gold-section .kicker {
  color: #e9b936 !important;
  opacity: 1 !important;
}
.gold-section .checks span {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 48px !important;
  color: rgba(255,255,255,.90) !important;
  background: rgba(255,255,255,.065) !important;
  border-color: rgba(233,185,54,.22) !important;
  text-align: center !important;
}
.gold-section .checks span:nth-child(6) {
  font-size: 13.5px !important;
  line-height: 1.2 !important;
}
.gold-section .gold-eval-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
}
.wa-svg {
  width: 24px !important;
  height: 24px !important;
  display: block !important;
  flex: 0 0 auto !important;
  fill: #050403 !important;
}
.float {
  font-size: 0 !important;
}
.float .wa-svg {
  width: 32px !important;
  height: 32px !important;
  fill: #050403 !important;
}
@media (max-width:680px) {
  .gold-section .checks span:nth-child(6) {
    font-size: 13px !important;
  }
  .float .wa-svg {
    width: 28px !important;
    height: 28px !important;
  }
}
#avaliacoes .google-logo {
  width: 24px;
  height: 24px;
}
#avaliacoes .mini-google .google-logo {
  width: 26px;
  height: 26px;
}
#avaliacoes .google-mark .google-logo {
  width: 30px;
  height: 30px;
  margin-bottom: 2px;
}
#avaliacoes .reviews-google-btn .google-logo {
  width: 22px;
  height: 22px;
}
#avaliacoes .reviews-google-btn {
  white-space: nowrap;
}
@media (max-width:700px) {
  #avaliacoes .google-mark .google-logo {
    width: 26px !important;
    height: 26px !important;
  }
}
#avaliacoes .google-logo {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
  line-height: 0 !important;
  flex: 0 0 auto !important;
}
#avaliacoes .google-logo img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
#avaliacoes .reviews-google-btn {
  max-width: 100% !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  text-align: center !important;
  background-clip: padding-box !important;
}
@media (max-width:700px) {
  #avaliacoes .reviews-google-btn {
    width: 100% !important;
    min-height: 50px !important;
    padding: 0 12px !important;
    font-size: 13px !important;
    letter-spacing: .055em !important;
    gap: 7px !important;
    white-space: nowrap !important;
    line-height: 1.15 !important;
  }
  #avaliacoes .reviews-google-btn .google-logo {
    width: 18px !important;
    height: 18px !important;
  }
  #avaliacoes .reviews-google-btn .arrow-symbol {
    font-size: 18px !important;
    line-height: 1 !important;
  }
}
@media (max-width:360px) {
  #avaliacoes .reviews-google-btn {
    font-size: 12px !important;
    letter-spacing: .035em !important;
    padding: 0 10px !important;
    gap: 6px !important;
  }
  #avaliacoes .reviews-google-btn .google-logo {
    width: 17px !important;
    height: 17px !important;
  }
}

/* ==========================================================================
   HERO DESKTOP — slideshow (4 imagens, fade cruzado)
   Regras novas e isoladas: o dimensionamento/crop de ".hero-bg img" ja
   existente (todas as media queries acima) continua se aplicando aqui
   normalmente, pois o seletor por descendencia alcanca a imagem mesmo
   dentro do wrapper novo .hero-slides > .hero-slide > picture > img.
   ========================================================================== */
.hero-slides{ position:absolute; inset:0; width:100%; height:100%; }
.hero-slide{ position:absolute; inset:0; opacity:0; transition:opacity .8s ease; will-change:opacity; }
.hero-slide.is-active{ opacity:1; }
@media (prefers-reduced-motion: reduce){
  .hero-slide{ transition:none; }
}

/* ==========================================================================
   PERFORMANCE — promove o header (sticky + backdrop-filter) para sua
   propria camada de composicao, reduzindo recalculo durante o scroll.
   Nao altera nenhuma propriedade visual existente.
   ========================================================================== */
.header{ will-change: transform; }

/* ==========================================================================
   GALERIA DESKTOP — ajuste fino de enquadramento por imagem (object-position)
   Corrige o corte de peça/excesso de fundo em fotos que não são
   perfeitamente centralizadas. Não altera object-fit (continua "cover"),
   só o ponto de ancoragem do recorte.
   ========================================================================== */
[data-sitecontrol="galeria-desktop-6"]{ object-position:center 62%; }
[data-sitecontrol="galeria-desktop-7"]{ object-position:center 58%; }
[data-sitecontrol="galeria-desktop-8"]{ object-position:center 72%; }
