/* ══════════════════════════════════════════
   FLORIAN FONT (self-hosted fallback via @font-face)
   Approximated with Montserrat italic for elegance
   ══════════════════════════════════════════ */

:root {
  /* PALETA PRINCIPAL */
  --ink:        #1a1a1c;
  --ink2:       #212123;
  --ink3:       #2a2a2d;
  --graphite:   #3a3a3e;
  --muted:      #b8b2aa;
  --white:      #fff;
  --offwhite:   #f0ece4;
  --beige:      #d8cfc2;
  --beige2:     #c8bfb0;
  --gold:       #c9a256;
  --gold2:      #ddb96a;
  --gold3:      #f0d48e;
  --gold-pale:  #faf4e8;
  --gold-light: #e8d09a;

  /* ESTADOS */
  --red:        #b83a2a;
  --red-pale:   #fdf2f0;
  --green:      #2b6e47;
  --green-pale: #f0f8f4;
  --orange:     #c47020;

  /* TIPOGRAFIA */
  --font-main:  'Montserrat', sans-serif;
  --font-serif: 'Montserrat', sans-serif;
}

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

html { 
  scroll-behavior: smooth; 
  font-size: 16px;
}

body { 
  font-family: var(--font-main); 
  background: var(--ink); 
  color: var(--offwhite); 
  overflow-x: hidden;
  line-height: 1.6;
}

/* ══ NAV ══ */
nav {
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0; 
  z-index: 200;
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  padding: 18px 5vw;
  background: rgba(26, 26, 28, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201, 162, 86, 0.14);
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-brand { 
  display: flex; 
  flex-direction: column; 
}

.nav-name {
  font-family: var(--font-main);
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold2);
}

