/* ===================================================================
   VILOW SEGUROS · Modern UI
   Palette: black, white, silver, gray
   =================================================================== */

:root {
  --black: #050505;
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #161616;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --silver: #c8c8cc;
  --silver-2: #a0a0a8;
  --gray: #6b6b72;
  --gray-2: #4a4a52;
  --white: #f5f5f7;
  --accent: linear-gradient(135deg, #e8e8ee 0%, #a0a0a8 100%);
  --accent-soft: linear-gradient(135deg, rgba(232,232,238,.12), rgba(160,160,168,.04));
  --radius: 18px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --container: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--white); color: var(--black); }

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  background: var(--bg);
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .3s var(--ease); }
button { font: inherit; cursor: none; border: none; background: none; color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
}

/* ============== CURSOR ============== */
.cursor {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, background .25s, border-color .25s;
  mix-blend-mode: difference;
}
.cursor-dot {
  position: fixed;
  width: 4px; height: 4px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor.hover { width: 60px; height: 60px; background: rgba(255,255,255,.05); }

@media (max-width: 768px), (pointer: coarse) {
  .cursor, .cursor-dot { display: none; }
  body { cursor: auto; }
  button, a { cursor: pointer; }
}

/* ============== GRAIN ============== */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: .035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
}

/* ============== NAV ============== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all .4s var(--ease);
}
.nav.scrolled {
  background: rgba(10,10,10,.78);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .nav-inner { padding: 0 20px; }
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 72px;
  width: auto;
  transition: transform .4s var(--ease);
}
.nav-logo:hover img { transform: scale(1.06); }
.nav.scrolled .nav-logo img { height: 60px; transition: height .4s var(--ease); }
@media (max-width: 600px) {
  .nav-logo img { height: 56px; }
  .nav.scrolled .nav-logo img { height: 48px; }
}
.nav-links {
  display: flex; gap: 26px;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--silver-2);
  white-space: nowrap;
}
@media (max-width: 1180px) {
  .nav-links { gap: 20px; font-size: 13px; }
}
.nav-links a {
  position: relative;
  transition: color .3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a::after {
  content: ''; position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--white);
  transition: width .3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-corretor {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--silver);
  border: 1px solid var(--line);
  white-space: nowrap;
  transition: all .3s var(--ease);
}
.nav-corretor:hover { color: var(--white); border-color: var(--line-2); }
.nav-corretor svg { opacity: .8; width: 13px; height: 13px; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 500;
  background: rgba(255,255,255,.04);
  white-space: nowrap;
  transition: all .3s var(--ease);
}
.nav-cta svg { width: 13px; height: 13px; }
.nav-cta:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateY(-1px);
}
@media (max-width: 1280px) {
  .nav-corretor span { display: none; }
  .nav-corretor { padding: 9px 11px; }
  .nav-corretor svg { width: 14px; height: 14px; opacity: 1; }
}
@media (max-width: 960px) {
  .nav-actions { display: none; }
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  cursor: pointer;
  z-index: 110;
  position: relative;
}
.nav-burger span {
  width: 18px; height: 1.5px; background: var(--white);
  transition: .35s var(--ease);
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh;
  background: rgba(8,8,10,.96);
  backdrop-filter: blur(30px) saturate(160%);
  -webkit-backdrop-filter: blur(30px) saturate(160%);
  z-index: 99;
  padding: 100px 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mm-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mm-links a {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 500;
  color: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.01em;
  transition: padding-left .35s var(--ease), color .3s var(--ease);
  display: flex;
  align-items: center;
}
.mm-links a::before {
  content: '→';
  opacity: 0;
  margin-right: 0;
  width: 0;
  overflow: hidden;
  color: var(--silver-2);
  transition: opacity .3s var(--ease), margin .3s var(--ease), width .3s var(--ease);
  font-size: 0.7em;
}
.mm-links a:hover, .mm-links a:active {
  color: var(--silver);
  padding-left: 8px;
}
.mm-footer {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mm-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  font-size: 13px;
  color: var(--silver-2);
}
.mm-info a:hover { color: var(--white); }
body.menu-open { overflow: hidden; }

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero { padding: 110px 0 60px; min-height: auto; }
  .hero-scroll { display: none; }
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  opacity: .6;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .35;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #d4d4dc 0%, transparent 60%);
  top: -200px; right: -100px;
  animation: orb 18s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #6b6b72 0%, transparent 60%);
  bottom: -150px; left: -150px;
  animation: orb 22s ease-in-out infinite reverse;
}
@keyframes orb {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.1); }
}

.hero-content {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
@media (max-width: 768px) {
  .hero-content { padding: 0 20px; }
}
@media (max-width: 480px) {
  .hero-content { padding: 0 16px; }
}
.hero-grid-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
@media (max-width: 960px) {
  .hero-grid-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
}

/* Hero portrait - CEO */
.hero-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 460px;
  width: 100%;
  margin-left: auto;
}
@media (max-width: 960px) {
  .hero-portrait {
    margin: 0 auto;
    max-width: 360px;
    aspect-ratio: 1 / 1.1;
  }
}
.portrait-glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(ellipse at center, rgba(232,232,238,.18), transparent 60%);
  filter: blur(40px);
  z-index: 0;
}
.portrait-frame {
  position: absolute;
  inset: 0;
  border-radius: 220px 220px 24px 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(232,232,238,.06), rgba(0,0,0,.4));
  border: 1px solid var(--line-2);
  z-index: 1;
  backdrop-filter: blur(10px);
  box-shadow: 0 50px 120px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.06);
}
.portrait-frame img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(8%) contrast(1.05) brightness(1.02);
  transition: transform .8s var(--ease), filter .6s var(--ease);
}
.hero-portrait:hover .portrait-frame img {
  transform: translateX(-50%) scale(1.04);
  filter: grayscale(0%) contrast(1.1) brightness(1.05);
}

