@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Lato:wght@300;400;700&display=swap');

:root {
  --bg:       #080812;
  --surface:  #0f0f1e;
  --surface2: #161628;
  --gold:     #c9a44c;
  --gold-lt:  #e8cb78;
  --text:     #e5ddd0;
  --muted:    #80756a;
  --border:   #1e1e34;
  --radius:   10px;
  --max-w:    1100px;
  --nav-h:    70px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-lt); }
img { max-width: 100%; display: block; }

/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,8,18,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 24px; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  color: var(--text); font-family: 'Cinzel', serif;
}
.nav-logo .sym { font-size: 22px; color: var(--gold); }
.nav-logo .name { font-size: 15px; font-weight: 700; line-height: 1.2; }
.nav-logo .sub  { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: var(--muted); font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  padding: 9px 22px; background: var(--gold); color: #080812;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  border-radius: 6px; transition: background .2s;
}
.nav-cta:hover { background: var(--gold-lt); color: #080812; }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

/* ─── HERO ─── */
.hero {
  min-height: 92vh;
  background: radial-gradient(ellipse at 50% 0%, #1a1235 0%, #080812 70%);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 80px 24px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a44c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: .6;
}
.hero-inner { max-width: 760px; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px; border: 1px solid rgba(201,164,76,.3);
  background: rgba(201,164,76,.08); border-radius: 40px;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700; line-height: 1.15;
  color: var(--text); margin-bottom: 18px;
}
.hero h1 span { color: var(--gold); }
.hero p { font-size: 1.1rem; color: var(--muted); max-width: 560px; margin: 0 auto 36px; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-gold {
  padding: 14px 32px; background: var(--gold); color: #080812;
  font-weight: 700; border-radius: 8px; font-size: 14px; letter-spacing: .05em;
  transition: all .2s;
}
.btn-gold:hover { background: var(--gold-lt); color: #080812; transform: translateY(-2px); }
.btn-ghost {
  padding: 14px 32px; border: 1px solid rgba(201,164,76,.4);
  color: var(--gold); border-radius: 8px; font-size: 14px; font-weight: 700;
  transition: all .2s;
}
.btn-ghost:hover { background: rgba(201,164,76,.1); }

/* ─── SECTIONS ─── */
.section { padding: 80px 24px; }
.section-alt { background: var(--surface); }
.container { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  display: block; font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 12px;
}
.section-title {
  font-family: 'Cinzel', serif; font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--text); margin-bottom: 14px;
}
.section-sub { color: var(--muted); max-width: 540px; font-size: .95rem; }

/* ─── PILARES ─── */
.pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 20px; margin-top: 48px; }
.pillar-card {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 28px;
  transition: border-color .3s, transform .3s;
}
.pillar-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.pillar-icon {
  width: 56px; height: 56px; background: rgba(201,164,76,.12);
  border: 1px solid rgba(201,164,76,.25); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.pillar-card h3 { font-family: 'Cinzel', serif; font-size: 1.1rem; color: var(--gold-lt); margin-bottom: 10px; }
.pillar-card p { font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* ─── BLOG CARDS ─── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 22px; margin-top: 48px; }
.blog-card {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color .3s, transform .3s; display: flex; flex-direction: column;
}
.blog-card:hover { border-color: rgba(201,164,76,.5); transform: translateY(-4px); }
.blog-card-img {
  height: 160px;
  background: linear-gradient(135deg, #1a1235 0%, #0e1428 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-cat {
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 10px;
}
.blog-card h3 { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--text); margin-bottom: 10px; line-height: 1.4; }
.blog-card p { font-size: .85rem; color: var(--muted); flex: 1; }
.blog-card-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border); }
.blog-date { font-size: .78rem; color: var(--muted); }
.read-more { font-size: .82rem; font-weight: 700; color: var(--gold); }

/* ─── CENTRO INFO ─── */
.centro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-top: 48px; }
.centro-info-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.centro-info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-icon { width: 44px; height: 44px; flex-shrink: 0; background: rgba(201,164,76,.1); border: 1px solid rgba(201,164,76,.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.info-label { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); font-weight: 700; margin-bottom: 4px; }
.info-val { font-size: .95rem; color: var(--text); }
.map-box {
  background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius);
  height: 280px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--muted); font-size: .9rem;
}
.map-box a { font-weight: 700; color: var(--gold); font-size: .95rem; }

