/* ============================================================
   COMUNIDAD VECINOS ESTADIO NACIONAL — styles.css
   Diseño: Editorial Cívico · 2026
   Tipografía: Bebas Neue · Plus Jakarta Sans · Lora
============================================================ */

/* ===== DESIGN TOKENS ===== */
:root {
  --paper:        #F6F1E5;
  --paper-deep:   #EBE5D7;
  --ink:          #0C1924;
  --ink-mid:      #3B4C5E;
  --ink-muted:    #6B7E90;
  --gold:         #C4870C;
  --gold-bright:  #E09A10;
  --gold-dim:     rgba(196,135,12,0.12);
  --red:          #B02E20;
  --red-dim:      rgba(176,46,32,0.1);
  --surface:      #FFFFFF;
  --border:       rgba(12,25,36,0.08);
  --border-mid:   rgba(12,25,36,0.16);
  --radius:       16px;
  --radius-lg:    24px;
  --radius-xl:    32px;
  --shadow-sm:    0 2px 8px rgba(12,25,36,0.06);
  --shadow:       0 8px 28px rgba(12,25,36,0.1);
  --shadow-lg:    0 20px 52px rgba(12,25,36,0.15);
  --ease:         cubic-bezier(0.22,1,0.36,1);
  --header-h:     68px;
  --gap:          1.4rem;
  --stadium-main: url("img/estadio-aereo.jpg");
  --stadium-side: url("img/estadio-parque.jpg");
  --stadium-night: url("img/estadio-exterior.jpg");
  --stadium-footer: url("img/estadio-exterior.jpg");
}

[data-theme="dark"] {
  --paper:        #0D1520;
  --paper-deep:   #131E30;
  --ink:          #E0D8C8;
  --ink-mid:      #94A8BC;
  --ink-muted:    #5E7282;
  --gold:         #E09A10;
  --gold-bright:  #F0B020;
  --gold-dim:     rgba(224,154,16,0.1);
  --red:          #CC3C2C;
  --red-dim:      rgba(204,60,44,0.1);
  --surface:      #182234;
  --border:       rgba(255,255,255,0.06);
  --border-mid:   rgba(255,255,255,0.12);
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.3);
  --shadow:       0 8px 28px rgba(0,0,0,0.36);
  --shadow-lg:    0 20px 52px rgba(0,0,0,0.48);
}

/* ===== RESET ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background:
    linear-gradient(140deg, rgba(9,20,36,0.86) 8%, rgba(11,24,42,0.8) 100%),
    var(--stadium-main) center / cover fixed no-repeat;
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}

[data-theme="dark"] body {
  background:
    linear-gradient(140deg, rgba(8,16,28,0.9) 8%, rgba(10,20,34,0.84) 100%),
    var(--stadium-main) center / cover fixed no-repeat;
}

/* Noise texture */
.grain-overlay {
  position: fixed;
  inset: -60%;
  width: 220%; height: 220%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.036;
  pointer-events: none;
  z-index: 9999;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), backdrop-filter 0.3s;
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 28px; right: 28px;
  height: 1px;
  background: var(--border);
}

.site-header.scrolled {
  background: rgba(246,241,229,0.93);
  backdrop-filter: blur(20px) saturate(1.6);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}

[data-theme="dark"] .site-header.scrolled {
  background: rgba(13,21,32,0.93);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.7; }

.logo-mark {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), background 0.2s;
}
.logo:hover .logo-mark { transform: rotate(-6deg) scale(1.07); }

.logo-main {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
}
.logo-sub {
  display: block;
  font-size: 0.65rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: var(--ink-mid);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.theme-switch {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border-mid);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem;
  transition: all 0.25s var(--ease);
  flex-shrink: 0;
}
.theme-switch:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: rotate(22deg) scale(1.05);
}

[data-theme="light"] .moon-icon { display: none; }
[data-theme="dark"]  .sun-icon  { display: none; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}
.menu-toggle:hover { background: var(--border); }
.menu-toggle span {
  width: 22px; height: 1.5px;
  background: var(--ink);
  display: block;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.menu-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
}
.menu-overlay.active { display: block; }