.nav-role {
  font-size: clamp(0.45rem, 1.2vw, 0.57rem);
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

.nav-btn {
  font-size: clamp(0.55rem, 1.5vw, 0.62rem);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 11px 28px;
  text-decoration: none;
  transition: all .25s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.nav-btn:hover { 
  background: var(--gold2); 
}

.modal-erro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}

.modal-box {
  background: #000000;
  padding: clamp(20px, 5vw, 30px);
  border-radius: 10px;
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.modal-box h3 {
  margin-bottom: 10px;
  font-size: clamp(18px, 5vw, 22px);
}

.modal-box ul {
  text-align: left;
  margin: 20px 0;
}

.btn-modal {
  background: #f9ffab;
  color: #131313;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1rem;
}

input:invalid {
  border-color: red;
}

/* ══ HERO ══ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  margin-top: 64px;
}

.hero-img-wrap { 
  position: relative; 
  overflow: hidden;
  min-height: 500px;
}

.hero-img-wrap img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  object-position: center top; 
  display: block; 
  filter: contrast(1.04) saturate(0.78) brightness(0.9); 
}

.hero-img-wrap::after {
  content: '';
  position: absolute; 
  inset: 0;
  background: linear-gradient(to right, var(--ink) 0%, rgba(26, 26, 28, 0.28) 40%, transparent 100%),
              linear-gradient(to top, var(--ink) 0%, transparent 30%);
}

.hero-content {
  position: relative;
  display: flex; 
  flex-direction: column; 
  justify-content: center;
  padding: 4rem 5vw; 
  z-index: 2;
}

.hero-tag {
  display: inline-flex; 
  align-items: center; 
  gap: 12px;
  font-size: clamp(0.5rem, 1.5vw, 0.58rem); 
  font-weight: 600; 
  letter-spacing: 0.42em;
  text-transform: uppercase; 
  color: var(--gold); 
  margin-bottom: 1.5rem;
}

.hero-tag span { 
  display: block; 
  width: 44px; 
  height: 1px; 
  background: var(--gold); 
}

.hero-h1 {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 6vw, 4.6rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold2);
  display: block;
}

.hero-lead {
  font-size: clamp(0.75rem, 2vw, 0.88rem);
  font-weight: 400;
  line-height: 1.95;
  color: #d8d0c6;
  max-width: 390px;
  margin-bottom: 2rem;
}

.hero-actions { 
  display: flex; 
  gap: 14px; 
  flex-wrap: wrap; 
}
/* ══ HERO ══ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  margin-top: 64px;
}

.hero-img-wrap { 
  position: relative; 
  overflow: hidden;
  grid-column: 2;
  min-height: 500px;
}

.hero-img-wrap img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  object-position: center top; 
  display: block; 
  filter: contrast(1.04) saturate(0.78) brightness(0.9); 
}

.hero-img-wrap::after {
  content: '';
  position: absolute; 
  inset: 0;
  background: linear-gradient(to right, var(--ink) 0%, rgba(26, 26, 28, 0.28) 40%, transparent 100%),
              linear-gradient(to top, var(--ink) 0%, transparent 30%);
}

.hero-content {
  position: relative;
  display: flex; 
  flex-direction: column; 
  justify-content: center;
  padding: 4rem 5vw; 
  z-index: 2;
  grid-column: 1;
}

.hero-tag {
  display: inline-flex; 
  align-items: center; 
  gap: 12px;
  font-size: clamp(0.5rem, 1.5vw, 0.58rem); 
  font-weight: 600; 
  letter-spacing: 0.42em;
  text-transform: uppercase; 
  color: var(--gold); 
  margin-bottom: 1.5rem;
}

.hero-tag span { 
  display: block; 
  width: 44px; 
  height: 1px; 
  background: var(--gold); 
}

.hero-h1 {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 6vw, 4.6rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold2);
  display: block;
}

.hero-lead {
  font-size: clamp(0.75rem, 2vw, 0.88rem);
  font-weight: 400;
  line-height: 1.95;
  color: #d8d0c6;
  max-width: 390px;
  margin-bottom: 2rem;
}

.hero-actions { 
  display: flex; 
  gap: 14px; 
  flex-wrap: wrap; 
}

.btn-gold {
  background: var(--gold); 
  color: var(--ink);
  padding: 14px 34px;
  font-size: clamp(0.6rem, 1.5vw, 0.66rem); 
  font-weight: 600; 
  letter-spacing: 0.22em; 
  text-transform: uppercase;
  text-decoration: none; 
  transition: .25s; 
  display: inline-block;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-gold:hover { 
  background: var(--gold2); 
}

.btn-line {
  border: 1px solid rgba(201, 162, 86, 0.45); 
  color: var(--gold2);
  padding: 14px 34px;
  font-size: clamp(0.6rem, 1.5vw, 0.66rem); 
  font-weight: 500; 
  letter-spacing: 0.22em; 
  text-transform: uppercase;
  text-decoration: none; 
  transition: .25s;
  background: none;
  cursor: pointer;
  display: inline-block;
  white-space: nowrap;
}

.btn-line:hover { 
  border-color: var(--gold2); 
  background: rgba(201, 162, 86, 0.07); 
}

.hero-numbers {
  position: absolute; 
  bottom: 52px; 
  left: 5vw; 
  z-index: 3;
  display: flex; 
  gap: clamp(2rem, 5vw, 3rem);
  flex-wrap: wrap;
}

.hn { 
  display: flex; 
  flex-direction: column; 
  gap: 4px; 
}

.hn-big {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 4vw, 2.5rem); 
  font-weight: 300; 
  font-style: italic;
  color: var(--gold2); 
  line-height: 1;
}

.hn-label {
  font-size: clamp(0.5rem, 1.2vw, 0.57rem); 
  font-weight: 500;
  letter-spacing: 0.26em; 
  text-transform: uppercase;
  color: var(--muted);
}

/* ══════════════════════════════════════════
   RESPONSIVO - MANTER LAYOUT LADO A LADO
   ══════════════════════════════════════════ */

/* ══ HERO ══ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  margin-top: 64px;
}

.hero-img-wrap { 
  position: relative; 
  overflow: hidden;
  grid-column: 2;
  min-height: 500px;
}

.hero-img-wrap img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  object-position: center top; 
  display: block; 
  filter: contrast(1.04) saturate(0.78) brightness(0.9); 
}

.hero-img-wrap::after {
  content: '';
  position: absolute; 
  inset: 0;
  background: linear-gradient(to right, var(--ink) 0%, rgba(26, 26, 28, 0.28) 40%, transparent 100%),
              linear-gradient(to top, var(--ink) 0%, transparent 30%);
}

.hero-content {
  position: relative;
  display: flex; 
  flex-direction: column; 
  justify-content: center;
  padding: 4rem 5vw; 
  z-index: 2;
  grid-column: 1;
}

.hero-tag {
  display: inline-flex; 
  align-items: center; 
  gap: 12px;
  font-size: clamp(0.5rem, 1.5vw, 0.58rem); 
  font-weight: 600; 
  letter-spacing: 0.42em;
  text-transform: uppercase; 
  color: var(--gold); 
  margin-bottom: 1.5rem;
}

.hero-tag span { 
  display: block; 
  width: 44px; 
  height: 1px; 
  background: var(--gold); 
}

.hero-h1 {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 6vw, 4.6rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold2);
  display: block;
}

.hero-lead {
  font-size: clamp(0.75rem, 2vw, 0.88rem);
  font-weight: 400;
  line-height: 1.95;
  color: #d8d0c6;
  max-width: 390px;
  margin-bottom: 2rem;
}

.hero-actions { 
  display: flex; 
  gap: 14px; 
  flex-wrap: wrap; 
}

.btn-gold {
  background: var(--gold); 
  color: var(--ink);
  padding: 14px 34px;
  font-size: clamp(0.6rem, 1.5vw, 0.66rem); 
  font-weight: 600; 
  letter-spacing: 0.22em; 
  text-transform: uppercase;
  text-decoration: none; 
  transition: .25s; 
  display: inline-block;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-gold:hover { 
  background: var(--gold2); 
}

.btn-line {
  border: 1px solid rgba(201, 162, 86, 0.45); 
  color: var(--gold2);
  padding: 14px 34px;
  font-size: clamp(0.6rem, 1.5vw, 0.66rem); 
  font-weight: 500; 
  letter-spacing: 0.22em; 
  text-transform: uppercase;
  text-decoration: none; 
  transition: .25s;
  background: none;
  cursor: pointer;
  display: inline-block;
  white-space: nowrap;
}

.btn-line:hover { 
  border-color: var(--gold2); 
  background: rgba(201, 162, 86, 0.07); 
}

.hero-numbers {
  position: absolute; 
  bottom: 52px; 
  left: 5vw; 
  z-index: 3;
  display: flex; 
  gap: clamp(2rem, 5vw, 3rem);
  flex-wrap: wrap;
}

.hn { 
  display: flex; 
  flex-direction: column; 
  gap: 4px; 
}

.hn-big {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 4vw, 2.5rem); 
  font-weight: 300; 
  font-style: italic;
  color: var(--gold2); 
  line-height: 1;
}

.hn-label {
  font-size: clamp(0.5rem, 1.2vw, 0.57rem); 
  font-weight: 500;
  letter-spacing: 0.26em; 
  text-transform: uppercase;
  color: var(--muted);
}

/* ══════════════════════════════════════════
   RESPONSIVO - MANTER LAYOUT LADO A LADO
   ══════════════════════════════════════════ */

@media(max-width: 1200px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
  }

  .hero-img-wrap {
    grid-column: 2;
    min-height: 400px;
  }

  .hero-content {
    grid-column: 1;
    padding: 3rem 4vw;
  }

  .hero-h1 {
    font-size: clamp(1.6rem, 4vw, 3.5rem);
  }

  .hero-numbers {
    bottom: 40px;
    left: 4vw;
  }
}

@media(max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    min-height: 75vh;
  }

  .hero-img-wrap {
    grid-column: 2;
    min-height: 350px;
  }

  .hero-content {
    grid-column: 1;
    padding: 2.5rem 3vw;
  }

  .hero-h1 {
    font-size: clamp(1.5rem, 3.5vw, 3rem);
    margin-bottom: 1.2rem;
  }

  .hero-lead {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .hero-numbers {
    bottom: 30px;
    left: 3vw;
    gap: 1.5rem;
  }

  .hn-big {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }

  .hn-label {
    font-size: 0.48rem;
  }
}

@media(max-width: 768px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
  }

  .hero-img-wrap {
    grid-column: 2;
    min-height: 300px;
  }

  .hero-content {
    grid-column: 1;
    padding: 2rem 2.5vw;
  }

  .hero-h1 {
    font-size: clamp(1.3rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .hero-lead {
    font-size: 0.75rem;
    margin-bottom: 1.2rem;
    max-width: 100%;
  }

  .hero-tag {
    margin-bottom: 1rem;
    font-size: 0.48rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .btn-gold,
  .btn-line {
    padding: 10px 20px;
    font-size: 0.55rem;
  }

  .hero-numbers {
    bottom: 25px;
    left: 2.5vw;
    gap: 1rem;
  }

  .hn-big {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  }

  .hn-label {
    font-size: 0.45rem;
  }
}

@media(max-width: 640px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    min-height: 65vh;
    margin-top: 56px;
  }

  .hero-img-wrap {
    grid-column: 2;
    min-height: 280px;
  }

  .hero-content {
    grid-column: 1;
    padding: 1.5rem 2vw;
    justify-content: flex-start;
    padding-top: 2rem;
  }

  .hero-h1 {
    font-size: clamp(1.2rem, 2.8vw, 2rem);
    margin-bottom: 0.8rem;
    line-height: 1.2;
  }

  .hero-lead {
    font-size: 0.7rem;
    margin-bottom: 1rem;
    line-height: 1.8;
  }

  .hero-tag {
    margin-bottom: 0.8rem;
  }

  .hero-tag span {
    width: 30px;
  }

  .btn-gold,
  .btn-line {
    padding: 9px 16px;
    font-size: 0.52rem;
  }

  .hero-numbers {
    bottom: 20px;
    left: 2vw;
    gap: 0.8rem;
  }

  .hn-big {
    font-size: 1.4rem;
  }

  .hn-label {
    font-size: 0.42rem;
    letter-spacing: 0.2em;
  }
}

@media(max-width: 500px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    min-height: 60vh;
    margin-top: 56px;
  }

  .hero-img-wrap {
    grid-column: 2;
    min-height: 250px;
  }

  .hero-content {
    grid-column: 1;
    padding: 1.2rem 1.5vw;
    padding-top: 1.5rem;
  }

  .hero-h1 {
    font-size: clamp(1rem, 2.5vw, 1.6rem);
    margin-bottom: 0.6rem;
  }

  .hero-lead {
    font-size: 0.65rem;
    margin-bottom: 0.8rem;
  }

  .hero-tag {
    margin-bottom: 0.6rem;
    gap: 8px;
  }

  .hero-tag span {
    width: 25px;
  }

  .btn-gold,
  .btn-line {
    padding: 8px 12px;
    font-size: 0.5rem;
    letter-spacing: 0.18em;
  }

  .hero-numbers {
    bottom: 15px;
    left: 1.5vw;
    gap: 0.6rem;
  }

  .hn-big {
    font-size: 1.2rem;
  }

  .hn-label {
    font-size: 0.38rem;
  }

  .cred {
    padding: 12px 0;
  }
}

@media(max-width: 380px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    min-height: 55vh;
  }

  .hero-img-wrap {
    grid-column: 2;
    min-height: 220px;
  }

  .hero-content {
    grid-column: 1;
    padding: 1rem 1vw;
  }

  .hero-h1 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }

  .hero-lead {
    font-size: 0.6rem;
    margin-bottom: 0.7rem;
    line-height: 1.6;
  }

  .hero-numbers {
    bottom: 12px;
    left: 1vw;
    gap: 0.5rem;
  }

  .hn-big {
    font-size: 1rem;
  }

  .hn-label {
    font-size: 0.35rem;
  }
}

