/* ===========================================================
   Thiana Coelho — Engenharia Humana | Landing Page
   Paleta: azul-marinho profundo + dourado/creme
   =========================================================== */

:root {
  --navy-900: #0c1730;
  --navy-800: #111f3f;
  --navy-700: #16294f;
  --navy-600: #1d3463;
  --gold-400: #e7c488;
  --gold-500: #d8ad66;
  --gold-300: #f0d9aa;
  --cream:    #f5efe3;
  --ink:      #14233f;
  --muted:    #5d6b82;
  --line:     rgba(216, 173, 102, 0.28);
  --bg:       #fbf9f4;
  --white:    #ffffff;

  --maxw: 1180px;
  --radius: 16px;
  --shadow-soft: 0 18px 50px -28px rgba(12, 23, 48, 0.45);
  --shadow-card: 0 24px 60px -32px rgba(12, 23, 48, 0.35);
  --font: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 18px;
}

h1, h2, h3 { line-height: 1.15; font-weight: 800; letter-spacing: -0.01em; }
h2 { font-size: clamp(30px, 4vw, 46px); }
h3 { font-size: clamp(21px, 2.4vw, 27px); }

section { padding: clamp(70px, 9vw, 120px) 0; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 17px 34px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, background .35s;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  box-shadow: 0 16px 36px -16px rgba(216, 173, 102, 0.7);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -16px rgba(216, 173, 102, 0.85); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(231, 196, 136, 0.55);
}
.btn-ghost:hover { background: rgba(231, 196, 136, 0.12); transform: translateY(-3px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 8px 0;
  transition: /* background .4s, */ box-shadow .4s, padding .4s;
   background: #182039;
}
.site-header.scrolled {
 /*  background: rgba(12, 23, 48, 0.92); */
 
 /*  backdrop-filter: blur(12px); */
  box-shadow: 0 10px 30px -20px rgba(0,0,0,0.85);
  padding: 6px 0;
}
.site-header.scrolled .nav-brand .logo-mark {height: 64px; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand .logo-mark { height: 72px; width: auto; border-radius: 6px; transition: .25s all ease-in-out; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: .85;
  transition: opacity .3s, color .3s, all .2s ease-in-out;
}
.nav-links a:hover { opacity: 1; color: var(--gold-400); }
.nav-cta { padding: 12px 24px; font-size: 14px; transition: .25s all ease-in-out; color: #182039 !important;}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--cream); transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-900);
  color: var(--cream);
  overflow: hidden;
  padding-top: 180px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center right;
  opacity: .55;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 15% 30%, rgba(12,23,48,.55), rgba(12,23,48,.95) 70%);
}
.hero-inner { position: relative; z-index: 2; max-width: 880px;display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto; }
.hero-logo { height: 120px; width: auto; margin-bottom: 38px; border-radius: 10px; box-shadow: var(--shadow-soft); }
.hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 800;
  margin-bottom: 10px;
  max-width: 700px;
}
.hero .subline {
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 28px;
}
.hero p.lead {
  font-size: clamp(18px, 2vw, 22px);
  max-width: 680px;
  color: rgba(245, 239, 227, 0.86);
  margin-bottom: 36px;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin-bottom: 44px;
}
.hero-tags span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 600;
}
.hero-tags .check { color: var(--gold-400); font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }
.hero-sign { border-top: 1px solid var(--line); padding-top: 24px; }
.hero-sign strong { color: var(--gold-400); font-size: 18px; display: block; }
.hero-sign em { color: rgba(245,239,227,0.7); font-style: italic; font-size: 16px; }

/* ---------- Cenário ---------- */
.scenario { background: var(--bg); }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px);
  /* 1. Mudamos de 'center' para 'stretch' para as duas colunas terem sempre a mesma altura */
  align-items: stretch; 
}

.scenario .lead-text { color: var(--muted); margin: 22px 0 30px; }
.risk-list { list-style: none; display: grid; gap: 16px; }

