/*
Theme Name: Walter Álamo
Theme URI: https://walteralamo.com.ar
Author: WABEP
Author URI: https://wabep.com
Description: Tema institucional para Walter Álamo. Liderazgo, Justicia Social y Comunidad. Paleta azul #1e9bde, tipografía Bebas Neue + Barlow.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: walter-alamo
Tags: one-page, political, blue, modern
*/


/* === THEME STYLES === */

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

    :root {
      --blue: #1e9bde;
      --blue-dark: #1480ba;
      --blue-deeper: #0e5a87;
      --blue-deepest: #093d5e;
      --blue-bg: #0b3650;
      --blue-section: #0d4568;
      --white: #FFFFFF;
      --gray-100: #f0f7fc;
      --gray-200: #cce4f3;
      --gray-500: #5a8aaa;
      --text-dark: #0a2e45;
      --text-mid: #1a5070;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Barlow', sans-serif;
      background: var(--white);
      color: var(--text-dark);
      overflow-x: hidden;
    }

    /* ==================== NAV ==================== */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 18px 48px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: transparent;
      transition: background 0.4s, padding 0.4s;
    }
    nav.scrolled {
      background: rgba(9,61,94,0.97);
      padding: 12px 48px;
      backdrop-filter: blur(10px);
    }
    .nav-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.6rem;
      letter-spacing: 3px;
      color: var(--white);
      text-decoration: none;
    }
    .nav-logo span { color: var(--blue); }
    .nav-links { display: flex; gap: 32px; list-style: none; }
    .nav-links a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--blue); }

    /* ==================== HERO ==================== */
    #hero {
      position: relative;
      height: 100vh;
      min-height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
    }

    .hero-animated-bg {
      position: absolute;
      inset: 0;
      background: 
        radial-gradient(ellipse 120% 80% at 20% 60%, rgba(30,155,222,0.3) 0%, transparent 60%),
        radial-gradient(ellipse 80% 100% at 80% 30%, rgba(30,155,222,0.15) 0%, transparent 60%),
        linear-gradient(160deg, #051e30 0%, #0a3450 50%, #051e30 100%);
      animation: bgPulse 8s ease-in-out infinite alternate;
    }
    @keyframes bgPulse {
      0% { filter: brightness(1); }
      100% { filter: brightness(1.15); }
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image: 
        linear-gradient(rgba(30,155,222,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30,155,222,0.07) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(5,30,48,0.5) 0%, rgba(5,30,48,0.2) 50%, rgba(5,30,48,0.75) 100%);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 0 24px;
      animation: heroIn 1.2s ease both;
    }
    @keyframes heroIn {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .hero-logo-text {
      display: block;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(5rem, 14vw, 11rem);
      letter-spacing: 6px;
      line-height: 0.9;
      color: var(--white);
      text-shadow: 
        4px 4px 0px rgba(30,155,222,0.8),
        0 0 80px rgba(30,155,222,0.4);
      position: relative;
    }
    .hero-logo-text::after {
      content: 'WALTER';
      position: absolute;
      inset: 0;
      color: transparent;
      -webkit-text-stroke: 1px rgba(30,155,222,0.3);
      transform: translate(6px, 6px);
      z-index: -1;
    }

    .hero-last-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(1.8rem, 5vw, 3.5rem);
      font-weight: 700;
      letter-spacing: 16px;
      color: var(--blue);
      text-transform: uppercase;
      margin-bottom: 24px;
      display: block;
    }

    .hero-accent-line {
      width: 80px;
      height: 4px;
      background: var(--blue);
      margin: 0 auto 28px;
    }

    .hero-subtitle {
      font-size: clamp(1rem, 2.2vw, 1.3rem);
      font-weight: 300;
      color: rgba(255,255,255,0.88);
      max-width: 620px;
      margin: 0 auto 42px;
      line-height: 1.7;
      letter-spacing: 0.5px;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-primary {
      display: inline-block;
      padding: 16px 40px;
      background: var(--blue);
      color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      text-decoration: none;
      border: 2px solid var(--blue);
      transition: all 0.25s;
      position: relative;
      overflow: hidden;
    }
    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0.15);
      transform: translateX(-100%);
      transition: transform 0.3s;
    }
    .btn-primary:hover::before { transform: translateX(0); }
    .btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-2px); }

    .btn-outline {
      display: inline-block;
      padding: 16px 40px;
      background: transparent;
      color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      text-decoration: none;
      border: 2px solid rgba(255,255,255,0.6);
      transition: all 0.25s;
    }
    .btn-outline:hover {
      border-color: var(--white);
      background: rgba(255,255,255,0.08);
      transform: translateY(-2px);
    }

    .hero-scroll {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.5);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.7rem;
      letter-spacing: 3px;
      text-transform: uppercase;
    }
    .scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, rgba(30,155,222,0.9), transparent);
      animation: scrollLine 2s ease-in-out infinite;
    }
    @keyframes scrollLine {
      0%, 100% { transform: scaleY(1); opacity: 1; }
      50% { transform: scaleY(0.5); opacity: 0.4; }
    }

    /* ==================== SECTIONS ==================== */
    section { padding: 100px 24px; }
    .container { max-width: 1100px; margin: 0 auto; }

    .section-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--blue);
      display: block;
      margin-bottom: 12px;
      text-align: center;
    }

    h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      letter-spacing: 3px;
      line-height: 1;
      color: var(--text-dark);
      margin-bottom: 24px;
      text-align: center;
    }

    .title-underline {
      width: 60px;
      height: 4px;
      background: var(--blue);
      margin: 0 auto 48px;
    }

    /* ==================== QUIÉN ES ==================== */
    #quien {
      background: var(--gray-100);
      position: relative;
      overflow: hidden;
    }
    #quien::before {
      content: 'WA';
      position: absolute;
      right: -2%;
      top: 50%;
      transform: translateY(-50%);
      font-family: 'Bebas Neue', sans-serif;
      font-size: 22vw;
      color: rgba(30,155,222,0.05);
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }
    .quien-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 60px;
      max-width: 780px;
      margin: 0 auto;
      text-align: center;
    }
    .quien-text-side { text-align: center; }
    .quien-text-side h2 { text-align: center; color: var(--text-dark); }
    .quien-text-side .title-underline { margin: 0 auto 48px; }
    .quien-bio {
      font-size: 1.05rem;
      line-height: 1.9;
      color: var(--text-mid);
      font-weight: 300;
      text-align: center;
    }
    .quien-bio strong {
      color: var(--text-dark);
      font-weight: 600;
    }
    .quien-bio p + p { margin-top: 18px; }

    .quien-stats {
      display: flex;
      gap: 32px;
      margin-top: 40px;
      justify-content: center;
    }
    .stat-item { text-align: center; }
    .stat-number {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      color: var(--blue);
      line-height: 1;
    }
    .stat-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.8rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gray-500);
    }

    .quien-visual { width: 100%; }
    .quien-card {
      background: var(--blue-bg);
      padding: 48px 40px;
      position: relative;
      overflow: hidden;
      text-align: center;
    }
    .quien-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 5px;
      background: var(--blue);
    }
    .quien-card-quote {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 4rem;
      color: var(--blue);
      line-height: 0.8;
      margin-bottom: 16px;
    }
    .quien-card-text {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.88);
      line-height: 1.75;
      font-style: italic;
      font-weight: 300;
    }
    .quien-card-author {
      margin-top: 24px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.85rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--blue);
    }
    .quien-card-tag {
      display: inline-block;
      margin-top: 8px;
      padding: 4px 12px;
      background: rgba(30,155,222,0.15);
      border: 1px solid rgba(30,155,222,0.3);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.75rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
    }

    /* ==================== PROPUESTAS ==================== */
    #propuestas {
      background: var(--blue-bg);
      text-align: center;
    }
    #propuestas h2 { color: var(--white); }
    
    .propuestas-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      margin-top: 60px;
    }

    .propuesta-card {
      background: var(--blue-section);
      padding: 52px 36px;
      text-align: center;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s;
      border-top: 3px solid transparent;
    }
    .propuesta-card:hover {
      transform: translateY(-6px);
      border-top-color: var(--blue);
      background: var(--blue-deeper);
    }
    .propuesta-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 2px;
      background: var(--blue);
      transition: width 0.4s;
    }
    .propuesta-card:hover::after { width: 100%; }

    .propuesta-icon {
      width: 56px;
      height: 56px;
      margin: 0 auto 28px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .propuesta-icon svg {
      width: 48px;
      height: 48px;
      stroke: var(--blue);
      fill: none;
      stroke-width: 1.5;
    }
    .propuesta-card h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem;
      letter-spacing: 2px;
      color: var(--white);
      margin-bottom: 16px;
    }
    .propuesta-card p {
      font-size: 0.95rem;
      line-height: 1.75;
      color: rgba(255,255,255,0.65);
      font-weight: 300;
    }
    .propuesta-number {
      position: absolute;
      top: 20px;
      right: 24px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 5rem;
      color: rgba(255,255,255,0.04);
      line-height: 1;
    }

    /* ==================== REDES ==================== */
    #redes {
      background: var(--white);
      text-align: center;
    }

    .redes-intro {
      font-size: 1.05rem;
      color: var(--gray-500);
      max-width: 500px;
      margin: 0 auto 56px;
      line-height: 1.7;
    }

    .redes-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px;
      max-width: 900px;
      margin: 0 auto;
    }

    .red-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 28px 20px;
      width: 150px;
      border: 1px solid var(--gray-200);
      text-decoration: none;
      transition: all 0.25s;
      position: relative;
      overflow: hidden;
    }
    .red-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: var(--blue);
      transform: scaleX(0);
      transition: transform 0.3s;
    }
    .red-card:hover {
      border-color: var(--blue);
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(30,155,222,0.15);
    }
    .red-card:hover::before { transform: scaleX(1); }

    .red-icon {
      width: 44px;
      height: 44px;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .red-icon svg { width: 44px; height: 44px; }
    .red-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-dark);
    }

    /* ==================== FACEBOOK FEED ==================== */
    #facebook-feed {
      background: var(--blue-bg);
      text-align: center;
      overflow: hidden;
    }
    #facebook-feed h2 { color: var(--white); }
    .fb-feed-subtitle {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.55);
      max-width: 480px;
      margin: -12px auto 52px;
      line-height: 1.7;
      font-weight: 300;
    }

    /* Slider container */
    .fb-slider-outer {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 60px;
    }

    .fb-slider-track {
      overflow: hidden;
    }

    .fb-cards-row {
      display: flex;
      gap: 20px;
      transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Card */
    .fb-card {
      background: var(--blue-section);
      border: 1px solid rgba(30,155,222,0.18);
      padding: 28px 24px;
      min-width: 300px;
      flex: 0 0 300px;
      text-align: left;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
      transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
      cursor: pointer;
    }
    .fb-card:hover {
      transform: translateY(-5px);
      border-color: rgba(30,155,222,0.5);
      box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    }

    .fb-card-header {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .fb-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: #1877F2;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      overflow: hidden;
    }
    .fb-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .fb-avatar-initials {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1rem;
      color: white;
    }
    .fb-card-user { flex: 1; }
    .fb-card-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.5px;
      color: var(--white);
    }
    .fb-card-date {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.38);
    }
    .fb-icon {
      opacity: 0.35;
    }
    .fb-icon svg { width: 20px; height: 20px; fill: white; display: block; }

    .fb-card-image {
      width: 100%;
      height: 160px;
      object-fit: cover;
      display: block;
      border-radius: 2px;
    }

    .fb-card-text {
      font-size: 0.93rem;
      line-height: 1.65;
      color: rgba(255,255,255,0.8);
      font-weight: 300;
      flex: 1;
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .fb-card-footer {
      display: flex;
      align-items: center;
      gap: 16px;
      padding-top: 12px;
      border-top: 1px solid rgba(255,255,255,0.07);
    }
    .fb-metric {
      display: flex;
      align-items: center;
      gap: 5px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.8rem;
      letter-spacing: 1px;
      color: rgba(255,255,255,0.35);
    }
    .fb-metric svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 1.5; }

    /* Nav arrows */
    .fb-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      background: rgba(30,155,222,0.15);
      border: 1px solid rgba(30,155,222,0.3);
      color: var(--white);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, border-color 0.2s;
      z-index: 2;
      user-select: none;
    }
    .fb-arrow:hover { background: rgba(30,155,222,0.35); border-color: var(--blue); }
    .fb-arrow.disabled { opacity: 0.2; pointer-events: none; }
    .fb-arrow-prev { left: 0; }
    .fb-arrow-next { right: 0; }
    .fb-arrow svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2; }

    /* Dots */
    .fb-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 32px;
    }
    .fb-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
      border: none;
      padding: 0;
    }
    .fb-dot.active {
      background: var(--blue);
      transform: scale(1.3);
    }

    /* CTA */
    .fb-feed-cta {
      margin-top: 40px;
    }
    .fb-feed-cta a {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 32px;
      border: 1px solid rgba(30,155,222,0.4);
      color: var(--blue);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.25s;
    }
    .fb-feed-cta a:hover {
      background: rgba(30,155,222,0.1);
      border-color: var(--blue);
    }
    .fb-feed-cta svg { width: 18px; height: 18px; fill: var(--blue); }

    /* Skeleton */
    .fb-skeleton { animation: fbSkeletonPulse 1.4s ease-in-out infinite; }
    .fb-skel-block {
      background: rgba(255,255,255,0.06);
      border-radius: 2px;
      margin-bottom: 10px;
    }
    @keyframes fbSkeletonPulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }

    @media (max-width: 768px) {
      .fb-slider-outer { padding: 0 44px; }
      .fb-card { min-width: 260px; flex: 0 0 260px; }
    }


    /* ==================== CONTACTO ==================== */
    #contacto {
      background: var(--blue-section);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    #contacto::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--blue);
    }
    #contacto h2 { color: var(--white); }
    .contacto-tagline {
      font-size: 1.15rem;
      color: rgba(255,255,255,0.55);
      margin-bottom: 56px;
      font-style: italic;
      font-weight: 300;
    }

    .form-wrapper {
      max-width: 580px;
      margin: 0 auto;
    }

    .form-group {
      margin-bottom: 20px;
      text-align: left;
    }
    .form-group label {
      display: block;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.75rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-bottom: 8px;
    }
    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 16px 20px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      color: var(--white);
      font-family: 'Barlow', sans-serif;
      font-size: 0.95rem;
      transition: border-color 0.2s, background 0.2s;
      outline: none;
      resize: none;
    }
    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--blue);
      background: rgba(30,155,222,0.07);
    }
    .form-group textarea { height: 130px; }

    .btn-submit {
      width: 100%;
      padding: 18px;
      background: var(--blue);
      color: var(--white);
      border: none;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
    }
    .btn-submit:hover {
      background: var(--blue-dark);
      transform: translateY(-2px);
    }

    .form-success, .form-error { display: none; }
    .form-success.is-visible, .form-error.is-visible {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 18px 20px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem;
      letter-spacing: 1px;
      margin-top: 16px;
      text-align: center;
    }
    .form-success.is-visible {
      background: rgba(30,155,222,0.1);
      border: 1px solid rgba(30,155,222,0.35);
      color: var(--white);
    }
    .form-error.is-visible {
      background: rgba(248,113,113,0.08);
      border: 1px solid rgba(248,113,113,0.35);
      color: #f87171;
    }
    .contact-form input.is-invalid,
    .contact-form textarea.is-invalid { border-color: #f87171; }

    .btn-spinner { display:none; width:18px; height:18px; border:2px solid rgba(255,255,255,0.35); border-top-color:#fff; border-radius:50%; animation:spin .7s linear infinite; margin: 0 auto; }
    @keyframes spin { to { transform:rotate(360deg); } }
    #submitBtn.is-loading .btn-text    { display:none; }
    #submitBtn.is-loading .btn-spinner { display:block; }
    #submitBtn.is-loading { opacity:.8; cursor:not-allowed; pointer-events:none; }

    /* ==================== FOOTER ==================== */
    footer {
      background: var(--blue-deepest);
      padding: 60px 24px 32px;
      text-align: center;
    }
    .footer-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.5rem;
      letter-spacing: 4px;
      color: var(--white);
      margin-bottom: 8px;
    }
    .footer-logo span { color: var(--blue); }
    .footer-tagline {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.4);
      letter-spacing: 1px;
      margin-bottom: 40px;
    }
    .footer-links {
      display: flex;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
      margin-bottom: 40px;
      list-style: none;
    }
    .footer-links a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.8rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--blue); }
    .footer-divider {
      width: 40px;
      height: 2px;
      background: var(--blue);
      margin: 0 auto 24px;
    }
    .footer-copy {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.3);
      letter-spacing: 1px;
    }

    /* ==================== WHATSAPP FLOAT ==================== */
    .whatsapp-float {
      position: fixed;
      bottom: 32px;
      right: 32px;
      z-index: 999;
      width: 58px;
      height: 58px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(37,211,102,0.4);
      transition: transform 0.3s, box-shadow 0.3s;
      animation: float 3s ease-in-out infinite;
    }
    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 30px rgba(37,211,102,0.5);
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }
    .whatsapp-float svg { width: 30px; height: 30px; fill: white; }

    /* ==================== RESPONSIVE ==================== */
    @media (max-width: 768px) {
      nav { padding: 16px 20px; }
      nav.scrolled { padding: 12px 20px; }
      .nav-links { display: none; }
      section { padding: 70px 20px; }
      .propuestas-grid { grid-template-columns: 1fr; gap: 2px; }
      .redes-grid { justify-content: center; }
      .quien-stats { gap: 20px; }
    }

    /* ==================== ANIMATIONS ==================== */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
  