/* ══════════════════════════════════════════════════════════
   LEVELUP AGENCY — MAIN STYLESHEET
   levelupagency.io
   ══════════════════════════════════════════════════════════ */

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dim: #7a6330;
  --black: #080808;
  --dark: #0f0f0f;
  --dark2: #161616;
  --dark3: #1e1e1e;
  --dark4: #252525;
  --white: #f5f0e8;
  --grey: #888;
  --border: rgba(201,168,76,0.18);
  --border-strong: rgba(201,168,76,0.35);
  --text-muted: rgba(245,240,232,0.5);
  --text-body: rgba(245,240,232,0.78);
  --green: #4caf82;
  --red: #e05858;
  --blue: #5b8fd4;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.1;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 2rem); }
p { color: var(--text-muted); line-height: 1.8; }
em { font-style: italic; color: var(--gold); }
strong { font-weight: 500; color: var(--white); }

/* ─── LAYOUT ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 4rem; }
.section { padding: 7rem 4rem; }
.section-tag { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem,4vw,3.8rem); font-weight: 300; line-height: 1.05; max-width: 700px; }
.divider { width: 40px; height: 1px; background: var(--gold-dim); margin: 2rem 0; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 1rem 2.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); color: var(--black); transform: translateY(-1px); }
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 1rem 2rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ─── NAVIGATION ─── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 4rem;
  background: linear-gradient(to bottom, rgba(8,8,8,0.95) 0%, transparent 100%);
  backdrop-filter: blur(2px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
#navbar.scrolled {
  background: rgba(8,8,8,0.97);
  border-bottom-color: var(--border);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.15em;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-menu { display: flex; gap: 2.5rem; align-items: center; }
.nav-menu a {
  color: rgba(245,240,232,0.65);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-menu a:hover,
.nav-menu a.current-menu-item,
.nav-menu a.current_page_item { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 0.6rem 1.4rem !important;
  font-weight: 500 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-login {
  border: 1px solid var(--border) !important;
  padding: 0.55rem 1.2rem !important;
}
.nav-login:hover { border-color: var(--gold) !important; color: var(--gold) !important; }
.nav-hamburger { display: none; background: none; border: 1px solid var(--border); padding: 0.5rem 0.7rem; color: var(--white); font-size: 1.2rem; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 4rem 8rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 40%, rgba(201,168,76,0.07) 0%, transparent 60%),
              radial-gradient(ellipse 40% 50% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 60%),
              linear-gradient(160deg, #0f0f0f 0%, #080808 60%, #0a0800 100%);
}
.hero-lines {
  position: absolute;
  top: 0; right: 0;
  width: 55%; height: 100%;
  overflow: hidden;
  opacity: 0.06;
}
.hero-lines svg { width: 100%; height: 100%; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  width: fit-content;
  position: relative;
}
.hero-badge::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.8)} }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
  max-width: 900px;
  position: relative;
}
.hero-sub {
  margin-top: 2.5rem;
  font-size: 1.05rem;
  color: rgba(245,240,232,0.55);
  max-width: 480px;
  line-height: 1.7;
  position: relative;
}
.hero-actions {
  margin-top: 3rem;
  display: flex;
  gap: 1.2rem;
  align-items: center;
  position: relative;
}
.hero-stats {
  position: absolute;
  right: 4rem; bottom: 8rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: right;
}
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; color: var(--gold); letter-spacing: 0.05em; line-height: 1; }
.stat-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,240,232,0.4); margin-top: 0.2rem; }

/* ─── STEPS ─── */
.steps-section { background: var(--dark2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 4rem; border: 1px solid var(--border); }
.step { padding: 2.5rem 2rem; border-right: 1px solid var(--border); transition: background 0.3s; }
.step:last-child { border-right: none; }
.step:hover { background: rgba(201,168,76,0.04); }
.step-num { font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; color: rgba(201,168,76,0.15); line-height: 1; margin-bottom: 1.5rem; }
.step-icon { font-size: 1.6rem; margin-bottom: 1rem; }
.step h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 400; margin-bottom: 0.8rem; }
.step p { font-size: 0.85rem; color: rgba(245,240,232,0.5); line-height: 1.7; }

