/* ===================== VARIABLES ===================== */
:root {
  --black:        #060606;
  --deep:         #0e0e0e;
  --charcoal:     #161616;
  --mid:          #222222;
  --silver:       #c2c2c2;
  --silver-bright:#e8e8e8;
  --silver-mid:   #9a9a9a;
  --silver-dim:   #666666;
  --silver-ghost: rgba(194,194,194,0.08);
  --white:        #f4f4f4;
  --line:         rgba(194,194,194,0.12);
  --line-bright:  rgba(194,194,194,0.25);
}

/* ===================== RESET ===================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--silver-bright);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}
::selection { background: rgba(194,194,194,0.15); color: var(--white); }

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--silver-dim); border-radius: 2px; }

/* ===================== LOADING SCREEN ===================== */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 48px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }

.loader-emblem {
  position: relative;
  width: 120px; height: 120px;
  display: flex; align-items: center; justify-content: center;
}
.loader-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top-color: var(--silver);
  animation: loaderSpin 1.8s linear infinite;
}
.loader-ring:nth-child(2) {
  inset: 14px;
  border-top-color: transparent;
  border-right-color: var(--silver-dim);
  animation-duration: 2.4s;
  animation-direction: reverse;
}
.loader-ring:nth-child(3) {
  inset: 28px;
  border-top-color: var(--silver-mid);
  animation-duration: 3s;
}
@keyframes loaderSpin { to { transform: rotate(360deg); } }

.loader-scale {
  position: absolute;
  opacity: 0.5;
}
.loader-scale svg { width: 40px; }

.loader-name {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--silver-mid);
  text-align: center;
}
.loader-bar-wrap {
  width: 200px; height: 1px;
  background: rgba(194,194,194,0.1);
  position: relative; overflow: hidden;
}
.loader-bar {
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--silver), transparent);
  animation: loaderBar 2s ease forwards;
}
@keyframes loaderBar { to { left: 100%; } }

/* ===================== CURSOR ===================== */
.cursor {
  width: 10px; height: 10px;
  background: var(--silver-bright);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9990;
  transform: translate(-50%,-50%);
  mix-blend-mode: difference;
  transition: width 0.25s, height 0.25s;
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1px solid rgba(194,194,194,0.4);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9989;
  transform: translate(-50%,-50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}
body:hover .cursor { opacity: 1; }

/* ===================== PARTICLES ===================== */
#canvas {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none;
}

/* ===================== NAV ===================== */
nav {
  position: fixed; top: 0; width: 100%; z-index: 500;
  padding: 32px 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.6s cubic-bezier(.4,0,.2,1);
}
nav.scrolled {
  padding: 20px 72px;
  background: rgba(6,6,6,0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(24px);
}
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: var(--silver-bright);
  text-decoration: none;
  display: flex; flex-direction: row; align-items: center; gap: 14px;
}
.nav-logo-mark {
  width: 20px;
  height: 22px;
  color: var(--silver);
  flex-shrink: 0;
  opacity: 0.8;
  overflow: visible;
  transition: opacity 0.3s;
}
.nav-logo:hover .nav-logo-mark { opacity: 1; }
.nav-logo-text-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-logo-name {
  display: block;
  line-height: 1.2;
}
.nav-logo small {
  font-family: 'Raleway', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--silver-dim);
  font-weight: 400;
}
.nav-links {
  display: flex; gap: 48px; list-style: none;
}
.nav-links a {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-dim);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -5px; left: 0;
  width: 0; height: 1px;
  background: var(--silver);
  transition: width 0.4s ease;
}
.nav-links a:hover { color: var(--silver-bright); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--silver);
  padding: 13px 30px;
  border: none; outline: none; cursor: none;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  position: relative; overflow: hidden;
  display: inline-block;
}
.nav-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.4s;
}
.nav-cta:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(194,194,194,0.2); }
.nav-cta:hover::before { transform: translateX(0); }

