
        * {
            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 {
            background: linear-gradient(135deg, #6B2E6E 0%, #9B4D96 50%, #D96C9C 100%);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        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 {
            background: linear-gradient(135deg, #6B2E6E 0%, #9B4D96 100%);
            color: white;
            padding: 120px 0 60px;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            font-family: 'Playfair Display', serif;
        }
        
        .galeria-section {
            padding: 60px 0;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .galeria-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        
        .galeria-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(107,46,110,0.1);
            transition: all 0.3s ease;
        }
        
        .galeria-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .galeria-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(107,46,110,0.2);
        }
        
        .galeria-item:hover img {
            transform: scale(1.05);
        }
        
        .galeria-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            padding: 20px;
            color: white;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .galeria-item:hover .galeria-info {
            opacity: 1;
        }
        
        .galeria-info h3 {
            font-size: 1rem;
            margin-bottom: 0.25rem;
        }
        
        .galeria-info p {
            font-size: 0.8rem;
        }
        
        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }
        
        .lightbox img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
        }
        
        .lightbox-controls {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 20px;
            color: white;
            font-size: 2rem;
        }
        
        .lightbox-controls span {
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .lightbox-controls span:hover {
            transform: scale(1.2);
        }
        
        footer {
            background: linear-gradient(135deg, #6B2E6E 0%, #9B4D96 100%);
            color: white;
            text-align: center;
            padding: 2rem 0;
        }
        
        @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: 1.8rem;
            }
        }
    