/*
Theme Name:  Fundación Teleradionorte
Theme URI:   https://fundacionteleradionorte.org
Author:      Fundación Teleradionorte
Author URI:  https://teleradionorte.com
Description: Tema institucional oficial de la Fundación Teleradionorte. Acción social, vivienda y hábitat en comunidades populares de República Dominicana.
Version:     1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ftn
Tags:        nonprofit, foundation, social, charity, custom-colors, custom-menu, featured-images, full-width-template, sticky-post, translation-ready
*/

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ftn-red:        #C0392B;
  --ftn-red-dark:   #922B21;
  --ftn-red-deep:   #7B241C;
  --ftn-black:      #2C2C2C;
  --ftn-gray-light: #F5F5F5;
  --ftn-gray-text:  #444444;
  --ftn-gray-mid:   #888888;
  --ftn-white:      #FFFFFF;
  --ftn-shadow-sm:  0 4px 20px rgba(0,0,0,0.08);
  --ftn-shadow-md:  0 8px 30px rgba(0,0,0,0.12);
  --ftn-transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ftn-gray-text);
  overflow-x: hidden;
  background: var(--ftn-white);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ftn-black);
  line-height: 1.15;
}

/* ═══════════════════════════════════════════
   UTILIDADES GLOBALES
═══════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  background: var(--ftn-red);
  color: var(--ftn-white);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 38px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  color: var(--ftn-gray-mid);
  font-weight: 400;
  text-transform: none;
  max-width: 560px;
  line-height: 1.7;
}

.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ═══════════════════════════════════════════
   BOTONES
═══════════════════════════════════════════ */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 32px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--ftn-transition);
  border: none;
  line-height: 1;
}

.btn-primary {
  background: var(--ftn-red);
  color: var(--ftn-white) !important;
}

.btn-primary:hover {
  background: var(--ftn-red-dark);
  transform: scale(1.02);
  color: var(--ftn-white) !important;
}

.btn-outline-white {
  background: transparent;
  color: var(--ftn-white) !important;
  border: 2px solid rgba(255,255,255,0.75);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}

.btn-outline-red {
  background: transparent;
  color: var(--ftn-red) !important;
  border: 2px solid var(--ftn-red);
}

.btn-outline-red:hover {
  background: var(--ftn-red);
  color: var(--ftn-white) !important;
}

/* ═══════════════════════════════════════════
   CARDS
═══════════════════════════════════════════ */
.card-impact {
  background: var(--ftn-white);
  box-shadow: var(--ftn-shadow-sm);
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.card-impact:hover {
  transform: translateY(-4px);
  box-shadow: var(--ftn-shadow-md);
}

/* ═══════════════════════════════════════════
   HEADER STICKY
═══════════════════════════════════════════ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--ftn-white);
  border-bottom: 3px solid var(--ftn-red);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  transition: box-shadow 0.3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--ftn-red);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .logo-main {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--ftn-red);
  letter-spacing: 0.04em;
}

.logo-text .logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 10.5px;
  text-transform: uppercase;
  color: var(--ftn-black);
  letter-spacing: 0.05em;
}

/* Nav */
#primary-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
}

#primary-nav ul li a {
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ftn-black);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}

#primary-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ftn-red);
  transition: width 0.3s;
}

#primary-nav ul li a:hover { color: var(--ftn-red); }
#primary-nav ul li a:hover::after { width: 100%; }

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ftn-black);
  border-radius: 2px;
  transition: var(--ftn-transition);
}

/* ═══════════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════════ */
#hero-slider {
  position: relative;
  height: 90vh;
  min-height: 580px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.slide.active { opacity: 1; }

.slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.slide.active .slide-bg { transform: scale(1); }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    rgba(0,0,0,0.75) 0%,
    rgba(146,43,33,0.4) 60%,
    rgba(0,0,0,0.2) 100%);
}

.slide-content {
  position: absolute;
  bottom: 14%;
  left: 8%;
  max-width: 680px;
  z-index: 5;
}

.slide-tag {
  display: inline-block;
  background: var(--ftn-red);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.slide-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 900;
  text-transform: uppercase;
  color: white;
  line-height: 1.05;
  margin-bottom: 18px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.35);
}

.slide-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.65;
  font-weight: 400;
}

.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slider Controls */
.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: var(--ftn-transition);
}

.slider-dot.active {
  background: var(--ftn-red);
  border-color: var(--ftn-red);
  transform: scale(1.2);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.4);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: var(--ftn-transition);
  backdrop-filter: blur(4px);
}

.slider-arrow:hover { background: var(--ftn-red); border-color: var(--ftn-red); }
.slider-arrow.prev { left: 32px; }
.slider-arrow.next { right: 32px; }

/* ═══════════════════════════════════════════
   BANDA DE IMPACTO (CONTADORES)
═══════════════════════════════════════════ */
#impact-band {
  background: var(--ftn-red);
  padding: 60px 0;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.impact-item {
  text-align: center;
  padding: 20px 32px;
  position: relative;
}