.risk-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid rgba(20,35,63,0.06);
  border-left: 3px solid var(--gold-500);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 10px 30px -26px rgba(12,23,48,.5);
  font-size: 16.5px;
  transition: transform .35s, box-shadow .35s;
}
.risk-list li:hover { transform: translateX(6px); box-shadow: var(--shadow-card); }
.risk-list .check { color: var(--gold-500); font-weight: 800; flex: none; }

.scenario-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  /* 2. Garante que a div container da imagem use 100% da altura disponível no grid */
  display: flex; 
}

.scenario-img img { 
  width: 100%; 
  height: 100%; 
  /* 3. O object-fit: cover garante que ela corte as sobras sem distorcer */
  object-fit: cover; 
}

.callout {
  margin-top: clamp(50px, 7vw, 80px);
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--cream);
  border-radius: var(--radius);
  padding: clamp(34px, 5vw, 56px);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.callout::before {
  content: "";
  position: absolute; top: -40%; right: -10%;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(231,196,136,.22), transparent 70%);
}
.callout h3 { color: var(--gold-400); margin-bottom: 16px; position: relative; }
.callout p { color: rgba(245,239,227,0.86); font-size: 17.5px; position: relative; }
.callout strong { color: var(--gold-300); }

/* ---------- Metodologia ---------- */
.method { background: var(--navy-900); color: var(--cream); }
.method .eyebrow { color: var(--gold-400); }
.method .lead-text { color: rgba(245,239,227,0.78); max-width: 720px; margin: 20px 0 44px; }
.table-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(231,196,136,0.18);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.deliverables-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  padding: 22px clamp(22px, 3vw, 34px);
  border-bottom: 1px solid rgba(231,196,136,0.12);
  transition: background .3s;
}
.deliverables-row:hover { background: rgba(231,196,136,0.06); }
.deliverables-row:last-child { border-bottom: none; }
.deliverables-head {
  background: rgba(231,196,136,0.1);
}
.deliverables-head .cell {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 14px;
  font-weight: 800;
  color: var(--gold-400);
}
.deliverables-row .cell-title { font-weight: 800; font-size: 18px; color: var(--gold-300); }
.deliverables-row .cell-desc { color: rgba(245,239,227,0.82); font-size: 16.5px; }
.severity { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 12px; }
.severity span { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; }
.dot { width: 13px; height: 13px; border-radius: 50%; flex: none; }
.dot.low { background: #2ecc71; }
.dot.mod { background: #f4c430; }
.dot.high { background: #e8821e; }
.dot.crit { background: #e3463c; }

.factors { margin-top: clamp(50px, 7vw, 76px); }
.factors h3 {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 20px;
  color: var(--gold-400);
  margin-bottom: 28px;
}
.factors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 36px;
}
.factors-grid li {
  list-style: none;
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 17px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(231,196,136,0.14);
  border-radius: 12px;
  transition: transform .3s, border-color .3s;
}
.factors-grid li:hover { transform: translateY(-4px); border-color: rgba(231,196,136,0.4); }
.factors-grid .bullet { width: 9px; height: 9px; border-radius: 50%; background: var(--gold-500); flex: none; }

/* ---------- ROI / Diferenciais ---------- */
.roi { background: var(--bg); }
.roi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.roi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--gold-500);
  transition: transform .4s, box-shadow .4s;
}
.roi-card:hover { transform: translateY(-8px); box-shadow: 0 36px 70px -34px rgba(12,23,48,.45); }
.roi-card .icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  color: var(--gold-400);
  font-size: 24px;
  margin-bottom: 20px;
}
.roi-card h3 { color: var(--ink); margin-bottom: 12px; font-size: 21px; }
.roi-card p { color: var(--muted); font-size: 16.5px; }

/* --- Ajustes na área da Imagem e Lista --- */
.diff-wrap {
  margin-top: clamp(60px, 8vw, 96px);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 72px);
  /* 1. Mudamos de center para stretch para igualar as colunas */
  align-items: stretch; 
}

