        * {
            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;                     
        }

         /* HEADER */
        header{
            background: linear-gradient(135deg, #941B80 0%, #0096AE 100%);
            color:#fff;
            padding:0 30px;
            height:70px;
            display:flex;
            justify-content:space-between;
            align-items:center;
            position:relative;
        }
        .contenedor-imagen{
            height: 60px;
            padding-top: 5px;
        }
        .logo{
            height: 50px;
            width: auto;
            border-radius: 5px;

        }        
        .titulo{
            font-size:1.4rem;
            font-weight:bold;
        }
        nav ul{
            list-style:none;
            display:flex;
            gap:25px;
        }
        nav ul li a{
            color:white;
            text-decoration:none;
            font-weight:500;
            transition:0.3s;
        }

        nav ul li a:hover{
            color:cyan;
        }
        /* Botón hamburguesa */
        .menu-toggle{
            display:none;
            flex-direction:column;
            cursor:pointer;
            gap:5px;
        }
        .menu-toggle span{
            width:28px;
            height:3px;
            background:white;
            border-radius:2px;
        }

        /* CONTENIDO PRINCIPAL */
        main {
            padding: 4rem 0;
            min-height: calc(100vh - 200px);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .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;
        }
        .logo-2{
            height: 50px;
            width: auto;
            border-radius: 5px;

        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            
            .menu-toggle{
                display:flex;
            }

            nav{
                position:absolute;
                top:70px;
                left:0;
                width:100%;
                background: linear-gradient(135deg, #941B80 0%, #0096AE 100%);
                max-height:0;
                overflow:hidden;
                transition:max-height .3s ease;
            }

            nav.active{
                max-height:300px;
            }

            nav ul{
                flex-direction:column;
                padding:15px 0;
                gap:0;
            }

            nav ul li{
                text-align:center;
                padding:15px;
                border-top:1px solid rgba(255,255,255,.15);
            }

            .hero h1 {
                font-size: 2rem;
            }
            .footer-content p {
                font-size: .8rem;        
        }
        }