/* ===== LANDING GRID ===== */
.landing {
  width: min(1340px, 96vw);
  margin: calc(var(--header-h) + var(--gap)) auto 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

/* ===== HERO ===== */
.hero {
  grid-column: 1 / 3;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 540px;
  background: var(--ink);
  box-shadow: var(--shadow-lg);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--stadium-main) center / cover no-repeat;
  opacity: 0.42;
  filter: saturate(1.05) contrast(1.08);
  pointer-events: none;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-slider {
  position: relative;
  width: 100%; height: 100%;
  min-height: 540px;
}

.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.hero-slide.active { opacity: 1; visibility: visible; }

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  transform: scale(1.05);
  transition: transform 9s var(--ease);
  will-change: transform;
}
.hero-slide.active .hero-bg { transform: scale(1); }

.hero-bg--1 {
  background-image: url("img/estadio-aereo.jpg");
  background-position: center 34%;
}
.hero-bg--2 {
  background-image: url("img/estadio-exterior.jpg");
  background-position: center 40%;
}
.hero-bg--3 {
  background-image: url("img/estadio-parque.jpg");
  background-position: center 50%;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    140deg,
    rgba(6,18,34,0.72) 0%,
    rgba(10,28,54,0.46) 45%,
    rgba(8,20,44,0.16) 100%
  );
}

/* Subtle diagonal accent line */
.hero-overlay::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 540px;
  padding: 2.8rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: fit-content;
  margin-bottom: 1.4rem;
}
.hero-tag i { color: var(--gold-bright); }

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.8rem, 7.5vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  margin-bottom: 1.2rem;
}
.hero-line { display: block; }
.hero-line.accent {
  color: var(--gold-bright);
}

.hero-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 50ch;
  opacity: 0.85;
  margin-bottom: 2rem;
  font-weight: 400;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: var(--gold);
  color: #fff;
  border-radius: 100px;
  padding: 0.82rem 1.8rem;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transition: all 0.25s var(--ease);
  width: fit-content;
  border: none;
  cursor: pointer;
}
.btn i { font-size: 0.7rem; transition: transform 0.25s var(--ease); }
.btn:hover {
  background: var(--gold-bright);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(196,135,12,0.38);
}
.btn:hover i { transform: translateX(5px); }

/* Slider UI bar */
.slider-ui {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
}

.slider-counter {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.55);
  min-width: 48px;
  white-space: nowrap;
}
.slide-cur { color: #fff; font-size: 1.2rem; }

.slider-track {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.18);
  border-radius: 2px;
  overflow: hidden;
}
.slider-fill {
  height: 100%;
  background: var(--gold-bright);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

.slider-arrows { display: flex; gap: 8px; }

.slider-prev,
.slider-next {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  transition: all 0.2s var(--ease);
}
.slider-prev:hover,
.slider-next:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.06);
}

/* ===== SIDE – DEMAND CARDS ===== */
.side {
  grid-column: 3 / 4;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: var(--gap);
}

.demand-card {
  background:
    linear-gradient(132deg, rgba(12,25,36,0.76) 0%, rgba(12,25,36,0.64) 100%),
    var(--stadium-side) center / cover no-repeat;
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.6rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

[data-theme="dark"] .demand-card {
  background:
    linear-gradient(132deg, rgba(10,18,32,0.78) 0%, rgba(10,18,32,0.66) 100%),
    var(--stadium-side) center / cover no-repeat;
}

.demand-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.demand-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.demand-card:hover::after { transform: scaleX(1); }

.card-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(255,255,255,0.2);
  position: absolute;
  top: 0.2rem; right: 0.8rem;
  user-select: none;
  pointer-events: none;
  transition: color 0.3s;
}
.demand-card:hover .card-num { color: var(--gold-dim); }

.demand-icon {
  font-size: 1.3rem;
  color: var(--red);
  margin-bottom: 0.7rem;
  position: relative;
  z-index: 1;
}

.demand-card h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.65rem;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin-bottom: 0.5rem;
  color: #fff;
}

.demand-card p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.76);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.demand-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(224,154,16,0.16);
  border: 1px solid rgba(224,154,16,0.34);
  color: var(--gold-bright);
  padding: 0.28rem 0.75rem;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  width: fit-content;
  margin-top: auto;
}