/* ===================== HERO ===================== */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 160px 40px 220px;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(194,194,194,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(194,194,194,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  animation: gridDrift 30s linear infinite;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}
@keyframes gridDrift {
  0% { transform: translate(0,0); }
  100% { transform: translate(72px,72px); }
}
.hero-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 0%, rgba(180,180,180,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 30% 30% at 20% 70%, rgba(130,130,130,0.04) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 80% 30%, rgba(150,150,150,0.03) 0%, transparent 50%);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: 0.62rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--silver-mid);
  border: 1px solid var(--line-bright);
  padding: 12px 28px;
  margin-bottom: 72px;
  margin-top: 40px;
  position: relative; overflow: hidden;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}
.hero-badge::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(194,194,194,0.12), transparent);
  animation: badgeShimmer 4s ease 2s infinite;
}
@keyframes badgeShimmer { 0%{left:-100%} 100%{left:200%} }
.hero-badge-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--silver-mid);
  animation: dotPulse 2s ease infinite;
}
@keyframes dotPulse {
  0%,100%{opacity:0.4;transform:scale(1)}
  50%{opacity:1;transform:scale(1.5)}
}

.hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}
.hero-name {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.6rem, 7vw, 6.5rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--silver-bright);
  line-height: 1.05;
  margin-bottom: 0;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.8s forwards;
  position: relative;
}
.hero-name-underline {
  display: block;
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--silver), transparent);
  margin: 20px auto;
  animation: underlineGrow 1.5s ease 1.8s forwards;
}
@keyframes underlineGrow { to { width: 60%; } }

.hero-title-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: var(--silver-dim);
  letter-spacing: 0.12em;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 1s ease 1s forwards;
}
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.8;
  color: rgba(194,194,194,0.55);
  max-width: 580px;
  margin: 0 auto 64px;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}
.hero-btns {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease 1.4s forwards;
}
.btn-primary {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--silver-bright);
  padding: 20px 52px;
  border: none;
  text-decoration: none;
  display: inline-block;
  cursor: none;
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.2);
  transform: translateX(-101%);
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}
.btn-primary:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(194,194,194,0.18); }
.btn-primary:hover::before { transform: translateX(0); }
.btn-outline {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver);
  background: transparent;
  padding: 19px 52px;
  border: 1px solid var(--line-bright);
  text-decoration: none;
  display: inline-block;
  cursor: none;
  transition: all 0.4s;
}
.btn-outline:hover { border-color: var(--silver); color: var(--white); transform: translateY(-4px); }

.hero-scroll-hint {
  position: absolute; bottom: 48px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  opacity: 0;
  animation: fadeIn 1s ease 2.2s forwards;
}
.hero-scroll-hint span {
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--silver-dim);
}
.scroll-track {
  width: 1px; height: 56px;
  background: rgba(194,194,194,0.15);
  position: relative; overflow: hidden;
}
.scroll-track::after {
  content: '';
  position: absolute; top: -100%;
  width: 100%; height: 100%;
  background: var(--silver-dim);
  animation: scrollTrack 2s ease infinite;
}
@keyframes scrollTrack {
  0%{top:-100%} 100%{top:200%}
}

/* ===================== SECTION BASE ===================== */
section { position: relative; z-index: 1; }

.section-tag {
  font-size: 0.58rem;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 18px;
}
.section-tag::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--silver-dim);
  flex-shrink: 0;
}
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--silver-bright);
  margin-bottom: 28px;
}
.section-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--silver-mid);
}

/* ===================== SOBRE ===================== */
.about {
  padding: 160px 72px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 120px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}
.about-visual {
  position: relative;
  height: 580px;
}
.about-outer-border {
  position: absolute; inset: 0;
  border: 1px solid var(--line);
  animation: borderPulse 6s ease infinite;
  z-index: 1; pointer-events: none;
}
.about-inner-border {
  position: absolute; inset: 20px;
  border: 1px solid rgba(194,194,194,0.05);
  z-index: 1; pointer-events: none;
}
@keyframes borderPulse {
  0%,100%{border-color:rgba(194,194,194,0.12)}
  50%{border-color:rgba(194,194,194,0.22)}
}
.about-photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  display: block;
}

.about-corner {
  position: absolute;
  width: 24px; height: 24px;
  z-index: 2; pointer-events: none;
}
.about-corner svg { width: 100%; height: 100%; }
.about-corner.tl { top: 0; left: 0; }
.about-corner.tr { top: 0; right: 0; transform: rotate(90deg); }
.about-corner.bl { bottom: 0; left: 0; transform: rotate(-90deg); }
.about-corner.br { bottom: 0; right: 0; transform: rotate(180deg); }

