/* Pizzería Picasso – Canal ético / SII (Ley 2/2023) */

:root {
  --picasso-bg: #0f0f12;
  --picasso-surface: #18181f;
  --picasso-border: rgba(212, 165, 116, 0.2);
  --picasso-gold: #d4a574;
  --picasso-gold-dim: #b8895c;
  --picasso-cream: #f5ebe0;
  --picasso-muted: #9a8f86;
  --picasso-accent: #c45c3e;
  --font-head: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --max: 820px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--picasso-bg);
  color: var(--picasso-cream);
  line-height: 1.65;
  cursor: auto;
  min-height: 100vh;
}

a {
  color: var(--picasso-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
a:hover { color: #e8c9a8; }

.eth-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 18, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--picasso-border);
}

.eth-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.eth-brand {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--picasso-cream);
  text-decoration: none;
}
.eth-brand:hover { color: var(--picasso-gold); text-decoration: none; }

.eth-header__badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--picasso-muted);
  border: 1px solid var(--picasso-border);
  padding: 6px 12px;
  border-radius: 100px;
}

.eth-hero {
  padding: 56px 24px 48px;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(196, 92, 62, 0.12) 0%, transparent 55%),
    var(--picasso-bg);
}

.eth-hero__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.eth-hero__tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--picasso-gold);
  margin-bottom: 16px;
}

.eth-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--picasso-cream);
}

.eth-hero__lead {
  font-size: 1.05rem;
  color: var(--picasso-muted);
  max-width: 38em;
  margin: 0 auto 28px;
}

.eth-hero__lead strong {
  color: var(--picasso-cream);
  font-weight: 600;
}

.eth-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.eth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: none;
  cursor: pointer;
}

.eth-btn--primary {
  background: linear-gradient(135deg, var(--picasso-accent), #a84830);
  color: #fff;
  box-shadow: 0 4px 24px rgba(196, 92, 62, 0.35);
}
.eth-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(196, 92, 62, 0.45);
  color: #fff;
  text-decoration: none;
}

.eth-btn--ghost {
  background: transparent;
  color: var(--picasso-cream);
  border: 1px solid var(--picasso-border);
}
.eth-btn--ghost:hover {
  border-color: var(--picasso-gold);
  color: var(--picasso-gold);
  text-decoration: none;
}

.eth-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.eth-section {
  margin-bottom: 40px;
}

.eth-card {
  background: var(--picasso-surface);
  border: 1px solid var(--picasso-border);
  border-radius: var(--radius);
  padding: 28px 28px 26px;
  margin-bottom: 20px;
}

.eth-card h2 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--picasso-gold);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.eth-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--picasso-cream);
  margin: 20px 0 10px;
}

.eth-card p,
.eth-card li {
  font-size: 0.95rem;
  color: var(--picasso-muted);
}

.eth-card p + p { margin-top: 12px; }

.eth-card ul {
  margin: 12px 0 0 1.1em;
  list-style: disc;
  color: var(--picasso-muted);
}
.eth-card ul li + li { margin-top: 8px; }

.eth-card strong { color: var(--picasso-cream); font-weight: 600; }

.eth-highlight {
  background: rgba(212, 165, 116, 0.08);
  border-left: 3px solid var(--picasso-gold);
  padding: 14px 18px;
  margin-top: 16px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: var(--picasso-muted);
}

.eth-links-grid {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.eth-official-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--picasso-border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--picasso-cream);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.eth-official-link:hover {
  border-color: var(--picasso-gold);
  background: rgba(212, 165, 116, 0.06);
  color: var(--picasso-gold);
}

.eth-official-link span {
  display: block;
  font-size: 0.8rem;
  color: var(--picasso-muted);
  margin-top: 4px;
}

.eth-placeholder {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(196, 92, 62, 0.15);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.85em;
  color: var(--picasso-gold-dim);
  font-style: italic;
}

.eth-footer {
  border-top: 1px solid var(--picasso-border);
  padding: 32px 24px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--picasso-muted);
}

.eth-footer a { color: var(--picasso-muted); }
.eth-footer a:hover { color: var(--picasso-gold); }

@media (max-width: 600px) {
  .eth-header__inner { flex-direction: column; align-items: flex-start; }
  .eth-hero__cta { flex-direction: column; width: 100%; }
  .eth-btn { width: 100%; }
}
