/* =============================================
   RESET & VARIÁVEIS
   ============================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #C9A84C;
  --gold-light: #D4B97A;
  --navy: #1A2744;
  --charcoal: #2C2C2C;
  --muted: #555;
  --cream: #F5F2EC;
  --offwhite: #F7F5F0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

/* scrollbar personalizada */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--offwhite);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-light);
  border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

body {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  background: var(--offwhite);
  color: var(--charcoal);
}

h1, h2, h3, h4 {
  font-family: 'Tenor Sans', sans-serif;
}

/* =============================================
   NAV
   ============================================= */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 240, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gold-light);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}

nav.scrolled {
  padding: 13px 40px;
  box-shadow: 0 2px 24px rgba(26, 39, 68, 0.08);
}

.nav-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 19px;
  color: var(--navy);
}

.nav-logo em {
  color: var(--gold);
  font-style: normal;
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: none;
  color: var(--charcoal);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: white;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 11px 28px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--navy);
  color: white;
}

/* =============================================
   WRAPPER — MAX-WIDTH CENTRALIZADO
   ============================================= */
.inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

/* =============================================
   HERO — fundo claro, tipografia serifada
   ============================================= */
.hero {
  position: relative;
  background: #F5F2EC;
  height: 580px;
  overflow: visible;
}

.hero-inner {
  position: relative;
  height: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
}

.hero-text {
  position: relative;
  z-index: 2;
  width: 52%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eye {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(36px, 3.4vw, 52px);
  color: var(--charcoal);
  line-height: 1.12;
  margin-bottom: 20px;
}

.hero-quote-open {
  color: var(--gold);
  font-size: 1.1em;
  line-height: 0;
  vertical-align: -0.15em;
  margin-right: 2px;
}

.hero-quote-close {
  color: var(--gold);
  font-size: 1.1em;
  line-height: 0;
  vertical-align: -0.15em;
  margin-left: 2px;
}

.hero-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 380px;
}

/* Foto — começa no centro da hero e vai até a borda direita sem limite */
.hero-foto-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 38%;
  right: 0;
  overflow: visible;
  z-index: 1;
}

.hero-foto-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 480px;
  background: linear-gradient(to right,
    #F5F2EC 0%,
    #F5F2EC 15%,
    rgba(245,242,236,0.92) 28%,
    rgba(245,242,236,0.65) 45%,
    rgba(245,242,236,0.28) 65%,
    rgba(245,242,236,0.06) 85%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
}

.hero-foto-wrap::after {
  content: none;
}

.hero-foto {
  display: block;
  /* largura natural da imagem para não distorcer */
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: unset;
}

/* -----------------------------------------------
   Cards — absolute na borda inferior do hero,
   centralizados e divididos entre hero e sobre
   ----------------------------------------------- */
.hero-cards-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(50%);
  z-index: 20;
  padding: 0 40px;
  pointer-events: none;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  pointer-events: auto;
}

.hero-card {
  background: white;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-top: 3px solid var(--gold);
  border-radius: 0;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(44, 44, 44, 0.10);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease var(--hcard-delay, 0ms),
              transform 0.55s ease var(--hcard-delay, 0ms),
              box-shadow 0.3s ease;
}

.hero-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-card:hover {
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.22);
}

.hero-card-icon {
  color: var(--gold);
  flex-shrink: 0;
}

.hero-card h4 {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.3;
}

.hero-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* Hero foto: animação de entrada */
.hero-anim-foto {
  opacity: 0;
  transform: translateX(20px);
  animation: heroFotoIn 1s ease 0.2s forwards;
}

@keyframes heroFotoIn {
  to { opacity: 1; transform: translateX(0); }
}

/* =============================================
   SEÇÕES — BASE
   ============================================= */
section {
  padding: 96px 40px;
}

.sec-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}

.sec-title {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 38px;
  color: var(--navy);
  margin-bottom: 14px;
}

.sec-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 36px;
}

.sec-center {
  text-align: center;
}

.sec-center .sec-line {
  margin: 0 auto 36px;
}

/* =============================================
   SOBRE
   ============================================= */
.sobre {
  background: white;
  padding-top: 176px;
}

.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: center;
}

.sobre-content .sec-title {
  text-align: left;
}