/* ══════════════════════════��═══════════════
   LANDSCAPE (pequenos dispositivos)
   ══════════════════════════════════════════ */

@media(max-width: 800px) and (max-height: 500px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
    max-height: 80vh;
  }

  .hero-img-wrap {
    grid-column: 2;
    min-height: auto;
    max-height: 100%;
  }

  .hero-content {
    grid-column: 1;
    padding: 1.5rem 2vw;
    justify-content: center;
  }

  .hero-h1 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }

  .hero-lead {
    font-size: 0.7rem;
    margin-bottom: 0.8rem;
  }

  .hero-numbers {
    position: static;
    margin-top: 1rem;
    gap: 1rem;
  }
}
@media(max-width: 640px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    min-height: 65vh;
    margin-top: 56px;
  }

  .hero-img-wrap {
    grid-column: 2;
    min-height: 280px;
  }

  .hero-content {
    grid-column: 1;
    padding: 1.5rem 2vw;
    justify-content: flex-start;
    padding-top: 2rem;
  }
}
.btn-gold {
  background: var(--gold); 
  color: var(--ink);
  padding: 14px 34px;
  font-size: clamp(0.6rem, 1.5vw, 0.66rem); 
  font-weight: 600; 
  letter-spacing: 0.22em; 
  text-transform: uppercase;
  text-decoration: none; 
  transition: .25s; 
  display: inline-block;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-gold:hover { 
  background: var(--gold2); 
}

.btn-line {
  border: 1px solid rgba(201, 162, 86, 0.45); 
  color: var(--gold2);
  padding: 14px 34px;
  font-size: clamp(0.6rem, 1.5vw, 0.66rem); 
  font-weight: 500; 
  letter-spacing: 0.22em; 
  text-transform: uppercase;
  text-decoration: none; 
  transition: .25s;
  background: none;
  cursor: pointer;
  display: inline-block;
  white-space: nowrap;
}

.btn-line:hover { 
  border-color: var(--gold2); 
  background: rgba(201, 162, 86, 0.07); 
}

.hero-numbers {
  position: absolute; 
  bottom: 52px; 
  left: 5vw; 
  z-index: 3;
  display: flex; 
  gap: clamp(2rem, 5vw, 3rem);
  flex-wrap: wrap;
}

.hn { 
  display: flex; 
  flex-direction: column; 
  gap: 4px; 
}

.hn-big {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 4vw, 2.5rem); 
  font-weight: 300; 
  font-style: italic;
  color: var(--gold2); 
  line-height: 1;
}

.hn-label {
  font-size: clamp(0.5rem, 1.2vw, 0.57rem); 
  font-weight: 500;
  letter-spacing: 0.26em; 
  text-transform: uppercase;
  color: var(--muted);
}

/* ══ DIVISOR OURO ══ */
.gl { 
  height: 1px; 
  background: linear-gradient(to right, transparent, var(--gold), transparent); 
  margin: 0 5vw; 
}

/* ══ DOR ══ */
.dor { 
  background: var(--ink2); 
  padding: clamp(3rem, 8vw, 6rem) 5vw;
}

.dor-head { 
  display: flex; 
  justify-content: space-between; 
  align-items: flex-end; 
  margin-bottom: clamp(2rem, 6vw, 4rem); 
  gap: 40px;
  flex-wrap: wrap;
}

.label-tag {
  font-size: clamp(0.5rem, 1.2vw, 0.57rem); 
  font-weight: 600; 
  letter-spacing: 0.4em;
  text-transform: uppercase; 
  color: var(--gold); 
  margin-bottom: 16px;
  display: flex; 
  align-items: center; 
  gap: 12px;
}

.label-tag::before { 
  content: ''; 
  display: block; 
  width: 28px; 
  height: 1px; 
  background: var(--gold); 
}

.sec-title {
  font-family: var(--font-main);
  font-size: clamp(1.4rem, 4vw, 2.8rem);
  font-weight: 300; 
  line-height: 1.2;
  color: var(--white);
}

.sec-title em { 
  font-style: italic; 
  font-weight: 400; 
  color: var(--gold2); 
}

.dor-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px; 
  background: rgba(255, 255, 255, 0.04); 
}

.dor-card { 
  background: var(--ink2); 
  padding: clamp(1.5rem, 3vw, 2.5rem); 
  border-top: 2px solid transparent; 
  transition: .3s; 
  cursor: default; 
}

.dor-card:hover { 
  border-top-color: var(--gold); 
  background: var(--ink); 
}

.dor-n { 
  font-size: clamp(2rem, 6vw, 3.8rem); 
  font-weight: 200; 
  font-style: italic; 
  color: rgb(255, 206, 108); 
  line-height: 1; 
  margin-bottom: 18px; 
}

.dor-t { 
  font-size: clamp(0.75rem, 1.5vw, 0.9rem); 
  font-weight: 500; 
  color: var(--white); 
  margin-bottom: 12px; 
  letter-spacing: 0.02em; 
}

.dor-p { 
  font-size: clamp(0.7rem, 1.2vw, 0.8rem); 
  font-weight: 400; 
  line-height: 1.88; 
  color: #c2bab2; 
}

/* ══ SPLIT SOBRE ══ */
.split { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  min-height: 680px; 
}

.split-photo { 
  position: relative; 
  overflow: hidden;
  min-height: 300px;
}

.split-photo img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  object-position: top center; 
  filter: saturate(0.75) brightness(0.93); 
  display: block; 
}

.split-photo-over { 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(to right, transparent 55%, var(--ink) 100%), 
              linear-gradient(to top, var(--ink) 0%, transparent 20%); 
}

.split-badge { 
  position: absolute; 
  bottom: 48px; 
  left: 48px; 
  background: var(--gold); 
  padding: 22px 28px; 
  color: var(--ink); 
  z-index: 2;
}

.split-badge strong { 
  font-size: clamp(1.5rem, 3vw, 2rem); 
  font-weight: 600; 
  display: block; 
  line-height: 1; 
}

.split-badge span { 
  font-size: clamp(0.5rem, 1.2vw, 0.6rem); 
  font-weight: 500; 
  letter-spacing: 0.18em; 
  text-transform: uppercase; 
}

.split-text { 
  background: var(--ink); 
  padding: clamp(2rem, 5vw, 5rem) 5vw;
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
}

.about-p { 
  font-size: clamp(0.75rem, 1.5vw, 0.86rem); 
  font-weight: 400; 
  line-height: 1.98; 
  color: #d0c8be; 
  margin-bottom: 18px; 
}

.creds { 
  margin-top: 40px; 
  display: flex; 
  flex-direction: column; 
}

