/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

      body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(to bottom, #7a1a7b, #ff60f9);
            min-height: 100vh;
            color: white;
            display: grid;
            grid-template-areas:
                "header header"
                "aside main"
                "footer footer";
            grid-template-columns: 250px 1fr;
            grid-template-rows: auto 1fr auto;
            position: relative;
            overflow-x: hidden;
        }
        
        .foto-perfil {
            border-radius: 50%;
            width: 150px;
            height: 150px;
            object-fit: cover;
            border: 4px solid #7a1a7b;
        }
        
        header {
            grid-area: header;
            background-color: rgba(0, 0, 0, 0.2);
            padding: 20px;
            text-align: center;
            box-shadow: 0 2px 15px rgba(245, 56, 3, 0.4);
            backdrop-filter: blur(5px);
            z-index: 1;
        }
        
        h1 {
            font-size: 2.5em;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            letter-spacing: 1px;
        }
        
        aside {
            grid-area: aside;
            background-color: rgba(purple, 0.1);
            padding: 20px;
            min-height: calc(100vh - 120px);
            backdrop-filter: blur(5px);
            box-shadow: 3px 0 10px rgba(0, 0, 0, 0.2);
        }
        
        .menu {
            display: flex;
            flex-direction: column;
        }
        
        .menu-item {
            background-color: rgba(255, 255, 255, 0.2);
            padding: 15px;
            margin: 10px 0;
            border-radius: 8px;
            transition: all 0.3s ease;
            text-decoration: none;
            color: white;
            font-weight: bold;
            font-size: 1.1em;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        .menu-item:hover {
            background-color: rgba(255, 255, 255, 0.3);
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(245, 56, 3, 0.3);
        }
        
        main {
            grid-area: main;
            padding: 30px;
        }
        
        .content {
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 30px;
            max-width: 800px;
            margin: 0 auto;
            box-shadow: 0 10px 25px rgba(245, 56, 3, 0.2);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease;
        }

        .content:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(245, 56, 3, 0.3);
        }
        
        h2 {
            font-size: 2em;
            margin-bottom: 20px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
            color: #fff;
        }
        
        p {
            font-size: 1.2em;
            line-height: 1.6;
            margin-bottom: 20px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }
        
        footer {
            grid-area: footer;
            background-color: rgba(0, 0, 0, 0.3);
            padding: 20px;
            text-align: center;
            box-shadow: 0 -2px 10px rgba(78, 26, 111, 0.5);
        }
        
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 15px;
        }
        
        .social-icon {
            color: white;
            font-size: 2em;
            transition: all 0.3s ease;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }
        
        .social-icon:hover {
            transform: scale(1.2);
            color: #f5d020;
            text-shadow: 0 0 15px rgba(245, 216, 32, 0.7);
        }
        
        @media (max-width: 768px) {
            body {
                grid-template-areas:
                    "header"
                    "main"
                    "aside"
                    "footer";
                grid-template-columns: 1fr;
            }
            
            body::before {
                top: 10%;
                width: 120px;
                height: 120px;
            }
            
            aside {
                min-height: auto;
                padding: 15px;
                box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
            }
            
            .menu {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 10px;
            }
            
            .menu-item {
                flex: 1 1 150px;
                margin: 5px 0;
            }
        }
    