.portrait-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.portrait-rings span {
  position: absolute;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.portrait-rings span:nth-child(1) { width: 80%; height: 80%; animation: spin 30s linear infinite; }
.portrait-rings span:nth-child(2) { width: 100%; height: 100%; animation: spin 45s linear infinite reverse; }
.portrait-rings span:nth-child(3) { width: 120%; height: 120%; animation: spin 60s linear infinite; opacity: .5; }
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.portrait-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 3;
  background: rgba(15,15,17,.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,.5);
}
.pt-line {
  width: 30px; height: 1px;
  background: linear-gradient(90deg, var(--silver), transparent);
}
.portrait-tag strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  font-style: italic;
}
.portrait-tag span {
  display: block;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray);
  margin-top: 2px;
}

.portrait-badge {
  position: absolute;
  top: 12%;
  right: -8%;
  z-index: 3;
  background: rgba(20,20,22,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
  animation: float 4.5s ease-in-out infinite;
}
.portrait-badge svg {
  width: 22px; height: 22px;
  color: var(--silver);
  flex-shrink: 0;
}
.portrait-badge span {
  font-size: 11px;
  line-height: 1.3;
  color: var(--silver-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
@media (max-width: 1100px) {
  .portrait-badge { right: 0; }
}
@media (max-width: 600px) {
  .portrait-tag { padding: 10px 14px; bottom: 12px; left: 12px; }
  .portrait-tag strong { font-size: 13px; }
  .portrait-tag span { font-size: 9.5px; }
  .pt-line { width: 18px; }
  .portrait-badge { padding: 10px 14px; top: 8%; }
  .portrait-badge span { font-size: 10px; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  font-size: 13px;
  color: var(--silver-2);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(10px);
  margin-bottom: 32px;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: #c0e88a;
  border-radius: 50%;
  box-shadow: 0 0 10px #c0e88a;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  background: linear-gradient(180deg, #fff 0%, #a0a0a8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.title-italic {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #e8e8ee, #888890);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--silver-2);
  max-width: 540px;
  margin-bottom: 48px;
  line-height: 1.55;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all .35s var(--ease);
  cursor: none;
}
.btn-primary {
  background: var(--white);
  color: var(--black);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,255,255,.18);
}
.btn-primary svg { transition: transform .3s var(--ease); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  border: 1px solid var(--line-2);
  color: var(--white);
  background: rgba(255,255,255,.02);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.06);
}
.btn-block { width: 100%; justify-content: center; padding: 18px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-top: 1px solid var(--line);
  padding-top: 40px;
  max-width: 800px;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #fff, #888);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; padding-top: 32px; }
  .stat-label { font-size: 11px; }
  .hero-badge { font-size: 11px; padding: 6px 12px; margin-bottom: 24px; }
  .hero-sub { margin-bottom: 32px; font-size: 15px; }
  .btn { padding: 14px 22px; font-size: 13px; }
  .hero-cta .btn { flex: 1; justify-content: center; min-width: 140px; }
}

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gray), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::before {
  content: '';
  position: absolute;
  width: 100%; height: 50%;
  background: var(--white);
  animation: scroll-down 2s ease-in-out infinite;
}
@keyframes scroll-down {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* ============== MARQUEE ============== */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 24px 0;
  background: var(--bg-2);
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 40px);
  font-style: italic;
  color: var(--gray-2);
}
.marquee-track span:nth-child(odd) { color: var(--silver); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============== SECTIONS ============== */
.section {
  padding: 140px 0;
  position: relative;
}
@media (max-width: 768px) { .section { padding: 70px 0; } }
@media (max-width: 480px) { .section { padding: 56px 0; } }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--silver-2);
  margin-bottom: 24px;
}
.kicker span {
  width: 24px; height: 1px;
  background: var(--silver-2);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4.5vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 820px;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #d8d8de, #888);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-lead {
  font-size: 17px;
  color: var(--silver-2);
  max-width: 540px;
  margin-top: 24px;
  line-height: 1.6;
}
.center-text { margin-left: auto; margin-right: auto; }
.section-head { margin-bottom: 80px; }
@media (max-width: 768px) {
  .section-head { margin-bottom: 50px; }
  .kicker { font-size: 11px; margin-bottom: 18px; }
  .section-lead { font-size: 15px; margin-top: 18px; }
}
.section-head.center { text-align: center; }
.section-head.center .section-title { margin: 0 auto; }