.about-stats {
  position: absolute;
  left: -32px; bottom: 60px;
  display: flex; flex-direction: column; gap: 28px;
  z-index: 3;
}
.astat {
  background: var(--deep);
  border: 1px solid var(--line);
  padding: 20px 28px;
  position: relative; overflow: hidden;
}
.astat::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--silver-mid), transparent);
}
.astat-n {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  color: var(--silver);
  line-height: 1;
  display: block;
}
.astat-l {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-top: 4px;
}

.about-body { }
.about-body p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  line-height: 1.95;
  color: rgba(194,194,194,0.55);
  margin-bottom: 22px;
}
.about-divider {
  width: 48px; height: 1px;
  background: var(--silver-dim);
  margin: 44px 0;
}
.about-values {
  display: flex; gap: 40px; flex-wrap: wrap;
  margin-top: 44px;
}
.avalue {
  display: flex; align-items: center; gap: 12px;
}
.avalue-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--silver-dim);
  flex-shrink: 0;
}
.avalue-text {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-dim);
}

/* ===================== AREAS ===================== */
.areas {
  padding: 160px 72px;
  background: var(--deep);
}
.areas-inner { max-width: 1440px; margin: 0 auto; }
.areas-header { margin-bottom: 80px; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.area-card {
  background: var(--deep);
  padding: 52px 44px 48px;
  position: relative; overflow: hidden;
  cursor: none;
  transition: background 0.5s;
}
.area-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 120%, rgba(194,194,194,0.04), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}
.area-card:hover { background: #141414; }
.area-card:hover::after { opacity: 1; }
.area-card-line {
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--silver-dim), transparent);
  transition: width 0.6s cubic-bezier(.4,0,.2,1);
}
.area-card:hover .area-card-line { width: 100%; }
.area-card-line-v {
  position: absolute; top: 0; left: 0;
  width: 1px; height: 0;
  background: linear-gradient(180deg, var(--silver-dim), transparent);
  transition: height 0.6s cubic-bezier(.4,0,.2,1);
}
.area-card:hover .area-card-line-v { height: 100%; }

.area-num {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: rgba(194,194,194,0.15);
  display: block;
  margin-bottom: 36px;
}
.area-icon {
  width: 44px; height: 44px;
  margin-bottom: 28px;
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.4s;
}
.area-card:hover .area-icon { opacity: 0.85; transform: translateY(-3px); }
.area-title {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 0.07em;
  color: var(--silver-bright);
  margin-bottom: 18px;
  font-weight: 500;
}
.area-desc {
  font-size: 0.82rem;
  line-height: 1.9;
  color: var(--silver-dim);
  font-weight: 300;
}

/* ===================== EXPERIÊNCIA ===================== */
.experiencia {
  padding: 160px 72px;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 120px;
  align-items: start;
}
.exp-photo-col { }
.exp-photo-frame {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 400px;
}
.exp-photo-box {
  position: absolute; inset: 0;
  background: var(--charcoal);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.exp-photo-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.exp-photo-corner {
  position: absolute;
  width: 20px; height: 20px;
}
.exp-photo-corner.tl { top: -1px; left: -1px; border-top: 2px solid var(--silver-mid); border-left: 2px solid var(--silver-mid); }
.exp-photo-corner.tr { top: -1px; right: -1px; border-top: 2px solid var(--silver-mid); border-right: 2px solid var(--silver-mid); }
.exp-photo-corner.bl { bottom: -1px; left: -1px; border-bottom: 2px solid var(--silver-mid); border-left: 2px solid var(--silver-mid); }
.exp-photo-corner.br { bottom: -1px; right: -1px; border-bottom: 2px solid var(--silver-mid); border-right: 2px solid var(--silver-mid); }

.exp-oab-number {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--silver-mid);
  margin-top: 20px;
  padding-left: 2px;
}
.exp-badge-row {
  display: flex; gap: 12px; margin-top: 12px; flex-wrap: wrap;
}
.exp-badge {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-dim);
  border: 1px solid var(--line);
  padding: 8px 16px;
}

