/* ===== VARIABLES Y RESET ===== */
        :root {
            --verde-principal: #2ECC71;
            --verde-oscuro: #27AE60;
            --amarillo-branding: #F1C40F;
            --blanco-puro: #FFFFFF;
            --negro-texto: #1a1a1a;
            --gris-claro: #f9f9f9;
            --gris-medio: #666;
            --sombra-suave: 0 5px 20px rgba(0,0,0,0.08);
            --sombra-fuerte: 0 20px 40px rgba(0,0,0,0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
            overflow-y: scroll;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--blanco-puro);
            color: var(--negro-texto);
            line-height: 1.6;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
            width: 100%;
        }

        .container {
            width: 100%;
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-subtitle {
            color: var(--verde-principal);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .section-heading {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 900;
            color: var(--negro-texto);
            letter-spacing: -1px;
        }

        .btn-custom {
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 800;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border: none;
            letter-spacing: 1px;
            font-size: 0.95rem;
            display: inline-block;
            cursor: pointer;
            text-decoration: none;
        }

        .btn-cta {
            background: white;
            color: var(--verde-oscuro);
            margin-top: 20px;
        }

        .btn-cta i {
            color: var(--verde-principal);
        }

        .btn-cta:hover {
            background: var(--gris-claro);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            color: var(--verde-oscuro);
        }

        .btn-cta-campaign {
            background: var(--verde-principal);
            color: white;
            margin-top: 20px;
        }

        .btn-cta-campaign i {
            color: white;
        }

        .btn-cta-campaign:hover {
            background: var(--verde-oscuro);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        /* ===== NAVBAR ===== */
        .navbar {
            background: var(--blanco-puro) !important;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            padding: 12px 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            left: 0;
            right: 0;
        }

        .navbar-brand {
            font-weight: 900;
            color: var(--verde-oscuro) !important;
            letter-spacing: -0.5px;
            font-size: 1.3rem;
        }

        .nav-link {
            font-weight: 600;
            color: var(--negro-texto) !important;
            font-size: 0.9rem;
            transition: 0.3s ease;
            text-transform: uppercase;
            margin: 0 10px;
            position: relative;
        }

        .nav-link:hover {
            color: var(--verde-principal) !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--verde-principal);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* ===== HERO SECTION ===== */
        .hero-section {
            background: linear-gradient(135deg, var(--verde-principal) 0%, #229954 100%);
            padding: 100px 0 100px;
            overflow: hidden;
            position: relative;
            color: white;
            min-height: auto;
            display: flex;
            align-items: center;
            width: 100%;
            margin-top: 0;
        }

        .hero-section::before {
            content: '87';
            position: absolute;
            font-size: 20rem;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.12);
            top: 50px;
            right: -100px;
            line-height: 1;
            z-index: 0;
            pointer-events: none;
            display: block;
        }

        .hero-watermark {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            font-size: 15rem;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.06);
            z-index: 0;
            pointer-events: none;
            display: none;
            overflow: hidden;
            line-height: 1;
        }

        .hero-watermark-content {
            transform: rotate(-15deg) translate(-10%, -10%);
            white-space: pre-wrap;
            width: 100%;
        }

        @media (max-width: 1199px) {
            .hero-section::before {
                display: block;
            }
            .hero-watermark {
                display: none;
            }
        }

        @media (min-width: 1200px) {
            .hero-section::before {
                display: none;
            }
            .hero-watermark {
                display: block;
            }
        }

        .hero-diagonal {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to top right, var(--blanco-puro) 50%, transparent 50.5%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-tagline {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            padding: 12px 24px;
            display: inline-block;
            border-left: 5px solid var(--amarillo-branding);
            font-weight: 700;
            margin-bottom: 25px;
            border-radius: 5px;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .hero-name {
            font-size: clamp(3rem, 6vw, 5rem);
            line-height: 1;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -2px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .hero-name span {
            color: var(--amarillo-branding);
            display: block;
        }

        .hero-description {
            font-size: 1.2rem;
            opacity: 0.95;
            font-weight: 500;
            margin-bottom: 40px;
            max-width: 600px;
        }

        /* ===== VOTE CARD ===== */
        .vote-card-container {
            background: linear-gradient(135deg, white 0%, #f8fdf9 100%);
            border-radius: 25px;
            padding: 30px 40px;
            box-shadow: 0 20px 60px rgba(46, 204, 113, 0.15);
            display: flex;
            align-items: center;
            gap: 25px;
            margin-top: 50px;
            border: 2px solid rgba(46, 204, 113, 0.1);
            position: relative;
            z-index: 2;
            width: fit-content;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .vote-card-container:hover {
            transform: translateY(-5px);
        }

        .vote-card-container::before {
            content: '87';
            position: absolute;
            font-size: 12rem;
            font-weight: 900;
            color: rgba(46, 204, 113, 0.08);
            right: -30px;
            top: 50%;
            transform: translateY(-50%);
            line-height: 1;
            z-index: 0;
        }

        .vote-logo-section {
            text-align: center;
            border-right: 2px solid rgba(46, 204, 113, 0.2);
            padding-right: 20px;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }

        .vote-label {
            font-size: 0.65rem;
            color: var(--verde-oscuro);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 8px;
        }

        .vote-logo-partido {
            max-height: 80px;
            width: auto;
            transition: 0.3s ease;
        }

        .vote-number {
            font-size: 5rem;
            font-weight: 900;
            color: var(--verde-principal);
            line-height: 0.9;
            padding-left: 20px;
            position: relative;
            z-index: 1;
            text-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        /* ===== HERO IMAGE ===== */
        .hero-image {
            position: relative;
            z-index: 2;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
            filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
            border-radius: 15px;
        }

        /* ===== PROPUESTAS SECTION ===== */
        .propuestas-section {
            background-color: var(--gris-claro);
            position: relative;
            width: 100%;
            overflow-x: hidden;
            padding: 80px 0 60px !important;
        }

        .propuesta-card {
            border: none;
            border-radius: 15px;
            background: var(--blanco-puro);
            box-shadow: var(--sombra-suave);
            padding: 45px 35px;
            transition: all 0.35s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .propuesta-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--sombra-fuerte);
        }

        .propuesta-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--verde-principal);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .propuesta-card:hover::before {
            transform: scaleX(1);
        }

        .icon-box {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(46, 204, 113, 0.15), rgba(46, 204, 113, 0.05));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--verde-principal);
            margin-bottom: 25px;
            transition: 0.3s ease;
        }

        .propuesta-card:hover .icon-box {
            background: linear-gradient(135deg, var(--verde-principal), #229954);
            color: white;
            transform: scale(1.1);
        }

        .propuesta-card h4 {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--negro-texto);
            margin-bottom: 15px;
        }

        .propuesta-card p {
            font-size: 0.95rem;
            color: var(--gris-medio);
            line-height: 1.7;
        }

        /* ===== CARTA SECTION ===== */
        .carta-section {
            padding: 80px 0 !important;
        }

        .carta-image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.12);
            transition: transform 0.3s ease;
        }

        .carta-image:hover img {
            transform: scale(1.02);
        }

        .carta-content h2 {
            font-size: clamp(2rem, 3vw, 2.8rem);
            font-weight: 900;
            color: var(--negro-texto);
            margin-bottom: 25px;
        }

        .carta-content p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
        }

        /* ===== FOOTER ===== */
        .footer-main {
            background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
            color: white;
            padding: 70px 0 35px;
            position: relative;
            margin-top: 0;
            width: 100%;
            overflow-x: hidden;
        }

        .footer-main::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, rgba(255,255,255,0.2), rgba(241, 196, 15, 0.3));
        }

        .footer-main h3 {
            font-weight: 800;
            font-size: 1.4rem;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }

        .footer-main > .container > .text-center > p:nth-of-type(1) {
            margin-bottom: 0;
            font-size: 0.95rem;
            opacity: 0.95;
            margin-bottom: 28px;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin: 30px 0 35px 0;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 46px;
            height: 46px;
            background: rgba(255, 255, 255, 0.22);
            color: white;
            border-radius: 50%;
            transition: all 0.3s ease;
            font-size: 1.15rem;
            text-decoration: none;
            border: 2px solid rgba(255, 255, 255, 0.25);
        }

        .social-link:hover {
            background: white;
            color: var(--verde-principal);
            transform: translateY(-4px);
            border-color: white;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        .footer-bottom {
            margin-top: 0;
            padding-top: 28px;
            border-top: 1px solid rgba(255,255,255,0.18);
            color: rgba(255,255,255,0.88);
            font-size: 0.88rem;
        }

        .footer-bottom p {
            margin-bottom: 10px;
        }

        .footer-bottom p:last-child {
            margin-bottom: 0;
            font-size: 0.82rem;
            opacity: 0.8;
        }

        /* --- FOOTER COMPLETO --- */
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        }

        .footer-section h4 {
            font-size: 1.1rem;
            font-weight: 800;
            margin-bottom: 15px;
            color: white;
        }

        .footer-section p {
            font-size: 0.9rem;
            opacity: 0.88;
            margin-bottom: 8px;
            line-height: 1.6;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section ul li a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-size: 0.9rem;
            transition: 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: white;
            padding-left: 5px;
        }

        .footer-bottom-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            font-size: 0.85rem;
            opacity: 0.85;
            padding-top: 20px;
        }

        .footer-info-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-info-item i {
            color: var(--amarillo-branding);
            font-size: 1rem;
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-bottom-info {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 992px) {
            .section-padding {
                padding: 80px 0;
            }
            
            .hero-section {
                padding: 120px 0 80px;
            }
            
            .hero-name {
                font-size: clamp(2.5rem, 5vw, 4rem);
            }
        }

        @media (max-width: 768px) {
            .vote-card-container {
                flex-direction: row;
                padding: 20px 25px;
                text-align: center;
                margin: 30px auto 0;
                gap: 15px;
            }
            
            .vote-logo-section {
                border-right: 2px solid rgba(46, 204, 113, 0.2);
                border-bottom: none;
                padding-right: 15px;
                padding-bottom: 0;
                width: auto;
            }
            
            .vote-number {
                padding-left: 10px;
                font-size: 3.5rem;
            }

            .vote-logo-partido {
                max-height: 65px;
            }
            
            .hero-image {
                margin-top: 50px;
            }
            
            .nav-link {
                margin: 5px 0;
            }
        }

        @media (max-width: 576px) {
            .section-padding {
                padding: 60px 0;
            }
            
            .hero-section {
                padding: 100px 0 60px;
            }
            
            .vote-number {
                font-size: 4rem;
            }
            
            .propuesta-card {
                padding: 30px 25px;
            }
            
            .btn-custom {
                padding: 14px 30px;
                font-size: 0.9rem;
            }
        }

        /* ===== ANIMACIONES ===== */
        .fade-in {
            animation: fadeIn 1s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .stagger-delay-1 { animation-delay: 0.1s; }
        .stagger-delay-2 { animation-delay: 0.2s; }
        .stagger-delay-3 { animation-delay: 0.3s; }