/* ===================================================================
   SYTS — Design System  |  Clean Tech Modern
   Paleta derivada do logo SYTS (azul profundo → ciano)
   =================================================================== */

/* ── Self-hosted Inter font (sem Google Fonts — conformidade LGPD) ──────── */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-latin-400-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/inter-latin-500-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter-latin-600-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter-latin-700-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/inter-latin-800-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* Brand */
  --deep:      #0C5AA6;
  --blue:      #1273C7;
  --cyan:      #16D6EA;
  --cyan-soft: #5fe6f4;
  --ink:       #0A1A2E;
  --ink-soft:  #2b3a4d;
  --muted:     #5d6b7c;
  --line:      #e6ebf1;
  --bg:        #ffffff;
  --bg-alt:    #f5f8fc;
  --bg-deep:   #081627;

  --grad:      linear-gradient(135deg, #0C5AA6 0%, #1488CF 55%, #16D6EA 100%);
  --grad-soft: linear-gradient(135deg, #f0f7ff 0%, #eafbfe 100%);

  --radius:    18px;
  --radius-sm: 12px;
  --shadow:    0 10px 40px -12px rgba(12, 90, 166, 0.18);
  --shadow-lg: 0 30px 70px -20px rgba(10, 26, 46, 0.30);

  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --maxw: 1180px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.02em; color: var(--ink); font-weight: 800; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.3rem; }
p  { color: var(--ink-soft); }

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

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: 999px;
  font-weight: 700; font-size: 0.98rem; cursor: pointer;
  border: 1px solid transparent; transition: all .25s ease; white-space: nowrap;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 12px 28px -10px rgba(18,115,199,.6); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -12px rgba(18,115,199,.7); }
.btn-ghost { background: rgba(255,255,255,.08); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-light { background: #fff; color: var(--deep); }
.btn-light:hover { transform: translateY(-2px); }
.btn-outline-light { border-color: rgba(255,255,255,.4); color:#fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }
.btn .arr { transition: transform .25s ease; }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 6px 24px -16px rgba(10,26,46,.4); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; }
.brand svg { width: 38px; height: 38px; }
.brand .word { font-size: 1.45rem; letter-spacing: .04em; }
.brand .word b { color: var(--deep); }
.brand .tag { display:block; font-size:.6rem; letter-spacing:.22em; color:var(--muted); font-weight:600; margin-top:-3px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 15px; border-radius: 9px; font-weight: 600; font-size: .96rem;
  color: var(--ink-soft); transition: all .2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--deep); background: var(--bg-alt); }
.nav-cta { margin-left: 10px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(64px, 9vw, 120px) 0 clamp(60px, 8vw, 100px); overflow: hidden; }
.hero::before {
  content:""; position:absolute; inset:0; z-index:-2;
  background: radial-gradient(900px 500px at 85% -10%, rgba(22,214,234,.16), transparent 60%),
              radial-gradient(800px 500px at 5% 20%, rgba(18,115,199,.12), transparent 55%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--deep); background: var(--grad-soft); border: 1px solid var(--line);
  padding: 7px 15px; border-radius: 999px; margin-bottom: 22px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); }
.hero h1 { margin-bottom: 20px; }
.hero .lead { font-size: 1.18rem; max-width: 540px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; margin-top: 44px; flex-wrap: wrap; }
.hero-stats .num { font-size: 2rem; font-weight: 800; }
.hero-stats .lbl { font-size: .85rem; color: var(--muted); }