.exp-text-col { padding-top: 20px; }
.exp-name {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0.06em;
  color: var(--silver-bright);
  margin-bottom: 6px;
  font-weight: 500;
}
.exp-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--silver-dim);
  letter-spacing: 0.08em;
  margin-bottom: 48px;
}
.exp-divider {
  width: 48px; height: 1px;
  background: var(--silver-dim);
  margin-bottom: 48px;
}
.exp-bio p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  line-height: 1.9;
  color: rgba(194,194,194,0.5);
  margin-bottom: 20px;
}
.exp-credentials {
  margin-top: 52px;
  display: flex; flex-direction: column; gap: 20px;
}
.exp-cred {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  transition: border-color 0.3s, background 0.3s;
}
.exp-cred:hover { border-color: var(--line-bright); background: rgba(194,194,194,0.02); }
.exp-cred-icon { width: 18px; height: 18px; opacity: 0.4; flex-shrink: 0; margin-top: 2px; }
.exp-cred-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-bottom: 4px;
}
.exp-cred-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--silver);
}

/* ===================== PROCESSO ===================== */
.processo {
  padding: 160px 72px;
  background: var(--deep);
}
.processo-inner { max-width: 1440px; margin: 0 auto; }
.processo-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 80px;
  position: relative;
}

/* Linha conectora — alinhada ao centro dos dots (12.5% = centro da 1ª coluna) */
.stepper-track {
  position: absolute;
  top: 30px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: rgba(194,194,194,0.1);
  z-index: 0;
}
.stepper-progress {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(194,194,194,0.4), rgba(194,194,194,0.85));
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 6px rgba(194,194,194,0.2);
}

/* Cada passo centralizado na coluna */
.pstep {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.pstep-dot {
  width: 60px; height: 60px;
  border: 1px solid rgba(194,194,194,0.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 36px;
  background: var(--deep);
  position: relative;
  transition: border-color 0.4s, background 0.4s, box-shadow 0.4s;
}
.pstep-dot::before {
  content: '';
  position: absolute; inset: 10px;
  border: 1px solid rgba(194,194,194,0.06);
  transition: border-color 0.4s;
}
.pstep-n {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: rgba(194,194,194,0.4);
  transition: color 0.4s;
}

/* Estado ATIVO — ao passar o mouse */
.pstep--active .pstep-dot {
  border-color: rgba(194,194,194,0.65);
  background: rgba(194,194,194,0.04);
  box-shadow: 0 0 22px rgba(194,194,194,0.14);
}
.pstep--active .pstep-dot::before { border-color: rgba(194,194,194,0.22); }
.pstep--active .pstep-n { color: #d8d8d8; }
.pstep--active .pstep-title { color: #ececec; }
.pstep--active .pstep-desc { color: #909090; }

.pstep-title {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: rgba(194,194,194,0.55);
  margin-bottom: 14px;
  font-weight: 500;
  transition: color 0.4s;
}
.pstep-desc {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(194,194,194,0.4);
  transition: color 0.4s;
}

/* ===================== CITAÇÃO ===================== */
.citacao {
  padding: 160px 72px;
  text-align: center;
  position: relative; overflow: hidden;
}
.citacao-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(140,140,140,0.04), transparent);
}
.citacao-ornament {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14rem;
  line-height: 0.5;
  color: rgba(194,194,194,0.03);
  display: block;
  margin-bottom: 40px;
  user-select: none;
}
.citacao blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  color: var(--silver-bright);
  line-height: 1.6;
  max-width: 820px;
  margin: 0 auto 40px;
  position: relative; z-index: 1;
  font-weight: 300;
}
.citacao-author {
  font-size: 0.65rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--silver-dim);
}
.citacao-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--silver-dim), transparent);
  margin: 40px auto 0;
}

/* ===================== CONTATO ===================== */
.contato {
  padding: 160px 72px;
  background: var(--deep);
}
.contato-inner {
  max-width: 1440px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 120px;
  align-items: start;
}
.contato-info { }
.contato-info p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.9;
  color: rgba(194,194,194,0.45);
  margin-top: 28px;
  margin-bottom: 56px;
}
.contato-items { display: flex; flex-direction: column; gap: 32px; }
.citem { }
.citem-label {
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-bottom: 10px;
}
.citem-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--silver);
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s;
  display: block;
}
.citem-value:hover { color: var(--silver-bright); }

