@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&family=Montserrat:wght@400;700&display=swap');

        :root {
            --color-primary: #8e44ad; /* Púrpura */
            --color-secondary: #f39c12; /* Naranja */
            --color-text-dark: #2c3e50; /* Azul oscuro */
            --color-text-light: #ecf0f1; /* Gris claro */
            --color-background-light: #ecf0f1;
            --color-background-dark: #34495e; /* Azul oscuro */
            --color-accent: #e74c3c; /* Rojo */
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--color-text-dark);
            background-color: var(--color-background-light);
            overflow-x: hidden;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(44, 62, 80, 0.9);
            color: var(--color-text-light);
            padding: 1rem 2rem;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }
        
        .logo {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--color-secondary);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: color 0.3s ease;
        }

        .logo:hover {
            color: var(--color-text-light);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li a {
            color: var(--color-text-light);
            text-decoration: none;
            padding: 0.5rem 1rem;
            font-weight: 400;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .nav-menu li a:hover {
            color: var(--color-secondary);
        }

        .nav-menu li a::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            width: 0;
            height: 2px;
            background: var(--color-secondary);
            transition: width 0.3s ease, left 0.3s ease;
        }
        
        .nav-menu li a:hover::after {
            width: 100%;
            left: 0;
        }
        
        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
                        z-index: 1000;

        }
        
        .burger-menu span {
            height: 3px;
            width: 25px;
            background: var(--color-text-light);
            margin-bottom: 5px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        
        main {
            padding-top: 80px;
            padding-bottom: 80px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        h1, h2, h3 {
            font-family: 'Montserrat', sans-serif;
            color: var(--color-primary);
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        h1 {
            font-size: 2.5rem;
        }

        h2 {
            font-size: 2rem;
            margin-top: 2rem;
        }
        
        p, ul, li {
            margin-bottom: 1rem;
        }

        ul {
            padding-left: 20px;
        }

        .disclaimer {
            background: var(--color-accent);
            color: var(--color-text-light);
            padding: 1rem;
            text-align: center;
            font-size: 0.9rem;
        }

        footer {
            background: var(--color-text-dark);
            color: var(--color-text-light);
            padding: 2rem;
            text-align: center;
        }

        footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .footer-info, .footer-links {
            flex: 1 1 300px;
            text-align: left;
        }

        .footer-info h4, .footer-links h4 {
            color: var(--color-secondary);
            margin-bottom: 1rem;
        }

        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }

        .footer-links ul li a {
            color: var(--color-text-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links ul li a:hover {
            color: var(--color-primary);
        }

        .copyright {
            width: 100%;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1rem;
            text-align: center;
        }

        @media (max-width: 768px) {
            header {
                padding: 1rem;
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 70%;
                background: rgba(44, 62, 80, 0.95);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.5s ease-in-out;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 1.5rem 0;
            }
            
            .burger-menu {
                display: flex;
            }
        }

