:root {
--burgundy: #7B1B30;
--gold: #C9A84C;
--light-gold: #E8D5B5;
--dark-burgundy: #4A0E1C;
--bg: #F7F5F0;
--text-primary: #1A1A1A;
--text-secondary: #5C5C5C;
--cream: #FAF8F5;
--white: #FFFFFF;
--hero-overlay: rgba(75, 14, 28, 0.35);
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
}

body {
font-family: 'Inter', sans-serif;
font-size: 16px;
line-height: 1.75;
color: var(--text-primary);
background-color: var(--bg);
overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Playfair Display', serif;
font-weight: 400;
line-height: 1.15;
}

.top-bar {
background-color: var(--dark-burgundy);
padding: 10px 0;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1040;
transition: transform 0.3s ease;
}

.top-bar.hidden {
transform: translateY(-100%);
}

.top-bar-text {
font-family: 'Inter', sans-serif;
font-size: 11px;
font-weight: 500;
letter-spacing: 1px;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.7);
}

.top-bar-text a {
color: var(--gold);
text-decoration: none;
transition: color 0.3s ease;
}

.top-bar-text a:hover {
color: var(--light-gold);
}

.navbar {
background-color: rgba(74, 14, 28, 0.92);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
padding: 0;
top: 38px;
z-index: 1030;
transition: all 0.3s ease;
}

.navbar.scrolled {
background-color: rgba(74, 14, 28, 0.98);
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-logo {
height: 48px;
width: auto;
border-radius: 50%;
}

.navbar-toggler {
border: none;
padding: 8px;
}

.navbar-toggler:focus {
box-shadow: none;
}

.navbar-toggler-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201, 168, 76, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
font-family: 'Inter', sans-serif;
font-size: 11px;
font-weight: 600;
letter-spacing: 1.5px;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.7) !important;
padding: 20px 14px !important;
transition: color 0.3s ease;
}

.nav-link:hover {
color: var(--gold) !important;
}

.social-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
color: var(--gold);
font-size: 14px;
transition: color 0.3s ease;
text-decoration: none;
}

.social-icon:hover {
color: var(--light-gold);
}

.hero {
position: relative;
width: 100%;
height: 100vh;
min-height: 600px;
overflow: hidden;
display: flex;
align-items: flex-end;
}

.hero-img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 0;
}

.hero-overlay {
position: absolute;
inset: 0;
background: var(--hero-overlay);
z-index: 1;
}

.grain-overlay {
position: absolute;
inset: 0;
pointer-events: none;
z-index: 2;
mix-blend-mode: overlay;
}

.grain-overlay svg {
width: 100%;
height: 100%;
display: block;
}

.hero-content {
position: relative;
z-index: 3;
padding: 0 0 80px 64px;
max-width: 700px;
opacity: 0;
}

.hero-label {
font-family: 'JetBrains Mono', monospace;
font-size: 12px;
font-weight: 500;
letter-spacing: 4px;
text-transform: uppercase;
color: var(--white);
margin-bottom: 20px;
opacity: 0;
}

.hero-headline {
font-family: 'Playfair Display', serif;
font-size: clamp(48px, 6vw, 80px);
font-weight: 400;
line-height: 1.05;
color: var(--white);
margin-bottom: 16px;
}

.tzw-word {
display: inline-block;
overflow: hidden;
vertical-align: bottom;
}

.tzw-char {
display: inline-block;
will-change: transform, opacity;
}

.hero-subtitle {
font-family: 'Playfair Display', serif;
font-size: clamp(22px, 2vw, 32px);
font-weight: 400;
font-style: italic;
line-height: 1.2;
color: var(--gold);
opacity: 0;
}

.hero-cta {
font-family: 'Inter', sans-serif;
font-size: 12px;
font-weight: 600;
letter-spacing: 2px;
text-transform: uppercase;
color: var(--white);
text-decoration: none;
border-bottom: 1px solid var(--white);
padding-bottom: 4px;
display: inline-block;
margin-top: 32px;
opacity: 0;
transition: color 0.3s ease, border-color 0.3s ease;
}

.hero-cta:hover {
color: var(--gold);
border-color: var(--gold);
}

.scroll-indicator {
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
z-index: 3;
display: flex;
flex-direction: column;
align-items: center;
gap: 4px;
}

.scroll-line {
width: 1px;
height: 40px;
background: rgba(255, 255, 255, 0.4);
position: relative;
overflow: hidden;
}

