
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            background: linear-gradient(135deg, #f8f4ff 0%, #fff5f8 100%);
            color: #2c3e50;
        }
        
        /* Header */
        header {
            background: linear-gradient(135deg, #6B2E6E 0%, #9B4D96 50%, #D96C9C 100%);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            font-family: 'Playfair Display', serif;
        }
        
        .logo span {
            color: #D9FFA8;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover,
        .nav-links a.active {
            color: #D9FFA8;
        }
        
        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(107,46,110,0.85), rgba(217,108,156,0.85)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            color: white;
            padding: 150px 0 80px;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 3rem;
            font-family: 'Playfair Display', serif;
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease;
        }
        
        .hero p {
            font-size: 1.2rem;
            animation: fadeInUp 1s ease 0.2s both;
        }
        
        /* Biografía Content */
        .biografia-section {
            padding: 60px 0;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .biografia-content {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(107,46,110,0.1);
        }
        
        /* Layout con imagen a la izquierda (escritorio) */
        .biografia-layout {
            display: flex;
            gap: 3rem;
            align-items: flex-start;
            flex-wrap: wrap;
        }
        
        .biografia-imagen {
            flex: 0 0 300px;
        }
        
        .biografia-imagen img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            border: 5px solid #D96C9C;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .biografia-imagen img:hover {
            transform: scale(1.02);
        }
        
        .biografia-texto {
            flex: 1;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #000;
        }
        
        .biografia-texto h2 {
            color: #6B2E6E;
            margin: 1.5rem 0 1rem;
            font-family: 'Playfair Display', serif;
        }
        
        .biografia-texto h3 {
            color: #9B4D96;
            margin: 1.2rem 0 0.8rem;
        }
        
        .biografia-texto p {
            margin-bottom: 1rem;
        }
        
        .biografia-texto img {
            max-width: 100%;
            border-radius: 10px;
            margin: 1rem 0;
        }
        
        .biografia-texto ul,
        .biografia-texto ol {
            margin: 1rem 0 1rem 2rem;
        }
        
        .biografia-texto blockquote {
            border-left: 4px solid #D96C9C;
            padding-left: 20px;
            margin: 1rem 0;
            font-style: italic;
            color: #666;
        }
        
        .btn-volver {
            display: inline-block;
            margin-top: 2rem;
            padding: 10px 25px;
            background: linear-gradient(135deg, #D96C9C, #9B4D96);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-volver:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(107,46,110,0.3);
        }
        
        footer {
            background: linear-gradient(135deg, #6B2E6E 0%, #9B4D96 100%);
            color: white;
            text-align: center;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive: en móvil la imagen va arriba */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                text-align: center;
                padding: 1rem 0;
                gap: 1rem;
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .biografia-content {
                padding: 20px;
            }
            
            .biografia-layout {
                flex-direction: column;
            }
            
            .biografia-imagen {
                flex: 0 0 auto;
                max-width: 280px;
                margin: 0 auto;
            }
        }
        
        /* Pantallas muy pequeñas */
        @media (max-width: 480px) {
            .biografia-imagen {
                max-width: 100%;
            }
        }
    