
        /* Estilos CSS para un diseño atractivo y responsivo */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f0f4f8; /* Fondo suave */
            color: #333;
            line-height: 1.6;
            font-size: 25px; 
        }
        /* Bloque visual elegante */
        .bloque-descargas {
            background: #ffffff;
            padding: 25px 35px;
            margin: 40px auto;
            border-radius: 12px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.12);
        }

        /* Título centrado */
        .descargas-titulo h2 {
            font-size: 28px;
            color: #2f8f43;
            margin: 0;
            text-align: center;
            font-weight: bold;
        }

        /* Botones alineados a la derecha */
        .descargas-botones {
            margin-top: 25px;
            text-align: right;
        }

        /* Estilos de los botones */
        .descargas-botones button {
            background-color: #4CAF50;
            color: white;
            padding: 12px 22px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            margin-left: 12px;
            font-size: 16px;
            transition: 0.2s;
        }

        .descargas-botones button:hover {
            background-color: #3a933f;
            transform: scale(1.05);
        }
        .header {
            background-color: #4CAF50; /* Color primario: Verde */
            color: white;
            padding: 20px 0;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            position: relative;
        }
        .header .logo {
            width: 150px; /* Tamaño del logo */
            height: auto;
            margin-bottom: 10px;
            border-radius: 5px; 
        }
        /* ESTILO BASE PARA TODOS LOS LOGOS DE ESQUINA */
        .logo-esquina {
            width: 120px; /* Tamaño más pequeño para las esquinas. AJUSTA si es necesario */
            height: auto;
            position: absolute; /* Permite posicionarlos en las coordenadas exactas */
            top: 20px; /* Separación desde el borde superior del encabezado */
        }

        /* POSICIONAMIENTO ESPECÍFICO DEL LOGO IZQUIERDO */
        .logo-izquierdo {
            left: 20px; /* Separación desde el borde izquierdo */
        }

        /* POSICIONAMIENTO ESPECÍFICO DEL LOGO DERECHO */
        .logo-derecho {
            right: 20px; /* Separación desde el borde derecho */
        }
        .header h1 {
            margin: 0;
            font-size: 2.5em;
        }
        .container {
            max-width: 1500px;
            margin: 30px auto;
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        }
        h2 {
            color: #2e7d32; /* Tono de verde oscuro para títulos */
            border-bottom: 2px solid #a5d6a7;
            padding-bottom: 5px;
            margin-top: 30px;
            font-size: 1.8em;
        }
        h3 {
            color: #4CAF50;
            font-size: 1.3em;
            margin-top: 20px;
        }
        ul, ol {
            padding-left: 20px;
        }
        li {
            margin-bottom: 8px;
        }
        /* Estilos CSS para las imágenes de los componentes */
        .component-img {
            max-width: 250px; 
            height: auto;
            display: block; 
            margin: 10px auto 20px auto; /* Centrado horizontal con margen automático */
            border: 1px solid #ddd;
            border-radius: 4px;
            box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
        }

        .component-img-per {
            display: inline-block; 
            width: 200px; /* <--- AJUSTA ESTE VALOR: Obliga a que ambas midan 200px de ancho */
            max-width: 250px;
            height: auto;
            
            /* MÁRGENES */
            margin: 10px 15px; /* Separación entre las dos imágenes */
            
            /* ESTILOS VISUALES */
            border: 1px solid #ddd;
            border-radius: 4px;
            box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
        }

        .centrar-permisos {
            text-align: center; /* ESTO CENTRA las imágenes horizontalmente */
            margin: 15px 0;    /* Espacio arriba y abajo */
        }

        .video-container {
            text-align: center; /* Centra el elemento de video */
            margin: 20px 0;
        }

        /* Estilo para controlar el tamaño del video */
        .video-tutorial {
            max-width: 100%; /* No se exceda del ancho del contenedor */
            width: 350px; /* Tamaño fijo, ideal para tutoriales de móvil. Ajusta si es necesario. */
            height: auto;
            border: 1px solid #ccc;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        .download-buttons {
            text-align: center;
            padding: 30px 0;
            background-color: #e8f5e9;
            border-radius: 8px;
            margin-top: 40px;
        }
        .download-buttons a {
            display: inline-block;
            background-color: #ff9800; /* Color de acento: Naranja */
            color: white;
            padding: 12px 25px;
            margin: 0 10px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .download-buttons a:hover {
            background-color: #fb8c00;
        }
        /* Estilos para la tabla de problemas */
        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 15px;
        }
        th, td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
        }
        th {
            background-color: #a5d6a7;
            color: #2e7d32;
        }
        tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .footer {
            text-align: center;
            padding: 20px 0;
            margin-top: 30px;
            border-top: 1px solid #ccc;
            color: #777;
        }
        /* ---------------------------------------------------------- */
        /* FORMULARIO DE DESCARGA – DISEÑO NUEVO                     */
        /* ---------------------------------------------------------- */

        .form-container {
            max-width: 480px;
            margin: 80px auto;
            background: #ffffff;
            padding: 35px 40px;
            border-radius: 18px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.12);
            animation: fadeIn 0.4s ease-in-out;
        }

        /* Título elegante */
        .form-container h2 {
            color: #2f8f43;
            font-size: 28px;
            margin-bottom: 25px;
            font-weight: 700;
            text-align: center;
            letter-spacing: 0.5px;
            position: relative;
        }

        .form-container h2::after {
            content: "";
            width: 60%;
            height: 3px;
            background: #4CAF50;
            display: block;
            margin: 10px auto 0 auto;
            border-radius: 10px;
        }

        /* Inputs modernos */
        .form-container input {
            width: 100%;
            padding: 14px;
            margin: 12px 0;
            border: 2px solid #d8e3e8;
            background: #fbfbfb;
            border-radius: 10px;
            font-size: 16px;
            transition: 0.25s;
        }

        .form-container input:focus {
            border-color: #4CAF50;
            background: #ffffff;
            box-shadow: 0 0 6px rgba(76, 175, 80, 0.3);
        }

        /* Botón elegante */
        .btn-form {
            width: 100%;
            padding: 15px;
            font-size: 18px;
            background: linear-gradient(135deg, #4CAF50, #43a047);
            border: none;
            border-radius: 12px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: 0.25s;
        }

        .btn-form:hover {
            transform: translateY(-2px) scale(1.02);
            background: linear-gradient(135deg, #43a047, #388e3c);
            box-shadow: 0 7px 20px rgba(0,0,0,0.15);
        }

        /* Animación */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }