/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --deep:          #06100a;
  --brand:         #0d3321;
  --brand-mid:     #1a5c3a;
  --brand-accent:  #2e7d52;
  --brand-light:   #d0f0e0;
  --brand-subtle:  #edf7f1;

  --gold:          #c8923b;
  --gold-dark:     #a87530;
  --gold-light:    #fef3e2;
  --gold-subtle:   #fdf8f1;

  --bg:            #faf9f7;
  --surface:       #ffffff;
  --surface-raised:#f5f3ef;
  --border:        #e5e1d8;
  --border-light:  #f0ede8;

  --text:          #1a1a18;
  --text-secondary:#4a4840;
  --text-muted:    #8a8680;

  --urgent-high:   #c0392b;
  --urgent-med:    #d97706;
  --urgent-low:    #16a34a;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.07), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-xl:  0 32px 80px rgba(0,0,0,0.14), 0 8px 24px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--brand-light); color: var(--brand); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 68px;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s, box-shadow 0.3s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border-light);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.nav-dark { /* on dark hero sections */
  background: transparent;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.3px;
}

.logo-mark {
  width: 34px; height: 34px;
  background: var(--gold);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark .material-icons-round { font-size: 1.1rem; color: #fff; }

.logo-text { color: #fff; }
.logo-text em { font-style: normal; color: var(--gold); }

.nav.scrolled .logo-text { color: var(--text); }
.nav.scrolled .logo-text em { color: var(--gold-dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-links a.active { color: #fff; }

.nav.scrolled .nav-links a { color: var(--text-secondary); }
.nav.scrolled .nav-links a:hover { color: var(--text); background: var(--surface-raised); }
.nav.scrolled .nav-links a.active { color: var(--brand-mid); }

.nav-cta-link {
  background: var(--gold) !important;
  color: #fff !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  padding: 0.45rem 1.1rem !important;
}

.nav-cta-link:hover { background: var(--gold-dark) !important; }
.nav.scrolled .nav-cta-link { color: #fff !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: var(--deep);
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 55%, rgba(26,92,58,0.65) 0%, transparent 65%),
    radial-gradient(ellipse 60% 70% at 80% 25%, rgba(46,125,82,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 55% 85%, rgba(200,146,59,0.12) 0%, transparent 50%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  opacity: 0.6;
}

@keyframes breathe {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.04); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding-bottom: 6rem; /* clearance for absolute stats bar (~80px) */
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200,146,59,0.15);
  border: 1px solid rgba(200,146,59,0.3);
  color: #f0c882;
  border-radius: 100px;
  padding: 0.4rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-eyebrow .material-icons-round { font-size: 0.9rem; }

.hero-title {
  font-family: 'DM Serif Display', 'Georgia', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: rgba(255,255,255,0.95);
  margin-bottom: 1.75rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.58);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.75;
  font-weight: 400;
}

/* Hero search */
.hero-search-wrap {
  max-width: 640px;
  margin: 0 auto 2rem;
}

.hero-search {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 0.55rem 0.55rem 0.55rem 1.25rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.hero-search:focus-within {
  border-color: rgba(200,146,59,0.5);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 4px rgba(200,146,59,0.1);
}

.hero-search .search-icon { color: rgba(255,255,255,0.4); display: flex; flex-shrink: 0; }
.hero-search .search-icon .material-icons-round { font-size: 1.3rem; }

.hero-search input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.975rem;
  font-family: inherit;
  font-weight: 400;
}

.hero-search input::placeholder { color: rgba(255,255,255,0.35); }

.hero-search-btn {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 0.7rem 1.4rem;
  border-radius: 11px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-search-btn:hover { background: var(--gold-dark); transform: translateY(-1px); }
.hero-search-btn .material-icons-round { font-size: 1rem; }

/* Hero pills */
.hero-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.38rem 0.9rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.hero-pill .material-icons-round { font-size: 0.85rem; }
.hero-pill:hover { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.2); }

/* Hero stats bar */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: center;
}

.hero-stat {
  padding: 1.25rem 3rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}

.hero-stat:last-child { border-right: none; }

.hero-stat-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.hero-stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.5px; }

/* ── FEATURED IMAGE CARDS ── */
.feat-section { padding: 3rem 0 3.5rem; background: var(--bg); }

.feat-section-head {
  padding: 0 2rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.feat-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.25rem 2rem 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}

.feat-scroll::-webkit-scrollbar { display: none; }

.feat-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  width: 260px;
  height: 370px;
  text-decoration: none;
  display: block;
  scroll-snap-align: start;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s;
  background: var(--brand);
}

.feat-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 52px rgba(0,0,0,0.22);
}

.feat-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.feat-card:hover .feat-card-img { transform: scale(1.06); }

.feat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.96) 0%,
    rgba(0,0,0,0.80) 30%,
    rgba(0,0,0,0.35) 55%,
    rgba(0,0,0,0.05) 80%,
    transparent 100%
  );
}