.cred { 
  display: flex; 
  align-items: flex-start; 
  gap: 18px; 
  padding: 18px 0; 
  border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
}

.cred-ico { 
  width: 38px; 
  height: 38px; 
  flex-shrink: 0; 
  border: 1px solid rgba(201, 162, 86, 0.35); 
  background: rgba(201, 162, 86, 0.06); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: var(--gold); 
  font-size: 0.8rem; 
}

.cred-t strong { 
  display: block; 
  font-size: clamp(0.7rem, 1.2vw, 0.82rem); 
  font-weight: 500; 
  color: var(--white); 
  margin-bottom: 3px; 
}

.cred-t span { 
  font-size: clamp(0.65rem, 1rem, 0.74rem); 
  font-weight: 400; 
  color: var(--muted); 
}

/* ══ TRIO FOTOS ══ */
.trio { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  height: auto;
  min-height: 300px;
  overflow: hidden; 
}

.trio-item { 
  position: relative; 
  overflow: hidden;
  min-height: 280px;
}

.trio-item img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  object-position: top center; 
  filter: saturate(0.65) brightness(0.75); 
  transition: all .6s ease; 
  display: block; 
}

.trio-item:hover img { 
  filter: saturate(0.95) brightness(0.9); 
  transform: scale(1.03); 
}

.trio-item::after { 
  content: ''; 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(to top, rgba(26, 26, 28, 0.5) 0%, transparent 40%); 
}

/* ══ COMO FUNCIONA ══ */
.como { 
  background: var(--ink2); 
  padding: clamp(3rem, 8vw, 6rem) 5vw;
}

.como-head { 
  display: flex; 
  justify-content: space-between; 
  align-items: flex-end; 
  margin-bottom: clamp(2rem, 6vw, 5rem);
  flex-wrap: wrap;
  gap: 2rem;
}

.steps { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  position: relative;
  gap: 2rem;
}

.steps-line { 
  position: absolute; 
  top: 30px; 
  left: 12%; 
  right: 12%; 
  height: 1px; 
  background: linear-gradient(to right, var(--gold), rgba(201, 162, 86, 0.15), var(--gold)); 
  display: none;
}

.steps { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  position: relative;
  gap: 2rem;
}

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

.step-circle { 
  width: 60px; 
  height: 60px; 
  border: 1px solid var(--gold); 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  margin: 0 auto 36px; 
  background: var(--ink2); 
  font-size: 1.2rem; 
  font-weight: 300; 
  font-style: italic; 
  color: var(--gold2); 
  position: relative; 
  z-index: 1; 
}

.step-t { 
  font-size: clamp(0.75rem, 1.5vw, 0.86rem); 
  font-weight: 500; 
  color: var(--white); 
  margin-bottom: 10px; 
}

.step-p { 
  font-size: clamp(0.7rem, 1.2vw, 0.76rem); 
  font-weight: 400; 
  line-height: 1.88; 
  color: #c2bab2; 
}

/* ══ DEPOIMENTOS ══ */
.depo { 
  background: var(--ink); 
  padding: clamp(3rem, 8vw, 6rem) 5vw;
}

.depo-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px; 
  background: rgba(255, 255, 255, 0.04); 
  margin-top: clamp(2rem, 4vw, 4rem);
}

.depo-card { 
  background: var(--ink); 
  padding: clamp(2rem, 4vw, 2.75rem);
  position: relative; 
}

.depo-card::before { 
  content: '"'; 
  font-family: Georgia, serif; 
  font-size: clamp(3rem, 8vw, 5.5rem); 
  line-height: 0.7; 
  color: rgba(201, 162, 86, 0.13); 
  position: absolute; 
  top: 30px; 
  left: 28px; 
}

.depo-txt { 
  font-size: clamp(0.75rem, 1.5vw, 0.85rem); 
  font-weight: 400; 
  line-height: 1.92; 
  color: #d0c8be; 
  font-style: italic; 
  margin-top: 40px; 
  margin-bottom: 28px; 
}

.depo-auth strong { 
  display: block; 
  font-size: clamp(0.7rem, 1.2vw, 0.78rem); 
  font-weight: 500; 
  color: var(--white); 
}

.depo-auth span { 
  font-size: clamp(0.6rem, 1rem, 0.67rem); 
  font-weight: 400; 
  color: var(--gold); 
  letter-spacing: 0.14em; 
  text-transform: uppercase; 
}

/* ══════════════════════════════════════════
   WIZARD DIAGNÓSTICO
   ══════════════════════════════════════════ */