.citem-wa {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--silver);
  padding: 14px 32px;
  text-decoration: none;
  margin-top: 40px;
  transition: background 0.3s, transform 0.2s;
  cursor: none;
}
.citem-wa:hover { background: var(--white); transform: translateY(-2px); }

.contato-form { }
.fgroup { margin-bottom: 32px; }
.fgroup label {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-bottom: 14px;
}
.fgroup input,
.fgroup select,
.fgroup textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--silver-bright);
  outline: none;
  cursor: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}
.fgroup select option { background: var(--deep); color: var(--silver-bright); }
.fgroup input:focus,
.fgroup select:focus,
.fgroup textarea:focus { border-color: var(--silver); }
.fgroup textarea { resize: none; min-height: 100px; }
.fgroup input::placeholder,
.fgroup textarea::placeholder { color: rgba(194,194,194,0.2); font-family: 'Cormorant Garamond', serif; font-style: italic; }

/* ===================== FOOTER ===================== */
footer {
  padding: 80px 72px 48px;
  border-top: 1px solid var(--line);
}
.footer-inner { max-width: 1440px; margin: 0 auto; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 72px;
}
.footer-brand { }
.footer-logo-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-logo-mark {
  width: 28px;
  height: 30px;
  color: var(--silver-mid);
  flex-shrink: 0;
  opacity: 0.75;
  overflow: visible;
}
.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  color: var(--silver-bright);
  display: block;
}
.footer-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--silver-dim);
}
.footer-links { display: flex; gap: 72px; }
.fcol h5 {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--silver-dim);
  margin-bottom: 24px;
}
.fcol ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.fcol a {
  font-size: 0.8rem;
  color: rgba(194,194,194,0.3);
  text-decoration: none;
  transition: color 0.3s;
}
.fcol a:hover { color: var(--silver); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(194,194,194,0.05);
}
.footer-copy { font-size: 0.68rem; color: rgba(194,194,194,0.2); letter-spacing: 0.08em; }
.footer-oab { font-family: 'Cinzel', serif; font-size: 0.68rem; color: rgba(194,194,194,0.2); letter-spacing: 0.1em; }

/* ===================== REVEAL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 1s cubic-bezier(.4,0,.2,1), transform 1s cubic-bezier(.4,0,.2,1);
}
.reveal.vis { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.18s; }
.d3 { transition-delay: 0.30s; }
.d4 { transition-delay: 0.44s; }

/* ===================== KEYFRAMES ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  nav { padding: 24px 36px; }
  nav.scrolled { padding: 18px 36px; }
  .nav-links, .nav-cta { display: none; }
  .about, .experiencia, .contato-inner { grid-template-columns: 1fr; gap: 60px; padding: 80px 36px; }
  .about-visual { height: 320px; }
  .about-stats { left: 0; bottom: -80px; flex-direction: row; }
  .areas { padding: 80px 36px; }
  .areas-grid { grid-template-columns: 1fr; }
  .processo { padding: 80px 36px; }
  .processo-steps { grid-template-columns: 1fr 1fr; gap: 48px 32px; }
  .stepper-track { display: none; }
  .pstep { padding: 0 12px; }
  .citacao { padding: 80px 36px; }
  .contato { padding: 80px 36px; }
  footer { padding: 60px 36px 36px; }
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-links { display: none; }
  .hero { padding: 140px 30px 200px; }
}

/* ===================== WHATSAPP FLOAT ===================== */
.wa-float {
  position: fixed;
  bottom: 36px; right: 36px;
  z-index: 800;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.35);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: none;
}
.wa-float:hover { transform: translateY(-4px) scale(1.08); box-shadow: 0 16px 48px rgba(37,211,102,0.5); }
.wa-float svg { width: 28px; fill: #fff; }

/* ===================== HAMBURGER BUTTON ===================== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 600;
  position: relative;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--silver);
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
  transform-origin: center;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ===================== MOBILE NAV OVERLAY ===================== */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 550;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav-link {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.4rem, 7vw, 2.2rem);
  letter-spacing: 0.12em;
  color: var(--silver-mid);
  text-decoration: none;
  padding: 16px 0;
  display: block;
  text-align: center;
  transition: color 0.3s;
}
.mobile-nav-link:hover,
.mobile-nav-link:active { color: var(--silver-bright); }
.mobile-nav-divider {
  width: 40px;
  height: 1px;
  background: var(--line-bright);
  margin: 2px auto;
}
.mobile-nav-cta-btn {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--silver);
  padding: 16px 40px;
  text-decoration: none;
  display: inline-block;
  margin-top: 40px;
  cursor: pointer;
  transition: background 0.3s;
}
.mobile-nav-cta-btn:hover,
.mobile-nav-cta-btn:active { background: var(--white); }