/* ============== SOBRE ============== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 960px) {
  .two-col { grid-template-columns: 1fr; gap: 60px; }
}
.col-text .section-lead { margin-top: 28px; max-width: 500px; }
.badges {
  display: flex; flex-wrap: wrap; gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.badge-item strong {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 500;
  display: block;
  background: linear-gradient(180deg, #fff, #888);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.badge-item span {
  font-size: 13px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.image-stack {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 480px;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .image-stack { aspect-ratio: 1/1; }
  .floating-card { padding: 14px 18px; left: 0; }
  .fc-num { font-size: 24px; }
  .fc-text { font-size: 10px; }
}
.img-frame {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%) contrast(1.05); transition: transform .8s var(--ease), filter .6s var(--ease); }
.img-frame:hover img { transform: scale(1.05); filter: grayscale(0%) contrast(1.1); }
.img-1 { top: 0; left: 0; width: 70%; height: 75%; }
.img-2 { bottom: 0; right: 0; width: 55%; height: 50%; }

.floating-card {
  position: absolute;
  bottom: 12%;
  left: -8%;
  background: rgba(20,20,22,.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-2);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  display: flex; align-items: center; gap: 14px;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.fc-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  background: linear-gradient(135deg, #fff, #888);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fc-text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--silver-2);
  line-height: 1.3;
}

/* ============== SERVIÇOS ============== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: var(--bg);
  padding: 48px 36px;
  position: relative;
  transition: background .4s var(--ease);
  overflow: hidden;
}
@media (max-width: 768px) { .service-card { padding: 36px 26px; } }
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,0%), rgba(255,255,255,.06), transparent 60%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.service-card:hover { background: var(--bg-2); }
.service-card:hover::before { opacity: 1; }
.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--gray-2);
  margin-bottom: 32px;
  letter-spacing: 0.12em;
}
.service-icon {
  width: 56px; height: 56px;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  color: var(--silver);
  background: var(--accent-soft);
  transition: all .4s var(--ease);
}
.service-card:hover .service-icon {
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-3px);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.service-card p {
  color: var(--silver-2);
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.service-link {
  font-size: 13px;
  color: var(--silver);
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  transition: color .3s var(--ease), padding-left .3s var(--ease);
}
.service-link:hover { color: var(--white); padding-left: 4px; }

/* ============== OPERADORAS ============== */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 60px;
}
@media (max-width: 960px) { .logos-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .logos-grid { grid-template-columns: repeat(2, 1fr); } }
.logo-cell {
  background: var(--bg);
  padding: 40px 20px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--silver-2);
  text-align: center;
  transition: all .4s var(--ease);
  letter-spacing: -0.01em;
}
.logo-cell:hover {
  background: var(--bg-2);
  color: var(--white);
  transform: scale(1.02);
}