.impact-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.25);
}

.impact-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 54px;
  font-weight: 900;
  color: white;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.impact-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   SECCIÓN "MÁS QUE UN TECHO"
═══════════════════════════════════════════ */
#about {
  padding: 100px 0;
  background: var(--ftn-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--ftn-shadow-md);
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 130px;
  height: 130px;
  background: var(--ftn-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 8px 30px rgba(192,57,43,0.4);
}

.about-image-badge span:first-child {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.about-image-badge span:last-child {
  font-size: 10px;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
}

.about-content {}

.about-content .section-subtitle {
  max-width: 100%;
  margin-bottom: 20px;
}

.about-features {
  margin: 32px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  background: rgba(192,57,43,0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg { width: 20px; height: 20px; fill: var(--ftn-red); }

.feature-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ftn-black);
  margin-bottom: 2px;
}

.feature-text span { font-size: 15px; color: var(--ftn-gray-mid); }

/* ═══════════════════════════════════════════
   PARTICIPA (GRID DE 3)
═══════════════════════════════════════════ */
#participa {
  padding: 100px 0;
  background: var(--ftn-gray-light);
}

.participa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.participa-card {
  position: relative;
  height: 440px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}

.participa-card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.participa-card:hover .participa-card-bg { transform: scale(1.06); }

.participa-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.3) 55%,
    transparent 100%);
  transition: background 0.4s ease;
}

.participa-card:hover .participa-card-overlay {
  background: linear-gradient(to top,
    rgba(146,43,33,0.92) 0%,
    rgba(192,57,43,0.5) 55%,
    rgba(0,0,0,0.1) 100%);
}

.participa-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 32px;
  z-index: 5;
}

.participa-icon {
  width: 52px;
  height: 52px;
  background: var(--ftn-red);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.3s;
}

.participa-card:hover .participa-icon { background: white; }

.participa-icon svg { width: 26px; height: 26px; fill: white; }
.participa-card:hover .participa-icon svg { fill: var(--ftn-red); }

.participa-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  margin-bottom: 8px;
}

.participa-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 20px;
  line-height: 1.55;
}

/* ═══════════════════════════════════════════
   NOTICIAS / PRENSA
═══════════════════════════════════════════ */
#noticias {
  padding: 100px 0;
  background: var(--ftn-white);
}

.noticias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.noticia-card {
  background: var(--ftn-white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--ftn-shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.noticia-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ftn-shadow-md);
}

.noticia-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.noticia-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.noticia-card:hover .noticia-img img { transform: scale(1.05); }

.noticia-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--ftn-red);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 2px;
}

.noticia-body { padding: 24px 28px 28px; }

.noticia-meta {
  font-size: 12px;
  color: var(--ftn-gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.noticia-title {
  font-size: 17px;
  margin-bottom: 12px;
  line-height: 1.35;
  color: var(--ftn-black);
  text-transform: none;
  font-weight: 700;
}

.noticia-excerpt {
  font-size: 14px;
  color: var(--ftn-gray-mid);
  margin-bottom: 20px;
  line-height: 1.6;
}

.noticia-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ftn-red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.noticia-link:hover { gap: 10px; }

/* ═══════════════════════════════════════════
   DONACIONES TERMÓMETRO (CTA)
═══════════════════════════════════════════ */
#donaciones-cta {
  padding: 100px 0;
  background: var(--ftn-black);
  position: relative;
  overflow: hidden;
}

#donaciones-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: var(--ftn-red);
  border-radius: 50%;
  opacity: 0.08;
}

#donaciones-cta::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: var(--ftn-red);
  border-radius: 50%;
  opacity: 0.06;
}

.donaciones-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.donaciones-content .section-label { background: rgba(192,57,43,0.8); }

.donaciones-content .section-title { color: white; }

.donaciones-content .section-subtitle {
  color: rgba(255,255,255,0.7);
  max-width: 100%;
  margin-bottom: 36px;
}

.donaciones-amounts {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.amount-btn {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--ftn-transition);
}

.amount-btn:hover,
.amount-btn.active {
  background: var(--ftn-red);
  border-color: var(--ftn-red);
}

/* Termómetro */
.thermometer-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 36px;
}

.therm-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 18px;
}

.therm-goal-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.therm-goal-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}

.therm-current {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
}

.therm-bar-track {
  height: 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 12px;
}

.therm-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--ftn-red-dark), var(--ftn-red));
  border-radius: 6px;
  width: 67%;
  transition: width 1.5s ease;
}

.therm-percent {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--ftn-red);
  margin-bottom: 4px;
}

.therm-donors {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}

/* Countdown */
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.countdown-item {
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 12px 8px;
  text-align: center;
}

.countdown-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: white;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.countdown-label {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   ALIADOS ESTRATÉGICOS
═══════════════════════════════════════════ */
#aliados {
  padding: 80px 0;
  background: var(--ftn-gray-light);
  overflow: hidden;
}

