
        /* Estilos generales */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family:Arial, Helvetica, sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Encabezado */
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            width: 180px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 5px;
            background-color: #f0f0f000;
            margin: 0;
        }
        
        .logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        /* Navegación */
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            padding: 8px 15px;
            border-radius: 4px;
            transition: all 0.3s;
        }
        
        nav ul li a:hover {
            color: #ffffff;
            background-color: #000000;
        }
        
        /* Hero Section - Imagen grande principal */
        .hero {
            height: 80vh;
            min-height: 600px;
            background-color: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 40px;
            overflow: hidden;
            position: relative;
        }
        
        .hero img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .hero-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
            max-width: 800px;
            padding: 0 20px;
        }
        
        .hero-text h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .hero-text p {
            font-size: 1.5rem;
            font-weight: 300;
        }
        
        /* Imagen 1080x1350 antes de Galería */
        .pre-gallery-image {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 80px 0;
            padding: 0 20px;
        }
        
        .pre-gallery-container {
            max-width: 1080px;
            width: 100%;
            height: 1350px;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            position: relative;
        }
        
        .pre-gallery-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .pre-gallery-container:hover img {
            transform: scale(1.02);
        }
        
        /* Secciones de contenido */
        section {
            padding: 80px 0;
        }
        
        .section-title {
        
            margin-bottom: 50px;
            font-size: 2.2rem;
            color: #333;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: #ffffff00;
            margin: 15px auto;
            border-radius: 2px;
        }
        
        /* Galería de imágenes - Formato vertical 1080x1350 */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }
        
        .gallery-item {
            height: 375px; /* Mantiene proporción 1080x1350 (4:5) */
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(174, 53, 53, 0.1);
            position: relative;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        
        /* Arte Experimental - Solo imágenes en formato 1080x1350 */
        .experimental-art {
            background-color: #f5f7fa;
        }
        
        .art-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .art-item {
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        
        .art-item:hover {
            transform: translateY(-5px);
        }
        
        .art-image {
            height: 375px; /* Mantiene proporción 1080x1350 (4:5) */
            overflow: hidden;
        }
        
        .art-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .art-item:hover .art-image img {
            transform: scale(1.05);
        }
        
        /* Contacto - Solo información */
        .contact-info {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
          
        }
        
        .contact-details {
            flex: 1;
            min-width: 300px;
            max-width: 500px;
          
        }
        
        .contact-details h3 {
            margin-bottom: 20px;
            color: #000000;
            font-size: 1.5rem;
        }
        
        .contact-details p {
            margin-bottom: 15px;
            display: flex;
            
           
        }
        
        .contact-details a {
            color: #000000;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .contact-details a:hover {
            color: #000000;
            text-decoration: underline;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
         
        }
        
        
        
        
        .social-links a:hover {
            background-color: #99121200;
            transform: translateY(-3px);
        }
        
        /* Pie de página */
        footer {
            background-color: #ffffff;
            color: #000000;
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            width: 180px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 5px;
            background-color: #ffffff;
            margin: 0;
        }
        
        .footer-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .footer-section {
            flex: 1;
            min-width: 200px;
            margin-bottom: 30px;
            padding-right: 20px;
        }
        
        .footer-section h3 {
            margin-bottom: 20px;
            font-size: 1.3rem;
            color: #ffffff;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 12px;
        }
        
        .footer-section ul li a {
            color: #000000;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section ul li a:hover {
            color: #000000;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #000000;
            font-size: 0.9rem;
            color: #bdc3c7;
        }
        
        /* Responsive */
        @media (max-width: 1200px) {
            .pre-gallery-container {
                max-width: 900px;
                height: 1125px; /* Mantiene proporción 4:5 */
            }
        }
        
        @media (max-width: 992px) {
            .pre-gallery-container {
                max-width: 720px;
                height: 900px; /* Mantiene proporción 4:5 */
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
            }
            
            .logo {
                margin-bottom: 15px;
            }
            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 5px 10px;
            }
            
            .hero {
                height: 60vh;
                min-height: 400px;
            }
            
            .pre-gallery-container {
                max-width: 100%;
                height: 500px; /* Más compacto en móviles */
                border-radius: 8px;
            }
            
            .pre-gallery-image {
                margin: 60px 0;
                padding: 0 15px;
            }
            
            .hero-text h1 {
                font-size: 2.2rem;
            }
            
            .hero-text p {
                font-size: 1.2rem;
            }
            
            .gallery {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .art-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }
        
        @media (max-width: 480px) {
            .pre-gallery-container {
                height: 400px;
            }
            
            .pre-gallery-image {
                margin: 40px 0;
            }
        }