:root {
            --amd-cyan: #00ced1;
            --dark-bg: #000000;
            --card-glass: rgba(0, 0, 0, 0.85);
        }

        body {
            background-color: var(--dark-bg) !important;
            font-family: 'Ubuntu', sans-serif !important;
            color: #ffffff;
            margin: 0;
        }

        
        h1, h2, h3, h4, h5, h6, .nav-link, .btn {
            font-family: 'Ubuntu', sans-serif !important;
        }

        /* --- ESTILOS DEL BANNER --- */
        .carousel-item {
            height: 50vh; /* 100vh significa el 100% de la altura de la ventana del navegador */
            min-height: 600px; /* Para que en pantallas muy pequeñas no se colapse */
            background-position: center;
            background-size: cover;
        }

        .card-floating {
            background-color: var(--card-glass);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1.2rem;
            padding: 2.5rem;
            color: white;
        }

        .logo-img {
            max-height: 50px;
            filter: drop-shadow(0 0 8px rgba(0, 206, 209, 0.3));
        }

        /* --- ESTILOS DE LA SECCIÓN DE CARACTERÍSTICAS --- */
        .features-section {
            padding: 80px 0;
        }

        .feature-title {
            font-size: 1.1rem;
            letter-spacing: 0.5px;
        }

        .feature-text {
            color: #b0b0b0;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Botón personalizado */
        .btn-amd {
            border: 1px solid var(--amd-cyan);
            color: white;
            border-radius: 0; /* Bordes rectos */
            padding: 10px 25px;
            font-weight: 500;
            text-transform: none;
            transition: all 0.3s ease;
        }

        .btn-amd:hover {
            background-color: var(--amd-cyan);
            color: black;
            box-shadow: 0 0 20px rgba(0, 206, 209, 0.4);
        }

        /* Ajustes para móviles */
        @media (max-width: 768px) {
            .carousel-item { height: auto; padding: 60px 0; }
            .card-floating { padding: 1.5rem; text-align: center; }
            .logo-img { max-height: 35px; margin-top: 20px; }
        }


        .news-section { padding: 60px 0; }
        
        /* Estilo de las Tarjetas */
        .card-news {
            background-color: #1a1a1a;
            border: none;
            margin: 0 10px; /* Espacio entre tarjetas */
            height: 100%;
            transition: transform 0.3s;
        }
        .card-news:hover { transform: translateY(-5px); }
        .card-news img { border-radius: 4px 4px 0 0; }
        .card-title { font-size: 1rem; font-weight: 600; line-height: 1.4; color: #eee; }
        .card-date { font-size: 0.8rem; color: #888; margin-top: 15px; }
        
        /* Ajustes del Carrusel */
        .slick-prev:before, .slick-next:before { font-size: 25px; color: white; }
        .slick-dots li button:before { color: white; }