.aliados-track {
  display: flex;
  gap: 60px;
  align-items: center;
  animation: scroll-aliados 30s linear infinite;
  width: max-content;
}

.aliados-track:hover { animation-play-state: paused; }

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

.aliado-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 70px;
  background: white;
  border-radius: 4px;
  box-shadow: var(--ftn-shadow-sm);
  padding: 16px;
  filter: grayscale(100%) opacity(0.55);
  transition: filter 0.35s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.aliado-logo:hover {
  filter: grayscale(0%) opacity(1);
  transform: translateY(-2px);
}

.aliado-logo span {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ftn-black);
  text-align: center;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
#site-footer {
  background: var(--ftn-black);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 52px;
  margin-bottom: 60px;
}

.footer-brand .site-logo { margin-bottom: 20px; }

.footer-brand .logo-main { color: white; }
.footer-brand .logo-sub  { color: rgba(255,255,255,0.55); }

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 4px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ftn-transition);
}

.social-link:hover { background: var(--ftn-red); border-color: var(--ftn-red); }
.social-link svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.75); }

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ftn-red);
  display: inline-block;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a::before {
  content: '›';
  color: var(--ftn-red);
  font-size: 16px;
  line-height: 1;
}

.footer-col ul li a:hover { color: rgba(255,255,255,0.9); }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(192,57,43,0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-icon svg { width: 16px; height: 16px; fill: var(--ftn-red); }

.contact-text strong {
  display: block;
  font-size: 11.5px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2px;
}

.contact-text span {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a { color: var(--ftn-red); transition: opacity 0.2s; }
.footer-bottom a:hover { opacity: 0.8; }

.footer-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.2);
}

/* ═══════════════════════════════════════════
   AOS — Animaciones fade-in al scroll
═══════════════════════════════════════════ */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos][data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos][data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos][data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos][data-aos-delay="400"] { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .impact-grid       { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .about-grid        { grid-template-columns: 1fr; gap: 40px; }
  .donaciones-inner  { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  #primary-nav, .btn-dona { display: none; }
  .menu-toggle             { display: flex; }

  #primary-nav.open {
    display: flex;
    position: fixed;
    inset: 76px 0 0;
    background: white;
    flex-direction: column;
    padding: 32px 24px;
    z-index: 998;
    border-top: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  }

  #primary-nav.open ul {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }

  #primary-nav.open ul li { width: 100%; }

  #primary-nav.open ul li a {
    display: block;
    padding: 16px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .participa-grid  { grid-template-columns: 1fr; }
  .noticias-grid   { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr; }
  .impact-grid     { grid-template-columns: repeat(2, 1fr); }
  .countdown       { grid-template-columns: repeat(2, 1fr); }
  .slide-title     { font-size: 34px; }
  .footer-bottom   { flex-direction: column; gap: 8px; text-align: center; }
}

/* ═══════════════════════════════════════════
   WORDPRESS ADMIN BAR COMPAT
═══════════════════════════════════════════ */
.admin-bar #site-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar #site-header { top: 46px; }
}

/* ═══════════════════════════════════════════
   ELEMENTOR CUSTOM CLASSES
═══════════════════════════════════════════ */
.btn-solid-red {
  background-color: #C0392B !important;
  color: #FFFFFF !important;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.btn-solid-red:hover {
  background-color: #922B21 !important;
  transform: scale(1.02);
}

/* ═══════════════════════════════════════════
   PÁGINA INTERNA — HERO SIMPLE
═══════════════════════════════════════════ */
.page-hero {
  background: var(--ftn-black);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ftn-red);
  clip-path: polygon(100% 0, 100% 100%, 60% 100%);
  opacity: 0.12;
}

.page-hero-content { position: relative; z-index: 2; }

.page-hero h1 { color: white; font-size: 44px; margin-bottom: 12px; }

.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  display: flex;
  gap: 8px;
  align-items: center;
}

.breadcrumb a { color: var(--ftn-red); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ═══════════════════════════════════════════
   FORMULARIOS WPForms
═══════════════════════════════════════════ */
.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form input[type="tel"],
.wpforms-form textarea,
.wpforms-form select {
  border: 1.5px solid #ddd;
  border-radius: 4px;
  padding: 12px 16px;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: var(--ftn-gray-text);
  width: 100%;
  transition: border-color 0.2s;
}

.wpforms-form input:focus,
.wpforms-form textarea:focus {
  border-color: var(--ftn-red);
  outline: none;
}

.wpforms-form .wpforms-submit {
  background: var(--ftn-red) !important;
  color: white !important;
  border: none;
  border-radius: 4px;
  padding: 14px 36px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--ftn-transition);
}

.wpforms-form .wpforms-submit:hover {
  background: var(--ftn-red-dark) !important;
  transform: scale(1.02);
}

/* ═══════════════════════════════════════════
   GiveWP DONACIONES
═══════════════════════════════════════════ */
.give-wrap .give-btn {
  background: var(--ftn-red) !important;
  border-radius: 4px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
}

.give-progress-bar > span { background: var(--ftn-red) !important; }
