:root{
  --bg:#2b2d31;          /* grafite */
  --bg2:#1f2024;         /* grafite mais escuro */
  --text:#e9eaee;        /* quase branco */
  --muted:#b9bbc4;       /* cinza texto */
  --card:#ffffff;        /* branco */
  --cardText:#1a1b1f;    /* preto suave */
  --gold:#d4af37;        /* dourado */
  --gold2:#b8922c;       /* dourado mais fechado */
  --line:rgba(255,255,255,.12);
  --shadow: 0 10px 30px rgba(0,0,0,.25);
  --radius: 18px;
  --max: 1120px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; font-family: system-ui, -apple-system, "Segoe UI", Inter, Arial, sans-serif; }
body{ background:var(--bg); color:var(--text); line-height:1.55; }

a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.92; }

.container{ width: min(var(--max), calc(100% - 40px)); margin:0 auto; }

/* =========================
   HEADER / NAV
========================= */
header{
  position: sticky; top:0; z-index:50;
  background: rgba(43,45,49,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; gap:12px; align-items:center;
}

/* ✅ Logo (desktop/mobile) */
.brand img{
  height:48px;
  width:auto;
  object-fit:contain;
}
@media (max-width:900px){
  .brand img{ height:44px; }
}
@media (max-width:420px){
  .brand img{ height:40px; }
}

.brand .name{ font-weight:700; letter-spacing:.2px; }
.brand .tag{ color:var(--muted); font-size:13px; margin-top:2px; }

.menu{
  display:flex; gap:18px; align-items:center;
}
.menu a{ color:var(--muted); font-weight:600; font-size:14px; padding:10px 10px; border-radius:12px; }
.menu a.active, .menu a:hover{ color:var(--text); background: rgba(255,255,255,.06); }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:14px;
  font-weight:800; letter-spacing:.2px;
  border:1px solid transparent;
  transition: transform .15s ease, background .2s ease, border .2s ease, box-shadow .2s ease;
  user-select:none;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  color:#1a1b1f;
}
.btn-ghost{
  background: transparent;
  border-color: rgba(212,175,55,.65);
  color: var(--text);
}
.btn-dark{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
  color: var(--text);
}
.btn-small{ padding:10px 12px; border-radius:12px; font-size:13px; }

.mobile-toggle{ display:none; }
.mobile-menu{ display:none; }

/* =========================
   HERO (INDEX) — com imagem + parallax
   ✅ precisa do arquivo: office-bg.jpg
========================= */
.hero{
  position: relative;
  padding:110px 0 78px;
  background:
    url("office-bg.jpg") center/cover no-repeat,
    radial-gradient(800px 260px at 20% 0%, rgba(212,175,55,.18), transparent 60%),
    radial-gradient(700px 220px at 90% 10%, rgba(212,175,55,.12), transparent 55%);
  background-attachment: fixed, scroll, scroll;
  overflow: hidden;
}

/* camada premium escura pra legibilidade */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.72),
    rgba(0,0,0,.85)
  );
}

.hero .container{
  position: relative;
  z-index: 2;
}

.hero-grid{
  display:grid; grid-template-columns: 1.15fr .85fr; gap:34px; align-items:center;
}
.kicker{
  color: rgba(212,175,55,.95);
  font-weight:800; letter-spacing:.9px; text-transform:uppercase; font-size:12px;
}
h1{ margin:10px 0 12px; font-size: clamp(30px, 4vw, 48px); line-height:1.08; }
.lead{ color: var(--muted); font-size: 16.5px; max-width: 55ch; }

