        :root {
            --azul: rgb(31, 49, 96);
            --rojo: rgb(235, 34, 40);
            --rojo-oscuro: #b52025;
            --blanco: #ffffff;
            --gris: #f8f8f8;
            --gris-oscuro: #e0e0e0;
            --texto: #333333;
        }

        /* Reset completo de estilos para enlaces */
        a {
            text-decoration: none;
            color: inherit;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        body {
            background: var(--blanco);
            color: var(--texto);
            line-height: 1.6;
            font-weight: 300;
            padding-top: 80px; /* Compensación para header fijo */
        }

        /* Header corregido */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: var(--blanco);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            height: 80px;
        }

        .logo {
            font-size: 1.4rem;
            font-weight: 600;
            letter-spacing: -0.5px;
            color: var(--azul);
            display: flex;
            align-items: center;
        }

        .logo span {
            color: var(--rojo);
            margin-left: 5px;
        }

        .logo img {
            height: 80px;
            margin-right: 10px;
        }

        /* Navegación desktop - enlaces sin subrayado */
        nav.desktop {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        nav.desktop a {
            color: var(--texto);
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
            padding: 0.5rem 0;
        }

        nav.desktop a:hover {
            color: var(--rojo);
        }

        /* Efecto sutil para enlaces activos */
        nav.desktop a.active:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: 0;
            left: 0;
            background: var(--rojo);
        }

        .btn-nav {
            background: var(--rojo);
            color: var(--blanco);
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 0.9rem;
        }

        .btn-nav:hover {
            background: var(--rojo-oscuro);
            transform: translateY(-2px);
            box-shadow: 0 3px 10px rgba(235, 34, 40, 0.3);
        }

        /* Menú Hamburguesa */
        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--azul);
            background: none;
            border: none;
        }

        /* Mobile Menu - enlaces sin subrayado */
        nav.mobile {
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background: var(--blanco);
            padding: 1rem 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transform: translateY(-150%);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 999;
        }

        nav.mobile.active {
            transform: translateY(0);
            opacity: 1;
        }

        nav.mobile a {
            display: block;
            padding: 1rem 0;
            color: var(--texto);
            border-bottom: 1px solid var(--gris-oscuro);
            font-weight: 500;
            transition: color 0.3s;
        }

        nav.mobile a:hover {
            color: var(--rojo);
        }

        nav.mobile a:last-child {
            border-bottom: none;
        }

        /* Resto del CSS permanece igual */
        .hero {
              height: 100vh;
              display: flex;
              align-items: center;
              text-align: center;
              color: var(--blanco);
              position: relative;
          }

          .hero-content {
              max-width: 800px;
              margin: 0 auto;
              padding: 0 2rem;
              position: relative;
              z-index: 2;
          }

        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--azul);
        }

        .hero h1 span {
            color: var(--rojo);
        }

        .hero p {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 2.5rem;
            color: rgba(0, 0, 0, 1);
        }

        .btn {
            display: inline-block;
            padding: 0.9rem 2.2rem;
            background: var(--rojo);
            color: var(--blanco);
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }

        .btn:hover {
            background: var(--rojo-oscuro);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(235, 34, 40, 0.3);
        }

        /* Secciones */
        .section {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 3rem;
            color: var(--azul);
            text-align: center;
            position: relative;
        }

        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--rojo);
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .card {
            padding: 2rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            background: var(--blanco);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .card i {
            font-size: 2rem;
            color: var(--rojo);
            margin-bottom: 1.5rem;
        }

        .card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--azul);
            font-weight: 500;
        }

        .card p {
            color: #666;
            font-size: 0.95rem;
        }

        /* Footer Mejorado */
        footer {
            padding: 4rem 2rem;
            background: var(--azul);
            color: var(--blanco);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-col h3 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .footer-col h3:after {
            content: '';
            position: absolute;
            width: 50%;
            height: 2px;
            bottom: -8px;
            left: 0;
            background: var(--rojo);
        }

        .footer-about p {
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: var(--blanco);
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--rojo);
            transform: translateY(-3px);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--blanco);
            opacity: 0.8;
            transition: all 0.3s;
        }

        .footer-links a:hover {
            opacity: 1;
            color: var(--rojo);
            padding-left: 5px;
        }

        .contact-info {
            margin-top: 1rem;
        }

        .contact-info p {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 10px;
            opacity: 0.9;
        }

        .contact-info i {
            width: 20px;
            color: var(--rojo);
        }

        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            opacity: 0.7;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            nav.desktop {
                display: none;
            }

            .hero {
                margin-top: 70px;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .section {
                padding: 4rem 1.5rem;
            }
        }

        /* Estilos para páginas específicas */