.feat-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.4rem;
}

.feat-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(200,146,59,0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  margin-bottom: 0.6rem;
}

.feat-card-badge .material-icons-round { font-size: 0.75rem; }

.feat-card-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.3;
  color: #fff;
  font-weight: 400;
  margin-bottom: 0.65rem;
}

.feat-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feat-card-meta {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
}

.feat-card-meta .material-icons-round { font-size: 0.8rem; }

.feat-card-arrow {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.feat-card-arrow .material-icons-round { font-size: 1rem; color: #fff; }
.feat-card:hover .feat-card-arrow { background: var(--gold); }

/* ── SEARCH BAR ── */
.search-section {
  background: var(--surface);
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.search-bar-wrap {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 0.6rem 0.6rem 0.6rem 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-bar-wrap:focus-within {
  border-color: var(--brand-mid);
  box-shadow: 0 0 0 4px rgba(26,92,58,0.1);
}

.search-bar-wrap .search-icon { color: var(--text-muted); display: flex; flex-shrink: 0; }
.search-bar-wrap .search-icon .material-icons-round { font-size: 1.3rem; }

.search-bar-wrap input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
}

.search-bar-wrap input::placeholder { color: var(--text-muted); }

.search-bar-btn {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 0.7rem 1.4rem;
  border-radius: 11px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.search-bar-btn:hover { background: var(--brand-mid); }
.search-bar-btn .material-icons-round { font-size: 1rem; }

/* ── VALUE STRIP ── */
.value-strip {
  background: var(--brand);
  padding: 2rem;
}

.value-strip-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.value-item { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }

.value-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon .material-icons-round { font-size: 1.3rem; color: var(--gold); }
.value-label { font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.9); }
.value-sub { font-size: 0.7rem; color: rgba(255,255,255,0.45); }

/* ── URGENCY TICKER ── */
.urgency-ticker {
  background: #fff;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  height: 46px;
  display: flex;
  align-items: center;
}

.ticker-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 1.5rem;
  background: var(--urgent-high);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  height: 100%;
  flex-shrink: 0;
  white-space: nowrap;
}

.ticker-label .material-icons-round { font-size: 0.9rem; }

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
}

.ticker-track:hover { animation-play-state: paused; }

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 2rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-right: 1px solid var(--border);
  transition: color 0.15s;
  height: 46px;
  white-space: nowrap;
}

.ticker-item:hover { color: var(--brand-mid); }

.ticker-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--urgent-high);
  flex-shrink: 0;
}

/* ── SECTION BASE ── */
.section { padding: 5.5rem 2rem; }
.section-sm { padding: 3.5rem 2rem; }
.container { max-width: 1180px; margin: 0 auto; }
.container-md { max-width: 900px; margin: 0 auto; }
.bg-soft { background: var(--bg); }
.bg-white { background: #fff; }
.bg-dark { background: var(--brand); }
.bg-deep { background: var(--deep); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-accent);
  margin-bottom: 0.75rem;
}

.section-label .material-icons-round { font-size: 0.85rem; }

.section-label-gold { color: var(--gold); }

.section-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.section-title-white { color: #fff; }

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 540px;
}

.section-sub-white { color: rgba(255,255,255,0.6); }

.section-header { margin-bottom: 3rem; }

.flex-between { display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }

