/* ══════════════════════════════════════════════════
   LA CENTENO — styles.css
   Paleta: #000120 (navy) · #E70808 (rojo) · #FFFFFF
   Tipografía: Montserrat (400 / 600 / 700 / 900)
══════════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --navy:        #000120;
  --navy-light:  #06093a;
  --red:         #E70808;
  --red-dark:    #b80000;
  --white:       #FFFFFF;
  --white-60:    rgba(255,255,255,0.6);
  --white-15:    rgba(255,255,255,0.08);
  --red-glow:    rgba(231,8,8,0.15);
  --radius:      4px;
  --transition:  .25s ease;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── UTILIDADES ── */
.red { color: var(--red); }
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  position: relative;
  padding-left: 20px;
}
.section-tag::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 12px; height: 2px;
  background: var(--red);
}
.section-tag.light { color: rgba(255,255,255,0.5); }
.section-tag.light::before { background: rgba(255,255,255,0.5); }

/* ── BOTONES ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 14px 28px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}
.btn-primary svg { width: 16px; height: 16px; }
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(231,8,8,0.35);
}
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 12px 28px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: border-color var(--transition), background var(--transition);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(0,1,32,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(231,8,8,0.2);
  transition: padding var(--transition), background var(--transition);
}
#navbar.scrolled {
  padding: 12px 48px;
  background: rgba(0,1,32,0.98);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-tie {
  height: 38px;
  width: auto;
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo-name {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1;
  color: var(--white);
}
.nav-logo-slogan {
  font-size: 8px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  color: var(--white-60);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 10px 22px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}
.nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

/* Cuadrados decorativos (lenguaje visual del manual) */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.sq {
  position: absolute;
  border: 2px solid rgba(231,8,8,0.25);
  animation: rotateSq linear infinite;
}
.sq.fill-red  { background: rgba(231,8,8,0.1); border-color: transparent; }
.sq.fill-white { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.06); }

@keyframes rotateSq { to { transform: rotate(360deg); } }

.sq1  { width: 340px; height: 340px; top:  8%; right:  4%; animation-duration: 32s; transform: rotate(15deg); }
.sq2  { width: 160px; height: 160px; top: 65%; right: 14%; animation-duration: 18s; animation-direction: reverse; transform: rotate(40deg); }
.sq3  { width:  80px; height:  80px; top: 22%; right: 28%; animation-duration: 11s; transform: rotate(60deg); }
.sq4  { width: 220px; height: 220px; bottom: 8%; left: 58%; animation-duration: 26s; transform: rotate(22deg); }
.sq5  { width:  55px; height:  55px; top: 45%; right: 40%; animation-duration:  9s; animation-direction: reverse; transform: rotate(30deg); }
.sq6  { width: 110px; height: 110px; top: 78%; right:  6%; animation-duration: 14s; transform: rotate(10deg); }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 48px;
  max-width: 700px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-glow);
  border: 1px solid rgba(231,8,8,0.3);
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
  animation: fadeInUp .6s ease both;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.4); }
}

.hero h1 {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -3px;
  margin-bottom: 24px;
  animation: fadeInUp .6s .15s ease both;
}
.hero-sub {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white-60);
  max-width: 500px;
  margin-bottom: 40px;
  animation: fadeInUp .6s .3s ease both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp .6s .45s ease both;
}

/* Corbata decorativa grande en el hero */
.hero-tie-deco {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(200px, 22vw, 360px);
  opacity: .6;
  pointer-events: none;
  animation: floatTie 6s ease-in-out infinite;
  z-index: 1;
}
@keyframes floatTie {
  0%, 100% { transform: translateY(-50%) rotate(-3deg); }
  50%       { transform: translateY(calc(-50% - 20px)) rotate(3deg); }
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-hint span {
  display: block;
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--red));
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ══════════════════════════════
   STATS BAR
══════════════════════════════ */
.stats-bar {
  background: var(--red);
  padding: 32px 48px;
}
.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-number {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--white);
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.25);
}