/* Propuestas */
.card-icon {
    font-size: 2.5rem;
    color: var(--rojo);
    margin-bottom: 1.5rem;
}

/* Candidatos */
.candidate-card {
    text-align: center;
}

.candidate-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--gris-claro);
    margin: 0 auto 1rem;
}

.position {
    color: var(--rojo);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bio {
    color: var(--texto-claro);
    font-size: 0.95rem;
}

/* Noticias */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    color: var(--rojo);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.read-more {
    color: var(--azul);
    font-weight: 500;
    display: inline-block;
    margin-top: 1rem;
}

/* Contacto y Únete */
.contact-grid, .join-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: start;
}

.contact-info p, .join-content p {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-contact {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-contact a {
    color: var(--azul);
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.benefits ul {
    list-style: none;
    margin-top: 1rem;
}

.benefits li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefits i {
    color: var(--rojo);
}

/* Estilos específicos para fuerza.php */
.about-party {
    padding: 4rem 0;
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.history-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.image-caption {
    text-align: center;
    font-style: italic;
    margin-top: 0.5rem;
    color: var(--texto-claro);
    font-size: 0.9rem;
}

.ideology-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.ideology-axes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.axis-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--blanco);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.axis-card:hover {
    transform: translateY(-5px);
}

.axis-card i {
    font-size: 2.5rem;
    color: var(--rojo);
    margin-bottom: 1rem;
}

.axis-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--azul);
}

.ideology-summary {
    text-align: center;
    font-size: 1.2rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(31, 49, 96, 0.05);
    border-radius: 8px;
}

.values-content {
    margin-top: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: var(--blanco);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: rgba(235, 34, 40, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    font-size: 1.8rem;
    color: var(--rojo);
}

.value-item h3 {
    color: var(--azul);
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .history-content {
        grid-template-columns: 1fr;
    }
    
    .history-image {
        order: -1;
    }
    
    .ideology-axes {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Estilos para texto refinado */
.refined-text {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: #444;
}

.history-block {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.history-year {
    flex: 0 0 60px;
    font-weight: 700;
    color: var(--rojo);
    font-size: 1.2rem;
    padding-top: 0.3rem;
}

.history-description {
    flex: 1;
    padding-left: 1.5rem;
    position: relative;
}

.history-description:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, var(--rojo), var(--azul));
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--azul);
    display: block;
    margin-bottom: 0.5rem;
}

.elegant-para {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 15px;
}

.elegant-para:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--rojo);
}

.red-strong {
    color: var(--rojo);
    font-weight: 600;
}

.highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.highlight:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 40%;
    background: rgba(235, 34, 40, 0.2);
    z-index: -1;
}

/* Imagen refinada */
.elegant-image {
    border-radius: 4px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transition: transform 0.4s;
}

.elegant-image:hover {
    transform: translateY(-5px);
}

.image-quote {
    text-align: center;
    font-style: italic;
    margin-top: 1rem;
    color: var(--texto-claro);
    font-size: 0.95rem;
    position: relative;
    padding-top: 1rem;
}

.image-quote:before {
    content: '';
    position: absolute;
    top: 0;
    left: 25%;
    width: 50%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--rojo), transparent);
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
    filter: invert(1); /* hace que el ícono blanco funcione bien sobre fondo verde */
}