.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:18px; }
.trust{
  margin-top:22px;
  display:flex; gap:14px; flex-wrap:wrap;
  color: var(--muted); font-weight:600; font-size:13px;
}
.trust span{
  padding:8px 12px; border-radius:999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.hero-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.hero-card h3{ margin:0 0 8px; }
.hero-card p{ margin:0 0 14px; color:var(--muted); }
.hero-card ul{ margin:0; padding-left:18px; color:var(--muted); }
.hero-card li{ margin:8px 0; }

/* =========================
   SECTIONS / GRIDS
========================= */
.section{
  padding:58px 0;
  border-top: 1px solid var(--line);
}
.section.alt{
  background: #f4f5f7;
  color: var(--cardText);
}
.section.alt .muted{ color:#4e515b; }
.section.alt .card{ background:#fff; }

h2{ margin:0 0 10px; font-size: clamp(22px, 2.6vw, 34px); }
.muted{ color: var(--muted); }

.grid-3{ display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; }
.grid-2{ display:grid; grid-template-columns: repeat(2, 1fr); gap:16px; }

.card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding:18px;
}
.card.border-gold{
  border-color: rgba(212,175,55,.35);
}
.card h3{ margin:0 0 8px; }
.card p{ margin:0; color: var(--muted); }

.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border-radius:999px;
  border:1px solid rgba(212,175,55,.35);
  background: rgba(212,175,55,.10);
  color: var(--text);
  font-weight:800; font-size:12px;
}

/* =========================
   STEPS
========================= */
.steps{
  display:grid; grid-template-columns: repeat(4, 1fr); gap:14px;
}
.step{
  border-radius: var(--radius);
  padding:16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}
.step .n{
  width:36px; height:36px; border-radius:12px;
  display:grid; place-items:center;
  background: rgba(212,175,55,.16);
  border:1px solid rgba(212,175,55,.35);
  color: rgba(255,255,255,.95);
  font-weight:900;
}
.step h4{ margin:10px 0 6px; }
.step p{ margin:0; color: var(--muted); font-size:14px; }

/* =========================
   CTA
========================= */
.cta{
  border-radius: calc(var(--radius) + 6px);
  padding:22px;
  background:
    radial-gradient(700px 240px at 20% 0%, rgba(212,175,55,.22), transparent 60%),
    rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap;
}

/* =========================
   PAGE TITLE / FORMS
========================= */
.page-title{
  padding:46px 0 18px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(900px 260px at 30% 0%, rgba(212,175,55,.14), transparent 60%);
}

.form{ display:grid; gap:12px; }
input, textarea{
  width:100%;
  padding:12px 14px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: var(--text);
  outline:none;
}
textarea{ min-height:120px; resize:vertical; }
input:focus, textarea:focus{
  border-color: rgba(212,175,55,.45);
}

/* =========================
   RESPONSIVE NAV / LAYOUT
========================= */
@media (max-width: 900px){
  .hero{ background-attachment: scroll, scroll, scroll; padding:90px 0 60px; }
  .hero-grid{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .menu{ display:none; }
  .mobile-toggle{ display:inline-flex; }
  .mobile-menu{
    display:none;
    padding: 0 0 14px;
  }
  .mobile-menu a{
    display:block;
    padding:12px 10px;
    color: var(--muted);
    font-weight:700;
    border-radius: 12px;
  }
  .mobile-menu a:hover{ background: rgba(255,255,255,.06); color: var(--text); }
}

/* =====================================================
   PREMIUM ADD-ON (SOBRE COM FOTO + VALORES + ASSINATURA)
===================================================== */

/* animação suave */
.reveal{
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp .7s ease forwards;
}
.reveal.d2{ animation-delay: .08s; }
.reveal.d3{ animation-delay: .16s; }
.reveal.d4{ animation-delay: .24s; }

@keyframes fadeUp{
  to{ opacity:1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; animation:none; }
}

.aboutHero{
  display:grid;
  grid-template-columns: 420px 1fr;
  gap: 38px;
  align-items: center;
}
@media (max-width: 900px){
  .aboutHero{ grid-template-columns: 1fr; }
}

/* moldura premium da foto */
.photoFrame{
  position:relative;
  border-radius:22px;
  padding:6px;
  background:
    linear-gradient(135deg,
      rgba(212,175,55,.65),
      rgba(212,175,55,.18),
      rgba(255,255,255,.08)
    );
  box-shadow:
    0 30px 70px rgba(0,0,0,.55),
    0 0 0 1px rgba(212,175,55,.25);
  overflow:hidden;
}
.photoFrame::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:22px;
  background:
    radial-gradient(600px 200px at 20% 0%, rgba(212,175,55,.25), transparent 60%);
  pointer-events:none;
}
.photoFrame img{
  width:100%;
  display:block;
  aspect-ratio:3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: 18px;
  filter: contrast(1.05) brightness(1.02);
}

.aboutMeta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin: 12px 0 16px;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .2px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
}
.pill.gold{
  border-color: rgba(212,175,55,.40);
  background: rgba(212,175,55,.12);
}

.signature{
  margin-top: 14px;
  display:flex;
  align-items:baseline;
  gap:10px;
  flex-wrap:wrap;
}
.sigName{
  font-family: "Georgia", "Times New Roman", serif;
  font-style: italic;
  font-size: 22px;
  letter-spacing: .2px;
  color: rgba(212,175,55,.95);
}
.sigRole{
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.valuesGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px){
  .valuesGrid{ grid-template-columns: 1fr; }
}
.valueCard{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 18px;
}
.valueCard h4{
  margin:0 0 8px;
  font-size: 15px;
}
.valueCard p{
  margin:0;
  color: var(--muted);
  font-size: 14px;
}

/* =========================
   FOOTER PRO (Forttway + Social)
========================= */
.footerPro{
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  background: rgba(255,255,255,.02);
}

.footerProGrid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  flex-wrap:wrap;
}

.footerMuted{ color: var(--muted); }

.footerCenter{
  text-align:center;
  display:flex;
  flex-direction:column;
  gap:4px;
}

.footerCompany{
  color: var(--text);
  letter-spacing:.2px;
}

.footerSocial{
  display:flex;
  gap:10px;
  align-items:center;
}

.socialBtn{
  width:40px;
  height:40px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
  transition: transform .15s ease, border .2s ease, background .2s ease;
}

.socialBtn:hover{
  transform: translateY(-1px) scale(1.06);
  border-color: rgba(212,175,55,.40);
  background: rgba(212,175,55,.12);
}

/* =========================
   HOVER PREMIUM: retângulos/quadrados aumentam
========================= */
.card,
.valueCard,
.step,
.hero-card,
.trust span,
.pill,
.cta,
.socialBtn{
  transition: transform .16s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.card:hover,
.valueCard:hover,
.step:hover,
.hero-card:hover,
.trust span:hover,
.pill:hover{
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 35px rgba(0,0,0,.25);
  border-color: rgba(212,175,55,.35);
}

.cta:hover{
  transform: translateY(-1px) scale(1.01);
  border-color: rgba(212,175,55,.25);
}

/* mobile: remove hover */
@media (max-width: 900px){
  .card:hover,
  .valueCard:hover,
  .step:hover,
  .hero-card:hover,
  .trust span:hover,
  .pill:hover,
  .cta:hover{
    transform: none;
    box-shadow: none;
  }
}