@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
        
        :root {
            --color-primary: #00457C; /* Azul */
            --color-secondary: #FFD700; /* Dorado */
            --color-accent: #E53935; /* Rojo */
            --color-background: #0D1117; /* Fondo oscuro */
            --color-text: #EAEAEA;
            --color-body-bg: #dce7f7; /* Nuevo fondo azul pastel */
            --color-body-text: #002E5D; /* Nuevo color de texto oscuro */
        }

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

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--color-background);
            color: var(--color-text);
            line-height: 1.6;
            overflow-x: hidden;
            /* Evita la selección de texto para dificultar la copia del contenido */
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        /* Efecto de partículas de fondo */
        .particles-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }
        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: move-particles 20s infinite ease-in-out;
        }
        @keyframes move-particles {
            0% { transform: translateY(0) rotate(0deg); opacity: 0; }
            50% { opacity: 0.8; }
            100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
        }

        .container {
            max-width: 1100px;
            margin: auto;
            padding: 0 2rem;
        }

        /* Encabezado y Navegación */
        header {
            background: rgba(13, 17, 23, 0.8);
            backdrop-filter: blur(5px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: background 0.3s ease;
        }
        header.scrolled {
            background: rgba(0, 0, 0, 0.9);
        }
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--color-secondary);
            text-transform: uppercase;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
            transition: transform 0.3s ease;
        }
        .logo:hover {
            transform: scale(1.05);
        }
        .nav-links a {
            color: #58A6FF;
            text-decoration: none;
            font-weight: 600;
            margin-left: 2rem;
            position: relative;
            transition: color 0.3s ease;
        }
        .nav-links a:hover {
            color: #C9D1D9;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--color-secondary);
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .logo-img {
            height: 70px;
            width: auto;
        }
        /* Estilo del menú para móviles */
    .menu-toggle {
        display: none; /* Ocultar en desktop */
        color: var(--color-secondary);
        font-size: 2rem;
        cursor: pointer;
    }

        /* Sección Principal con video de fondo */
        #home {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            /*background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://placehold.co/1920x1080/00457C/FFD700?text=ACTIVISTA+POLÍTICO+Construyendo+un+mañana+Seguro+y+Tecnológico');*/
            /*background-size: cover;*/
            /*background-position: center;*/
        }
        #dmo-site {
            color: var(--color-primary);
            text-transform: uppercase;
        }
        .video-background-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }
        #video-background {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100vw;
            height: 100vh;
            min-width: 100%; 
            min-height: 100%;
            transform: translate(-50%, -50%);
            object-fit: cover; /* Asegura que el video cubra toda el área */
        }
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6); /* Capa oscura para mejor legibilidad */
            z-index: 1;
        }

        /* Contenido principal sobre el video */
        .hero-content {
            z-index: 10;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
        }
        .text-container {
            position: absolute;
            width: 400px;
            height: 400px;
            animation: rotate-circle 20s linear infinite;
        }
        .text-container span {
            position: absolute;
            left: 50%;
            transform-origin: 0 200px; /* Radio del círculo */
            font-size: 1.5rem;
            font-weight: 600;
            color: #C9D1D9;
            text-shadow: 0 0 5px var(--color-background);
        }
        .central-text {
            position: absolute;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--color-secondary);
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
            animation: fadeInText 1.5s ease-in-out;
        }
        .central-text img {width: 200px;}
        
        /* Estilos del h1 */
        #dmo-site h1 {
            font-size: 5rem;
            font-weight: 700;
            color: #eaeaea3d;
            text-transform: uppercase;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
        }


        @keyframes rotate-circle {
            to { transform: rotate(360deg); }
        }
        @keyframes fadeInText {
            from { opacity: 0; transform: scale(0.8); }
            to { opacity: 1; transform: scale(1); }
        }

        /* Estilo general de secciones */
        section {
            padding: 5rem 0;
            background-color: var(--color-body-bg);
            color: var(--color-body-text);
            border-top: 2px solid var(--color-accent);
        }
        
        /* Alternar patrones de fondo para las secciones */
        #perfil, #seguridad, #conclusion {
            background-color: var(--color-body-bg);
            color: var(--color-body-text);
        }
        #campañas, #economia {
            background-color: var(--color-background);
            color: var(--color-text);
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            text-transform: uppercase;
            text-shadow: 2px 2px 4px var(--color-primary);
            color: var(--color-text);
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--color-accent);
            border-radius: 2px;
        }
        
        /* Patrón de colores para los títulos de las secciones y cartas */
        .perfil-text h3, 
        .card h3,
        .card h4,
        .campaigns-subtitle { 
            color: var(--color-primary);
            text-shadow: none; /* Eliminar sombra de h3 y h4 */
        }
        .perfil-text h3 {
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        /* Estilo de tarjetas estáticas */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .card {
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(5px);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.1);
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
        }
        .card-icon {
            font-size: 3rem;
            color: var(--color-accent);
            margin-bottom: 1rem;
            text-align: center;
        }
        
        .card p {
            color: var(--color-body-text);
            font-size: 0.9rem;
        }
        .campaigns-subtitle-container {
            text-align: center;
            margin-bottom: 2rem;
        }
        .campaigns-subtitle {
            font-size: 1.5rem;
            font-weight: 600;
        }

        /* Estilos de la sección Perfil */
        .perfil-content {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            align-items: center;
        }
        .perfil-image-container {
            position: relative;
            width: 250px;
            height: 250px;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(0, 70, 124, 0.5);
        }
        .perfil-image-container img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%);
            transition: filter 0.5s ease-in-out;
        }
        .perfil-image-container:hover img {
            filter: grayscale(0);
        }
        .perfil-text {
            max-width: 800px;
            text-align: center;
        }
        .perfil-text h3 {
            font-size: 1.5rem;
            color: var(--color-secondary);
            margin-bottom: 1rem;
            text-shadow: none;
        }
        .perfil-text p {
            font-size: 1rem;
            color: var(--color-light-gray);
            margin-bottom: 1rem;
        }
        .perfil-text ul {
            list-style: none;
            padding-left: 0;
            text-align: left;
        }
        .perfil-text ul li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            color: var(--color-text);
        }
        .perfil-text ul li::before {
            content: '•';
            color: var(--color-accent);
            font-size: 1.2rem;
            position: absolute;
            left: 0;
            top: -2px;
        }


        /* Animaciones para las secciones */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        .animate-on-scroll.in-view {
            opacity: 1;
            transform: translateY(0);
        }

        /* Pie de página */
        footer {
            background-color: var(--color-background);
            color: var(--color-secondary); /* Color de texto del footer */
            text-align: center;
            padding: 2rem 0;
            border-top: 5px solid var(--color-accent);
        }
        .footer-logo {
            width: 100px;
            height: auto;
            margin-bottom: 1rem;
        }
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 1rem;
        }
        .social-links a {
            color: var(--color-secondary); /* Color de los iconos y enlaces del footer */
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }
        .social-links a:hover {
            color: #C9D1D9;
        }
        .contact-info {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: var(--color-secondary);
        }
        
        /* Media Queries */
    @media (max-width: 768px) {
        .navbar {
            flex-direction: column;
            align-items: flex-start;
        }
        .logo {
            align-self: flex-start;
        }
        .nav-links {
            display: none; /* Ocultar por defecto en móvil */
            flex-direction: column;
            width: 100%;
            text-align: center;
            background: rgba(13, 17, 23, 0.9);
            margin-top: 1rem;
        }
        .nav-links.active {
            display: flex; /* Mostrar cuando la clase 'active' está presente */
        }
        .nav-links a {
            margin: 1rem 0;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .nav-links a:last-child {
            border-bottom: none;
        }
        .menu-toggle {
            display: block; /* Mostrar el ícono del menú en móvil */
            position: absolute;
            right: 2rem;
            top: 2rem;
        }
            .hero-content h1 {
                font-size: 2.5rem;
            }
            .hero-content p {
                font-size: 1rem;
            }
            .perfil-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .perfil-image-container {
                width: 60%;
                margin: auto;
            }
        }