/* ============== DIFERENCIAIS ============== */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.diff-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  position: relative;
  overflow: hidden;
  transition: all .4s var(--ease);
}
@media (max-width: 768px) {
  .diff-card { padding: 32px 24px; }
  .diff-card h3, .diff-card.big h3 { font-size: 22px; }
}
.diff-card.big { grid-column: span 1; }
.diff-card:nth-child(1) { grid-column: span 2; }
.diff-card:nth-child(5) { grid-column: span 2; }
@media (max-width: 960px) {
  .diff-grid { grid-template-columns: 1fr; }
  .diff-card, .diff-card:nth-child(1), .diff-card:nth-child(5) { grid-column: span 1; }
}
.diff-card:hover {
  border-color: var(--line-2);
  transform: translateY(-4px);
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
}
.diff-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,.04), transparent 60%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.diff-card:hover::after { opacity: 1; }
.diff-number {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--gray-2);
  letter-spacing: 0.12em;
  margin-bottom: 28px;
}
.diff-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.diff-card.big h3 { font-size: 34px; }
.diff-card p {
  color: var(--silver-2);
  font-size: 15px;
  line-height: 1.6;
  max-width: 520px;
}

/* ============== DEPOIMENTOS ============== */
.testi-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .testi-head { margin-bottom: 36px; }
}
.testi-rating {
  display: flex; align-items: center; gap: 10px;
  margin-top: 24px;
  font-size: 14px;
  color: var(--silver-2);
}
.testi-rating .stars { display: flex; gap: 2px; }
.testi-rating .stars svg { width: 18px; height: 18px; }
.testi-rating strong {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--white);
}
.testi-controls { display: flex; gap: 10px; }
.testi-btn {
  width: 48px; height: 48px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  background: var(--bg-2);
  color: var(--silver);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease);
  cursor: none;
}
.testi-btn:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.testi-btn svg { width: 18px; height: 18px; }

