
:root {
  --bg: #0a0a0a;
  --bg-alt: #1D3B70;
  --bg-deep: #0d1f3d;
  --fg: #f5f1e6;
  --fg-muted: #b8b0a0;
  --fg-dim: #8a7d56;
  --accent: #c9a961;
  --line: rgba(201, 169, 97, 0.18);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --container: 1280px;
  --gutter: 56px;
  --gutter-mobile: 28px;
  --gutter-tablet: 40px;
}

@font-face { font-family: 'Inter'; font-weight: 400; font-display: swap; src: url('../fonts/inter-400.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-weight: 500; font-display: swap; src: url('../fonts/inter-500.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-weight: 700; font-display: swap; src: url('../fonts/inter-700.woff2') format('woff2'); }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
@media (max-width: 1024px) { .container { padding: 0 var(--gutter-tablet); } }
@media (max-width: 600px) { .container { padding: 0 var(--gutter-mobile); } }

.eyebrow { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.h1 { font-family: var(--serif); font-size: clamp(28px, 5.4vw, 64px); line-height: 1.05; letter-spacing: -1px; font-weight: 400; overflow-wrap: break-word; hyphens: auto; }
.h1 em { color: var(--accent); font-weight: 500; }
.h2 { font-family: var(--serif); font-size: clamp(32px, 4.5vw, 48px); line-height: 1.1; letter-spacing: -1px; font-weight: 400; }
.h2 em { color: var(--accent); font-style: italic; }
.h3 { font-family: var(--serif); font-size: clamp(20px, 2.2vw, 26px); line-height: 1.25; font-weight: 500; }
.lead { font-size: 18px; line-height: 1.7; color: var(--fg-muted); max-width: 500px; }
.divider { width: 64px; height: 1px; background: var(--accent); margin: 32px 0; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 16px 28px; font-size: 11px; letter-spacing: 2px; font-weight: 700; text-transform: uppercase; transition: transform .2s ease, background .2s ease; }
.btn-primary { background: var(--accent); color: var(--bg); box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.45); }
.btn-primary:hover { transform: translateY(-2px); background: #d8b76d; box-shadow: 0 12px 36px -8px rgba(201, 169, 97, 0.55); }
.btn-secondary { border: 1px solid var(--bg-alt); background: rgba(29, 59, 112, 0.25); color: var(--fg); }
.btn-secondary:hover { background: rgba(29, 59, 112, 0.45); transform: translateY(-2px); box-shadow: 0 12px 36px -10px rgba(29, 59, 112, 0.6); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

.agencia { will-change: transform; }
.agencia:hover { box-shadow: 0 20px 60px -20px rgba(201, 169, 97, 0.25); }
.stat-card { transition: box-shadow .6s ease; }
.stat-card:hover { box-shadow: 0 0 80px -20px rgba(201, 169, 97, 0.35); }
.pilar:hover { box-shadow: 0 16px 40px -16px rgba(201, 169, 97, 0.25); }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(10,10,10,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; padding-bottom: 22px; }
.brand { display: inline-flex; align-items: center; transition: opacity .2s ease; }
.brand:hover { opacity: 0.85; }
.brand img { display: block; height: 56px; width: auto; }
@media (max-width: 600px) { .brand img { height: 42px; } }
.nav-links { display: flex; gap: 36px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--fg-muted); }
.nav-links a:hover { color: var(--accent); }
.btn-sm { padding: 11px 20px; font-size: 10px; }
@media (max-width: 768px) { .nav-links { display: none; } }
@media (max-width: 600px) { .site-header .btn { display: none; } }

.hero { position: relative; overflow: hidden; min-height: 88vh; display: flex; flex-direction: column; justify-content: center; }
.hero-bg { position: absolute; inset: 0; z-index: 0; display: block; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0.55) 35%, rgba(10,10,10,0.85) 100%); pointer-events: none; }
.hero-content { position: relative; z-index: 2; padding-top: 140px; padding-bottom: 100px; max-width: 880px; }
.hero-content .eyebrow { margin-bottom: 28px; }
.hero-content .h1 { color: var(--fg); text-shadow: 0 2px 24px rgba(0,0,0,0.5); }
.hero-lead { color: var(--fg); max-width: 620px; font-size: 19px; text-shadow: 0 1px 12px rgba(0,0,0,0.6); margin-top: 28px; }
.hero-ctas { display: flex; gap: 14px; margin-top: 44px; flex-wrap: wrap; }
.hero-strip { position: relative; z-index: 2; border-top: 1px solid var(--line); padding-top: 22px; padding-bottom: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-family: var(--sans); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--fg); font-weight: 600; background: rgba(10,10,10,0.6); backdrop-filter: blur(6px); }
@media (max-width: 900px) {
  .hero { min-height: 0; }
  .hero-content { padding-top: 72px; padding-bottom: 56px; }
  .hero-lead { font-size: 16px; margin-top: 22px; }
  .hero-content .eyebrow { margin-bottom: 20px; }
  .hero-ctas { margin-top: 32px; gap: 10px; }
  .hero-ctas .btn { padding: 14px 22px; font-size: 11px; }
  .hero-strip { justify-content: center; flex-direction: column; align-items: center; text-align: center; font-size: 10px; gap: 10px; padding-top: 18px; padding-bottom: 18px; }
  .hero-strip > span:nth-child(even) { display: none; }
}
@media (max-width: 600px) {
  .hero-content { padding-top: 56px; padding-bottom: 44px; }
}

