:root {
  --cyan: #00BBEA;
  --fucsia: #FF41A0;
  --negro: #111111;
  --bg: #F8F8F8;
  --surface: #fff;
  --muted: #6B6B6B;
  --border: rgba(0,0,0,0.08);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Poppins', sans-serif; background: var(--bg); color: var(--negro); }

/* HEADER */
header { background: var(--negro); height: 62px; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; }
.logo { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.logo-icon { width: 36px; height: 36px; background: var(--cyan); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-icon svg { width: 22px; height: 22px; }
.logo-text { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 18px; color: #fff; letter-spacing: -.5px; }
.logo-text span { color: var(--fucsia); }
.logo-sub { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--cyan); margin-left: 2px; align-self: flex-end; margin-bottom: 13px; }
nav { display: flex; gap: 2px; align-items: center; }
.nav-btn { background: none; border: none; color: rgba(255,255,255,.6); font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 500; padding: 7px 12px; border-radius: 7px; cursor: pointer; transition: all .15s; }
.nav-btn:hover, .nav-btn.active { color: #fff; background: rgba(255,255,255,.1); }
.nav-btn.active { color: var(--cyan); }
.btn-agenda { background: var(--fucsia); color: #fff; border-radius: 7px; font-weight: 600; margin-left: 6px; padding: 7px 14px; font-family: 'Poppins', sans-serif; font-size: 13px; text-decoration: none; display: flex; align-items: center; }
.btn-agenda:hover { background: #d93088; }
.hamburger { display: none; background: none; border: none; color: #fff; font-size: 22px; cursor: pointer; }
.mobile-menu { display: none; flex-direction: column; background: #1a1a1a; }
.mobile-menu button, .mobile-menu a { background: none; border: none; color: rgba(255,255,255,.8); font-family: 'Poppins', sans-serif; font-size: 14px; padding: 14px 1.5rem; text-align: left; cursor: pointer; border-bottom: 1px solid rgba(255,255,255,.06); text-decoration: none; display: block; }
.mobile-menu.open { display: flex; }

/* HERO */
.hero-wrap { background: var(--negro); }
.hero-loading { padding: 3rem; text-align: center; }
.hero-editorial { max-width: 1100px; margin: 0 auto; padding: 2.5rem 1.5rem 0; }
.hero-label { display: inline-flex; align-items: center; gap: 6px; background: var(--fucsia); color: #fff; font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; padding: 4px 12px; border-radius: 20px; margin-bottom: 1rem; }
.hero-grid { display: grid; grid-template-columns: 1fr 320px; gap: 1.5rem; align-items: end; padding-bottom: 2rem; }
.hero-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--cyan); margin-bottom: .5rem; }
.hero-title { font-family: 'Playfair Display', serif; font-weight: 800; font-size: clamp(1.8rem,3.5vw,2.8rem); color: #fff; line-height: 1.1; margin-bottom: .75rem; }
.hero-title em { color: var(--fucsia); font-style: italic; }
.hero-excerpt { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.7; margin-bottom: 1rem; }
.hero-meta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero-author { display: flex; align-items: center; gap: 8px; }
.author-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--fucsia); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: #fff; flex-shrink: 0; }
.author-name { font-size: 12px; color: rgba(255,255,255,.7); }
.hero-date { font-size: 12px; color: rgba(255,255,255,.4); }
.read-btn { background: var(--cyan); color: var(--negro); border: none; border-radius: 8px; padding: 9px 20px; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 800; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; transition: background .15s; letter-spacing: .3px; white-space: nowrap; margin-top: 1.25rem; }
.read-btn:hover { background: #00a8d4; }
.hero-side-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; overflow: hidden; cursor: pointer; }
.hero-side-img { height: 140px; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.hero-side-body { padding: .85rem; }
.hero-side-cat { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--cyan); margin-bottom: .3rem; }
.hero-side-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: .5rem; }
.hero-side-date { font-size: 11px; color: rgba(255,255,255,.4); }

/* CAT TABS */
.cat-tabs { background: #fff; border-bottom: 1px solid var(--border); padding: 0 1.5rem; }
.cat-tabs-inner { display: flex; overflow-x: auto; scrollbar-width: none; max-width: 1100px; margin: 0 auto; }
.cat-tabs-inner::-webkit-scrollbar { display: none; }
.cat-tab { background: none; border: none; border-bottom: 2.5px solid transparent; font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 500; color: var(--muted); padding: 12px 14px; cursor: pointer; white-space: nowrap; transition: all .15s; }
.cat-tab:hover { color: var(--negro); }
.cat-tab.active { color: var(--fucsia); border-bottom-color: var(--fucsia); font-weight: 600; }

/* CONTENT */
.content-wrap { max-width: 1100px; margin: 0 auto; padding: 2rem 1.5rem; }
.content-grid { display: grid; grid-template-columns: 1fr 300px; gap: 2rem; }
.feed-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; }
.feed-header h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.1rem; }
.feed-header h2 span { color: var(--fucsia); }

/* NEWS CARD */
.news-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; cursor: pointer; transition: transform .15s, box-shadow .15s; display: flex; margin-bottom: 1rem; }
.news-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.news-card-img { width: 160px; min-width: 160px; height: 130px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; flex-shrink: 0; overflow: hidden; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; }
.news-card-body { padding: .85rem 1rem; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.news-card-tags { display: flex; gap: 6px; margin-bottom: .4rem; flex-wrap: wrap; }
.news-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; padding: 2px 8px; border-radius: 20px; }
.news-card-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; line-height: 1.3; color: var(--negro); margin-bottom: .3rem; }
.news-card-excerpt { font-size: 12px; color: var(--muted); line-height: 1.5; }
.news-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: .6rem; }
.news-card-meta { font-size: 11px; color: var(--muted); }
.news-read-more { font-size: 11px; font-weight: 600; color: var(--fucsia); background: none; border: none; cursor: pointer; padding: 0; }

/* FEATURED */
.news-card-featured { background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; cursor: pointer; transition: transform .15s, box-shadow .15s; margin-bottom: 1rem; }
.news-card-featured:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.featured-img { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; position: relative; overflow: hidden; }
.featured-img img { width: 100%; height: 100%; object-fit: cover; }
.featured-badge { position: absolute; top: 12px; left: 12px; background: var(--fucsia); color: #fff; font-family: 'Montserrat', sans-serif; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 3px 10px; border-radius: 20px; }
.featured-body { padding: 1rem 1.1rem; }
.featured-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; line-height: 1.25; color: var(--negro); margin-bottom: .4rem; }
.featured-excerpt { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: .75rem; }
.featured-footer { display: flex; justify-content: space-between; align-items: center; }
.featured-meta { font-size: 11px; color: var(--muted); }

/* SIDEBAR */
.sidebar-section { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 1.1rem; margin-bottom: 1rem; }
.sidebar-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 1rem; display: flex; align-items: center; gap: 6px; }
.sidebar-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.agenda-item { display: flex; gap: .75rem; padding: .6rem 0; border-bottom: 1px solid var(--border); cursor: pointer; }
.agenda-item:last-child { border-bottom: none; padding-bottom: 0; }
.agenda-item:hover .agenda-title { color: var(--fucsia); }
.agenda-date-box { width: 42px; height: 42px; border-radius: 10px; background: var(--negro); display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0; }
.agenda-day { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 800; color: #fff; line-height: 1; }
.agenda-mon { font-size: 9px; font-weight: 600; text-transform: uppercase; color: var(--cyan); letter-spacing: .5px; }
.agenda-title { font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; line-height: 1.25; transition: color .15s; }
.agenda-place { font-size: 11px; color: var(--muted); margin-top: 2px; }
.ad-box { background: #F0F0F0; border-radius: 12px; padding: 1.5rem; text-align: center; border: 2px dashed #ccc; }
.ad-label { font-size: 10px; color: #999; text-transform: uppercase; letter-spacing: 1px; margin-bottom: .5rem; }
.ad-box p { font-size: 12px; color: #aaa; }
.newsletter { background: var(--negro); border-radius: 14px; padding: 1.25rem; text-align: center; }
.newsletter h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: .95rem; color: #fff; margin-bottom: .3rem; }
.newsletter p { font-size: 12px; color: rgba(255,255,255,.5); margin-bottom: .85rem; }
.newsletter-form { display: flex; gap: 6px; }
.newsletter-form input { flex: 1; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 8px; padding: 8px 10px; font-size: 12px; color: #fff; font-family: 'Poppins', sans-serif; outline: none; min-width: 0; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-form button { background: var(--fucsia); border: none; color: #fff; border-radius: 8px; padding: 8px 12px; font-size: 12px; font-weight: 600; font-family: 'Poppins', sans-serif; cursor: pointer; white-space: nowrap; }

/* NOTA VIEW */
.nota-wrap { max-width: 1100px; margin: 0 auto; padding: 2rem 1.5rem; display: grid; grid-template-columns: 1fr 300px; gap: 2rem; align-items: start; }
.nota-inner {}
.nota-back { background: none; border: none; color: var(--fucsia); font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600; cursor: pointer; padding: 0; margin-bottom: 1.5rem; display: block; }
.nota-back:hover { opacity: .75; }
.nota-header { margin-bottom: 1.5rem; }
.nota-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--cyan); margin-bottom: .5rem; }
.nota-title { font-family: 'Playfair Display', serif; font-weight: 800; font-size: clamp(1.6rem,3vw,2.4rem); line-height: 1.15; margin-bottom: .75rem; }
.nota-extracto { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 1rem; font-style: italic; border-left: 3px solid var(--fucsia); padding-left: 1rem; }
.nota-meta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; padding: 1rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 1.5rem; }
.nota-author { display: flex; align-items: center; gap: 8px; }
.nota-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--fucsia); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #fff; }
.nota-author-name { font-size: 13px; font-weight: 600; }
.nota-date { font-size: 12px; color: var(--muted); }
.nota-hero-img { width: 100%; max-height: 420px; object-fit: cover; border-radius: 14px; margin-bottom: 1.5rem; }
.nota-video { width: 100%; aspect-ratio: 16/9; border-radius: 14px; margin-bottom: 1.5rem; border: none; }
.nota-body { font-size: 15px; line-height: 1.9; color: #222; }
.nota-body p { margin-bottom: 1.25rem; }
.nota-body h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; margin: 2rem 0 .75rem; }
.nota-body h3 { font-family: 'Montserrat', sans-serif; font-size: 1.1rem; font-weight: 700; margin: 1.5rem 0 .5rem; }
.nota-body blockquote { border-left: 3px solid var(--fucsia); padding-left: 1rem; color: var(--muted); font-style: italic; margin: 1.5rem 0; }
.nota-source { margin-top: 2rem; padding: 1rem; background: #F0F9FF; border-radius: 10px; border-left: 3px solid var(--cyan); }
.nota-source p { font-size: 13px; color: var(--muted); }
.nota-source a { color: var(--cyan); font-weight: 600; }
.nota-sidebar {}

/* LEGAL PAGES */
.page-wrap { max-width: 760px; margin: 0 auto; padding: 2rem 1.5rem; }
.page-wrap h1 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800; margin-bottom: .5rem; }
.page-wrap h2 { font-family: 'Montserrat', sans-serif; font-size: 1.1rem; font-weight: 700; margin: 1.5rem 0 .5rem; }
.page-wrap p { font-size: 14px; line-height: 1.8; color: #444; margin-bottom: 1rem; }
.page-wrap a { color: var(--cyan); }

/* LOADING */
.loading-state { text-align: center; padding: 3rem; color: var(--muted); }
.spinner { width: 36px; height: 36px; border: 3px solid var(--border); border-top-color: var(--cyan); border-radius: 50%; animation: spin .8s linear infinite; margin: 0 auto 1rem; }
@keyframes spin { to { transform: rotate(360deg); } }
.error-state { text-align: center; padding: 3rem; color: var(--muted); }
.error-state p:first-child { font-size: 2rem; margin-bottom: .5rem; }
.error-state button { margin-top: 1rem; background: var(--negro); color: #fff; border: none; border-radius: 8px; padding: 8px 20px; font-family: 'Poppins', sans-serif; cursor: pointer; }
.no-ev { text-align: center; padding: 3rem; color: var(--muted); }
.no-ev p:first-child { font-size: 2.5rem; margin-bottom: .5rem; }

/* FOOTER */
footer { background: var(--negro); padding: 2rem 1.5rem; margin-top: 4rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,.4); text-decoration: none; cursor: pointer; }
.footer-links a:hover { color: #fff; }
.footer-note { font-size: 11px; color: rgba(255,255,255,.25); }

/* RESPONSIVE */
@media (max-width: 700px) {
  nav { display: none; }
  .hamburger { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side-card { display: none; }
  .content-grid { grid-template-columns: 1fr; }
  .nota-wrap { grid-template-columns: 1fr; }
  .nota-sidebar { display: none; }
  .news-card { flex-direction: column; }
  .news-card-img { width: 100%; height: 160px; min-width: unset; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