.sobre-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 18px;
}

.oab {
  display: inline-block;
  border: 1px solid var(--gold);
  padding: 11px 22px;
  margin-top: 24px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.sobre-detalhe {
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-left: 1px solid var(--gold-light);
  padding-left: 40px;
}

.sobre-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sobre-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.sobre-l {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
  line-height: 1.5;
}

/* seção áreas removida — cards estão nos cards flutuantes */
.areas { display: none; }

/* =============================================
   COMO TRABALHAMOS
   ============================================= */
.como {
  background: var(--navy);
}

.como .sec-title {
  color: white;
}

.como .sec-label {
  color: var(--gold-light);
}

.como .step-n {
  background: rgba(255,255,255,0.12);
  color: white;
}

.como .step h4 {
  color: rgba(255,255,255,0.9);
}

.como .step p {
  color: rgba(255,255,255,0.5);
}

.como .steps::before {
  background: rgba(201,168,76,0.25);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: var(--gold-light);
}

.step {
  text-align: center;
  padding: 0 12px;
}

.step-n {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-family: 'Tenor Sans', sans-serif;
  font-size: 18px;
  color: white;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
  position: relative;
  z-index: 1;
}

.step h4 {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 10px;
}

.step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
}

/* =============================================
   DEPOIMENTOS — carrossel editorial
   ============================================= */
.deps {
  background: var(--offwhite);
  padding-top: 64px;
  padding-bottom: 56px;
}

.deps .sec-title {
  font-size: 28px;
}

.dep-carousel {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 40px 32px;
  text-align: center;
}

.dep-big-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  color: var(--gold);
  line-height: 0.8;
  opacity: 0.35;
  margin-bottom: 4px;
  pointer-events: none;
  user-select: none;
}

.dep-track {
  position: relative;
  min-height: 140px;
}

.dep-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}

.dep-slide.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  pointer-events: auto;
}

.dep-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 1.6vw, 19px);
  font-style: italic;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.65;
  margin: 0 0 16px;
  max-width: 580px;
}

.dep-cite {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  font-style: normal;
}

.dep-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}

.dep-arrow {
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  line-height: 1;
}

.dep-arrow:hover {
  background: var(--gold);
  color: white;
}

.dep-dots {
  display: flex;
  gap: 10px;
}

.dep-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s;
}

.dep-dot.active {
  background: var(--gold);
}

/* =============================================
   FAQ
   ============================================= */
.faq {
  background: var(--cream);
  box-shadow: inset 0 8px 20px rgba(0,0,0,0.06);
  padding-top: 72px;
  padding-bottom: 72px;
}

.faq .sec-title {
  font-size: 28px;
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  padding: 16px 0;
  cursor: pointer;
}

.faq-q {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q span {
  color: var(--gold);
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.3s;
  font-family: 'Raleway', sans-serif;
  flex-shrink: 0;
}

.faq-a {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-top: 12px;
}

.faq-item.open .faq-q span {
  transform: rotate(45deg);
}

/* =============================================
   CONTATO
   ============================================= */
.contato {
  background: var(--navy);
}

.contato .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contato h3 {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 28px;
  color: white;
  margin-bottom: 14px;
}

.contato .sec-label {
  color: var(--gold-light);
}

.contato-p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  margin-bottom: 32px;
}