/* ══════════════════════════════
   ABOUT / QUIÉNES SOMOS
══════════════════════════════ */
.about {
  padding: 120px 0;
  background: var(--navy);
  overflow: hidden;
}
.about-text h2 {
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 24px;
}
.about-text p {
  color: var(--white-60);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white-15);
  border-left: 3px solid var(--red);
  padding: 14px 20px;
  transition: background var(--transition);
}
.value-item:hover { background: rgba(231,8,8,0.08); }
.value-icon { font-size: 22px; }
.value-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}
.value-item span {
  font-size: 12px;
  color: var(--white-60);
}

/* Visual abstracto (cuadrados de marca) */
.about-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.about-card-grid { position: relative; width: 380px; height: 380px; }
.sq-deco {
  position: absolute;
  border: 2px solid;
  animation: rotateSq linear infinite;
}
.sq-deco.a1 { width: 260px; height: 260px; top: 50px; left: 50px; border-color: rgba(231,8,8,0.35); animation-duration: 20s; background: rgba(231,8,8,0.05); }
.sq-deco.a2 { width: 160px; height: 160px; top: 10px; right: 20px; border-color: rgba(255,255,255,0.1); animation-duration: 14s; animation-direction: reverse; }
.sq-deco.a3 { width: 90px; height: 90px; bottom: 20px; left: 20px; border-color: rgba(231,8,8,0.2); animation-duration: 9s; background: rgba(231,8,8,0.08); }
.about-card-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.big-tie { width: 80px; filter: drop-shadow(0 0 20px rgba(231,8,8,0.4)); }
.about-card-center span {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

/* ══════════════════════════════
   RESOURCES / APUNTES
══════════════════════════════ */
.resources {
  padding: 120px 48px;
  background: var(--navy-light);
  max-width: 100%;
}
.resources-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}
.resources-header h2 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 16px;
}
.resources-header p {
  color: var(--white-60);
  font-size: 15px;
  line-height: 1.7;
}

/* Filtros */
.resources-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 8px 20px;
  border: 2px solid rgba(255,255,255,0.15);
  color: var(--white-60);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition);
  background: transparent;
}
.filter-btn:hover {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* Grid de recursos */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 64px;
}
.resource-card {
  background: var(--white-15);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.resource-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--red);
  transition: height var(--transition);
}
.resource-card:hover::before { height: 100%; }
.resource-card:hover {
  border-color: rgba(231,8,8,0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.resource-card.hidden { display: none; }

.resource-icon {
  font-size: 28px;
  line-height: 1;
}
.resource-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
}
.resource-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
}
.resource-meta {
  font-size: 11px;
  color: var(--white-60);
}
.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: auto;
  transition: gap var(--transition);
}
.resource-link:hover { gap: 10px; }
.resource-link svg { width: 14px; height: 14px; }

/* Drive CTA */
.drive-cta {
  max-width: 1200px;
  margin: 0 auto;
}
.drive-cta-inner {
  background: var(--white-15);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 4px solid var(--red);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.drive-icon svg { width: 48px; height: auto; flex-shrink: 0; }
.drive-cta-text {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.drive-cta-text strong {
  font-size: 16px;
  font-weight: 700;
}
.drive-cta-text span {
  font-size: 13px;
  color: var(--white-60);
}
.btn-drive {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--navy);
  padding: 12px 24px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.btn-drive svg { width: 14px; height: 14px; }
.btn-drive:hover { background: #eee; transform: translateY(-2px); }

/* ══════════════════════════════
   NEWS / NOVEDADES
══════════════════════════════ */
.news {
  padding: 120px 0;
  background: var(--navy);
}
.news-header {
  grid-column: 1 / -1;
  margin-bottom: 16px;
}
.news-header h2 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -1.5px;
}
.news-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.news-header { max-width: 1200px; margin: 0 auto 40px; padding: 0 48px; }

.news-card {
  background: var(--white-15);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.news-card:hover {
  border-color: rgba(231,8,8,0.3);
  transform: translateY(-3px);
}
.news-card.featured {
  background: linear-gradient(135deg, rgba(231,8,8,0.1) 0%, var(--white-15) 60%);
  border-color: rgba(231,8,8,0.25);
}
.news-card-sq {
  position: absolute;
  top: -30px; right: -30px;
  width: 90px; height: 90px;
  border: 2px solid rgba(231,8,8,0.2);
  transform: rotate(20deg);
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.news-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-glow);
  padding: 3px 10px;
  border: 1px solid rgba(231,8,8,0.2);
}
.news-date {
  font-size: 11px;
  color: var(--white-60);
}
.news-card h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}
.news-card.featured h3 { font-size: 22px; }
.news-card p {
  font-size: 13px;
  color: var(--white-60);
  line-height: 1.65;
  flex: 1;
}
.news-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color var(--transition);
}
.news-link:hover { color: #ff4444; }

/* ══════════════════════════════
   SOCIAL
══════════════════════════════ */
.social {
  background: var(--navy-light);
  padding: 100px 48px;
  text-align: center;
}
.social-inner {
  max-width: 900px;
  margin: 0 auto;
}
.social h2 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.social p {
  color: var(--white-60);
  font-size: 15px;
  margin-bottom: 48px;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.social-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white-15);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 16px 24px;
  min-width: 180px;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}