/* ── SITUATION CARDS ── */
.situations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.sit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s, border-color 0.3s;
}

.sit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--area-color, var(--brand-mid));
  transition: width 0.25s cubic-bezier(0.4,0,0.2,1);
}

.sit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.sit-card:hover::before { width: 5px; }

.sit-card-body { padding: 1.5rem 1.5rem 1.25rem 1.75rem; flex: 1; display: flex; flex-direction: column; }

.sit-card-area {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--area-color, var(--brand-mid));
  margin-bottom: 0.65rem;
}

.sit-card-area .material-icons-round { font-size: 0.8rem; }

.sit-card-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 0.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sit-card-excerpt {
  font-size: 0.855rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.sit-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  gap: 0.5rem;
}

.sit-card-meta {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.74rem;
  color: var(--text-muted);
}

.sit-card-meta .material-icons-round { font-size: 0.85rem; }

/* Urgency badges */
.urgency-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 0.22rem 0.6rem;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

.urgency-tag .material-icons-round { font-size: 0.75rem; }

.urgency-alta  { background: #fef2f2; color: var(--urgent-high); }
.urgency-media { background: #fffbeb; color: var(--urgent-med); }
.urgency-baixa { background: #f0fdf4; color: var(--urgent-low); }

/* Self-resolve badge */
.badge-self {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.67rem;
  font-weight: 600;
  color: var(--brand-mid);
  background: var(--brand-subtle);
  padding: 0.22rem 0.6rem;
  border-radius: 100px;
}

.badge-self .material-icons-round { font-size: 0.75rem; }

/* CTA link */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-mid);
  text-decoration: none;
  transition: gap 0.2s;
}

.link-arrow .material-icons-round { font-size: 0.9rem; transition: transform 0.2s; }
.link-arrow:hover { color: var(--brand); }
.link-arrow:hover .material-icons-round { transform: translateX(3px); }

/* ── HOW IT WORKS ── */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }

.how-step { text-align: center; }

.step-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--gold-light);
  border: 1px solid rgba(200,146,59,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-dark);
  font-family: 'DM Serif Display', Georgia, serif;
  position: relative;
}

.how-steps-wrap {
  position: relative;
}

.how-steps-wrap::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.6% + 36px);
  right: calc(16.6% + 36px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--brand-accent) 100%);
  opacity: 0.2;
}

.step-title { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 0.5rem; }
.step-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ── AREAS GRID ── */
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

.area-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-decoration: none;
  transition: all 0.25s;
}

.area-card:hover {
  border-color: var(--area-color, var(--brand-mid));
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.area-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--area-color, #1a5c3a) 12%, transparent);
}

.area-icon .material-icons-round { font-size: 1.5rem; color: var(--area-color, var(--brand-mid)); }

.area-name { font-size: 0.95rem; font-weight: 600; color: var(--text); }
.area-count { font-size: 0.78rem; color: var(--text-muted); }

/* ── LAWYERS SECTION ── */
.lawyers-section {
  background: var(--brand);
  background-image:
    radial-gradient(ellipse 60% 80% at 90% 20%, rgba(46,125,82,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(200,146,59,0.15) 0%, transparent 50%);
  padding: 5.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.lawyers-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.lawyers-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.lawyers-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.lawyers-stat-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.lawyers-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* Lawyers form card */
.lawyers-form-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
}

.lawyers-form-card h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.lawyers-form-card p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.5rem; }

/* ── TEMPLATES SECTION ── */
.templates-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.template-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  transition: all 0.2s;
  text-decoration: none;
  cursor: pointer;
}

.template-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(200,146,59,0.1);
  transform: translateY(-2px);
}

.template-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.template-icon .material-icons-round { font-size: 1.3rem; color: var(--gold-dark); }

.template-info { flex: 1; }
.template-name { font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 0.3rem; }
.template-area { font-size: 0.77rem; color: var(--text-muted); }

.template-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  margin-top: 0.5rem;
}

.badge-free { background: var(--brand-subtle); color: var(--brand-mid); }
.badge-premium { background: var(--gold-light); color: var(--gold-dark); }