.scroll-line::after {
content: '';
position: absolute;
top: -100%;
left: 0;
width: 100%;
height: 100%;
background: var(--gold);
animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
0% { top: -100%; }
50% { top: 0; }
100% { top: 100%; }
}

.scroll-dot {
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--gold);
animation: dotFade 3s ease-in-out infinite;
}

@keyframes dotFade {
0%, 100% { opacity: 1; }
50% { opacity: 0.3; }
}

.ticker-wrap {
background: var(--dark-burgundy);
height: 56px;
overflow: hidden;
display: flex;
align-items: center;
position: relative;
}

.ticker-track {
display: flex;
white-space: nowrap;
animation: ticker-scroll 30s linear infinite;
}

.ticker-text {
display: inline-block;
font-family: 'Inter', sans-serif;
font-size: 11px;
font-weight: 600;
letter-spacing: 3px;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.4);
padding-right: 2rem;
position: relative;
}

.ticker-text::before {
content: attr(data-text);
position: absolute;
inset: 0;
color: transparent;
background: linear-gradient(135deg, rgba(201, 168, 76, 0.3) 0%, #C9A84C 50%, rgba(201, 168, 76, 0.3) 100%);
background-size: 80% 100%;
background-repeat: no-repeat;
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
animation: ticker-shine 8s infinite;
}

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

@keyframes ticker-shine {
0% { background-position: -500%; }
50% { background-position: 500%; }
100% { background-position: -500%; }
}

.section-portada {
padding: clamp(80px, 10vh, 140px) 0;
background: var(--bg);
}

.portada-img-main {
aspect-ratio: 16 / 10;
margin-bottom: 24px;
}

.thumb-img-wrap {
width: 80px;
height: 60px;
}

.thumb-img-wrap .reveal-img {
width: 100%;
height: 100%;
object-fit: cover;
}

.section-tag {
font-family: 'JetBrains Mono', monospace;
font-size: 12px;
font-weight: 500;
letter-spacing: 3px;
text-transform: uppercase;
color: var(--gold);
display: block;
margin-bottom: 12px;
}

.portada-title {
font-size: clamp(28px, 3vw, 48px);
font-weight: 400;
line-height: 1.15;
color: var(--text-primary);
margin-bottom: 16px;
}

.portada-excerpt {
font-family: 'Inter', sans-serif;
font-size: 16px;
line-height: 1.75;
color: var(--text-secondary);
max-width: 480px;
margin-bottom: 20px;
}

.portada-secondary {
padding-top: 8px;
}

.article-title-sm {
font-family: 'Playfair Display', serif;
font-size: clamp(16px, 1.4vw, 20px);
font-weight: 500;
line-height: 1.3;
color: var(--text-primary);
margin-bottom: 0;
}

.article-excerpt-sm {
font-family: 'Inter', sans-serif;
font-size: 15px;
line-height: 1.7;
color: var(--text-secondary);
}

.section-divider {
width: 100%;
height: 1px;
background: rgba(123, 27, 48, 0.15);
margin: 24px 0;
}

.text-link {
font-family: 'Inter', sans-serif;
font-size: 12px;
font-weight: 600;
letter-spacing: 1.5px;
text-transform: uppercase;
color: var(--burgundy);
text-decoration: none;
border-bottom: 1px solid transparent;
padding-bottom: 2px;
transition: color 0.3s ease, border-color 0.3s ease;
display: inline-block;
}

.text-link:hover {
color: var(--gold);
border-color: var(--gold);
}

.text-link i {
font-size: 10px;
transition: transform 0.3s ease;
}

.text-link:hover i {
transform: translateX(4px);
}

.section-reciente {
padding: clamp(80px, 10vh, 140px) 0;
background: var(--cream);
}

.section-header {
margin-bottom: 16px;
}

.section-title {
font-size: clamp(28px, 3vw, 48px);
font-weight: 400;
color: var(--burgundy);
white-space: nowrap;
}

.section-line {
height: 1px;
background: rgba(123, 27, 48, 0.2);
min-width: 60px;
}

.section-description {
font-family: 'Inter', sans-serif;
font-size: 16px;
line-height: 1.75;
color: var(--text-secondary);
max-width: 700px;
}

.article-card {
height: 100%;
}

.card-img-wrap {
aspect-ratio: 4 / 3;
margin-bottom: 20px;
overflow: hidden;
border-radius: 2px;
}

.card-img-wrap .reveal-img {
transition: transform 0.6s ease;
}

.article-card:hover .card-img-wrap .reveal-img {
transform: scale(1.05);
}

.card-tag {
font-family: 'JetBrains Mono', monospace;
font-size: 11px;
font-weight: 500;
letter-spacing: 2px;
text-transform: uppercase;
color: var(--gold);
display: block;
margin-bottom: 10px;
}

.card-title {
font-family: 'Playfair Display', serif;
font-size: clamp(18px, 1.5vw, 24px);
font-weight: 500;
line-height: 1.3;
color: var(--text-primary);
margin-bottom: 12px;
transition: color 0.3s ease;
}

.article-card:hover .card-title {
color: var(--burgundy);
}

.card-excerpt {
font-family: 'Inter', sans-serif;
font-size: 15px;
line-height: 1.7;
color: var(--text-secondary);
margin-bottom: 16px;
padding-bottom: 16px;
border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.section-senado {
padding: clamp(80px, 10vh, 140px) 0;
background: var(--bg);
}

.senado-img-wrap {
aspect-ratio: 3 / 4;
position: relative;
overflow: hidden;
border-radius: 2px;
}

.img-label {
position: absolute;
bottom: 0;
left: 0;
background: var(--burgundy);
color: var(--white);
font-family: 'JetBrains Mono', monospace;
font-size: 11px;
font-weight: 500;
letter-spacing: 2px;
text-transform: uppercase;
padding: 6px 12px;
z-index: 3;
}

.article-list {
margin-top: 32px;
}

.article-list-item {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 16px;
padding: 24px 0;
border-bottom: 1px solid rgba(123, 27, 48, 0.1);
cursor: pointer;
transition: transform 0.3s ease;
}

.article-list-item:first-child {
border-top: 1px solid rgba(123, 27, 48, 0.1);
}

.article-list-item:hover {
transform: translateX(8px);
}

.article-list-item:hover .article-list-title {
color: var(--burgundy);
}

.article-list-item:hover .article-list-arrow {
color: var(--gold);
transform: translateX(4px);
}

.article-list-title {
font-family: 'Playfair Display', serif;
font-size: clamp(16px, 1.3vw, 20px);
font-weight: 500;
line-height: 1.3;
color: var(--text-primary);
margin-bottom: 8px;
transition: color 0.3s ease;
}

.article-list-excerpt {
font-family: 'Inter', sans-serif;
font-size: 14px;
line-height: 1.7;
color: var(--text-secondary);
margin-bottom: 0;
}

.article-list-arrow {
color: var(--text-secondary);
font-size: 14px;
flex-shrink: 0;
margin-top: 4px;
transition: color 0.3s ease, transform 0.3s ease;
}

.btn-burgundy {
font-family: 'Inter', sans-serif;
font-size: 12px;
font-weight: 600;
letter-spacing: 1.5px;
text-transform: uppercase;
color: var(--white);
background: var(--burgundy);
border: none;
padding: 14px 32px;
text-decoration: none;
display: inline-block;
transition: background 0.3s ease;
}

.btn-burgundy:hover {
background: var(--dark-burgundy);
color: var(--white);
}

.section-movimiento {
padding: clamp(80px, 10vh, 140px) 0;
background: var(--burgundy);
}

.section-header-white {
text-align: center;
max-width: 900px;
margin: 0 auto;
}

.section-title-white {
font-size: clamp(28px, 3vw, 48px);
font-weight: 400;
color: var(--white);
margin-bottom: 20px;
}

.section-subtitle-white {
font-family: 'Inter', sans-serif;
font-size: 16px;
line-height: 1.75;
color: rgba(255, 255, 255, 0.7);
max-width: 700px;
margin: 0 auto 16px;
}

.scroll-cards {
display: flex;
gap: 24px;
overflow-x: auto;
scroll-snap-type: x mandatory;
scroll-behavior: smooth;
padding-bottom: 16px;
margin-top: 48px;
-ms-overflow-style: none;
scrollbar-width: none;
}

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

.scroll-card {
flex: 0 0 380px;
scroll-snap-align: start;
background: var(--dark-burgundy);
border-radius: 2px;
overflow: hidden;
}

.card-img-top-wrap {
aspect-ratio: 16 / 10;
overflow: hidden;
}

.scroll-card-body {
padding: 28px;
}

.card-tag-gold {
font-family: 'JetBrains Mono', monospace;
font-size: 11px;
font-weight: 500;
letter-spacing: 2px;
text-transform: uppercase;
color: var(--gold);
display: block;
margin-bottom: 12px;
}

.scroll-card-title {
font-family: 'Playfair Display', serif;
font-size: clamp(18px, 1.5vw, 24px);
font-weight: 500;
line-height: 1.3;
color: var(--white);
margin-bottom: 12px;
}

.scroll-card-excerpt {
font-family: 'Inter', sans-serif;
font-size: 15px;
line-height: 1.7;
color: rgba(255, 255, 255, 0.65);
margin-bottom: 0;
}

.scroll-hint {
text-align: right;
font-family: 'JetBrains Mono', monospace;
font-size: 11px;
font-weight: 500;
letter-spacing: 2px;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.4);
margin-top: 16px;
}

.text-link-white {
font-family: 'Inter', sans-serif;
font-size: 12px;
font-weight: 600;
letter-spacing: 1.5px;
text-transform: uppercase;
color: var(--white);
text-decoration: none;
border-bottom: 1px solid var(--gold);
padding-bottom: 4px;
transition: color 0.3s ease;
display: inline-block;
}

.text-link-white:hover {
color: var(--gold);
}

.reveal-wrap {
position: relative;
overflow: hidden;
border-radius: 2px;
}

.reveal-overlay {
position: absolute;
inset: 0;
background: var(--burgundy);
transform: scaleX(1);
transform-origin: right;
z-index: 2;
pointer-events: none;
}

.reveal-img {
width: 100%;
height: 100%;
object-fit: cover;
transform: scale(1.4);
}

.reveal-wrap.revealed .reveal-overlay {
transform: scaleX(0);
transition: transform 1.3s cubic-bezier(0.65, 0, 0.35, 1);
transition-delay: 0.2s;
}

.reveal-wrap.revealed .reveal-img {
transform: scale(1);
transition: transform 1.8s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (max-width: 991px) {
.hero-content {
padding: 0 24px 60px 24px;
}

.scroll-card {
flex: 0 0 320px;
}

.navbar-collapse {
background: rgba(74, 14, 28, 0.98);
padding: 16px 24px;
border-radius: 0 0 8px 8px;
}

.nav-link {
padding: 12px 0 !important;
}
}

@media (max-width: 767px) {
.hero {
min-height: 500px;
}

.hero-headline {
font-size: clamp(32px, 8vw, 48px);
}

.portada-title {
font-size: 24px;
}

.section-title {
font-size: 28px;
}

.scroll-card {
flex: 0 0 300px;
}

.senado-img-wrap {
aspect-ratio: 4 / 3;
margin-bottom: 32px;
}

.top-bar .col-md-8,
.top-bar .col-md-4 {
text-align: center !important;
}

.top-bar .col-md-4 {
margin-top: 4px;
}
}

.section-analisis {
padding: clamp(80px, 10vh, 140px) 0;
background: var(--bg);
}

.analisis-headline-area {
max-width: 900px;
margin: 0 auto 48px;
}

.analisis-headline {
font-family: 'Playfair Display', serif;
font-size: clamp(36px, 4.5vw, 64px);
font-weight: 400;
line-height: 1.1;
color: var(--text-primary);
margin-bottom: 20px;
}

.analisis-subtitle {
font-family: 'Inter', sans-serif;
font-size: 18px;
line-height: 1.7;
color: var(--text-secondary);
max-width: 600px;
margin: 0 auto 16px;
}

.analisis-img-wrap {
aspect-ratio: 16 / 10;
}

.article-title-lg {
font-family: 'Playfair Display', serif;
font-size: clamp(22px, 2vw, 32px);
font-weight: 500;
line-height: 1.2;
color: var(--text-primary);
}

.article-stack {
padding-top: 8px;
}

.section-opinion {
padding: clamp(80px, 10vh, 140px) 0;
background: var(--cream);
}

.opinion-card {
display: flex;
background: var(--white);
border-radius: 2px;
overflow: hidden;
margin-bottom: 24px;
border: 1px solid rgba(0, 0, 0, 0.06);
transition: box-shadow 0.3s ease;
}

.opinion-card:hover {
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.opinion-accent {
width: 3px;
flex-shrink: 0;
background: var(--gold);
}

.opinion-content {
padding: 32px;
}

.opinion-type {
font-family: 'JetBrains Mono', monospace;
font-size: 11px;
font-weight: 500;
letter-spacing: 2px;
text-transform: uppercase;
color: var(--text-secondary);
display: block;
margin-bottom: 12px;
}

.opinion-title {
font-family: 'Playfair Display', serif;
font-size: clamp(18px, 1.5vw, 24px);
font-weight: 500;
line-height: 1.3;
color: var(--text-primary);
margin-bottom: 12px;
}

.opinion-excerpt {
font-family: 'Inter', sans-serif;
font-size: 15px;
line-height: 1.7;
color: var(--text-secondary);
margin-bottom: 0;
}

.section-comunidad {
padding: clamp(80px, 10vh, 140px) 0;
background: var(--burgundy);
}

.comunidad-icon {
font-size: 32px;
color: var(--gold);
margin-bottom: 24px;
}

.comunidad-item {
padding: 24px;
}

.comunidad-number {
font-family: 'Playfair Display', serif;
font-size: clamp(48px, 5vw, 72px);
font-weight: 400;
color: rgba(201, 168, 76, 0.3);
display: block;
line-height: 1;
margin-bottom: 16px;
}

.comunidad-item-title {
font-family: 'Playfair Display', serif;
font-size: clamp(18px, 1.5vw, 24px);
font-weight: 500;
line-height: 1.3;
color: var(--white);
margin-bottom: 12px;
}

.comunidad-item-desc {
font-family: 'Inter', sans-serif;
font-size: 15px;
line-height: 1.7;
color: rgba(255, 255, 255, 0.65);
margin-bottom: 0;
}

.site-footer {
background: var(--dark-burgundy);
padding: 80px 0 40px;
}

.footer-title {
font-family: 'Playfair Display', serif;
font-size: clamp(28px, 3vw, 48px);
font-weight: 400;
color: var(--white);
margin-bottom: 20px;
}

.footer-text {
font-family: 'Inter', sans-serif;
font-size: 16px;
line-height: 1.75;
color: rgba(255, 255, 255, 0.7);
max-width: 560px;
margin-bottom: 16px;
}

.btn-gold {
font-family: 'Inter', sans-serif;
font-size: 12px;
font-weight: 600;
letter-spacing: 1.5px;
text-transform: uppercase;
color: var(--dark-burgundy);
background: var(--gold);
border: none;
padding: 14px 32px;
text-decoration: none;
display: inline-block;
transition: background 0.3s ease;
}

.btn-gold:hover {
background: var(--light-gold);
color: var(--dark-burgundy);
}

.footer-email-link {
font-family: 'Inter', sans-serif;
font-size: 15px;
font-weight: 500;
color: var(--gold);
text-decoration: none;
transition: color 0.3s ease;
}

.footer-email-link:hover {
color: var(--white);
}

.footer-logo {
max-width: 180px;
border-radius: 50%;
margin-bottom: 24px;
}

.footer-tagline {
font-family: 'Playfair Display', serif;
font-size: 18px;
font-style: italic;
color: rgba(255, 255, 255, 0.6);
margin-bottom: 0;
}

.footer-divider {
width: 100%;
height: 1px;
background: rgba(255, 255, 255, 0.08);
margin: 48px 0;
}

.footer-credit {
font-family: 'Inter', sans-serif;
font-size: 15px;
line-height: 1.7;
color: rgba(255, 255, 255, 0.55);
max-width: 900px;
margin: 0 auto 32px;
text-align: center;
font-style: italic;
}

.footer-bar {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 16px;
}

.footer-copy {
font-family: 'JetBrains Mono', monospace;
font-size: 11px;
font-weight: 400;
color: rgba(255, 255, 255, 0.35);
letter-spacing: 0.5px;
}

.footer-tags {
font-family: 'JetBrains Mono', monospace;
font-size: 11px;
font-weight: 400;
color: rgba(255, 255, 255, 0.35);
letter-spacing: 0.5px;
}

@media (max-width: 767px) {
.analisis-headline {
font-size: clamp(28px, 7vw, 40px);
}

.opinion-card {
margin-bottom: 16px;
}

.opinion-content {
padding: 24px;
}

.comunidad-number {
font-size: 48px;
}

.footer-bar {
flex-direction: column;
text-align: center;
}

.footer-title {
font-size: 28px;
}
}

@media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}

.reveal-wrap.revealed .reveal-overlay {
transform: scaleX(0);
transition: none;
}

.reveal-wrap.revealed .reveal-img {
transform: scale(1);
transition: none;
}

.hero-content,
.hero-label,
.hero-subtitle,
.hero-cta {
opacity: 1;
}
}