/* ===== BOTTOM GRID – INFO CARDS ===== */
.bottom-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.info-card {
  background:
    linear-gradient(132deg, rgba(12,25,36,0.76) 0%, rgba(12,25,36,0.64) 100%),
    var(--stadium-main) center / cover no-repeat;
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem 1.6rem;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

[data-theme="dark"] .info-card {
  background:
    linear-gradient(132deg, rgba(10,18,32,0.78) 0%, rgba(10,18,32,0.66) 100%),
    var(--stadium-main) center / cover no-repeat;
}

.info-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.info-card:hover::after { transform: scaleX(1); }

.info-card .card-num {
  font-size: 5rem;
  color: rgba(255,255,255,0.18);
}
.info-card:hover .card-num { color: var(--gold-dim); }

.info-icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.9rem;
  position: relative;
  z-index: 1;
}

.info-card h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin-bottom: 0.6rem;
  color: #fff;
}

.info-card p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.76);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.2rem;
}

.info-tag {
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gold-bright);
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.18);
  margin-top: auto;
}

/* ===== MANIFESTO ===== */
.manifesto {
  grid-column: 1 / -1;
  background:
    linear-gradient(132deg, rgba(12,25,36,0.74) 0%, rgba(12,25,36,0.62) 100%),
    var(--stadium-night) center / cover no-repeat;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

[data-theme="dark"] .manifesto {
  background:
    linear-gradient(132deg, rgba(10,18,32,0.72) 0%, rgba(10,18,32,0.6) 100%),
    var(--stadium-night) center / cover no-repeat;
  border: 1px solid var(--border-mid);
}

.manifesto-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3rem;
  padding: clamp(2.5rem, 4vw, 4rem) clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.manifesto-label {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 0.28rem 0.9rem;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 1rem;
}

.manifesto-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  letter-spacing: 0.01em;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 2rem;
}