/* ── CONTACT / FOOTER FORM ── */
.contact-section {
  background: var(--surface-raised);
  border-top: 1px solid var(--border);
  padding: 5.5rem 2rem;
}

.contact-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.contact-info p { color: var(--text-muted); font-size: 0.925rem; line-height: 1.75; margin-bottom: 1.75rem; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.contact-detail .material-icons-round { font-size: 1.05rem; color: var(--gold); }

.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

/* ── FORM ELEMENTS ── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,146,59,0.12);
}

.form-group textarea { min-height: 120px; }

.btn-submit {
  width: 100%;
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.btn-submit:hover { background: var(--brand-mid); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn-submit .material-icons-round { font-size: 1rem; }

.form-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #15803d;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1rem;
}

.form-success .material-icons-round { color: #16a34a; }
.hidden { display: none !important; }

/* ── FOOTER ── */
footer {
  background: var(--deep);
  color: rgba(255,255,255,0.5);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-logo-mark {
  width: 30px; height: 30px;
  background: var(--gold);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-mark .material-icons-round { font-size: 1rem; color: #fff; }

.footer-logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.footer-logo-text em { font-style: normal; color: var(--gold); }

.footer-desc { font-size: 0.835rem; line-height: 1.8; max-width: 280px; margin-bottom: 1.25rem; }

.footer-disclaimer {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }

.footer-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.855rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.footer-links a .material-icons-round { font-size: 0.85rem; }
.footer-links a:hover { color: rgba(255,255,255,0.85); }

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copy { font-size: 0.73rem; color: rgba(255,255,255,0.2); }

.footer-powered {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.73rem;
  color: rgba(255,255,255,0.25);
}

.footer-powered .material-icons-round { font-size: 0.8rem; color: var(--gold); }
.footer-powered a { color: rgba(255,255,255,0.4); text-decoration: none; font-weight: 600; transition: color 0.2s; }
.footer-powered a:hover { color: rgba(255,255,255,0.8); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-mid); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(13,51,33,0.25); }

.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(200,146,59,0.35); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.82rem; }

.btn .material-icons-round { font-size: 1rem; }

/* ── SITUATION PAGE ── */
.sit-header {
  background: var(--deep);
  background-image:
    radial-gradient(ellipse 70% 60% at 80% 30%, rgba(26,92,58,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 70%, rgba(200,146,59,0.1) 0%, transparent 50%);
  padding: 7rem 2rem 0;
}

.sit-header-inner { max-width: 820px; margin: 0 auto; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.75rem;
}

.breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.15s; }
.breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.breadcrumb .material-icons-round { font-size: 0.85rem; }

.sit-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.sit-area-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  background: var(--area-color, var(--brand-mid));
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.sit-area-badge .material-icons-round { font-size: 0.82rem; }

.sit-page-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 1.1rem;
}

.sit-page-excerpt {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 680px;
}

.sit-action-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-bottom: 3.5rem;
}

/* ── ARTICLE CONTENT ── */
.sit-body { padding: 4rem 2rem; }

.sit-content {
  max-width: 740px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-secondary);
}

.sit-content > p:first-child {
  font-size: 1.12rem;
  color: var(--text);
  line-height: 1.8;
}

.sit-content h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.3px;
  color: var(--text);
  margin: 2.75rem 0 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.sit-content h2:first-of-type { margin-top: 2rem; }

.sit-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 2rem 0 0.5rem;
}

.sit-content p { margin-bottom: 1.25rem; }

.sit-content ul, .sit-content ol { margin: 0 0 1.25rem 1.5rem; }

.sit-content li { margin-bottom: 0.5rem; line-height: 1.75; }

.sit-content strong { color: var(--text); font-weight: 600; }

.sit-content em { color: var(--text-muted); }