/* Hero visual */
.hero-visual { position: relative; }
.hero-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 26px; position: relative;
}
.hero-card .hc-head { display:flex; align-items:center; gap:10px; margin-bottom:18px; }
.hero-card .hc-dot { width:10px;height:10px;border-radius:50%; }
.hero-bars { display: grid; gap: 14px; }
.hero-bar { display: grid; grid-template-columns: 132px 1fr auto; align-items: center; gap: 12px; font-size:.9rem; }
.hero-bar .track { height: 9px; background: var(--bg-alt); border-radius: 999px; overflow: hidden; }
.hero-bar .fill { height: 100%; background: var(--grad); border-radius: 999px; }
.float-badge {
  position: absolute; background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow); padding: 13px 16px; display: flex; align-items: center; gap: 11px; font-weight: 700; font-size:.9rem;
}
.float-badge .ic { width: 36px; height: 36px; border-radius: 10px; background: var(--grad-soft); display: grid; place-items: center; color: var(--deep); }
.fb-1 { top: -22px; right: -16px; }
.fb-2 { bottom: -24px; left: -18px; }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 8vw, 110px) 0; }
.section.alt { background: var(--bg-alt); }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head .kicker { color: var(--deep); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .8rem; display:block; margin-bottom: 12px; }
.section-head p { font-size: 1.1rem; margin-top: 14px; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; transition: all .3s ease; position: relative; overflow: hidden;
}
.card::after { content:""; position:absolute; left:0; top:0; height:4px; width:100%; background:var(--grad); transform:scaleX(0); transform-origin:left; transition:transform .3s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::after { transform: scaleX(1); }
.card .ic {
  width: 56px; height: 56px; border-radius: 14px; background: var(--grad-soft);
  display: grid; place-items: center; color: var(--deep); margin-bottom: 20px;
}
.card .ic svg { width: 28px; height: 28px; }
.card .num-tag { position:absolute; top: 26px; right: 28px; font-weight: 800; font-size: 1.1rem; color: var(--line); }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .98rem; }
.card .who { margin-top: 16px; font-size: .85rem; color: var(--muted); }
.card .who b { color: var(--ink-soft); }
.card .more { margin-top: 18px; display: inline-flex; align-items:center; gap:6px; color: var(--deep); font-weight: 700; font-size: .9rem; }