.diff-media { 
  border-radius: var(--radius); 
  overflow: hidden; 
  box-shadow: var(--shadow-card); 
  /* 2. Força o container a preencher o espaço vertical e alinhar com a imagem */
  display: flex; 
}

.diff-media img { 
  width: 100%; 
  height: 100%; 
  /* 3. Preenche o espaço cortando as sobras proporcionalmente */
  object-fit: cover; 
}

.diff-list { display: grid; gap: 18px; }
.diff-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid rgba(20,35,63,0.06);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 12px 34px -28px rgba(12,23,48,.5);
  transition: transform .35s, box-shadow .35s;
}
.diff-item:hover { transform: translateX(6px); box-shadow: var(--shadow-card); }
.diff-item .check {
  flex: none; width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: rgba(216,173,102,0.16);
  color: var(--gold-500);
  font-weight: 800;
}
.diff-item strong { color: var(--ink); }
.diff-item span.txt { color: var(--muted); font-size: 16.5px; }

/* ---------- CTA Final ---------- */
.cta {
  background: var(--navy-900);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 50% 0%, rgba(231,196,136,.16), transparent 60%);
}
.cta-inner { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; }
.cta h2 {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream);
  font-size: clamp(26px, 3.6vw, 40px);
  margin-bottom: 36px;
}
.cta blockquote {
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.7;
  color: rgba(245,239,227,0.9);
  font-style: italic;
  position: relative;
  padding: 0 clamp(10px, 4vw, 50px);
  margin-bottom: 40px;
}
.diamond { color: var(--gold-400); font-size: 22px; margin: 8px 0 36px; }
.cta .invite { font-size: 19px; color: rgba(245,239,227,0.85); margin-bottom: 8px; }
.cta .invite strong { color: var(--gold-400); display: block; font-size: clamp(22px, 3vw, 30px); letter-spacing: 0.04em; margin-top: 6px; }
.cta-actions { margin-top: 40px; display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ---------- Footer ---------- */
.site-footer {
  /* background: var(--navy-800); */
  background: #161E36;
  color: var(--cream);
  padding: 60px 0 40px;
  text-align: center;
  border-top: 1px solid var(--line);
}
.site-footer .foot-logo { height: 120px; width: auto; margin: 0 auto 20px; border-radius: 8px; }
.site-footer .tagline { color: var(--gold-400); letter-spacing: 0.14em; text-transform: uppercase; font-size: 14px; font-weight: 700; margin-bottom: 26px; }
.foot-contacts { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px 40px; margin-bottom: 30px; }
.foot-contacts a {
  color: var(--cream);
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color .3s;
}
.foot-contacts a:hover { color: var(--gold-400); }
.foot-copy { color: rgba(245,239,227,0.5); font-size: 14px; border-top: 1px solid rgba(231,196,136,0.14); padding-top: 24px; }

/* ---------- Animações de scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 900px) {
  body { font-size: 17px; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: min(78vw, 320px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background: rgba(12,23,48,0.98);
    backdrop-filter: blur(14px);
    transition: right .4s cubic-bezier(.2,.8,.2,1);
    box-shadow: -20px 0 60px -30px rgba(0,0,0,.7);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 19px; }
  .nav-toggle { display: flex; z-index: 110; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .split, .diff-wrap { grid-template-columns: 1fr; }
  .scenario-img, .diff-media { order: -1; }
  .roi-grid { grid-template-columns: 1fr; }
  .factors-grid { grid-template-columns: 1fr; }
  .deliverables-row { grid-template-columns: 1fr; gap: 8px; }
  .deliverables-head { display: none; }
  .deliverables-row .cell-title { color: var(--gold-400); }
}
@media (max-width: 520px) {
  .container { padding: 0 20px; }
  .hero-logo { height: 92px; }
  .btn { width: 100%; justify-content: center; }
  .nav-cta { display: none; }
}


.tempbox{
  opacity: .5;
  transition: .25s all ease-in-out;
}

.tempbox:hover{
  opacity: 1;
}