.diag-section {
  background: linear-gradient(155deg, #201c14 0%, #19181a 50%, #0e0d10 100%);
  position: relative; 
  overflow: hidden;
}

.diag-section::before {
  content: ''; 
  position: absolute; 
  top: 0; 
  left: 0; 
  right: 0; 
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* INTRO */
.wiz-intro {
  padding: clamp(3rem, 8vw, 5rem) 5vw;
  position: relative; 
  z-index: 1;
  max-width: 1200px; 
  margin: 0 auto;
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 60px;
  flex-wrap: wrap;
}

.wiz-intro-text { 
  max-width: 580px; 
  min-width: 100%;
}

.diag-badge {
  display: inline-flex; 
  align-items: center; 
  gap: 10px;
  border: 1px solid rgba(201, 162, 86, 0.5);
  color: var(--gold); 
  font-size: clamp(0.5rem, 1.2vw, 0.57rem); 
  font-weight: 600;
  letter-spacing: 2.5px; 
  text-transform: uppercase;
  padding: 6px 14px; 
  margin-bottom: 1.6rem;
}

.diag-title {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 300; 
  line-height: 1.14;
  color: var(--white); 
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.diag-title em { 
  font-style: italic; 
  font-weight: 400; 
  color: var(--gold2); 
}

.diag-sub {
  font-size: clamp(0.75rem, 1.5vw, 0.84rem); 
  font-weight: 400; 
  line-height: 1.85;
  color: #c2bab2; 
  margin-bottom: 2rem;
}

.wiz-stats { 
  display: flex; 
  gap: clamp(1rem, 4vw, 2rem);
  flex-wrap: wrap;
  justify-content: center;
}

.wiz-stat { 
  text-align: center; 
}

.wiz-stat-n { 
  font-size: clamp(1.5rem, 3vw, 2rem); 
  font-weight: 200; 
  font-style: italic; 
  color: var(--gold2); 
  line-height: 1; 
}

.wiz-stat-l { 
  font-size: clamp(0.5rem, 1rem, 0.58rem); 
  font-weight: 500; 
  letter-spacing: 0.2em; 
  text-transform: uppercase; 
  color: var(--muted); 
  margin-top: 4px; 
}

/* WIZARD SHELL */
.wizard {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 620px;
  border-top: 1px solid rgba(201, 162, 86, 0.1);
  position: relative; 
  z-index: 1;
}

/* SIDEBAR */
.wiz-sidebar {
  background: rgba(0, 0, 0, 0.25);
  border-right: 1px solid rgba(201, 162, 86, 0.08);
  padding: 40px 0;
  position: sticky; 
  top: 64px; 
  align-self: start;
  max-height: calc(100vh - 64px); 
  overflow-y: auto;
}

.wiz-sidebar::-webkit-scrollbar { 
  width: 3px; 
}

.wiz-sidebar::-webkit-scrollbar-thumb { 
  background: rgba(201, 162, 86, 0.2); 
}

.wiz-progress-wrap { 
  padding: 0 28px 28px; 
  border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
  margin-bottom: 16px; 
}

.wiz-progress-label { 
  font-size: clamp(0.5rem, 1rem, 0.6rem); 
  font-weight: 600; 
  letter-spacing: 0.2em; 
  text-transform: uppercase; 
  color: var(--muted); 
  margin-bottom: 10px; 
}

.wiz-progress-bar { 
  height: 2px; 
  background: rgba(255, 255, 255, 0.07); 
  border-radius: 2px; 
  overflow: hidden; 
}

.wiz-progress-fill { 
  height: 100%; 
  background: var(--gold); 
  width: 0%; 
  transition: width .5s ease; 
}

.wiz-progress-pct { 
  font-size: clamp(0.6rem, 1rem, 0.68rem); 
  font-weight: 400; 
  color: var(--gold2); 
  margin-top: 8px; 
}

.wiz-steps-list { 
  list-style: none; 
}

.wiz-step-item {
  display: flex; 
  align-items: center; 
  gap: 12px;
  padding: 11px 28px; 
  cursor: pointer;
  transition: all .2s; 
  position: relative;
}

.wiz-step-item::before {
  content: ''; 
  position: absolute; 
  left: 0; 
  top: 0; 
  bottom: 0; 
  width: 2px;
  background: var(--gold); 
  opacity: 0; 
  transition: opacity .2s;
}

.wiz-step-item:hover { 
  background: rgba(201, 162, 86, 0.04); 
}

.wiz-step-item.active { 
  background: rgba(201, 162, 86, 0.07); 
}

.wiz-step-item.active::before { 
  opacity: 1; 
}

.wiz-step-item.done .wiz-step-dot { 
  background: var(--gold); 
  border-color: var(--gold); 
}

.wiz-step-item.done .wiz-step-dot::after { 
  content: '✓'; 
  font-size: 9px; 
  color: var(--ink); 
  font-weight: 700; 
}

.wiz-step-dot {
  width: 22px; 
  height: 22px; 
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  display: flex; 
  align-items: center; 
  justify-content: center;
  flex-shrink: 0; 
  transition: all .25s;
  font-size: 0.62rem; 
  font-weight: 600; 
  color: rgba(255, 255, 255, 0.3);
}

.wiz-step-item.active .wiz-step-dot {
  border-color: var(--gold); 
  color: var(--gold);
  background: rgba(201, 162, 86, 0.1);
}

.wiz-step-info { 
  flex: 1; 
}

.wiz-step-num { 
  font-size: clamp(0.5rem, 1rem, 0.57rem); 
  font-weight: 600; 
  letter-spacing: 0.15em; 
  text-transform: uppercase; 
  color: var(--muted); 
}

.wiz-step-name { 
  font-size: clamp(0.65rem, 1rem, 0.75rem); 
  font-weight: 400; 
  color: #d0c8c0; 
  margin-top: 2px; 
}

.wiz-step-item.active .wiz-step-name { 
  color: var(--offwhite); 
}

.wiz-risk { 
  font-size: clamp(0.48rem, 0.8rem, 0.55rem); 
  font-weight: 700; 
  letter-spacing: 0.8px; 
  text-transform: uppercase; 
  padding: 2px 7px; 
  flex-shrink: 0; 
}

.wiz-risk.alto { 
  color: #e07060; 
  background: rgba(184, 58, 42, 0.12); 
}

.wiz-risk.medio { 
  color: #d08840; 
  background: rgba(196, 112, 32, 0.12); 
}

.wiz-risk.var { 
  color: #6aa0d0; 
  background: rgba(58, 110, 168, 0.12); 
}

/* MAIN PANEL */
.wiz-main { 
  padding: clamp(2rem, 4vw, 3.5rem);
  min-width: 0;
  overflow-x: hidden;
}

/* STEP PANELS */
.wiz-panel { 
  display: none; 
  animation: wizIn .4s ease both; 
}

.wiz-panel.active { 
  display: block; 
}

@keyframes wizIn {
  from { 
    opacity: 0; 
    transform: translateX(24px); 
  }
  to   { 
    opacity: 1; 
    transform: translateX(0); 
  }
}

.wiz-panel-header { 
  margin-bottom: 32px; 
  padding-bottom: 20px; 
  border-bottom: 1px solid rgba(201, 162, 86, 0.2); 
}

.wiz-panel-num { 
  font-size: clamp(2rem, 5vw, 3rem); 
  font-weight: 200; 
  font-style: italic; 
  color: rgba(201, 162, 86, 0.25); 
  line-height: 1; 
}

.wiz-panel-title { 
  font-size: clamp(0.95rem, 2vw, 1.1rem); 
  font-weight: 500; 
  color: var(--white); 
  margin-top: 4px; 
  letter-spacing: 0.01em; 
}

.wiz-panel-desc { 
  font-size: clamp(0.7rem, 1.2vw, 0.76rem); 
  font-weight: 400; 
  color: #c2bab2; 
  margin-top: 6px; 
  line-height: 1.6; 
}

.wiz-panel-risk { 
  margin-top: 10px; 
  display: inline-block; 
  font-size: clamp(0.5rem, 1rem, 0.58rem); 
  font-weight: 700; 
  letter-spacing: 1px; 
  text-transform: uppercase; 
  padding: 3px 10px; 
}

.wiz-panel-risk.alto { 
  color: #e07060; 
  border: 1px solid rgba(184, 58, 42, 0.35); 
  background: rgba(184, 58, 42, 0.08); 
}

.wiz-panel-risk.medio { 
  color: #d08840; 
  border: 1px solid rgba(196, 112, 32, 0.35); 
  background: rgba(196, 112, 32, 0.08); 
}

.wiz-panel-risk.variavel { 
  color: #6aa0d0; 
  border: 1px solid rgba(58, 110, 168, 0.35); 
  background: rgba(58, 110, 168, 0.08); 
}

/* CARDS DAS PERGUNTAS */
.form-group {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 162, 86, 0.18);
  border-radius: 10px;
  padding: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 18px;
  transition: all .25s ease;
}

.form-group:hover {
  border-color: rgba(201, 162, 86, 0.35);
  background: rgba(255, 255, 255, 0.03);
}

/* TÍTULO DA PERGUNTA */
.form-label {
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  font-weight: 500;
  color: #e8e3dc;
  display: block;
  margin-bottom: 12px;
  line-height: 1.4;
}

.form-label .req {
  color: var(--gold);
  margin-left: 2px;
}

/* GRUPO DE OPÇÕES */
.radio-group,
.radio-grid,
.check-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

@media(max-width: 640px) {
  .radio-group,
  .radio-grid,
  .check-group {
    grid-template-columns: 1fr;
  }
}

/* OPÇÕES */
.radio-item,
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: clamp(0.7rem, 1.2vw, 0.78rem);
  line-height: 1.35;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid rgba(201, 162, 86, 0.18);
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: all .2s ease;
  user-select: none;
}

.radio-item:hover,
.check-item:hover {
  border-color: rgba(201, 162, 86, 0.35);
  background: rgba(201, 162, 86, 0.06);
}

.radio-item.selected,
.check-item.selected {
  border-color: #c9a256;
  background: rgba(201, 162, 86, 0.15);
}

.radio-item input,
.check-item input {
  display: none;
}

/* bolinha */
.radio-dot,
.check-box {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 162, 86, 0.45);
  margin-right: 8px;
  flex-shrink: 0;
  transition: all .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
}

.check-box {
  border-radius: 2px;
}