[data-theme="dark"] .manifesto-title { color: #fff; }

.manifesto-emphasis {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

[data-theme="dark"] .manifesto-emphasis {
  background: var(--gold-dim);
  border-color: var(--border);
  border-left-color: var(--gold);
}

.manifesto-emphasis strong {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.manifesto-emphasis span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.5;
}

[data-theme="dark"] .manifesto-emphasis span { color: rgba(255,255,255,0.86); }

.manifesto-pillars {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pillar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 500;
  width: fit-content;
  transition: all 0.22s var(--ease);
  cursor: default;
}
.pillar i { color: var(--gold-bright); font-size: 0.82rem; }
.pillar:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateX(6px);
}
.pillar:hover i { color: #fff; }

[data-theme="dark"] .pillar {
  background: var(--border);
  border-color: var(--border-mid);
  color: rgba(255,255,255,0.9);
}

/* Right column: quote + text */
.manifesto-right { position: relative; }

.manifesto-quote-mark {
  font-family: 'Lora', Georgia, serif;
  font-size: 9rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.3;
  user-select: none;
  pointer-events: none;
  margin-bottom: -1rem;
}

.manifesto-text {
  columns: 2 260px;
  column-gap: 2rem;
}

.manifesto-text p {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
  margin-bottom: 1rem;
  break-inside: avoid;
}

.manifesto-text p strong {
  font-style: italic;
  color: rgba(255,255,255,0.92);
}

[data-theme="dark"] .manifesto-text p { color: rgba(255,255,255,0.84); }

[data-theme="dark"] .manifesto-text p strong { color: #fff; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* ===== FOOTER ===== */
.footer {
  background:
    linear-gradient(132deg, rgba(12,25,36,0.72) 0%, rgba(12,25,36,0.58) 100%),
    var(--stadium-footer) center 38% / cover no-repeat;
  margin-top: 2.5rem;
}

[data-theme="dark"] .footer {
  background:
    linear-gradient(132deg, rgba(8,14,24,0.72) 0%, rgba(8,14,24,0.58) 100%),
    var(--stadium-footer) center 38% / cover no-repeat;
  border-top: 1px solid var(--border-mid);
}

.hero-slide:nth-child(2) .hero-title {
  font-size: clamp(3.2rem, 6.4vw, 5.6rem);
}

.hero-slide:nth-child(2) .hero-desc {
  max-width: 56ch;
  margin-bottom: 1.4rem;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.footer-logo-mark {
  width: 46px; height: 46px;
  background: var(--gold);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.footer-name {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.footer-brand small {
  font-size: 0.67rem;
  color: rgba(255,255,255,0.38);
}

.footer-cols {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-end;
}

.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.65;
  max-width: 30ch;
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.58);
  text-decoration: none;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer-col a i { color: var(--gold); font-size: 0.85rem; }
.footer-col a:hover { color: var(--gold-bright); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.4rem 0;
}

.footer-bottom p {
  font-size: 0.69rem;
  color: rgba(255,255,255,0.28);
}

.footer-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.footer-tags span {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.28);
  padding: 0.22rem 0.65rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.7rem;
  text-decoration: none;
  z-index: 900;
  box-shadow: 0 6px 24px rgba(37,211,102,0.42);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.whatsapp-float::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.35);
  animation: wa-pulse 2.8s ease-in-out infinite;
}
@keyframes wa-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  60%       { transform: scale(1.22); opacity: 0; }
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 36px rgba(37,211,102,0.58);
}

/* ===== RESPONSIVE ===== */

/* Tablet: 2-col */
@media (max-width: 1024px) {
  .landing {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    grid-column: 1 / -1;
    min-height: 480px;
  }
  .hero-slider { min-height: 480px; }
  .hero-content { min-height: 480px; }

  .side {
    grid-column: 1 / -1;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
  }

  .bottom-grid {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }
  .bottom-grid .info-card:last-child {
    grid-column: 1 / -1;
  }

  .manifesto-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .manifesto-left { order: 1; }
  .manifesto-right { order: 2; }
}

/* Mobile: 1-col */
@media (max-width: 700px) {
  :root { --gap: 1rem; }

  .landing {
    grid-template-columns: 1fr;
    width: 92vw;
    margin-top: calc(var(--header-h) + 1rem);
  }

  .hero { grid-column: auto; min-height: 400px; }
  .hero-slider { min-height: 400px; }
  .hero-content {
    min-height: 400px;
    padding: 1.6rem 1.8rem;
  }
  .hero-title { font-size: clamp(3rem, 13vw, 4rem); }
  .hero-slide:nth-child(2) .hero-title { font-size: clamp(2.35rem, 10.2vw, 3.2rem); }
  .hero-desc { max-width: 100%; font-size: 0.85rem; }
  .hero-slide:nth-child(2) .hero-desc { font-size: 0.8rem; margin-bottom: 1rem; }

  .side {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .bottom-grid {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
  .bottom-grid .info-card:last-child { grid-column: auto; }

  .manifesto-inner {
    grid-template-columns: 1fr;
    padding: 2rem 1.6rem;
    gap: 1.5rem;
  }
  .manifesto-quote-mark { display: none; }
  .manifesto-text { columns: 1; }
  .manifesto-title { font-size: 2.2rem; }

  .footer-top {
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem 0 2rem;
  }
  .footer-cols { flex-direction: column; gap: 1.8rem; justify-content: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .menu-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: var(--header-h); right: -100%;
    width: min(290px, 80vw);
    height: calc(100vh - var(--header-h));
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.8rem;
    gap: 2rem;
    transition: right 0.36s var(--ease);
    z-index: 1001;
    box-shadow: -16px 0 50px rgba(0,0,0,0.18);
    overflow-y: auto;
  }
  .main-nav.active { right: 0; }
  .nav-link { font-size: 0.95rem; }

  .slider-ui { padding: 0.8rem 1.4rem; }
  .slider-counter { display: none; }
}

/* Ensure tall enough on very small phones */
@media (max-width: 380px) {
  .hero { min-height: 360px; }
  .hero-slider { min-height: 360px; }
  .hero-content { min-height: 360px; }
}

/* Desktop: align card heights in grid rows */
@media (min-width: 1025px) {
  .side, .bottom-grid { align-items: stretch; }
  .demand-card, .info-card { height: 100%; }
}