/* ─── SERVICES ─── */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.services-left .section-title { max-width: 420px; }
.services-body { font-size: 0.9rem; color: rgba(245,240,232,0.5); line-height: 1.85; }
.services-list { margin-top: 3rem; }
.service-item { display: flex; align-items: flex-start; gap: 1.5rem; padding: 1.6rem 0; border-bottom: 1px solid var(--border); transition: padding-left 0.3s; }
.service-item:first-child { border-top: 1px solid var(--border); }
.service-item:hover { padding-left: 0.5rem; }
.service-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; margin-top: 0.4rem; flex-shrink: 0; }
.service-item h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 400; margin-bottom: 0.3rem; }
.service-item p { font-size: 0.82rem; color: rgba(245,240,232,0.45); line-height: 1.6; }
.services-right { padding-top: 4.5rem; }
.perks-card { background: var(--dark2); border: 1px solid var(--border); padding: 2.5rem; position: relative; overflow: hidden; }
.perks-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.perks-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; margin-bottom: 0.5rem; }
.perks-card .sub { font-size: 0.78rem; color: rgba(245,240,232,0.4); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2rem; }
.perk { display: flex; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(201,168,76,0.1); }
.perk:last-child { border-bottom: none; }
.perk-icon { font-size: 1.2rem; }
.perk-text { font-size: 0.85rem; color: rgba(245,240,232,0.7); }
.commission-badge { margin-top: 2rem; background: rgba(201,168,76,0.08); border: 1px solid var(--border); padding: 1.5rem; text-align: center; }
.commission-badge .big { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--gold); letter-spacing: 0.05em; }
.commission-badge p { font-size: 0.78rem; color: rgba(245,240,232,0.4); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.3rem; }

/* ─── REQUIREMENTS ─── */
.req-section { background: var(--dark2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; }
.req-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 4rem; max-width: 900px; margin-left: auto; margin-right: auto; }
.req-card { background: var(--dark3); border: 1px solid var(--border); padding: 2rem 1.5rem; text-align: left; transition: transform 0.3s, border-color 0.3s; }
.req-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.req-icon { font-size: 2rem; margin-bottom: 1rem; }
.req-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; margin-bottom: 0.5rem; color: var(--gold); }
.req-card p { font-size: 0.82rem; color: rgba(245,240,232,0.5); line-height: 1.6; }