.testi-carousel {
  overflow: hidden;
  margin: 0 -8px;
  padding: 8px;
  cursor: grab;
}
.testi-carousel:active { cursor: grabbing; }
.testi-track {
  display: flex;
  gap: 20px;
  transition: transform .7s var(--ease);
  will-change: transform;
}
.testi-card {
  flex: 0 0 calc(33.333% - 14px);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 26px;
  background: var(--bg-2);
  transition: all .4s var(--ease);
  display: flex;
  flex-direction: column;
}
.testi-card:hover {
  background: var(--bg-3);
  border-color: var(--line-2);
  transform: translateY(-4px);
}
@media (max-width: 960px) {
  .testi-card { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 600px) {
  .testi-card { flex: 0 0 calc(100% - 4px); }
}
.testi-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.testi-stars svg { width: 16px; height: 16px; }
.testi-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--silver);
  margin-bottom: 24px;
  flex: 1;
}
.testi-card .testi-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.testi-avatar.a-1 { background: linear-gradient(135deg, #6366f1, #4338ca); }
.testi-avatar.a-2 { background: linear-gradient(135deg, #f59e0b, #b45309); }
.testi-avatar.a-3 { background: linear-gradient(135deg, #ec4899, #be185d); }
.testi-avatar.a-4 { background: linear-gradient(135deg, #10b981, #047857); }
.testi-avatar.a-5 { background: linear-gradient(135deg, #06b6d4, #0e7490); }
.testi-avatar.a-6 { background: linear-gradient(135deg, #a855f7, #6b21a8); }
.testi-card .testi-author strong { display: block; font-weight: 500; font-size: 14px; color: var(--white); }
.testi-card .testi-author span { font-size: 12px; color: var(--gray); }

/* ============== FAQ ============== */
.two-col-faq {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 960px) {
  .two-col-faq { grid-template-columns: 1fr; gap: 60px; }
}
.two-col-faq .section-title { margin-bottom: 0; }
.two-col-faq .section-lead { margin-bottom: 32px; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-2);
  transition: border-color .4s var(--ease), background .4s var(--ease);
  overflow: hidden;
}
.faq-item.is-open { border-color: var(--line-2); background: var(--bg-3); }
.faq-summary {
  width: 100%;
  padding: 22px 26px;
  cursor: none;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-weight: 500;
  font-size: 15px;
  text-align: left;
  color: var(--white);
  background: transparent;
  transition: color .3s var(--ease);
}
.faq-summary:hover { color: var(--silver); }
.faq-ic {
  position: relative;
  width: 14px; height: 14px;
  flex-shrink: 0;
}
.faq-ic::before, .faq-ic::after {
  content: '';
  position: absolute;
  background: var(--silver);
  transition: transform .45s var(--ease);
}
.faq-ic::before { top: 50%; left: 0; right: 0; height: 1px; }
.faq-ic::after { left: 50%; top: 0; bottom: 0; width: 1px; }
.faq-item.is-open .faq-ic::after { transform: scaleY(0); }
.faq-item.is-open .faq-ic::before { transform: rotate(180deg); }

.faq-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .55s var(--ease), opacity .35s var(--ease);
}
.faq-item.is-open .faq-content {
  max-height: 320px;
  opacity: 1;
}
.faq-item p {
  padding: 4px 26px 24px;
  color: var(--silver-2);
  font-size: 14.5px;
  line-height: 1.65;
  transform: translateY(-6px);
  transition: transform .45s var(--ease);
}
.faq-item.is-open p { transform: translateY(0); }

/* ============== CONTATO ============== */
.contato { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 960px) {
  .contato-grid { grid-template-columns: 1fr; gap: 60px; }
}
.contato-info {
  display: flex; flex-direction: column; gap: 24px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.ci-item { display: flex; gap: 18px; align-items: flex-start; }
.ci-ic {
  width: 44px; height: 44px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--silver);
  flex-shrink: 0;
  background: var(--accent-soft);
}
.ci-ic svg { width: 20px; height: 20px; }
.ci-item span:first-child {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray);
  margin-bottom: 4px;
}
.ci-item a, .ci-item p {
  font-size: 15px;
  color: var(--white);
  font-weight: 400;
  line-height: 1.5;
}
.ci-item a:hover { color: var(--silver); }

.contato-form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}
@media (max-width: 600px) { .contato-form { padding: 24px 20px; } }
.form-row { margin-bottom: 20px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row.two { grid-template-columns: 1fr; } .contato-form { padding: 28px; } }
.form-row label { display: block; }
.form-row span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 8px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--white);
  font: inherit;
  font-size: 15px;
  transition: all .3s var(--ease);
  cursor: none;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--white);
  background: var(--bg-3);
}
.form-row textarea { resize: vertical; }
.form-disclaimer {
  font-size: 12px;
  color: var(--gray);
  margin-top: 16px;
  text-align: center;
}

/* ============== FOOTER ============== */
.footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
}
@media (max-width: 768px) { .footer { padding: 60px 0 24px; } }
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
.footer-logo-wrap {
  display: inline-flex;
  margin-bottom: 28px;
}
.footer-logo {
  height: 100px;
  width: auto;
}
.footer-brand p { color: var(--gray); font-size: 14px; max-width: 320px; line-height: 1.6; }
.footer-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--silver);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 10px;
  transition: color .3s var(--ease);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 32px;
  font-size: 13px;
  color: var(--gray-2);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============== FLOAT WHATSAPP ============== */
.float-wpp {
  position: fixed;
  bottom: 22px; right: 22px;
  width: 60px; height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 95;
  box-shadow: 0 10px 30px rgba(37,211,102,.35);
  transition: transform .35s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  animation: wpp-pulse 2.4s ease-in-out infinite;
  cursor: none;
}
.float-wpp:hover { transform: scale(1.1); box-shadow: 0 15px 40px rgba(37,211,102,.5); }
.float-wpp svg { width: 28px; height: 28px; position: absolute; transition: transform .35s var(--ease), opacity .25s var(--ease); }
.float-wpp .ic-close { opacity: 0; transform: rotate(-90deg) scale(.5); }
.float-wpp.open { background: #1a1a1a; animation: none; box-shadow: 0 12px 30px rgba(0,0,0,.5); }
.float-wpp.open .ic-wpp { opacity: 0; transform: rotate(90deg) scale(.5); }
.float-wpp.open .ic-close { opacity: 1; transform: rotate(0) scale(1); }

@keyframes wpp-pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37,211,102,.35), 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 10px 30px rgba(37,211,102,.35), 0 0 0 18px rgba(37,211,102,0); }
}

/* ============== CHAT ============== */
.chat-window {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 380px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 140px);
  background: #0e0e10;
  border: 1px solid var(--line-2);
  border-radius: 22px;
  z-index: 94;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(.96);
  pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.chat-window.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.chat-header {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #1a1a1c, #0e0e10);
  border-bottom: 1px solid var(--line);
}
.chat-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #1a1a1c;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--line-2);
  position: relative;
}
.chat-avatar img { width: 30px; height: 30px; object-fit: contain; }
.chat-avatar::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 12px; height: 12px;
  background: #25D366;
  border-radius: 50%;
  border: 2px solid #0e0e10;
}
.chat-meta { flex: 1; }
.chat-meta strong {
  display: block;
  font-size: 15px;
  color: var(--white);
  font-weight: 600;
}
.chat-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.online-dot {
  width: 6px; height: 6px;
  background: #25D366;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.chat-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--silver-2);
  transition: all .3s var(--ease);
  cursor: none;
}
.chat-close:hover { background: var(--bg-3); color: var(--white); }
.chat-close svg { width: 16px; height: 16px; }