.clink {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.clink:hover {
  color: var(--gold);
}

.clink-ic {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(201,168,76,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.2s;
}

.clink-static {
  cursor: default;
  color: rgba(255,255,255,0.6);
}

.clink-static:hover {
  color: rgba(255,255,255,0.6);
}

.clink-static:hover .clink-ic {
  background: transparent;
  color: var(--gold);
  border-color: rgba(201,168,76,0.4);
}

.clink:hover .clink-ic {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}

.flabel {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(201,168,76,0.8);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.finput {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(201,168,76,0.35);
  background: transparent;
  padding: 10px 0;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  color: white;
  font-weight: 300;
  outline: none;
  margin-bottom: 24px;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}

.finput::placeholder {
  color: rgba(255,255,255,0.3);
}

.finput:focus {
  border-bottom-color: var(--gold);
}

select.finput option {
  background: var(--navy);
  color: white;
}

textarea.finput {
  height: 80px;
  resize: none;
}

.btn-gold {
  background: var(--gold);
  color: white;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 32px;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s;
}

.btn-gold:hover {
  background: white;
  color: var(--navy);
}

/* =============================================
   FORM — erros e validação
   ============================================= */
.ferror {
  display: block;
  font-size: 11px;
  color: #e07a6e;
  letter-spacing: 0.3px;
  margin-top: -18px;
  margin-bottom: 20px;
  min-height: 16px;
  transition: opacity 0.2s;
}

.finput.is-invalid {
  border-bottom-color: #e07a6e;
}

/* =============================================
   TOAST
   ============================================= */
.toast {
  position: fixed;
  top: 88px;
  left: 50%;
  transform: translateX(-50%) translateY(-24px);
  background: #fff;
  border: 1px solid rgba(201,168,76,0.3);
  border-left: 3px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  min-width: 300px;
  box-shadow: 0 8px 32px rgba(44,44,44,0.10);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0px);
  pointer-events: auto;
}

.toast-ic {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.toast-title {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 2px;
}

.toast-sub {
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--muted);
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: #1e2e4a;
  padding: 56px 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
}

.f-brand {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 19px;
  color: white;
  margin-bottom: 8px;
}

.f-oab {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.f-sigilo {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.75;
  margin-top: 16px;
  max-width: 240px;
}

.f-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 24px;
}

.f-sec-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
}

.f-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.f-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.f-links a:hover {
  color: var(--gold);
}

.f-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.f-soc {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.f-soc:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* =============================================
   WHATSAPP FLUTUANTE
   ============================================= */
.wa {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  z-index: 999;
  transition: transform 0.2s;
}

.wa:hover {
  transform: scale(1.08);
}

/* =============================================
   ANIMAÇÕES
   ============================================= */

/* --- Hero: entrada em cascata --- */
.hero-anim-1,
.hero-anim-2,
.hero-anim-3,
.hero-anim-4,
.hero-anim-5 {
  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeUp 0.7s ease forwards;
}
.hero-anim-1 { animation-delay: 0.1s; }
.hero-anim-2 { animation-delay: 0.28s; }
.hero-anim-3 { animation-delay: 0.46s; }
.hero-anim-4 { animation-delay: 0.58s; }
.hero-anim-5 { animation-delay: 0.74s; }

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Hero-line: cresce da esquerda na entrada */
.hero-line {
  width: 0;
  animation: lineGrow 0.5s ease 0.46s forwards;
}
@keyframes lineGrow {
  to { width: 52px; }
}

/* --- Scroll reveal: base --- */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Cards escalonados --- */
.reveal-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease var(--card-delay, 0ms),
              transform 0.6s ease var(--card-delay, 0ms),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
}
.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Garante que o hover translateY só funciona depois da entrada */
.reveal-card.is-visible:hover {
  transform: translateY(-4px);
}

/* hero-card animation handled in .hero-card selector */

/* --- sec-line: cresce da esquerda quando pai ou ela própria fica visível --- */
.sec-line {
  width: 0;
  transition: width 0.5s ease 0.25s;
}
.reveal-up.is-visible .sec-line,
.sec-line.is-visible {
  width: 48px;
}
.sec-center .sec-line {
  margin: 0 auto 36px;
}

/* --- prefers-reduced-motion: desativa tudo --- */
@media (prefers-reduced-motion: reduce) {
  .hero-anim-1,
  .hero-anim-2,
  .hero-anim-3,
  .hero-anim-foto {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .reveal-up,
  .reveal-left,
  .reveal-card,
  .hero-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .dep-slide {
    transition: none;
  }
  .sec-line {
    width: 48px;
    transition: none;
  }
}

/* =============================================
   NAV — hamburger (sempre no DOM, visível só mobile)
   ============================================= */
.nav-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid rgba(201,168,76,0.45);
  cursor: pointer;
  width: 38px;
  height: 38px;
  padding: 0;
  transition: border-color 0.25s, background 0.25s;
  color: var(--navy);
}

.nav-hamburger:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
  color: var(--gold);
}

.nav-hamburger .hb-icon {
  display: block;
  transition: opacity 0.2s;
}