/* ===================== TOUCH DEVICE — remove custom cursor ===================== */
@media (pointer: coarse) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none !important; }
  a, button, input, select, textarea,
  .btn-primary, .btn-outline, .nav-cta,
  .citem-wa, .wa-float, .area-card, .pstep,
  .mobile-nav-cta-btn, .mobile-nav-link { cursor: pointer; }
  .fgroup input, .fgroup select, .fgroup textarea { cursor: text; }
}

/* ===================== TABLET — show hamburger ===================== */
@media (max-width: 1024px) {
  .nav-hamburger { display: flex; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===================== PROTEÇÃO DE CONTEÚDO ===================== */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
input, textarea, select {
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}
img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

/* ===================== PHONE (max-width: 768px) ===================== */
@media (max-width: 768px) {
  /* NAV */
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 16px 24px; }

  /* HERO */
  .hero { padding: 110px 24px 140px; }
  .hero-badge {
    font-size: 0.52rem;
    letter-spacing: 0.25em;
    padding: 10px 14px;
    gap: 8px;
    margin-bottom: 44px;
  }
  .hero-sub { max-width: 100%; }
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    gap: 14px;
  }
  .btn-primary, .btn-outline {
    text-align: center;
    padding: 20px 24px;
    width: 100%;
  }

  /* ABOUT — fix stats overflow */
  .about { padding: 80px 24px; gap: 120px; }
  .about-visual { height: 360px; }
  .about-stats {
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: row;
    gap: 12px;
    bottom: -108px;
  }
  .astat { flex: 1; padding: 16px 14px; }
  .astat-n { font-size: 1.8rem; }

  /* AREAS */
  .areas { padding: 80px 24px; }
  .areas-grid { grid-template-columns: 1fr; }
  .area-card { padding: 40px 28px 36px; }

  /* EXPERIENCIA */
  .experiencia { padding: 80px 24px; gap: 48px; }
  .exp-photo-frame { max-width: 100%; }

  /* PROCESSO */
  .processo { padding: 80px 24px; }
  .processo-steps { grid-template-columns: 1fr; gap: 0; }
  .pstep {
    padding: 28px 24px;
    border-bottom: 1px solid rgba(194,194,194,0.07);
    text-align: left;
    align-items: flex-start;
  }
  .pstep:last-child { border-bottom: none; }
  .pstep-dot { width: 52px; height: 52px; margin-bottom: 24px; }
  .pstep-title { font-size: 1rem; margin-bottom: 8px; }
  .pstep-desc { font-size: 0.93rem; }

  /* CITAÇÃO */
  .citacao { padding: 80px 24px; }
  .citacao-ornament { font-size: 7rem; margin-bottom: 20px; }

  /* CONTATO */
  .contato { padding: 80px 24px; }
  .contato-inner { gap: 60px; }

  /* FOOTER */
  footer { padding: 60px 24px 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* WA FLOAT */
  .wa-float { bottom: 24px; right: 20px; width: 52px; height: 52px; }
  .wa-float svg { width: 24px; }
}

/* ===================== SMALL PHONES (max-width: 420px) ===================== */
@media (max-width: 420px) {
  .hero-badge {
    font-size: 0.46rem;
    letter-spacing: 0.18em;
    padding: 8px 10px;
    gap: 6px;
  }
  .hero-badge-dot { width: 3px; height: 3px; }
  .about { gap: 196px; }
  .about-visual { height: 300px; }
  .about-stats {
    flex-direction: column;
    bottom: -180px;
    gap: 10px;
  }
  .astat { padding: 14px 20px; }
}