.section { padding: 120px 0; position: relative; }
.section-head { margin-bottom: 64px; max-width: 720px; }
.section-head .eyebrow { margin-bottom: 18px; }

.section-pilares { background: linear-gradient(180deg, var(--bg) 0%, #0d0d0d 100%); border-top: 1px solid var(--line); }
.pilares-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.pilar { padding: 32px 24px; border: 1px solid var(--line); background: rgba(29,59,112,0.06); transition: border-color .25s ease, transform .25s ease; }
.pilar:hover { border-color: var(--accent); transform: translateY(-4px); }
.pilar-num { font-family: var(--serif); font-style: italic; font-size: 28px; color: var(--accent); margin-bottom: 18px; line-height: 1; }
.pilar h3 { margin-bottom: 12px; }
.pilar p { font-size: 15px; line-height: 1.7; color: var(--fg-muted); }
@media (max-width: 1024px) { .pilares-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pilares-grid { grid-template-columns: 1fr; } .section { padding: 80px 0; } }

.section-publicos { background: var(--bg-deep); }
.publicos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.publico { padding: 40px 32px; background: rgba(245,241,230,0.03); border-left: 2px solid var(--accent); display: flex; flex-direction: column; }
.publico-tag { font-family: var(--sans); font-size: 11px; letter-spacing: 3px; color: var(--accent); margin-bottom: 28px; }
.publico h3 { margin-bottom: 16px; }
.publico p { font-size: 15px; line-height: 1.7; color: var(--fg-muted); margin-bottom: 28px; flex: 1; }
.publico-cta { font-family: var(--sans); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.publico-cta:hover { color: var(--fg); }
@media (max-width: 900px) { .publicos-grid { grid-template-columns: 1fr; gap: 20px; } }

.section-sobre { border-top: 1px solid var(--line); }
.sobre-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: center; }
.stat-card { padding: 48px 36px; border: 1px solid var(--line); text-align: center; background: linear-gradient(180deg, rgba(201,169,97,0.08), transparent); }
.stat-num { font-family: var(--serif); font-size: clamp(80px, 12vw, 140px); line-height: 1; color: var(--accent); font-weight: 400; }
.stat-num span { font-size: 0.5em; vertical-align: super; }
.stat-label { font-family: var(--sans); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--fg-muted); margin-top: 18px; line-height: 1.6; }
.stat-label em { color: var(--accent); font-style: normal; font-weight: 700; }
@media (max-width: 900px) { .sobre-grid { grid-template-columns: 1fr; gap: 48px; } }

.section-form { background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 100%); }
.form-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.form-right { display: flex; flex-direction: column; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field span { font-family: var(--sans); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--fg-dim); font-weight: 600; }
.field input { font-family: var(--sans); font-size: 15px; background: transparent; border: 0; border-bottom: 1px solid var(--line); padding: 12px 0; color: var(--fg); transition: border-color .2s; }
.field input:focus { outline: none; border-bottom-color: var(--accent); }
.field input[type="file"] { padding: 14px 0; font-size: 13px; color: var(--fg-muted); }
.consent { display: flex; gap: 12px; font-size: 12px; line-height: 1.55; color: var(--fg-muted); margin-top: 8px; cursor: pointer; }
.consent input { margin-top: 4px; accent-color: var(--accent); }
.form-right .btn { align-self: flex-start; margin-top: 12px; }
.form-status { font-size: 13px; min-height: 22px; margin-top: 8px; }
.form-status.ok { color: var(--accent); }
.form-status.err { color: #d99090; }
@media (max-width: 900px) { .form-grid { grid-template-columns: 1fr; gap: 48px; } }

.site-footer { background: #050505; border-top: 1px solid var(--line); padding: 80px 0 24px; color: var(--fg-muted); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-col h3 { font-family: var(--sans); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; font-weight: 700; }
.footer-col p { font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
.footer-col a { color: var(--fg-muted); border-bottom: 1px solid transparent; }
.footer-col a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.ami { font-family: var(--sans); font-size: 10px; letter-spacing: 2px; color: var(--fg-dim); font-weight: 700; }
.footer-col strong { color: var(--fg); font-weight: 700; font-size: 13px; }
.social { display: inline-flex; gap: 8px; margin-left: 12px; vertical-align: middle; }
.social a { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border: 1px solid var(--line); color: var(--fg-muted); border-radius: 4px; transition: color .2s, border-color .2s, background .2s; }
.social a:hover { color: var(--accent); border-color: var(--accent); background: rgba(201,169,97,0.08); }
.brand-lg { font-family: var(--sans); font-size: 14px; letter-spacing: 6px; margin-bottom: 14px; color: var(--accent); font-weight: 700; }
.footer-logo { display: inline-flex; background: #f5f1e6; padding: 10px 16px; border-radius: 4px; margin-bottom: 16px; transition: transform .2s ease; border-bottom: 0 !important; }
.footer-logo:hover { transform: translateY(-2px); }
.footer-logo img { display: block; height: 60px; width: auto; }
.footer-tag { font-size: 13px; max-width: 280px; }
.footer-mfe { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 8px; margin-top: 22px; padding: 12px 14px; border: 1px solid var(--line); border-bottom: 0 !important; transition: border-color .2s ease, background .2s ease; max-width: 220px; }
.footer-mfe:hover { border-color: var(--accent); background: rgba(201,169,97,0.05); }
.footer-mfe-label { font-family: var(--sans); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--fg-dim); font-weight: 700; }
.footer-mfe img { display: block; height: 40px; width: auto; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--line); font-size: 11px; color: var(--fg-dim); letter-spacing: 1px; }
.catwolf-credit a { color: var(--accent); text-decoration: underline; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } .footer-bottom { flex-direction: column; gap: 8px; text-align: center; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.section-agencias { background: linear-gradient(180deg, var(--bg) 0%, #0d0d0d 100%); border-top: 1px solid var(--line); }
.agencias-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.agencia { border: 1px solid var(--line); background: rgba(29,59,112,0.05); display: flex; flex-direction: column; transition: border-color .25s ease, transform .25s ease; }
.agencia:hover { border-color: var(--accent); transform: translateY(-4px); }
.agencia-photo { display: block; overflow: hidden; }
.agencia-photo img { width: 100%; height: 360px; object-fit: cover; display: block; transition: transform .5s ease; }
.agencia:hover .agencia-photo img { transform: scale(1.03); }
.agencia-body { padding: 32px 32px 36px; }
.agencia-label { font-family: var(--sans); font-size: 11px; letter-spacing: 3px; color: var(--accent); margin-bottom: 14px; text-transform: uppercase; font-weight: 700; }
.agencia-body h3 { margin-bottom: 14px; font-family: var(--serif); font-size: clamp(24px, 2.6vw, 32px); }
.agencia-body p { font-size: 15px; line-height: 1.7; color: var(--fg-muted); margin-bottom: 22px; }
@media (max-width: 900px) { .agencias-grid { grid-template-columns: 1fr; gap: 24px; } .agencia-photo img { height: 280px; } }

.section-video { background: var(--bg-deep); }
.section-head-center { text-align: center; margin-left: auto; margin-right: auto; }
.video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border: 1px solid var(--line); max-width: 880px; margin: 0 auto; }
.video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

.footer-map { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 56px; }
.footer-map-item { border: 1px solid var(--line); position: relative; }
.footer-map-label { position: absolute; top: 14px; left: 14px; z-index: 2; background: rgba(10,10,10,0.85); color: var(--accent); padding: 6px 12px; font-family: var(--sans); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; }
.footer-map-item iframe { width: 100%; height: 260px; display: block; border: 0; filter: grayscale(0.6) contrast(1.1); }
@media (max-width: 800px) { .footer-map { grid-template-columns: 1fr; } }

#back-to-top { position: fixed; bottom: 24px; right: 24px; z-index: 200; width: 48px; height: 48px; background: var(--accent); color: var(--bg); border-radius: 50%; font-size: 22px; font-weight: 700; line-height: 1; cursor: pointer; box-shadow: 0 6px 18px rgba(0,0,0,0.35); transition: transform .2s ease, opacity .2s ease, background .2s ease; }
#back-to-top:hover { background: #d8b76d; transform: translateY(-3px); }
#back-to-top[hidden] { display: none; }
@media (max-width: 600px) { #back-to-top { bottom: 16px; right: 16px; width: 44px; height: 44px; } }

.livro-rec { display: inline-block; margin-top: 6px; border-bottom: 0 !important; }
.livro-rec img { display: block; height: auto; max-width: 120px; opacity: 0.85; transition: opacity .2s ease; }
.livro-rec:hover img { opacity: 1; }