/* ─── BLOG PREVIEW ─── */
.blog-preview-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.blog-card { background: var(--dark2); border: 1px solid var(--border); overflow: hidden; transition: transform 0.3s, border-color 0.3s; text-decoration: none; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.blog-card-img { height: 160px; background: linear-gradient(135deg, var(--dark3), var(--dark2)); display: flex; align-items: center; justify-content: center; font-size: 3rem; border-bottom: 1px solid var(--border); }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-tag { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
.blog-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 400; line-height: 1.3; margin-bottom: 0.6rem; color: var(--white); flex: 1; }
.blog-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.blog-date { font-size: 0.72rem; color: rgba(245,240,232,0.3); }
.blog-link-text { font-size: 0.72rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; }
.blog-cta { text-align: center; margin-top: 2.5rem; }

/* ─── CANDIDATURA FORM ─── */
.candidatura-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: start; }
.form-left p { font-size: 0.88rem; color: rgba(245,240,232,0.45); line-height: 1.8; margin-top: 1rem; }
.trust-signals { margin-top: 3rem; display: flex; flex-direction: column; gap: 1rem; }
.trust-item { display: flex; align-items: center; gap: 0.8rem; font-size: 0.8rem; color: rgba(245,240,232,0.5); }
.trust-item::before { content: '✓'; color: var(--gold); font-size: 0.75rem; }
.form-card { background: var(--dark2); border: 1px solid var(--border); padding: 3rem; position: relative; }
.form-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold)); }
.form-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; margin-bottom: 0.3rem; }
.form-subtitle { font-size: 0.78rem; color: rgba(245,240,232,0.4); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(245,240,232,0.5); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--white);
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,240,232,0.2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: rgba(201,168,76,0.05); }
.form-group select option { background: #1a1a1a; }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-check { display: flex; align-items: flex-start; gap: 0.8rem; }
.form-check input[type="checkbox"] { width: auto; margin-top: 3px; accent-color: var(--gold); }
.form-check label { font-size: 0.78rem; letter-spacing: 0.02em; text-transform: none; line-height: 1.6; cursor: pointer; color: rgba(245,240,232,0.55); }
.form-check label a { color: var(--gold); }
.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  padding: 1.1rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  margin-top: 1rem;
  transition: background 0.2s, opacity 0.2s;
}
.form-submit:hover { background: var(--gold-light); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-note { text-align: center; font-size: 0.72rem; color: rgba(245,240,232,0.3); margin-top: 0.8rem; }
.form-success { display: none; text-align: center; padding: 2rem; }
.form-success .icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: var(--gold); margin-bottom: 0.5rem; }
.form-success p { font-size: 0.88rem; color: rgba(245,240,232,0.5); }
.form-error { display: none; background: rgba(224,88,88,0.1); border: 1px solid rgba(224,88,88,0.3); padding: 1rem; text-align: center; font-size: 0.82rem; color: #ff6b6b; margin-top: 1rem; }
.spinner { display: inline-block; width: 14px; height: 14px; border: 2px solid rgba(8,8,8,0.3); border-top-color: var(--black); border-radius: 50%; animation: spin 0.7s linear infinite; margin-right: 8px; vertical-align: middle; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── BLOG ARCHIVE ─── */
.blog-hero { padding: 9rem 4rem 5rem; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.blog-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 40% 70% at 80% 50%, rgba(201,168,76,0.05) 0%, transparent 60%); pointer-events: none; }
.hero-eyebrow { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.hero-title-blog { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem,5vw,5rem); font-weight: 300; line-height: 0.95; margin-bottom: 1.2rem; }
.hero-desc { font-size: 1rem; color: var(--text-muted); max-width: 500px; line-height: 1.8; }
.filters-bar { padding: 1.8rem 4rem; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border); gap: 2rem; flex-wrap: wrap; background: var(--dark2); }
.cat-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cat-btn { background: transparent; border: 1px solid var(--border); color: var(--text-muted); padding: 0.45rem 1rem; font-size: 0.73rem; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: all 0.2s; }
.cat-btn:hover { border-color: var(--gold); color: var(--gold); }
.cat-btn.active { background: var(--gold); border-color: var(--gold); color: var(--black); font-weight: 500; }
.search-box { display: flex; }
.search-input-field { background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: var(--white); padding: 0.6rem 1rem; font-size: 0.82rem; font-weight: 300; outline: none; width: 240px; transition: border-color 0.2s; }
.search-input-field::placeholder { color: rgba(245,240,232,0.2); }
.search-input-field:focus { border-color: var(--gold); }
.search-submit-btn { background: var(--gold); border: none; padding: 0.7rem 0.9rem; cursor: pointer; font-size: 0.9rem; transition: background 0.2s; }
.search-submit-btn:hover { background: var(--gold-light); }
.featured-article-wrap { padding: 4rem 4rem 0; }
.featured-label { font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.featured-article-card { display: grid; grid-template-columns: 1.2fr 1fr; border: 1px solid var(--border); overflow: hidden; transition: border-color 0.3s; text-decoration: none; }
.featured-article-card:hover { border-color: var(--border-strong); }
.featured-img-area { height: 420px; background: linear-gradient(135deg, #1a1400, #0d0d0d, #1a1200); display: flex; align-items: center; justify-content: center; font-size: 7rem; border-right: 1px solid var(--border); position: relative; }
.featured-img-area::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,168,76,0.12) 0%, transparent 70%); }
.featured-content { padding: 3rem; display: flex; flex-direction: column; justify-content: space-between; }
.featured-article-tag { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.featured-article-title { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 300; line-height: 1.15; margin-bottom: 1rem; color: var(--white); }
.featured-excerpt-text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.8; }
.featured-meta-area { display: flex; justify-content: space-between; align-items: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.author-chip { display: flex; align-items: center; gap: 0.8rem; }
.author-avatar { width: 36px; height: 36px; border-radius: 50%; background: rgba(201,168,76,0.15); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: var(--gold); overflow: hidden; }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-size: 0.8rem; color: var(--white); }
.author-date { font-size: 0.7rem; color: var(--text-muted); margin-top: 0.1rem; }
.read-now-btn { background: var(--gold); color: var(--black); padding: 0.7rem 1.5rem; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; display: inline-block; transition: background 0.2s; }
.read-now-btn:hover { background: var(--gold-light); color: var(--black); }
.articles-section { padding: 4rem; }
.articles-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.articles-section-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; }
.posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.post-card { background: var(--dark2); border: 1px solid var(--border); overflow: hidden; transition: transform 0.3s, border-color 0.3s; display: flex; flex-direction: column; text-decoration: none; }
.post-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.post-thumbnail { height: 150px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; border-bottom: 1px solid var(--border); }
.post-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.cat-estrategia { background: linear-gradient(135deg,#141a0a,#0d0d0d); }
.cat-regulamentacao { background: linear-gradient(135deg,#0a0a1a,#0d0d0d); }
.cat-comissoes { background: linear-gradient(135deg,#1a1400,#0d0d0d); }
.cat-ferramentas { background: linear-gradient(135deg,#0a141a,#0d0d0d); }
.cat-casos { background: linear-gradient(135deg,#1a0a14,#0d0d0d); }
.post-content { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.post-cat-label { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.post-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; line-height: 1.3; margin-bottom: 0.6rem; color: var(--white); flex: 1; }
.post-excerpt { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }
.post-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.post-date { font-size: 0.7rem; color: rgba(245,240,232,0.28); }
.post-read-more { font-size: 0.72rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; }
.pagination-wrap { display: flex; justify-content: center; gap: 0.5rem; padding: 0 4rem 5rem; }
.page-num { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: transparent; border: 1px solid var(--border); color: var(--text-muted); font-size: 0.82rem; cursor: pointer; transition: all 0.2s; text-decoration: none; }
.page-num:hover, .page-num.current { border-color: var(--gold); color: var(--gold); }
.page-num.current { background: var(--gold); color: var(--black); }

/* ─── SINGLE POST ─── */
.single-hero { padding: 8rem 4rem 4rem; border-bottom: 1px solid var(--border); max-width: 1100px; margin: 0 auto; }
.breadcrumb-nav { display: flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2rem; }
.breadcrumb-nav a { color: var(--gold); }
.breadcrumb-sep { color: rgba(245,240,232,0.2); }
.post-category-tag { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.single-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem,5vw,4rem); font-weight: 300; line-height: 1.05; max-width: 800px; margin-bottom: 1.5rem; }
.single-intro { font-size: 1.05rem; color: var(--text-muted); max-width: 680px; line-height: 1.8; margin-bottom: 2rem; }
.single-meta { display: flex; align-items: center; gap: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); flex-wrap: wrap; }
.meta-sep { width: 1px; height: 16px; background: var(--border); }
.meta-item { font-size: 0.75rem; color: var(--text-muted); }
.single-layout { display: grid; grid-template-columns: 1fr 300px; gap: 5rem; max-width: 1100px; margin: 0 auto; padding: 4rem; }
.single-content { }
.single-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 300; margin: 2.5rem 0 1rem; line-height: 1.15; }
.single-content h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 400; margin: 2rem 0 0.8rem; color: var(--gold); }
.single-content p { font-size: 0.92rem; color: var(--text-body); line-height: 1.9; margin-bottom: 1.2rem; }
.single-content strong { color: var(--white); font-weight: 500; }
.single-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.single-content ul, .single-content ol { margin: 1rem 0 1.2rem 1.5rem; }
.single-content li { font-size: 0.92rem; color: var(--text-body); line-height: 1.8; margin-bottom: 0.4rem; list-style: disc; }
.single-content ol li { list-style: decimal; }
.single-content li::marker { color: var(--gold); }
.callout-box { padding: 1.5rem 2rem; margin: 2rem 0; border-left: 3px solid var(--gold); background: rgba(201,168,76,0.05); }
.callout-box.warning { border-color: var(--red); background: rgba(224,88,88,0.05); }
.callout-box.success { border-color: var(--green); background: rgba(76,175,130,0.05); }
.callout-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.callout-box.warning .callout-label { color: var(--red); }
.callout-box.success .callout-label { color: var(--green); }
.callout-box p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; margin: 0; }
.post-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 3rem 0 1rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.post-tag { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid var(--border); color: var(--text-muted); padding: 0.3rem 0.8rem; text-decoration: none; transition: all 0.2s; }
.post-tag:hover { border-color: var(--gold); color: var(--gold); }
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0; }
.post-nav-card { background: var(--dark2); border: 1px solid var(--border); padding: 1.5rem; text-decoration: none; transition: border-color 0.2s; }
.post-nav-card:hover { border-color: var(--border-strong); }
.post-nav-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.4rem; }
.post-nav-title { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 400; color: var(--white); line-height: 1.3; }
.post-nav-card.next-post { text-align: right; }
.single-sidebar { position: sticky; top: 6rem; display: flex; flex-direction: column; gap: 1.5rem; align-self: start; }
.sidebar-widget { background: var(--dark2); border: 1px solid var(--border); padding: 1.5rem; }
.sidebar-widget h4 { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 400; color: var(--gold); margin-bottom: 1rem; }
.toc-links { list-style: none; }
.toc-links li a { font-size: 0.78rem; color: var(--text-muted); text-decoration: none; display: block; padding: 0.3rem 0.7rem; border-left: 2px solid transparent; transition: all 0.2s; line-height: 1.4; }
.toc-links li a:hover { color: var(--gold); border-left-color: var(--gold); }
.related-posts-list { display: flex; flex-direction: column; }
.related-post-item { display: flex; gap: 0.8rem; text-decoration: none; padding: 0.7rem 0; border-bottom: 1px solid rgba(201,168,76,0.06); }
.related-post-item:last-child { border-bottom: none; }
.related-icon { font-size: 1.2rem; flex-shrink: 0; }
.related-title-text { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; transition: color 0.2s; }
.related-post-item:hover .related-title-text { color: var(--gold); }
.cta-widget { background: rgba(201,168,76,0.06); border: 1px solid rgba(201,168,76,0.25); padding: 1.5rem; text-align: center; position: relative; overflow: hidden; }
.cta-widget::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold)); }
.cta-widget h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 300; margin-bottom: 0.5rem; }
.cta-widget p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.cta-widget-btn { display: block; background: var(--gold); color: var(--black); padding: 0.8rem; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; transition: background 0.2s; }
.cta-widget-btn:hover { background: var(--gold-light); color: var(--black); }