/* ---------- Feature / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.rev .split-media { order: 2; }
.feature-list { display: grid; gap: 18px; margin-top: 26px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .ck { flex: 0 0 26px; width: 26px; height: 26px; border-radius: 8px; background: var(--grad-soft); color: var(--deep); display: grid; place-items: center; margin-top: 2px; }
.feature-list b { display: block; color: var(--ink); }
.feature-list span { color: var(--muted); font-size: .95rem; }

.media-panel { background: var(--grad); border-radius: var(--radius); padding: 40px; color: #fff; box-shadow: var(--shadow-lg); }
.media-panel.dark { background: var(--bg-deep); }

/* ---------- Arms (two-arm split) ---------- */
.arms { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.arm {
  border-radius: var(--radius); padding: 38px 34px; border: 1px solid var(--line);
  position: relative; overflow: hidden; transition: transform .3s ease;
}
.arm:hover { transform: translateY(-5px); }
.arm.commercial { background: var(--grad); color: #fff; }
.arm.internal { background: var(--bg-deep); color: #eaf4ff; }
.arm .arm-tag { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; opacity: .85; }
.arm h3 { color: #fff; font-size: 1.6rem; margin: 10px 0 12px; }
.arm p { color: rgba(255,255,255,.85); }
.arm .arm-foot { margin-top: 22px; font-size: .9rem; font-weight: 600; display:inline-flex; gap:7px; align-items:center; }
.arm.internal .pill { display:inline-block; font-size:.7rem; letter-spacing:.1em; text-transform:uppercase; background:rgba(22,214,234,.18); color:var(--cyan-soft); padding:5px 12px; border-radius:999px; margin-bottom:16px; font-weight:700; }

/* ---------- Stats band ---------- */
.band { background: var(--bg-deep); color: #fff; }
.band .stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.band .num { font-size: clamp(2rem,3.5vw,2.8rem); font-weight: 800; }
.band .num.gradient-text { background: linear-gradient(135deg,#5fe6f4,#16D6EA); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.band .lbl { color: rgba(255,255,255,.7); font-size: .92rem; margin-top: 6px; }

/* ---------- Logos / players ---------- */
.players { display:flex; flex-wrap:wrap; gap: 14px; justify-content:center; }
.player-chip { border:1px solid var(--line); background:#fff; border-radius:999px; padding:10px 22px; font-weight:700; color:var(--ink-soft); font-size:.95rem; }

/* ---------- CTA ---------- */
.cta-band { background: var(--grad); color:#fff; border-radius: 24px; padding: clamp(40px,5vw,64px); text-align:center; box-shadow: var(--shadow-lg); }
.cta-band h2 { color:#fff; max-width: 680px; margin: 0 auto 14px; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 560px; margin: 0 auto 28px; }

/* ---------- Footer ---------- */
.site-footer { background: #ffffff; color: #2d3a4a; padding: 64px 0 30px; border-top: 1px solid transparent; border-image: linear-gradient(90deg, transparent 0%, #0a1a2e 25%, #16d6ea 50%, #0a1a2e 75%, transparent 100%) 1; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.site-footer .brand .word, .site-footer .brand .word b { color: var(--ink); }
.site-footer p { color: #4a5a6a; font-size: .94rem; margin-top: 16px; max-width: 300px; }
.footer-col h4 { color: #0a1a2e; font-size: .95rem; margin-bottom: 16px; letter-spacing:.02em; }
.footer-col a { display: block; color: #4a5a6a; font-size: .92rem; padding: 5px 0; transition: color .2s; }
.footer-col a:hover { color: var(--cyan-soft); }
.footer-bottom { border-top: 1px solid rgba(0,0,0,.1); margin-top: 48px; padding-top: 24px; display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; font-size:.85rem; color:#6a7d90; }

/* ---------- Page hero (interior) ---------- */
.page-hero { padding: clamp(56px,7vw,96px) 0 clamp(40px,5vw,64px); background: var(--grad-soft); border-bottom:1px solid var(--line); position:relative; overflow:hidden; }
.page-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(700px 360px at 90% 0%, rgba(22,214,234,.14), transparent 60%); }
.page-hero .container { position: relative; }
.breadcrumb { font-size:.85rem; color:var(--muted); margin-bottom:18px; }
.breadcrumb a:hover { color: var(--deep); }
.page-hero h1 { margin-bottom: 16px; max-width: 760px; }
.page-hero p { font-size: 1.15rem; max-width: 620px; }

/* ---------- Service detail blocks ---------- */
.svc-block { display:grid; grid-template-columns: 64px 1fr; gap: 26px; padding: 40px 0; border-bottom: 1px solid var(--line); }
.svc-block:last-child { border-bottom: 0; }
.svc-block .svc-ic { width: 64px; height: 64px; border-radius: 16px; background: var(--grad); color:#fff; display:grid; place-items:center; box-shadow: var(--shadow); }
.svc-block .line-no { color: var(--deep); font-weight:700; font-size:.8rem; letter-spacing:.12em; text-transform:uppercase; }
.svc-block h3 { font-size: 1.5rem; margin:6px 0 12px; }
.svc-block .deliverables { display:flex; flex-wrap:wrap; gap:8px; margin: 16px 0; }
.svc-block .tag { background: var(--bg-alt); border:1px solid var(--line); border-radius:999px; padding:6px 14px; font-size:.82rem; font-weight:600; color:var(--ink-soft); }
.svc-block .client { font-size:.92rem; color:var(--muted); }
.svc-block .client b { color: var(--ink-soft); }

/* ---------- About ---------- */
.profile { display:grid; grid-template-columns: 300px 1fr; gap: 48px; align-items:start; }
.profile-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); text-align:center; position:sticky; top:100px; }
.avatar { width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 18px; background: var(--grad); display:grid; place-items:center; color:#fff; font-size:2.4rem; font-weight:800; }
.profile-card h3 { margin-bottom: 4px; }
.profile-card .role { color: var(--muted); font-size:.92rem; margin-bottom: 18px; }
.profile-card .credentials { display:grid; gap:10px; text-align:left; }
.profile-card .credentials li { display:flex; gap:10px; font-size:.88rem; color:var(--ink-soft); }
.profile-card .credentials .ck { color: var(--deep); flex:0 0 auto; }
.prose h3 { margin: 28px 0 12px; }
.prose p { margin-bottom: 16px; }
.highlight-box { background: var(--grad-soft); border:1px solid var(--line); border-left: 4px solid var(--cyan); border-radius: var(--radius-sm); padding: 24px 26px; margin: 24px 0; }
.highlight-box b { color: var(--deep); }
.tag-cloud { display:flex; flex-wrap:wrap; gap:8px; margin: 14px 0 8px; }
.tag-cloud .tag { background: var(--bg-alt); border:1px solid var(--line); border-radius:999px; padding:6px 14px; font-size:.82rem; font-weight:600; color:var(--ink-soft); }
.pull-quote { font-size: 1.3rem; font-style: italic; color: var(--deep); border-left: 4px solid var(--cyan); padding-left: 24px; margin: 8px 0; line-height: 1.6; max-width: 760px; }
.pull-quote cite { display:block; margin-top:14px; font-size:.85rem; font-style:normal; font-weight:700; letter-spacing:.05em; text-transform:uppercase; color: var(--muted); }

/* ---------- Sobre — cards SYTS Finance / Além dos negócios ---------- */
.sobre-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }
.sobre-card { border-radius: var(--radius); padding: 40px; display: flex; flex-direction: column; box-shadow: var(--shadow-lg); }
.sobre-card--blue { background: #c8e3ff; border: 1px solid rgba(18,115,199,.28); }
.cred-logo { display: block; height: auto; width: auto; max-height: 40px; max-width: 120px; object-fit: contain; }

/* ---------- Finance page ---------- */
.finance-hero { background: #1a1f2e; color:#eaf4ff; }
.finance-hero h1, .finance-hero .gradient-text { color:#fff; }
.finance-hero p { color:#a9c0d8; }
.finance-hero .breadcrumb, .finance-hero .breadcrumb a { color:#7d96b3; }
.finance-hero .eyebrow { background: rgba(22,214,234,.12); border-color: rgba(22,214,234,.25); color: var(--cyan-soft); }
.note-internal { background: rgba(22,214,234,.08); border:1px solid rgba(22,214,234,.2); color:#bcd6ef; border-radius: var(--radius-sm); padding: 18px 22px; font-size:.95rem; display:flex; gap:12px; align-items:flex-start; }
.note-internal .ic { color: var(--cyan); flex:0 0 auto; }

/* ---------- Contact ---------- */
.contact-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items:start; }
.form-field { margin-bottom: 18px; }
.form-field label { display:block; font-weight:600; font-size:.9rem; margin-bottom:7px; color:var(--ink); }
.form-field input, .form-field select, .form-field textarea {
  width:100%; padding: 13px 16px; border:1px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 1rem; color: var(--ink); background:#fff; transition: border-color .2s, box-shadow .2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline:none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(18,115,199,.12);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.contact-info-card { background: var(--bg-deep); color:#fff; border-radius: var(--radius); padding: 36px; }
.contact-info-card h3 { color:#fff; margin-bottom: 20px; }
.contact-info-card .ci-row { display:flex; gap:14px; align-items:flex-start; padding: 14px 0; border-bottom:1px solid rgba(255,255,255,.1); }
.contact-info-card .ci-row:last-child { border-bottom:0; }
.contact-info-card .ci-ic { width:42px;height:42px;border-radius:11px;background:rgba(22,214,234,.16); color:var(--cyan-soft); display:grid;place-items:center; flex:0 0 auto; }
.contact-info-card .ci-row b { display:block; color:#fff; font-size:.95rem; }
.contact-info-card .ci-row span { color:#a9c0d8; font-size:.9rem; }
.form-note { font-size:.82rem; color:var(--muted); margin-top:6px; }
.success-msg { background:#e8fbf0; border:1px solid #b6e9cd; color:#137a47; padding:14px 18px; border-radius:var(--radius-sm); margin-top:16px; display:none; }
.success-msg.show { display:block; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Brand logo (image) ---------- */
.brand-logo { height: 80px; width: auto; display: block; }
.brand-logo--footer { height: 96px; }
.brand.brand--icon svg { width: 38px; height: 38px; }

/* ---------- Dark header (SYTS Finance) ---------- */
.site-header--dark { background: #000000; border-bottom: 1px solid rgba(255,255,255,.12); }
.site-header--dark .nav-links a { color: #c4d3e4; }
.site-header--dark .nav-links a:hover, .site-header--dark .nav-links a.active { color: #fff; background: rgba(255,255,255,.08); }
.site-header--dark .nav-toggle span { background: #fff; }

/* ---------- Footer social + legal ---------- */
.social-link { display:inline-flex; align-items:center; gap:9px; margin-top:18px; color:#93a6bd; font-weight:600; font-size:.92rem; transition:color .2s; }
.social-link:hover { color: var(--cyan-soft); }
.social-link svg { width:34px; height:34px; padding:8px; border-radius:9px; background:rgba(255,255,255,.06); transition:background .2s; }
.social-link:hover svg { background:rgba(22,214,234,.16); }
.footer-email { display:block; margin-top:14px; color:#4a5a6a; font-size:.92rem; }
.footer-email:hover { color: var(--cyan-soft); }
.footer-legal-links { display:flex; gap:18px; }
.footer-legal-links a:hover { color: var(--cyan-soft); }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 200;
  max-width: 760px; margin: 0 auto;
  background: var(--bg-deep); color: #dceaf7; border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 20px 24px; display: none; align-items: center; gap: 20px; flex-wrap: wrap;
}
.cookie-banner.show { display: flex; }
.cookie-banner p { color:#bcd1e6; font-size:.92rem; margin:0; flex:1 1 320px; }
.cookie-banner a { color: var(--cyan-soft); text-decoration: underline; }
.cookie-actions { display:flex; gap:10px; margin-left:auto; }
.btn-cookie { padding: 10px 22px; font-size:.9rem; }
.cookie-banner .btn-ghost { color:#dceaf7; border-color: rgba(255,255,255,.25); background: transparent; }
.cookie-banner .btn-ghost:hover { border-color: var(--cyan); color:#fff; }

/* ---------- Legal pages ---------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal .updated { color: var(--muted); font-size:.9rem; margin-bottom: 28px; }
.legal h2 { font-size: 1.4rem; margin: 38px 0 12px; }
.legal h3 { font-size: 1.08rem; margin: 24px 0 8px; }
.legal p { margin-bottom: 14px; }
.legal ul.bullets { margin: 0 0 16px; padding-left: 0; display:grid; gap:8px; }
.legal ul.bullets li { position: relative; padding-left: 26px; color: var(--ink-soft); }
.legal ul.bullets li::before { content:""; position:absolute; left:6px; top:10px; width:8px; height:8px; border-radius:2px; background: var(--grad); transform: rotate(45deg); }
.legal a { color: var(--deep); text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid, .split, .split.rev .split-media, .profile, .contact-grid, .sobre-cards-grid { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
  .arms { grid-template-columns: 1fr; }
  .band .stats { grid-template-columns: repeat(2,1fr); gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-visual { max-width: 520px; }
  /* Sobre — tablet */
  .profile { gap: 32px; }
  .profile-card { position: static; text-align: left; max-width: 640px; margin: 0 auto; width: 100%; }
  .profile-card .btn { font-size: .92rem; }
  /* badges em 2 colunas aproveitam a largura cheia do card no tablet */
  .cred-badge-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cred-badge--highlight { grid-column: 1 / -1; }
  .sobre-card { padding: 30px; }
  .sobre-card h2 { font-size: 1.5rem; }
  .sobre-cards-grid { gap: 24px; }
}
@media (max-width: 860px) {
  .nav-links {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--line); padding: 16px 24px 24px; gap: 4px;
    transform: translateY(-130%); transition: transform .35s ease; box-shadow: var(--shadow);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 13px 12px; }
  .nav-cta { margin: 8px 0 0; justify-content:center; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .svc-block { grid-template-columns: 1fr; gap: 14px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  body { font-size: 16px; }
  .site-header--dark .nav-links { background: var(--bg-deep); border-bottom-color: rgba(255,255,255,.08); }
  .site-header--dark .nav-links a { color: #c4d3e4; }
  /* Sobre — tablet pequeno / mobile largo */
  .sobre-card { padding: 26px; }
  .sobre-card h2 { font-size: 1.35rem; }
  .sobre-cards-grid { gap: 20px; }
  .profile-card { padding: 22px; }
  .cred-logo { max-height: 32px; max-width: 100px; }
  .highlight-box { padding: 18px 20px; }
  .pull-quote { font-size: 1.12rem; }
  .page-hero h1 { font-size: clamp(1.5rem, 5vw, 2.2rem); }
  .page-hero p { font-size: 1.05rem; }
}
@media (max-width: 600px) {
  /* badges voltam a 1 coluna quando o card fica estreito */
  .cred-badge-grid { grid-template-columns: 1fr; }
  .cred-badge--highlight { grid-column: auto; }
  .profile { gap: 26px; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .section { padding: 52px 0; }
  .pull-quote { font-size: 1rem; padding-left: 16px; }
  .tag-cloud .tag, .p-card-tags .tag { font-size: .74rem; padding: 5px 11px; }
  .hero-card { padding: 20px; }
  .float-badge { font-size: .78rem; padding: 10px 12px; gap: 8px; }
  .float-badge .ic { width: 30px; height: 30px; }
  .fb-1 { top: -14px; right: -6px; }
  .fb-2 { bottom: -16px; left: -6px; }
  .profile-monogram { width: 44px; height: 44px; font-size: .95rem; }
  .cookie-banner { left: 12px; right: 12px; padding: 16px 18px; flex-direction: column; align-items: stretch; gap: 14px; }
  .cookie-actions { margin-left: 0; justify-content: flex-end; }
  .contact-info-card { padding: 26px 22px; }
  /* Sobre — smartphone */
  .sobre-card { padding: 22px 18px; border-radius: var(--radius-sm); }
  .sobre-cards-grid { gap: 16px; }
  .sobre-card h2 { font-size: 1.3rem; }
  .cred-logo { max-height: 28px; max-width: 90px; }
  .cred-badge { padding: 11px 13px; gap: 11px; }
  .cred-badge b { font-size: .84rem; }
  .profile-card { padding: 20px 18px; }
  .profile-id { gap: 11px; margin-bottom: 16px; padding-bottom: 16px; }
  .band .stats { gap: 28px 20px; }
  .band .num { font-size: 1.8rem; }
}

/* ---------- Hero timeline (substitui barras fictícias) ---------- */
.hero-timeline { display: grid; gap: 0; }
.ht-item { display: grid; grid-template-columns: 42px 18px 1fr; gap: 0 12px; align-items: flex-start; padding-bottom: 18px; position: relative; }
.ht-item:last-child { padding-bottom: 0; }
.ht-item::before { content:""; position:absolute; left: 53px; top: 9px; bottom: -9px; width: 2px; background: var(--line); }
.ht-item:last-child::before { display: none; }
.ht-year { font-size: .72rem; font-weight: 800; color: var(--deep); letter-spacing: .04em; padding-top: 5px; text-align: right; }
.ht-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line); border: 2px solid var(--deep); margin-top: 6px; flex-shrink: 0; position: relative; z-index: 1; }
.ht-dot--active { background: var(--cyan); border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(22,214,234,.2); }
.ht-content b { display: block; font-size: .88rem; color: var(--ink); font-weight: 700; line-height: 1.3; }
.ht-content span { font-size: .78rem; color: var(--muted); }

/* ---------- Profile card — credenciais institucionais ---------- */
.profile-id { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.profile-monogram { width: 52px; height: 52px; border-radius: 14px; background: var(--grad); display: grid; place-items: center; color: #fff; font-size: 1.1rem; font-weight: 800; flex-shrink: 0; }
.cred-badge-grid { display: grid; gap: 10px; margin-bottom: 20px; }
.cred-badge { display: flex; align-items: flex-start; gap: 12px; background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 14px; transition: border-color .2s; }
.cred-badge:hover { border-color: var(--cyan-soft); }
.cred-badge--highlight { background: linear-gradient(135deg, #eef6ff, #eafbfe); border-color: rgba(12,90,166,.15); }
.cred-badge-icon { font-size: 1.2rem; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.cred-badge b { display: block; font-size: .85rem; color: var(--ink); font-weight: 700; text-align: left; }
.cred-badge span { font-size: .76rem; color: var(--muted); text-align: left; }

/* ---------- Form error message ---------- */
.error-msg { background: #fff0f0; border: 1px solid #f5c6cb; color: #b02a37; padding: 14px 18px; border-radius: var(--radius-sm); margin-top: 16px; display: none; font-size: .92rem; }
.error-msg.show { display: block; }