.radio-item.selected .radio-dot,
.check-item.selected .check-box {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

/* dica jurídica */
.hint {
  font-size: clamp(0.65rem, 1.2vw, 0.7rem);
  margin-top: 8px;
  line-height: 1.5;
  background: rgba(201, 162, 86, 0.07);
  border-left: 2px solid rgba(201, 162, 86, 0.5);
  padding: 7px 11px;
  border-radius: 2px;
  font-style: italic;
  color: var(--gold2);
}

.hint.danger {
  color: #d98579;
  background: rgba(184, 58, 42, 0.07);
  border-left-color: rgba(184, 58, 42, 0.5);
  font-style: normal;
}

.hint.ok {
  color: #60b880;
  background: rgba(43, 110, 71, 0.07);
  border-left-color: rgba(43, 110, 71, 0.5);
  font-style: normal;
}

/* espaçamento do painel */
.wiz-panel {
  max-width: 820px;
}

.form-group {
  scroll-margin-top: 120px;
}

/* NÃO aplicar estilo de cards na identificação */
#panel-0 .form-group {
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 20px;
  box-shadow: none;
}

/* FOOTER DO STEP */
.wiz-footer {
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  gap: 16px;
  flex-wrap: wrap;
}

.wiz-btn-back {
  font-size: clamp(0.6rem, 1vw, 0.66rem); 
  font-weight: 500; 
  letter-spacing: 0.18em; 
  text-transform: uppercase;
  color: var(--muted); 
  background: none; 
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 11px 24px; 
  cursor: pointer; 
  transition: all .2s;
}

.wiz-btn-back:hover { 
  color: var(--offwhite); 
  border-color: rgba(255, 255, 255, 0.25); 
}

.wiz-btn-next,
.wiz-btn-submit {
  font-size: clamp(0.6rem, 1vw, 0.66rem); 
  font-weight: 600; 
  letter-spacing: 0.2em; 
  text-transform: uppercase;
  color: var(--ink); 
  background: var(--gold); 
  border: none;
  padding: 13px 32px; 
  cursor: pointer; 
  transition: all .2s;
  display: flex; 
  align-items: center; 
  gap: 10px;
  white-space: nowrap;
}

.wiz-btn-next:hover,
.wiz-btn-submit:hover { 
  background: var(--gold2); 
}

.wiz-step-count { 
  font-size: clamp(0.6rem, 1vw, 0.68rem); 
  font-weight: 400; 
  color: var(--muted); 
}

.form-row { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 1rem; 
}

@media(max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* INPUTS */
select, 
input[type="text"], 
input[type="email"], 
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 14px;
  font-family: var(--font-main);
  font-size: clamp(0.75rem, 1.2vw, 0.78rem); 
  font-weight: 400;
  color: var(--offwhite);
  outline: none; 
  transition: border-color .2s;
  appearance: none; 
  border-radius: 0;
  box-sizing: border-box;
}

select:focus, 
input:focus, 
textarea:focus { 
  border-color: rgba(201, 162, 86, 0.6); 
}

textarea { 
  min-height: 80px; 
  resize: vertical; 
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23c9a256' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; 
  background-position: right 12px center;
  padding-right: 36px; 
  cursor: pointer;
  color: var(--offwhite);
}

select option { 
  background: #1a1a1c; 
  color: var(--offwhite); 
}

/* ESCALA */
.scale-group { 
  display: flex; 
  gap: 6px;
  flex-wrap: wrap;
}

.scale-item {
  flex: 1;
  min-width: 60px;
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 4px;
  cursor: pointer; 
  padding: 10px 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  transition: all .15s; 
  text-align: center;
}

.scale-item:hover { 
  border-color: rgba(201, 162, 86, 0.4); 
  background: rgba(201, 162, 86, 0.05); 
}

.scale-item.selected { 
  border-color: var(--gold); 
  background: rgba(201, 162, 86, 0.08); 
}

.scale-num { 
  font-size: clamp(1rem, 2vw, 1.3rem); 
  font-weight: 300; 
  font-style: italic; 
  color: var(--gold); 
}

.scale-label { 
  font-size: clamp(0.55rem, 1rem, 0.6rem); 
  font-weight: 400; 
  color: var(--muted); 
  letter-spacing: 0.5px; 
}

/* SUB DIVISOR */
.sub-divider {
  font-size: clamp(0.55rem, 1rem, 0.62rem); 
  font-weight: 600;
  letter-spacing: 2px; 
  text-transform: uppercase;
  color: var(--gold); 
  padding: 10px 0 7px;
  border-bottom: 1px solid rgba(201, 162, 86, 0.2);
  margin-bottom: 1.2rem; 
  margin-top: 1.8rem;
}

/* HIGHLIGHT */
.highlight-box {
  background: rgba(196, 112, 32, 0.08);
  border: 1px solid rgba(196, 112, 32, 0.25);
  border-left: 2px solid var(--orange);
  padding: 10px 14px; 
  font-size: clamp(0.65rem, 1rem, 0.7rem); 
  font-weight: 400;
  color: #d08840; 
  margin: 10px 0; 
  line-height: 1.5;
}

/* ALERT NOTE */
.alert-note {
  background: rgba(201, 162, 86, 0.07);
  border: 1px solid rgba(201, 162, 86, 0.22);
  border-left: 2px solid var(--gold);
  padding: clamp(1rem, 2vw, 1.25rem);
  font-size: clamp(0.7rem, 1.2vw, 0.78rem); 
  font-weight: 400;
  color: #d8d0c6; 
  line-height: 1.7;
  margin: 2.5rem 0 1.5rem;
}

/* BOTÃO SUBMIT */
.submit-btn {
  display: block; 
  width: 100%; 
  max-width: 480px; 
  margin: 0 auto;
  background: var(--gold); 
  color: var(--ink);
  border: none; 
  padding: clamp(1rem, 2vw, 1.125rem) 2rem;
  font-family: var(--font-main);
  font-size: clamp(0.6rem, 1vw, 0.66rem); 
  font-weight: 700;
  letter-spacing: 2px; 
  text-transform: uppercase;
  cursor: pointer; 
  transition: all .25s;
}

.submit-btn:hover { 
  background: var(--gold2); 
}

/* ══ FOOTER ══ */
footer { 
  background: #0c0b0d; 
  padding: clamp(2rem, 5vw, 4rem) 5vw;
  border-top: 1px solid rgba(201, 162, 86, 0.1); 
}

.ft { 
  display: flex; 
  justify-content: space-between; 
  align-items: flex-start; 
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 2rem;
}

.ft-logo { 
  font-size: clamp(1rem, 2vw, 1.4rem); 
  font-weight: 600; 
  letter-spacing: 0.12em; 
  color: var(--gold2); 
  margin-bottom: 10px; 
  text-transform: uppercase; 
}

.ft-sub { 
  font-size: clamp(0.55rem, 1rem, 0.62rem); 
  font-weight: 400; 
  letter-spacing: 0.24em; 
  text-transform: uppercase; 
  color: var(--muted); 
}

.ft-oab { 
  font-size: clamp(0.6rem, 1rem, 0.66rem); 
  font-weight: 400; 
  color: rgba(255, 255, 255, 0.45); 
  margin-top: 8px; 
}

.ft-links { 
  display: flex; 
  gap: clamp(1.5rem, 3vw, 2.25rem);
  flex-wrap: wrap;
}

.ft-link { 
  font-size: clamp(0.6rem, 1rem, 0.66rem); 
  font-weight: 400; 
  letter-spacing: 0.2em; 
  text-transform: uppercase; 
  color: var(--muted); 
  text-decoration: none; 
  transition: .25s;
  white-space: nowrap;
}