/* Info boxes */
.info-box {
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin: 2rem 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.info-box .material-icons-round { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.05rem; }

.info-box-disclaimer {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
}

.info-box-disclaimer .material-icons-round { color: #d97706; }

.info-box-tip {
  background: var(--brand-subtle);
  border: 1px solid var(--brand-light);
  color: var(--brand);
}

.info-box-tip .material-icons-round { color: var(--brand-mid); }

/* ── RELATED ── */
.related-section {
  background: var(--bg);
  padding: 4rem 2rem;
  border-top: 1px solid var(--border);
}

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

/* ── SITUATIONS LISTING PAGE ── */
.listing-hero {
  background: var(--bg);
  padding: 5rem 2rem 3rem;
  border-bottom: 1px solid var(--border);
}

.listing-hero-inner { max-width: 1180px; margin: 0 auto; }

.listing-hero h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.listing-hero p { color: var(--text-muted); font-size: 1rem; margin-bottom: 2rem; }

.area-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.42rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: inherit;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.filter-pill .material-icons-round { font-size: 0.85rem; }
.filter-pill:hover { border-color: var(--brand-mid); color: var(--brand-mid); background: var(--brand-subtle); }
.filter-pill.active { border-color: var(--brand); background: var(--brand); color: #fff; }

/* ── LAWYERS PAGE ── */
.lawyers-page-hero {
  background: var(--brand);
  background-image: radial-gradient(ellipse 70% 80% at 85% 20%, rgba(46,125,82,0.5) 0%, transparent 60%);
  padding: 8rem 2rem 5rem;
  text-align: center;
}

.lawyers-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }

.benefit-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.benefit-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(200,146,59,0.15);
  border: 1px solid rgba(200,146,59,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.benefit-icon .material-icons-round { font-size: 1.5rem; color: var(--gold); }
.benefit-title { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 0.5rem; }
.benefit-desc { font-size: 0.855rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ── 404 ── */
.not-found {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.not-found-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 7rem;
  font-weight: 400;
  color: var(--brand-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* ── COOKIE ── */
#_vj_consent {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(6,16,10,0.97);
  border-top: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.1rem 2rem;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.3);
}

._vj_inner { max-width: 1100px; margin: 0 auto; display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
._vj_text { flex: 1; min-width: 260px; }

._vj_title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.3rem;
}

._vj_title .material-icons-round { font-size: 1rem; color: var(--gold); }
._vj_text p { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.6; margin: 0; }
._vj_text p strong { color: rgba(255,255,255,0.7); }
._vj_btns { display: flex; gap: 0.5rem; flex-shrink: 0; }

#_vj_accept {
  background: var(--gold); color: #fff; border: none;
  padding: 0.55rem 1.4rem; border-radius: 8px;
  font-size: 0.83rem; font-weight: 600; cursor: pointer;
  font-family: inherit; transition: background 0.2s;
}

#_vj_accept:hover { background: var(--gold-dark); }

#_vj_reject {
  background: transparent; color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15); padding: 0.55rem 1rem;
  border-radius: 8px; font-size: 0.83rem; font-weight: 500;
  cursor: pointer; font-family: inherit; transition: all 0.2s;
}

#_vj_reject:hover { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.3); }

/* ── RESPONSIVE ── */
@media (min-width: 1024px) {
  .feat-scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow-x: visible;
    padding: 0.25rem 0 1rem;
  }
  .feat-card { width: auto; height: 420px; }
  .feat-section { padding: 3rem 2rem 4rem; }
  .feat-scroll { padding: 0.25rem 0 0.5rem; }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .feat-card { width: 300px; height: 400px; }
}

@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .lawyers-inner { grid-template-columns: 1fr; gap: 3rem; }
  .lawyers-stats { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav { padding: 0 1.25rem; }
  .hero { padding: 6rem 1.5rem 4rem; min-height: 90vh; }
  .hero-stats { display: none; }
  .hero-title { letter-spacing: -0.5px; }
  .situations-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; gap: 2rem; }
  .how-steps-wrap::before { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .lawyers-stats { grid-template-columns: 1fr 1fr; }
  .lawyers-benefits { grid-template-columns: 1fr; }
  .templates-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 1.5rem; }
  #_vj_consent { padding: 1rem 1.25rem; }
  ._vj_btns { width: 100%; }
  #_vj_accept, #_vj_reject { flex: 1; text-align: center; }
}

@media (max-width: 480px) {
  .situations-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-search { flex-wrap: wrap; }
  .hero-search-btn { width: 100%; justify-content: center; }
}