/* ─── FORM ─── */
.form-card { background: var(--surface2); border: 1px solid var(--border); border-radius: 16px; padding: 48px; max-width: 640px; margin: 48px auto 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
input, textarea, select {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text); font-size: 14px; font-family: 'Lato', sans-serif;
  transition: border-color .2s;
}
input:focus, textarea:focus { outline: none; border-color: var(--gold); }
input::placeholder, textarea::placeholder { color: var(--muted); }
textarea { resize: vertical; min-height: 110px; }
.form-honey { display: none; }
.btn-submit {
  width: 100%; padding: 15px; background: var(--gold); color: #080812;
  font-weight: 700; font-size: 15px; letter-spacing: .06em; text-transform: uppercase;
  border: none; border-radius: 8px; cursor: pointer; transition: all .2s;
  font-family: 'Lato', sans-serif; margin-top: 8px;
}
.btn-submit:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.form-msg { text-align: center; padding: 12px; border-radius: 8px; margin-top: 12px; font-size: .9rem; display: none; }
.form-msg.ok  { background: rgba(34,197,94,.1); color: #4ade80; display: block; }
.form-msg.err { background: rgba(239,68,68,.1); color: #f87171; display: block; }

/* ─── ARTICLE PAGE ─── */
.article-hero { padding: 72px 24px 48px; background: radial-gradient(ellipse at 50% 0%, #14112a 0%, #080812 70%); }
.article-hero .container { max-width: 760px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 20px; font-size: .82rem; }
.article-cat { padding: 4px 12px; background: rgba(201,164,76,.12); border: 1px solid rgba(201,164,76,.3); border-radius: 20px; color: var(--gold); font-weight: 700; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.article-date, .article-rt { color: var(--muted); }
.article-hero h1 { font-family: 'Cinzel', serif; font-size: clamp(1.6rem, 4vw, 2.6rem); color: var(--text); line-height: 1.25; margin-bottom: 16px; }
.article-hero .excerpt { font-size: 1.05rem; color: var(--muted); border-left: 3px solid var(--gold); padding-left: 18px; }
.article-body { max-width: 760px; margin: 0 auto; padding: 48px 24px; }
.article-content h2 { font-family: 'Cinzel', serif; font-size: 1.4rem; color: var(--gold-lt); margin: 36px 0 14px; }
.article-content h3 { font-family: 'Cinzel', serif; font-size: 1.1rem; color: var(--text); margin: 28px 0 10px; }
.article-content p  { color: var(--muted); margin-bottom: 18px; line-height: 1.8; font-size: .97rem; }
.article-content ul { list-style: none; padding-left: 0; margin-bottom: 18px; }
.article-content li { color: var(--muted); padding: 6px 0 6px 22px; position: relative; }
.article-content li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: .7rem; top: 10px; }
.article-content a { color: var(--gold); }
.article-content blockquote { border-left: 3px solid var(--gold); padding: 14px 20px; background: var(--surface2); border-radius: 0 8px 8px 0; margin: 24px 0; color: var(--text); font-style: italic; }

/* ─── CTA STRIP ─── */
.cta-strip { background: linear-gradient(135deg, #12102a 0%, #0a0818 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 64px 24px; text-align: center; }
.cta-strip h2 { font-family: 'Cinzel', serif; font-size: clamp(1.4rem, 3vw, 2rem); color: var(--text); margin-bottom: 12px; }
.cta-strip p { color: var(--muted); max-width: 480px; margin: 0 auto 28px; font-size: .95rem; }

/* ─── FOOTER ─── */
footer { background: #050509; border-top: 1px solid var(--border); padding: 48px 24px 28px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .sym { font-size: 24px; color: var(--gold); }
.footer-brand .name { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--text); margin: 8px 0 4px; }
.footer-brand p { font-size: .82rem; color: var(--muted); max-width: 260px; }
.footer-col h4 { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); margin-bottom: 14px; font-weight: 700; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: .85rem; color: var(--muted); }
.footer-col a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: .78rem; color: var(--muted); }

/* ─── UTIL ─── */
.divider { width: 60px; height: 2px; background: var(--gold); margin: 16px 0 40px; opacity: .5; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { padding: 4px 12px; border: 1px solid var(--border); border-radius: 20px; font-size: .75rem; color: var(--muted); }
.back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: .85rem; font-weight: 700; margin-bottom: 24px; }
.back-link:hover { color: var(--gold); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: rgba(8,8,18,.98); padding: 24px; gap: 20px; border-bottom: 1px solid var(--border); }
  .nav-links.open + .nav-cta { display: block; }
  .centro-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-card { padding: 28px 20px; }
}