/* ─── NEWSLETTER SECTION ─── */
.newsletter-section { background: var(--dark2); border: 1px solid var(--border); padding: 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; overflow: hidden; }
.newsletter-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.nl-form { display: flex; }
.nl-input { flex: 1; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-right: none; color: var(--white); padding: 0.9rem 1rem; font-size: 0.85rem; font-weight: 300; outline: none; transition: border-color 0.2s; }
.nl-input::placeholder { color: rgba(245,240,232,0.2); }
.nl-input:focus { border-color: var(--gold); }
.nl-submit { background: var(--gold); color: var(--black); border: none; padding: 0.9rem 1.5rem; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; white-space: nowrap; transition: background 0.2s; }
.nl-submit:hover { background: var(--gold-light); }
.nl-note { font-size: 0.72rem; color: rgba(245,240,232,0.25); margin-top: 0.6rem; }

/* ─── FOOTER ─── */
.site-footer { background: var(--dark2); border-top: 1px solid var(--border); padding: 4rem 4rem 2rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border); }
.footer-brand .nav-logo { display: block; margin-bottom: 1rem; font-size: 1.5rem; }
.footer-brand p { font-size: 0.82rem; color: rgba(245,240,232,0.4); line-height: 1.7; max-width: 260px; }
.footer-col h5 { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.82rem; color: rgba(245,240,232,0.4); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.72rem; color: rgba(245,240,232,0.25); }