.nav-hamburger .hb-close {
  display: none;
  transition: opacity 0.2s;
}

.nav-hamburger.open .hb-icon  { display: none; }
.nav-hamburger.open .hb-close { display: block; color: var(--gold); }
.nav-hamburger.open { border-color: var(--gold); }

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(247,245,240,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 0 24px 28px;
  box-shadow: 0 8px 32px rgba(26,39,68,0.08);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-mobile.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-mobile ul {
  list-style: none;
  padding: 20px 0 8px;
}

.nav-mobile ul li {
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.nav-mobile ul li a {
  display: block;
  padding: 14px 0;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-mobile ul li a:hover { color: var(--gold); }

.nav-mobile-cta {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  background: var(--gold);
  color: white;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.nav-mobile-cta:hover { background: var(--navy); }

/* =============================================
   RESPONSIVO — MOBILE
   ============================================= */
@media (max-width: 768px) {
  nav {
    padding: 16px 24px;
    position: sticky;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-mobile {
    display: block;
  }

  /* ---- HERO ---- */
  .hero {
    height: auto;
    overflow: visible;
  }

  .hero-inner {
    flex-direction: column;
    height: auto;
    padding: 0;
  }

  .hero-text {
    width: 100%;
    padding: 40px 24px 32px;
    order: 2;
    position: relative;
    z-index: 2;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero-sub {
    font-size: 14px;
    max-width: 100%;
  }

  /* hero vira background full no mobile */
  .hero {
    background: url('assets/images/foto_banner_mobile.png') center top / cover no-repeat;
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: visible;
    display: flex;
    flex-direction: column;
  }

  .hero-inner {
    position: relative;
    height: auto;
    min-height: 580px;
    justify-content: flex-end;
    padding-bottom: 0;
    overflow: hidden;
  }

  .hero-foto-wrap {
    display: none;
  }

  .hero-foto {
    display: none;
  }

  /* overlay só sobre a foto — cobre apenas o hero-inner, não os cards */
  .hero-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
      rgba(10,18,40,0.72) 0%,
      rgba(10,18,40,0.45) 40%,
      rgba(10,18,40,0.15) 70%,
      transparent 100%
    );
    pointer-events: none;
    z-index: 1;
  }

  .hero-text {
    width: 100%;
    padding: 0 24px 36px;
    order: 1;
    position: relative;
    z-index: 2;
    justify-content: flex-end;
  }

  /* texto do hero branco para contraste sobre a foto escura */
  .hero h1 {
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);
  }

  .hero-eye {
    color: var(--gold-light);
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  }

  .hero-sub {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  }

  .hero-quote-open,
  .hero-quote-close {
    color: var(--gold-light);
  }

  /* cards: fluxo normal, sem o translateY do desktop */
  .hero-cards-wrap {
    position: static;
    transform: none;
    bottom: auto;
    left: auto;
    right: auto;
    padding: 0 24px;
    margin-top: 0;
    z-index: auto;
    pointer-events: auto;
  }

  .hero-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-card {
    padding: 24px 20px;
  }

  .hero-card:last-child {
    margin-bottom: 40px;
  }

  /* ---- SOBRE ---- */
  .sobre {
    padding-top: 64px !important;
  }

  .sobre-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* stats na mesma linha, centralizados */
  .sobre-detalhe {
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    text-align: center;
    border-left: none;
    border-top: 1px solid var(--gold-light);
    padding-left: 0;
    padding-top: 28px;
    gap: 8px;
  }

  .sobre-stat {
    align-items: center;
    flex: 1;
  }

  .sobre-n {
    font-size: 24px;
  }

  .sobre-l {
    font-size: 10px;
  }

  /* ---- COMO TRABALHAMOS ---- */
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .steps::before {
    display: none;
  }

  /* ---- DEPOIMENTOS ---- */
  .dep-carousel {
    padding: 0 24px 40px;
  }

  .dep-big-quote {
    font-size: 60px;
  }

  /* ---- SEÇÕES BASE ---- */
  section {
    padding: 64px 24px;
  }

  /* ---- CONTATO ---- */
  .contato .inner {
    grid-template-columns: 1fr;
  }

  /* ---- FOOTER ---- */
  footer {
    padding: 40px 24px;
  }

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