:root {
  --bg: #070b16;
  --panel: #0f1629;
  --panel2: #131c33;
  --line: rgba(255,255,255,.08);
  --text: #eef6ff;
  --muted: #94a3b8;
  --accent: #38bdf8;
  --accent2: #2563eb;
  --good: #4ade80;
  --bad: #f87171;
  --star: #fbbf24;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}
a { color: var(--accent); text-decoration: none; }
.container { width: min(1120px, 92%); margin: 0 auto; }

.glow {
  position: fixed; border-radius: 50%; filter: blur(120px);
  pointer-events: none; z-index: -1; opacity: .45;
}
.g1 { width: 520px; height: 520px; background: rgba(56,189,248,.18); top: -160px; right: -120px; }
.g2 { width: 420px; height: 420px; background: rgba(37,99,235,.12); bottom: 10%; left: -100px; }

nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7,11,22,.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 12px;
}
.logo { font-size: 1.45rem; font-weight: 900; color: var(--text); letter-spacing: -0.04em; }
.logo span { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-link { color: var(--muted); font-weight: 500; font-size: .95rem; }
.nav-link:hover { color: var(--text); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; font-weight: 700; border: none; cursor: pointer;
  font-family: inherit; transition: .2s transform, .2s box-shadow, .2s background;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #061018; padding: 12px 22px;
  box-shadow: 0 12px 32px rgba(56,189,248,.28);
}
.btn-primary:hover { transform: translateY(-2px); color: #061018; }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--line); padding: 12px 22px;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 9px 16px; font-size: .9rem; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-outline {
  background: transparent; color: var(--accent);
  border: 1px solid rgba(56,189,248,.35); padding: 10px 16px; font-size: .9rem;
}

.hero { padding: 72px 0 36px; text-align: center; }
.badge {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  background: rgba(56,189,248,.1); color: var(--accent);
  font-size: .85rem; font-weight: 600; margin-bottom: 18px;
  border: 1px solid rgba(56,189,248,.25);
}
.hero h1 {
  font-size: clamp(2rem, 6vw, 3.4rem); font-weight: 900;
  letter-spacing: -0.04em; line-height: 1.12; margin-bottom: 18px;
}
.grad {
  background: linear-gradient(90deg, #38bdf8, #67e8f9);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.lead {
  max-width: 720px; margin: 0 auto 28px; color: #cbd5e1; font-size: 1.08rem;
}
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.callout {
  margin: 8px auto 0; padding: 18px 24px; text-align: center;
  border-radius: 18px; border: 1px solid rgba(56,189,248,.3);
  background: linear-gradient(135deg, #0f172a, #1e2937);
  color: #e0f2fe; font-weight: 600; max-width: 820px;
}

.section { padding: 64px 0; }
.section-soft { background: rgba(255,255,255,.02); border-block: 1px solid var(--line); }
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 36px; }
.sec-head h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 10px; }
.sec-head p { color: var(--muted); }

.search-box {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 20px; padding: 22px; max-width: 920px; margin: 0 auto;
}
.search-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: flex-end; }
.field { position: relative; min-width: 200px; }
.field.grow { flex: 1; }
.field label {
  display: block; font-size: .78rem; font-weight: 600; color: var(--muted);
  margin-bottom: 6px; text-transform: uppercase; letter-spacing: .04em;
}
.field input {
  width: 100%; padding: 13px 14px; border-radius: 12px;
  border: 1px solid var(--line); background: #0a1020; color: var(--text);
  font: inherit; outline: none;
}
.field input:focus { border-color: var(--accent); }
.sug {
  display: none; position: absolute; left: 0; right: 0; top: calc(100% + 4px);
  background: #0f172a; border: 1px solid var(--line); border-radius: 12px;
  max-height: 240px; overflow: auto; z-index: 40;
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
}
.sug.show { display: block; }
.sug-item {
  padding: 11px 14px; cursor: pointer; color: var(--text); font-size: .94rem;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.sug-item:hover, .sug-item.on { background: rgba(56,189,248,.12); color: var(--accent); }
.search-go { height: 48px; padding-inline: 22px; }
.search-hint {
  margin-top: 12px; font-size: .82rem; color: #64748b; text-align: center;
}
.search-hint code {
  background: rgba(255,255,255,.05); padding: 2px 8px; border-radius: 6px; color: #7dd3fc;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; justify-content: center; }
.chip {
  padding: 6px 12px; border-radius: 999px; font-size: .8rem; cursor: pointer;
  background: rgba(56,189,248,.08); border: 1px solid rgba(56,189,248,.22); color: #7dd3fc;
}
.chip:hover { background: rgba(56,189,248,.16); }

.results { margin-top: 28px; max-width: 920px; margin-inline: auto; }
.empty {
  text-align: center; padding: 36px 24px; border-radius: 20px;
  background: var(--panel); border: 1px dashed rgba(56,189,248,.3);
}
.empty h3 { font-size: 1.25rem; margin-bottom: 10px; }
.empty p { color: var(--muted); margin-bottom: 18px; max-width: 480px; margin-inline: auto; }
.empty .url-hint {
  font-family: ui-monospace, monospace; font-size: .85rem; color: #7dd3fc;
  background: rgba(0,0,0,.35); padding: 10px 14px; border-radius: 10px;
  display: inline-block; margin-bottom: 18px;
}

/* Google-like business card */
.gcard {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 0;
  background: #fff; color: #202124; border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.35); margin-bottom: 20px;
}
.gcard-main { padding: 20px 22px 18px; }
.gcard-map { min-height: 100%; background: #e8eaed; position: relative; }
.gcard-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.gcard-top { margin-bottom: 10px; }
.gcard-name {
  font-size: 1.35rem; font-weight: 500; color: #1a73e8; line-height: 1.25;
  margin-bottom: 4px;
}
.gcard-rating {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  font-size: .92rem; color: #5f6368; margin-bottom: 6px;
}
.gcard-rating .score { font-weight: 500; color: #202124; }
.gcard-rating .stars { color: #fbbc04; letter-spacing: 1px; }
.gcard-sub { font-size: .9rem; color: #5f6368; margin-bottom: 4px; }
.gcard-status { font-size: .9rem; margin-bottom: 12px; }
.gcard-status .open { color: #188038; font-weight: 500; }
.gcard-status .closed { color: #d93025; font-weight: 500; }
.gcard-actions {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 14px 0 16px;
}
.gcard-actions a, .gcard-actions button {
  display: inline-flex; flex-direction: column; align-items: center; gap: 4px;
  background: none; border: none; cursor: pointer; color: #1a73e8;
  font-size: .72rem; font-weight: 500; font-family: inherit; min-width: 56px;
}
.gcard-actions .circ {
  width: 40px; height: 40px; border-radius: 50%;
  background: #1a73e8; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.gcard-actions a:hover .circ { filter: brightness(1.08); }
.gcard-meta { border-top: 1px solid #e8eaed; padding-top: 12px; }
.gcard-row {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 8px 0; font-size: .9rem; color: #3c4043;
}
.gcard-row i { color: #5f6368; width: 18px; text-align: center; margin-top: 2px; }
.gcard-services {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px;
}
.gcard-services span {
  background: #f1f3f4; color: #3c4043; font-size: .78rem;
  padding: 4px 10px; border-radius: 999px;
}
.gcard-photo {
  width: 100%; height: 160px; object-fit: cover; display: block;
  border-radius: 12px; margin-bottom: 12px;
}
.gcard-badge {
  display: inline-block; font-size: .7rem; font-weight: 700;
  padding: 3px 8px; border-radius: 4px; margin-bottom: 8px;
}
.gcard-badge.demo { background: #fef7e0; color: #b06000; }
.gcard-badge.select { background: #e8f0fe; color: #1967d2; }
.gcard-foot {
  margin-top: 12px; padding-top: 12px; border-top: 1px solid #e8eaed;
  font-size: .8rem; color: #80868b;
}

.grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 18px; padding: 24px;
}
.card-ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(56,189,248,.12); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 14px;
}
.card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .94rem; }

.cta {
  text-align: center; padding: 80px 0;
  background: linear-gradient(135deg, #1e3a8a, #0f172a);
}
.cta h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 900; margin-bottom: 10px; }
.cta p { color: #cbd5e1; margin-bottom: 24px; }

.route-wrap { padding: 28px 0 60px; max-width: 960px; }
.back-btn {
  background: none; border: none; color: var(--muted); cursor: pointer;
  font: inherit; margin-bottom: 18px; display: inline-flex; align-items: center; gap: 8px;
}
.back-btn:hover { color: var(--accent); }

footer {
  border-top: 1px solid var(--line); padding: 40px 0 100px; text-align: center;
  background: #050814;
}
.f-brand { font-weight: 700; margin-bottom: 8px; }
.disclaimer {
  max-width: 720px; margin: 24px auto 0; font-size: .8rem; color: #64748b;
  line-height: 1.6; text-align: left; background: rgba(255,255,255,.03);
  border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px;
}

.wa {
  position: fixed; right: 22px; bottom: 22px; width: 56px; height: 56px;
  border-radius: 50%; background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
  box-shadow: 0 10px 28px rgba(37,211,102,.4); z-index: 99;
}
.wa:hover { transform: scale(1.06); color: #fff; }

@media (max-width: 860px) {
  .gcard { grid-template-columns: 1fr; }
  .gcard-map iframe { min-height: 240px; }
  .grid-3 { grid-template-columns: 1fr; }
  .nav-link { display: none; }
  .search-go { width: 100%; }
}

/* Guía física bajo callout */
.guide-img-wrap {
  margin: 28px auto 8px;
  max-width: 900px;
  text-align: center;
}
.guide-img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.08);
  display: block;
}
.guide-caption {
  margin-top: 12px;
  font-size: .9rem;
  color: #64748b;
}

/* Botón denuncia en ficha */
.gcard-report {
  margin-top: 10px;
  text-align: right;
}
.gcard-report button {
  background: none;
  border: none;
  color: #80868b;
  font-size: .78rem;
  font-family: inherit;
  cursor: pointer;
  text-decoration: underline;
  padding: 4px 0;
}
.gcard-report button:hover {
  color: #d93025;
}

/* Imagen guías */
.guide-img-wrap {
  margin: 32px auto 12px;
  max-width: 960px;
  text-align: center;
}
.guide-img {
  width: 100%;
  max-width: 960px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.1);
  display: block;
  margin: 0 auto;
  background: #0f172a;
  min-height: 180px;
  object-fit: contain;
}
.guide-caption {
  margin-top: 14px;
  font-size: .92rem;
  color: #94a3b8;
}

/* URLs de ejemplo visibles */
.example-urls {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.example-urls-title {
  text-align: center;
  font-size: .85rem;
  font-weight: 700;
  color: #94a3b8;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.example-url-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.example-url {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(56,189,248,.06);
  border: 1px solid rgba(56,189,248,.22);
  color: #e0f7fa;
  transition: .2s;
  text-align: left;
}
.example-url:hover {
  background: rgba(56,189,248,.14);
  border-color: #38bdf8;
  color: #fff;
}
.eu-path {
  font-family: ui-monospace, monospace;
  font-size: .82rem;
  color: #7dd3fc;
}
.eu-path strong { color: #38bdf8; }
.eu-tag {
  font-size: .75rem;
  color: #94a3b8;
}
.eu-empty { color: #fbbf24; }
.example-url-empty {
  border-color: rgba(251,191,36,.3);
  background: rgba(251,191,36,.06);
}
@media (max-width: 700px) {
  .example-url-list { grid-template-columns: 1fr; }
}

/* Cookie banner */
#cookieBanner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100000;
  padding: 16px;
  background: rgba(7, 11, 22, 0.96);
  border-top: 1px solid rgba(56, 189, 248, 0.25);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
}
.cookie-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-text {
  flex: 1;
  min-width: 240px;
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.55;
}
.cookie-text strong {
  display: block;
  color: #e0f7fa;
  font-size: 1rem;
  margin-bottom: 4px;
}
.cookie-text a { color: #38bdf8; text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-btn {
  border: none;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  font-size: 0.9rem;
}
.cookie-btn-ok {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  color: #061018;
}
.cookie-btn-ghost {
  background: transparent;
  color: #e0f7fa;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 600px) {
  .cookie-inner { flex-direction: column; align-items: stretch; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; }
}

/* —— Showcase guía —— */
.guide-showcase {
  margin: 36px auto 8px;
  max-width: 920px;
}
.guide-frame {
  position: relative;
  border-radius: 22px;
  padding: 10px;
  background: linear-gradient(145deg, rgba(56,189,248,.25), rgba(37,99,235,.12), rgba(255,255,255,.04));
  box-shadow: 0 28px 70px rgba(0,0,0,.55);
}
.guide-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(56,189,248,.5), transparent 40%, rgba(103,232,249,.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.guide-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  background: #0b1220;
  vertical-align: middle;
}
.guide-caption {
  text-align: center;
  margin-top: 16px;
  font-size: .92rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.guide-caption i { color: #38bdf8; }

/* —— URLs ejemplo chulas —— */
.example-urls {
  margin-top: 22px;
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(56,189,248,.07), rgba(255,255,255,.02));
  border: 1px solid rgba(56,189,248,.18);
}
.eu-header { text-align: center; margin-bottom: 16px; }
.eu-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #061018;
  background: linear-gradient(135deg, #38bdf8, #67e8f9);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.eu-header h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #eef6ff;
  margin-bottom: 4px;
}
.eu-header p {
  font-size: .88rem;
  color: #94a3b8;
}
.eu-header code {
  background: rgba(0,0,0,.35);
  padding: 2px 6px;
  border-radius: 6px;
  color: #7dd3fc;
  font-size: .82rem;
}
.example-url-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.example-url {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 14px;
  background: rgba(7,11,22,.75);
  border: 1px solid rgba(255,255,255,.08);
  transition: .22s transform, .22s border-color, .22s box-shadow;
  text-decoration: none;
  color: inherit;
}
.example-url:hover {
  transform: translateY(-3px);
  border-color: rgba(56,189,248,.45);
  box-shadow: 0 14px 36px rgba(56,189,248,.12);
}
.example-url.eu-hot {
  border-color: rgba(56,189,248,.35);
  background: linear-gradient(135deg, rgba(56,189,248,.12), rgba(7,11,22,.85));
}
.example-url.eu-miss {
  border-color: rgba(251,191,36,.28);
}
.eu-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(56,189,248,.12);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.eu-miss .eu-icon {
  background: rgba(251,191,36,.12);
  color: #fbbf24;
}
.eu-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.eu-label { font-size: .82rem; color: #94a3b8; }
.eu-path {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .88rem;
  font-weight: 600;
  color: #7dd3fc;
}
.eu-go {
  font-size: .78rem;
  font-weight: 700;
  color: #38bdf8;
  white-space: nowrap;
}
.eu-go-warn { color: #fbbf24; }

/* —— Footer mejorado —— */
.site-footer {
  border-top: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, #0a1020 0%, #050814 100%);
  padding: 56px 0 100px;
  text-align: left;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 36px;
}
.footer-logo { display: inline-block; margin-bottom: 12px; font-size: 1.5rem; }
.footer-tag {
  color: #94a3b8;
  font-size: .92rem;
  margin-bottom: 16px;
  max-width: 280px;
  line-height: 1.55;
}
.footer-col h4 {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #64748b;
  margin-bottom: 12px;
  font-weight: 700;
}
.footer-col a {
  display: block;
  color: #cbd5e1;
  font-size: .92rem;
  margin-bottom: 8px;
  text-decoration: none;
}
.footer-col a:hover { color: #38bdf8; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 22px;
}
.footer-bottom > p:first-child {
  font-size: .88rem;
  color: #94a3b8;
  margin-bottom: 12px;
}
.site-footer .disclaimer {
  max-width: none;
  margin: 0;
  font-size: .78rem;
  color: #64748b;
  line-height: 1.55;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  padding: 14px 16px;
  text-align: left;
}

@media (max-width: 860px) {
  .example-url-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .eu-go { display: none; }
}


/* ===== FOOTER PRO (override) ===== */
footer.site-footer {
  border-top: 1px solid rgba(255,255,255,.08) !important;
  background: linear-gradient(180deg, #0b1222 0%, #060a14 100%) !important;
  padding: 64px 0 110px !important;
  text-align: left !important;
}
footer.site-footer .footer-grid {
  display: grid !important;
  grid-template-columns: 1.5fr repeat(3, 1fr) !important;
  gap: 32px !important;
  margin-bottom: 40px !important;
  align-items: start !important;
}
footer.site-footer .footer-brand-col .logo {
  font-size: 1.6rem !important;
  margin-bottom: 12px !important;
}
footer.site-footer .footer-tag {
  color: #94a3b8 !important;
  font-size: .95rem !important;
  line-height: 1.6 !important;
  margin: 0 0 18px !important;
  max-width: 300px !important;
}
footer.site-footer .footer-col {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}
footer.site-footer .footer-col h4 {
  margin: 0 0 4px !important;
  font-size: .75rem !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  color: #64748b !important;
  font-weight: 700 !important;
}
footer.site-footer .footer-col a {
  display: block !important;
  color: #e2e8f0 !important;
  font-size: .92rem !important;
  margin: 0 !important;
  padding: 2px 0 !important;
  text-decoration: none !important;
  line-height: 1.4 !important;
}
footer.site-footer .footer-col a:hover {
  color: #38bdf8 !important;
}
footer.site-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07) !important;
  padding-top: 24px !important;
}
footer.site-footer .footer-bottom > p:first-child {
  color: #94a3b8 !important;
  font-size: .88rem !important;
  margin-bottom: 14px !important;
}
footer.site-footer .disclaimer {
  margin: 0 !important;
  max-width: none !important;
  text-align: left !important;
  font-size: .78rem !important;
  color: #64748b !important;
  line-height: 1.6 !important;
  background: rgba(255,255,255,.03) !important;
  border: 1px solid rgba(255,255,255,.06) !important;
  border-radius: 12px !important;
  padding: 14px 16px !important;
}

/* Cookie banner pro */
#cookieBanner {
  padding: 14px 18px 18px !important;
}
#cookieBanner .cookie-inner {
  max-width: 1000px !important;
  gap: 16px !important;
}
#cookieBanner .cookie-text p {
  margin: 0 !important;
  max-width: 620px !important;
}
#cookieBanner .cookie-btn {
  min-width: 140px !important;
}

@media (max-width: 900px) {
  footer.site-footer .footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 560px) {
  footer.site-footer .footer-grid {
    grid-template-columns: 1fr !important;
  }
}