/* ─── ANIMATIONS ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── 404 ─── */
.not-found { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 2rem; }
.not-found h1 { font-family: 'Bebas Neue', sans-serif; font-size: 10rem; color: rgba(201,168,76,0.15); line-height: 1; }
.not-found h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; margin-bottom: 1rem; }
.not-found p { color: var(--text-muted); margin-bottom: 2rem; }

/* ─── MOBILE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-right { padding-top: 0; }
  .candidatura-grid { grid-template-columns: 1fr; gap: 3rem; }
  .single-layout { grid-template-columns: 1fr; gap: 3rem; }
  .single-sidebar { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .newsletter-section { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: 1fr 1fr; }
  .blog-preview-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  #navbar { padding: 1.2rem 1.5rem; }
  .nav-menu { display: none; flex-direction: column; position: fixed; top: 60px; left: 0; right: 0; background: rgba(8,8,8,0.98); border-bottom: 1px solid var(--border); padding: 1.5rem; gap: 1rem; z-index: 99; }
  .nav-menu.open { display: flex; }
  .nav-hamburger { display: block; }
  .hero { padding: 0 1.5rem 5rem; }
  .hero-stats { display: none; }
  .section { padding: 5rem 1.5rem; }
  .blog-hero, .articles-section, .featured-article-wrap { padding-left: 1.5rem; padding-right: 1.5rem; }
  .filters-bar { padding: 1.5rem; }
  .single-hero { padding: 6rem 1.5rem 2.5rem; }
  .single-layout { padding: 2rem 1.5rem; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); }
  .req-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .featured-article-card { grid-template-columns: 1fr; }
  .featured-img-area { height: 180px; border-right: none; border-bottom: 1px solid var(--border); }
  .posts-grid { grid-template-columns: 1fr; }
  .blog-preview-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .pagination-wrap { padding: 0 1.5rem 3rem; }
  .nl-form { flex-direction: column; }
  .nl-input { border-right: 1px solid var(--border); }
  .post-nav { grid-template-columns: 1fr; }
}