.social-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.08);
}
.social-card-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.social-card-icon svg { width: 20px; height: 20px; color: var(--white); }
.instagram  { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.facebook   { background: #1877f2; }
.twitter    { background: #000; }
.whatsapp   { background: #25D366; }
.social-card-text {
  display: flex; flex-direction: column;
  text-align: left;
}
.social-card-text strong { font-size: 14px; font-weight: 700; }
.social-card-text span   { font-size: 12px; color: var(--white-60); }

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact {
  padding: 120px 0;
  background: var(--navy);
}
.contact-text h2 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 20px;
}
.contact-text p {
  color: var(--white-60);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--white-60);
}
.contact-info-item svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; }

/* Formulario */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--white-15);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-60);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 12px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--navy); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note {
  font-size: 13px;
  min-height: 20px;
  text-align: center;
  color: var(--red);
}
.form-note.success { color: #22c55e; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: rgba(0,0,0,0.5);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 64px 48px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.logo-tie-sm { height: 40px; width: auto; flex-shrink: 0; }
.footer-name {
  display: block;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.footer-slogan {
  display: block;
  font-size: 9px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links strong {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-60);
  margin-bottom: 4px;
}
.footer-links a {
  font-size: 13px;
  color: var(--white-60);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-social strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-60);
  margin-bottom: 16px;
}
.footer-social-icons { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-social-icons a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}
.footer-social-icons a:hover {
  border-color: var(--red);
  background: var(--red-glow);
}
.footer-social-icons svg { width: 16px; height: 16px; color: var(--white); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--white-60);
}
.footer-bottom a { color: var(--red); }
.footer-bottom a:hover { text-decoration: underline; }

/* ══════════════════════════════
   ANIMACIONES
══════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .section-container { padding: 0 32px; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card.featured { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  /* Navbar */
  #navbar { padding: 16px 24px; }
  #navbar.scrolled { padding: 12px 24px; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,1,32,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 18px; }
  .nav-cta { display: none; }
  .hamburger { display: flex; z-index: 1001; position: relative; }

  /* Hero */
  .hero-content { padding: 100px 24px 80px; }
  .hero h1 { font-size: clamp(38px, 10vw, 60px); }
  .hero-tie-deco { display: none; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { justify-content: center; text-align: center; }

  /* Stats */
  .stats-bar { padding: 28px 24px; }
  .stats-container { gap: 16px; }
  .stat-divider { display: none; }
  .stat-item { flex: 1; min-width: 100px; }

  /* About */
  .about { padding: 80px 0; }
  .section-container { grid-template-columns: 1fr; padding: 0 24px; gap: 48px; }
  .about-visual { display: none; }

  /* Resources */
  .resources { padding: 80px 24px; }
  .resources-grid { grid-template-columns: 1fr 1fr; }

  /* News */
  .news { padding: 80px 0; }
  .news-header { padding: 0 24px; }
  .news-grid { grid-template-columns: 1fr; padding: 0 24px; }

  /* Social */
  .social { padding: 72px 24px; }
  .social-links { flex-direction: column; align-items: stretch; }
  .social-card { min-width: unset; }

  /* Contact */
  .contact { padding: 80px 0; }
  .contact-form { padding: 28px 20px; }

  /* Footer */
  footer { padding: 48px 24px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Drive CTA */
  .drive-cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .resources-grid { grid-template-columns: 1fr; }
  .stats-container { flex-direction: column; align-items: center; }
  .stat-item { width: 100%; flex-direction: row; justify-content: space-between; }
}
