        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100dvh; 
                    
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* HEADER */
        header {
            background: linear-gradient(135deg, #941B80 0%, #0096AE 100%);
            color: white;
            box-shadow: 0 4px 20px rgba(148, 27, 128, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;            
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0;
            height: 80px;
        }

        .logo-section img {
            height: 60px;
            width: auto;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .header-message {
            text-align: center;
            font-size: 1.4rem;
            font-weight: 600;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            flex: 1;
        }

        /* MENÚ DE NAVEGACIÓN */
        nav ul {
            display: flex;
            list-style: none;
            gap: 2px;
        }

        nav a {
            display: block;
            padding: 12px 24px;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            text-decoration: none;
            font-weight: 500;
            border-radius: 25px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        nav a:hover {
            background: rgba(255, 255, 255, 0.9);
            color: #941B80;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 150, 174, 0.4);
        }

        /* CONTENIDO PRINCIPAL */
        main {
            padding: 4rem 0;
            min-height: calc(100vh - 200px);
        }

        .hero {
            text-align: center;
            color: #941B80;
            margin-bottom: 3rem;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #941B80, #0096AE);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.2rem;
            color: #555;
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        /* CARDS DE EJEMPLO */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(148, 27, 128, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-bottom: 4px solid #0096AE;
            border-right: 4px solid #0096AE;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(148, 27, 128, 0.2);
        }

        .card h3 {
            color: #941B80;
            margin-bottom: 1rem;
            font-size: 2rem;
            text-decoration: underline;
        }

        /* FOOTER */
        footer {
            background: linear-gradient(135deg, #941B80 0%, #0096AE 100%);
            color: white;
            text-align: center;
            padding: 2rem 0;
            margin-top: 4rem;     
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .footer-content p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
                padding: 1.5rem 0;
            }

            .header-message {
                font-size: 1.2rem;
                order: -1;
            }

            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }

            nav a {
                padding: 10px 20px;
                font-size: 0.95rem;
            }

            .hero h1 {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .header-message {
                font-size: 1rem;
            }

            nav a {
                padding: 8px 16px;
                font-size: 0.9rem;
            }
        }