.ft-link:hover { 
  color: var(--gold2); 
}

.ft-bottom { 
  border-top: 1px solid rgba(255, 255, 255, 0.05); 
  padding-top: 28px; 
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.ft-copy { 
  font-size: clamp(0.55rem, 1rem, 0.64rem); 
  font-weight: 400; 
  color: rgba(255, 255, 255, 0.40); 
}

.ft-accent { 
  width: 56px; 
  height: 1px; 
  background: var(--gold); 
  opacity: .3; 
}

/* ══ ANIMAÇÕES ══ */
@keyframes fadeUp { 
  from { 
    opacity: 0; 
    transform: translateY(26px); 
  } 
  to { 
    opacity: 1; 
    transform: translateY(0); 
  } 
}

.hero-content > * { 
  animation: fadeUp .85s ease both; 
}

.hero-content > *:nth-child(1) { animation-delay: .1s; }
.hero-content > *:nth-child(2) { animation-delay: .25s; }
.hero-content > *:nth-child(3) { animation-delay: .4s; }
.hero-content > *:nth-child(4) { animation-delay: .55s; }

.hero-numbers { 
  animation: fadeUp .85s ease .7s both; 
}

/* ══════════════════════════════════════════
   RESPONSIVO MOBILE
   ══════════════════════════════════════════ */

@media(max-width: 1024px) {
  nav {
    padding: 15px 4vw;
  }

  .hero {
    grid-template-columns: 1fr;
    margin-top: 64px;
  }

  .hero-img-wrap {
    height: 60vh;
    min-height: 300px;
  }

  .hero-content {
    position: relative;
    width: 100%;
    padding: 3rem 4vw;
  }

  .hero-numbers {
    position: static;
    margin-top: 2rem;
    gap: 2rem;
  }

  .dor-grid,
  .depo-grid {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .split-photo {
    height: 50vh;
    min-height: 250px;
  }

  .split-text {
    padding: 3rem 4vw;
  }

  .split-badge {
    bottom: 30px;
    left: 30px;
  }

  .trio {
    grid-template-columns: 1fr;
  }

  .trio-item {
    min-height: 200px;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .como-head {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .ft {
    flex-direction: column;
    gap: 2rem;
  }

  .ft-links {
    justify-content: flex-start;
  }

  .ft-bottom {
    justify-content: center;
    text-align: center;
  }

  /* Wizard mobile */
  .wiz-intro {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 4vw;
  }

  .wiz-intro-text {
    min-width: 100%;
  }

  .wiz-stats {
    justify-content: center;
    width: 100%;
  }

  .wizard {
    grid-template-columns: 1fr;
  }

  .wiz-sidebar {
    position: static;
    max-height: none;
    border-right: none;
    border-bottom: 1px solid rgba(201, 162, 86, 0.08);
    padding: 1rem 0 0.5rem;
  }

  .wiz-steps-list {
    display: flex;
    overflow-x: auto;
    padding: 0 1rem 0.75rem;
    gap: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }

  .wiz-steps-list::-webkit-scrollbar {
    height: 2px;
  }

  .wiz-step-item {
    padding: 0.5rem 0.875rem;
    min-width: 80px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }

  .wiz-step-item::before {
    width: 100%;
    height: 2px;
    top: auto;
    bottom: 0;
    left: 0;
  }

  .wiz-step-info {
    display: none;
  }

  .wiz-progress-wrap {
    padding: 0 1.25rem 1rem;
  }

  .wiz-main {
    padding: 2rem 4vw;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .radio-grid,
  .radio-group,
  .check-group {
    grid-template-columns: 1fr;
  }

  .scale-group {
    flex-wrap: wrap;
  }

  .scale-item {
    flex: 0 1 calc(50% - 3px);
  }

  .wiz-footer {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }

  .wiz-btn-back,
  .wiz-btn-next,
  .wiz-btn-submit {
    flex: 1;
    min-width: 150px;
  }

  #panel-0 > div.wiz-footer > button {
    font-size: 0.52rem;
    padding: 9px 14px;
    min-width: 150px;
    flex: 0 1 auto;
  }

  .wiz-step-count {
    width: 100%;
    text-align: center;
  }
}

@media(max-width: 640px) {
  html {
    font-size: 14px;
  }

  nav {
    padding: 12px 3vw;
    gap: 0.75rem;
  }

  .nav-name {
    font-size: 0.85rem;
  }

  .nav-role {
    font-size: 0.45rem;
  }

  .nav-btn {
    padding: 8px 16px;
    font-size: 0.55rem;
  }

  .hero {
    margin-top: 56px;
  }

  .hero-img-wrap {
    height: 50vh;
    min-height: 250px;
  }

  .hero-content {
    padding: 2rem 3vw;
    top: auto;
    position: relative;
  }

  .hero-tag {
    margin-bottom: 1rem;
    font-size: 0.48rem;
  }

  .hero-h1 {
    font-size: clamp(1.4rem, 5vw, 2.2rem);
    margin-bottom: 1rem;
  }

  .hero-lead {
    font-size: 0.7rem;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .btn-gold,
  .btn-line {
    padding: 10px 20px;
    font-size: 0.55rem;
  }

  .hero-numbers {
    left: 3vw;
    bottom: 30px;
    gap: 1.5rem;
  }

  .hn-big {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
  }

  .hn-label {
    font-size: 0.48rem;
  }

  .dor,
  .como,
  .depo {
    padding: 2rem 3vw;
  }

  .sec-title {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
  }

  .dor-n {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
  }

  .dor-t {
    font-size: 0.7rem;
  }

  .dor-p {
    font-size: 0.65rem;
  }

  .split-badge {
    padding: 15px 20px;
    bottom: 20px;
    left: 20px;
  }

  .split-badge strong {
    font-size: 1.2rem;
  }

  .split-badge span {
    font-size: 0.48rem;
  }

  .about-p {
    font-size: 0.7rem;
    margin-bottom: 1rem;
  }

  .cred-t strong {
    font-size: 0.7rem;
  }

  .cred-t span {
    font-size: 0.6rem;
  }

  .trio-item {
    min-height: 180px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .step-circle {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    font-size: 1rem;
  }

  .step-t {
    font-size: 0.7rem;
  }

  .step-p {
    font-size: 0.65rem;
  }

  .depo-card::before {
    font-size: clamp(2rem, 5vw, 3.5rem);
    left: 15px;
    top: 15px;
  }

  .depo-txt {
    font-size: 0.7rem;
    margin-top: 2rem;
  }

  .depo-auth strong {
    font-size: 0.65rem;
  }

  .depo-auth span {
    font-size: 0.55rem;
  }

  /* Wizard mobile */
  .wiz-intro-text {
    min-width: 100%;
  }

  .diag-badge {
    font-size: 0.48rem;
    padding: 4px 10px;
  }

  .diag-title {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
  }

  .diag-sub {
    font-size: 0.65rem;
  }

  .wiz-stat-n {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  }

  .wiz-stat-l {
    font-size: 0.48rem;
  }

  .wiz-panel-num {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .wiz-panel-title {
    font-size: 0.9rem;
  }

  .wiz-panel-desc {
    font-size: 0.65rem;
  }

  .form-label {
    font-size: 0.7rem;
  }

  .radio-item,
  .check-item {
    font-size: 0.65rem;
    padding: 6px 8px;
  }

  .hint {
    font-size: 0.6rem;
  }

  .scale-item {
    flex: 0 1 calc(50% - 3px);
    padding: 8px 4px;
  }

  .scale-num {
    font-size: 1rem;
  }

  .scale-label {
    font-size: 0.48rem;
  }

  select,
  input[type="text"],
  input[type="email"],
  textarea {
    font-size: 0.7rem;
    padding: 8px 10px;
  }

  .alert-note {
    font-size: 0.65rem;
    padding: 0.75rem 1rem;
  }

  .wiz-btn-back,
  .wiz-btn-next,
  .wiz-btn-submit {
    font-size: 0.55rem;
    padding: 10px 16px;
  }

  #panel-0 > div.wiz-footer > button {
    font-size: 0.5rem;
    padding: 8px 12px;
    min-width: 110px;
  }

  .wiz-step-count {
    font-size: 0.6rem;
  }

  footer {
    padding: 1.5rem 3vw;
  }

  .ft-logo {
    font-size: 1rem;
  }

  .ft-sub {
    font-size: 0.48rem;
  }

  .ft-oab {
    font-size: 0.6rem;
  }

  .ft-link {
    font-size: 0.55rem;
  }

  .ft-copy {
    font-size: 0.5rem;
  }

  .modal-box {
    padding: 1.5rem;
    width: 95%;
  }

  .modal-box h3 {
    font-size: 1.4rem;
  }
}

@media(max-width: 480px) {
  html {
    font-size: 13px;
  }

  nav {
    padding: 10px 2vw;
  }

  .hero-numbers {
    left: 2vw;
    bottom: 20px;
    gap: 1rem;
  }

  .dor,
  .como,
  .depo {
    padding: 1.5rem 2vw;
  }

  .hero-content {
    padding: 1.5rem 2vw;
  }

  .split-text {
    padding: 2rem 2vw;
  }

  .wiz-main {
    padding: 1.5rem 2vw;
  }

  .wiz-btn-back,
  .wiz-btn-next,
  .wiz-btn-submit {
    flex: 1 1 100%;
    min-width: auto;
  }

  .scale-item {
    flex: 0 1 calc(50% - 2px);
    padding: 6px 2px;
  }

  footer {
    padding: 1rem 2vw;
  }
}

/* ══════════════════════════════════════════
   ORIENTAÇÃO LANDSCAPE (pequenos dispositivos)
   ══════════════════════════════════════════ */

@media(max-width: 800px) and (max-height: 500px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
  }

  .hero-img-wrap {
    grid-column: 2;
    height: auto;
    min-height: 220px;
  }

  .hero-content {
    grid-column: 1;
    padding: 1.5rem 2vw;
  }

  .hero-numbers {
    position: absolute;
    bottom: 16px;
    left: 2vw;
    gap: 1rem;
  }
}

/* ══════════════════════════════════════════
   HOTFIX HERO RESPONSIVO (prioridade final)
   ══════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  min-height: auto;
}

.hero-content,
.hero-img-wrap,
.hero-numbers {
  grid-column: 1;
}

.hero-content {
  order: 1;
  padding: 2rem 5vw 1.25rem;
}

.hero-img-wrap {
  order: 2;
  min-width: 0;
  min-height: 280px;
}

.hero-numbers {
  order: 3;
  position: static;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 5vw 2rem;
  gap: 0.9rem;
}

.hero-numbers .hn {
  flex: 1 1 0;
  min-width: 0;
}

.hero-lead {
  max-width: 100%;
}

@media (max-width: 900px) {
  .hero-img-wrap {
    min-height: 280px;
  }
}

@media (max-width: 600px) {
  .hero-content {
    padding: 1.75rem 5vw 1rem;
  }

  .hero-img-wrap {
    min-height: 220px;
  }

  .hero-h1 {
    font-size: clamp(1.9rem, 8.2vw, 2.45rem);
    line-height: 1.12;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.8;
  }

  .hero-tag {
    font-size: 0.68rem;
    letter-spacing: 0.26em;
  }

  .hero-actions .btn-gold,
  .hero-actions .btn-line {
    font-size: 0.72rem;
  }

  .hero-numbers {
    gap: 0.6rem;
  }

  .hero-numbers .hn-big {
    font-size: 1.8rem;
  }

  .hero-numbers .hn-label {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }
}

@media (min-width: 901px) {
  .hero {
    min-height: 100vh;
    grid-template-columns: 55% 45%;
    position: relative;
    overflow: hidden;
    align-items: stretch;
  }

  .hero-img-wrap {
    grid-column: 2;
    order: 0;
    height: 100%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
  }

  .hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: contrast(1.04) saturate(0.78) brightness(0.9);
  }

  .hero-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--ink) 0%, rgba(26, 26, 28, 0.28) 40%, transparent 100%),
                linear-gradient(to top, var(--ink) 0%, transparent 30%);
  }

  .hero-content {
    grid-column: 1;
    order: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 300px;
    width: 58%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5vw 60px 7vw;
    z-index: 2;
  }

  .hero-tag {
    font-size: 0.58rem;
    letter-spacing: 0.42em;
    margin-bottom: 36px;
  }

  .hero-h1 {
    font-size: clamp(2.6rem, 4.2vw, 4.6rem);
    margin-bottom: 28px;
  }

  .hero-lead {
    font-size: 0.88rem;
    line-height: 1.95;
    max-width: 390px;
    margin-bottom: 48px;
  }

  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  .hero-numbers {
    position: absolute;
    left: 7vw;
    bottom: 322px;
    z-index: 3;
    padding: 0;
    gap: 52px;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .hero-numbers .hn {
    flex: 0 0 auto;
    min-width: auto;
  }

  .hn-big {
    font-size: 2.5rem;
    line-height: 1;
  }

  .hn-label {
    font-size: 0.57rem;
    letter-spacing: 0.26em;
  }
}

@media (max-width: 768px) {
  .nav-name {
    font-size: 0.96rem;
  }

  .nav-role {
    font-size: 0.56rem;
  }

  .label-tag,
  .hero-tag,
  .diag-badge {
    font-size: 0.68rem;
  }

  .sec-title,
  .diag-title {
    font-size: clamp(2rem, 7vw, 2.55rem);
    line-height: 1.18;
  }

  .dor-t,
  .step-t,
  .wiz-panel-title {
    font-size: 1rem;
  }

  .dor-p,
  .about-p,
  .step-p,
  .depo-txt,
  .diag-sub,
  .wiz-panel-desc,
  .form-label,
  .hint,
  .alert-note,
  .ft-copy {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .depo-auth strong,
  .cred-t strong {
    font-size: 0.88rem;
  }

  .depo-auth span,
  .cred-t span,
  .wiz-step-num,
  .wiz-step-name,
  .wiz-step-count,
  .ft-sub,
  .ft-link {
    font-size: 0.72rem;
  }

  .ft-logo {
    font-size: 1.55rem;
  }

  .wiz-stat-n {
    font-size: 2.2rem;
  }

  .wiz-stat-l,
  .wiz-progress-label,
  .wiz-progress-pct,
  .wiz-panel-risk,
  .wiz-risk {
    font-size: 0.68rem;
  }

  select,
  input[type="text"],
  input[type="email"],
  textarea {
    font-size: 0.92rem;
  }

  .radio-item,
  .check-item,
  .scale-label {
    font-size: 0.84rem;
  }

  .scale-num {
    font-size: 1.45rem;
  }

  .wiz-btn-back,
  .wiz-btn-next,
  .wiz-btn-submit,
  .submit-btn,
  .btn-gold,
  .btn-line {
    font-size: 0.74rem;
  }
}