.chat-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(255,255,255,.02), transparent 50%),
    radial-gradient(circle at 75% 70%, rgba(255,255,255,.02), transparent 50%);
}
.chat-body::-webkit-scrollbar { width: 6px; }
.chat-body::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 10px; }

.chat-msg {
  display: flex;
  flex-direction: column;
  max-width: 85%;
  animation: msg-in .45s var(--ease);
}
@keyframes msg-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-msg.bot { align-self: flex-start; align-items: flex-start; }
.chat-msg.user { align-self: flex-end; align-items: flex-end; }
.chat-bubble {
  padding: 11px 15px;
  font-size: 14px;
  line-height: 1.45;
  border-radius: 16px;
}
.chat-msg.bot .chat-bubble {
  background: var(--bg-3);
  color: var(--white);
  border-top-left-radius: 4px;
}
.chat-msg.user .chat-bubble {
  background: #25D366;
  color: #fff;
  border-top-right-radius: 4px;
}
.chat-time {
  font-size: 10px;
  color: var(--gray-2);
  margin-top: 4px;
  padding: 0 4px;
}

.chat-quick {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 6px;
}
.chat-quick button {
  padding: 9px 14px;
  font-size: 13px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  color: var(--silver);
  background: var(--bg-2);
  transition: all .3s var(--ease);
  cursor: none;
}
.chat-quick button:hover {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}

.chat-typing {
  display: flex; gap: 4px;
  padding: 12px 16px;
  background: var(--bg-3);
  border-radius: 16px;
  border-top-left-radius: 4px;
  width: fit-content;
}
.chat-typing span {
  width: 6px; height: 6px;
  background: var(--silver-2);
  border-radius: 50%;
  animation: typing 1.3s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: .15s; }
.chat-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: .4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.chat-input {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  background: #0a0a0c;
}
.chat-input input {
  flex: 1;
  padding: 12px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--white);
  font: inherit;
  font-size: 14px;
  cursor: none;
}
.chat-input input:focus {
  outline: none;
  border-color: #25D366;
}
.chat-input button {
  width: 44px; height: 44px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease), background .3s var(--ease);
  cursor: none;
  flex-shrink: 0;
}
.chat-input button:hover { transform: scale(1.08); background: #1eb558; }
.chat-input button svg { width: 18px; height: 18px; }

@media (max-width: 480px) {
  .chat-window {
    right: 12px; left: 12px;
    width: auto;
    bottom: 92px;
    max-height: calc(100vh - 130px);
  }
  .float-wpp { bottom: 18px; right: 18px; width: 54px; height: 54px; }
  .float-wpp svg { width: 24px; height: 24px; }
}

/* ===================================================================
   AUTH (login)
   =================================================================== */
.page-auth { min-height: 100vh; }
.auth-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 100vh;
}
@media (max-width: 960px) {
  .auth-wrap { grid-template-columns: 1fr; }
}

.auth-side {
  position: relative;
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg, #0c0c0e 0%, #060608 100%);
  border-left: 1px solid var(--line);
  overflow: hidden;
}
@media (max-width: 960px) { .auth-side { display: none; } }
.auth-logo-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}
.auth-logo-stage::before,
.auth-logo-stage::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.auth-logo-stage::before {
  width: 70%;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  animation: spin 60s linear infinite;
}
.auth-logo-stage::after {
  width: 90%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.04);
  animation: spin 90s linear infinite reverse;
}
.auth-logo-big {
  width: 70%;
  max-width: 460px;
  height: auto;
  filter: drop-shadow(0 30px 80px rgba(255,255,255,.08));
  animation: float 5s ease-in-out infinite;
}
.auth-side-foot {
  font-size: 12px;
  color: var(--gray-2);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  position: relative;
  z-index: 1;
}
.auth-side-bg { position: absolute; inset: 0; pointer-events: none; }
.auth-side > * { position: relative; z-index: 1; }


.auth-main {
  position: relative;
  padding: 32px 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) { .auth-main { padding: 24px 20px; } }

.auth-back {
  position: absolute;
  top: 32px; left: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--silver-2);
  padding: 10px 16px;
  border-radius: 100px;
  border: 1px solid var(--line);
  transition: all .3s var(--ease);
}
.auth-back:hover { color: var(--white); border-color: var(--line-2); padding-left: 12px; }
@media (max-width: 600px) { .auth-back { top: 20px; left: 20px; } }

.auth-form-wrap {
  width: 100%;
  max-width: 440px;
}
.auth-head { text-align: center; margin-bottom: 36px; }
.auth-icon {
  width: 60px; height: 60px;
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(232,232,238,.12), rgba(160,160,168,.04));
  border: 1px solid var(--line-2);
  border-radius: 18px;
  color: var(--silver);
}
.auth-icon svg { width: 26px; height: 26px; }
.auth-head h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  background: linear-gradient(180deg, #fff, #888);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.auth-head p { font-size: 14.5px; color: var(--silver-2); }

.auth-form { display: flex; flex-direction: column; gap: 20px; }
.form-field { display: block; }
.form-field > span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 8px;
}
.field-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.field-wrap > svg {
  position: absolute;
  left: 16px;
  width: 18px; height: 18px;
  color: var(--gray);
  pointer-events: none;
}
.field-wrap input {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 14px 14px 14px 46px;
  color: var(--white);
  font: inherit;
  font-size: 15px;
  transition: all .3s var(--ease);
  cursor: none;
}
.field-wrap input:focus {
  outline: none;
  border-color: var(--white);
  background: var(--bg-3);
}
.field-toggle {
  position: absolute;
  right: 12px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
  border-radius: 8px;
  transition: color .3s var(--ease);
  cursor: none;
}
.field-toggle:hover { color: var(--white); }
.field-toggle.on { color: var(--white); }
.field-toggle svg { width: 18px; height: 18px; }

.auth-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: none;
  color: var(--silver-2);
}
.checkbox input { display: none; }
.check-box {
  width: 18px; height: 18px;
  border: 1px solid var(--line-2);
  border-radius: 5px;
  position: relative;
  background: var(--bg-2);
  transition: all .25s var(--ease);
}
.check-box::after {
  content: '';
  position: absolute;
  left: 5px; top: 1px;
  width: 5px; height: 10px;
  border: solid var(--black);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform .25s var(--ease);
}
.checkbox input:checked ~ .check-box {
  background: var(--white);
  border-color: var(--white);
}
.checkbox input:checked ~ .check-box::after { transform: rotate(45deg) scale(1); }
.link-silver { color: var(--silver-2); }
.link-silver:hover { color: var(--white); }

.auth-divider {
  display: flex; align-items: center; gap: 14px;
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 8px 0;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.auth-foot {
  text-align: center;
  font-size: 13.5px;
  color: var(--silver-2);
  margin-top: 12px;
}
.auth-foot a {
  color: var(--white);
  font-weight: 500;
  transition: color .3s var(--ease);
}
.auth-foot a:hover { color: var(--silver); }

.btn.loading { opacity: .7; pointer-events: none; }

/* ===================================================================
   CARREIRAS
   =================================================================== */
.careers-hero {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
}
@media (max-width: 768px) { .careers-hero { padding: 120px 0 60px; } }
.careers-hero-content { max-width: 800px; }
.careers-hero .hero-bg { position: absolute; inset: 0; pointer-events: none; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 960px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--bg);
  padding: 44px 32px;
  position: relative;
  transition: background .4s var(--ease);
}
.value-card:hover { background: var(--bg-2); }
.value-num {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--gray-2);
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}
.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.value-card p {
  color: var(--silver-2);
  font-size: 14.5px;
  line-height: 1.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 960px) { .benefits-grid { grid-template-columns: 1fr; gap: 50px; } }
.benefits-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.benefits-list li:last-child { border-bottom: none; }
.benefits-list svg {
  width: 22px; height: 22px;
  color: var(--silver);
  flex-shrink: 0;
  padding: 10px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  background: var(--accent-soft);
  box-sizing: content-box;
}
.benefits-list strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}
.benefits-list span {
  font-size: 14px;
  color: var(--silver-2);
  line-height: 1.5;
}

.jobs-list { display: flex; flex-direction: column; gap: 12px; }
.job-card {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: center;
  padding: 32px 36px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all .4s var(--ease);
}
@media (max-width: 768px) {
  .job-card {
    grid-template-columns: 1fr auto;
    grid-template-areas: "main arrow" "meta meta";
    padding: 24px 22px;
    gap: 18px;
  }
  .job-main { grid-area: main; }
  .job-meta { grid-area: meta; }
  .job-arrow { grid-area: arrow; align-self: start; }
}
.job-card:hover {
  background: var(--bg-3);
  border-color: var(--line-2);
  transform: translateY(-2px);
}
.job-tag {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--silver-2);
  padding: 4px 10px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  margin-bottom: 14px;
}
.job-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  transition: color .3s var(--ease);
}
.job-card:hover h3 { background: linear-gradient(135deg, #fff, #888); -webkit-background-clip: text; background-clip: text; color: transparent; }
.job-card p {
  color: var(--silver-2);
  font-size: 14px;
  line-height: 1.55;
  max-width: 540px;
}
.job-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--silver-2);
}
.job-meta span { display: flex; align-items: center; gap: 8px; }
.job-meta svg { width: 14px; height: 14px; flex-shrink: 0; opacity: .7; }
.job-arrow {
  width: 48px; height: 48px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--silver);
  transition: all .35s var(--ease);
  flex-shrink: 0;
}
.job-card:hover .job-arrow {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: rotate(-45deg);
}
.job-arrow svg { width: 18px; height: 18px; }

.process-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
}
.proc-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 32px 24px;
}
.proc-num {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--gray-2);
  margin-bottom: 24px;
}
.proc-step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.proc-step p {
  font-size: 14px;
  color: var(--silver-2);
  line-height: 1.55;
  max-width: 240px;
  margin: 0 auto;
}
.proc-line {
  flex: 0 0 60px;
  align-self: center;
  height: 1px;
  background: linear-gradient(90deg, var(--line), var(--line-2), var(--line));
  position: relative;
}
.proc-line::after {
  content: '';
  position: absolute;
  right: -3px; top: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--silver);
  transform: translateY(-50%);
  opacity: .5;
}
@media (max-width: 768px) {
  .process-steps { flex-direction: column; }
  .proc-line { display: none; }
  .proc-step { padding: 24px 0; border-bottom: 1px solid var(--line); }
  .proc-step:last-child { border-bottom: none; }
}

/* TEAM GALLERY */
.team-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.team-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
  cursor: none;
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.05);
  transition: transform .8s var(--ease), filter .6s var(--ease);
}
.team-photo:hover img {
  transform: scale(1.06);
  filter: grayscale(0%) contrast(1.1);
}
.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
  opacity: .8;
  transition: opacity .4s var(--ease);
}
.team-photo:hover .team-overlay { opacity: .3; }

.team-photo.t-1 { grid-column: span 5; grid-row: span 2; }
.team-photo.t-2 { grid-column: span 4; grid-row: span 1; }
.team-photo.t-3 { grid-column: span 3; grid-row: span 2; }
.team-photo.t-4 { grid-column: span 4; grid-row: span 1; }
.team-photo.t-5 { grid-column: span 9; grid-row: span 1; }

@media (max-width: 960px) {
  .team-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 180px; }
  .team-photo.t-1 { grid-column: span 6; grid-row: span 2; }
  .team-photo.t-2 { grid-column: span 3; grid-row: span 1; }
  .team-photo.t-3 { grid-column: span 3; grid-row: span 1; }
  .team-photo.t-4 { grid-column: span 3; grid-row: span 1; }
  .team-photo.t-5 { grid-column: span 6; grid-row: span 1; }
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; gap: 10px; }
  .team-photo.t-2, .team-photo.t-3, .team-photo.t-4, .team-photo.t-5 {
    grid-column: span 1; grid-row: span 1;
  }
  .team-photo.t-1 { grid-column: span 2; grid-row: span 2; }
}

.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 960px) { .apply-grid { grid-template-columns: 1fr; gap: 50px; } }
.apply-info {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.file-upload {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px dashed var(--line-2);
  border-radius: 12px;
  background: var(--bg-2);
  cursor: none;
  transition: all .3s var(--ease);
  position: relative;
}
.file-upload:hover { border-color: var(--white); background: var(--bg-3); }
.file-upload input[type=file] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: none;
  width: 100%;
  height: 100%;
}
.file-ic {
  width: 44px; height: 44px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--silver);
  flex-shrink: 0;
}
.file-ic svg { width: 20px; height: 20px; }
.file-text strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 2px;
}
.file-text small {
  font-size: 12px;
  color: var(--gray);
}

/* ============== REVEAL ============== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  * { animation: none !important; transition: none !important; }
}
