/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1rem;
    text-align: center;
}

header h1 {
    font-size: 2rem;
}

nav {
    background-color: #333;
    text-align: center;
    padding: 0.5rem 0;
    position: sticky;
    top: 0px;
    z-index: 1000;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* Banner */
.banner {
    background: #555;
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.banner h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.banner p {
    font-size: 1.2rem;
}

/* Galería de Arte */
.galeria {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.galeria h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.productos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.producto {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    max-width: 300px;
    text-align: center;
    flex: 1 1 300px;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.producto:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.producto div{
    height: 92%;
    width: 100%;
}

.producto img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.producto h3 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.producto p {
    color: #666;
    margin-bottom: 0.5rem;
}

/* Sección Artistas */
.artistas, .testimonios, .contacto {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem;
    text-align: center;
}

.artistas h2, .testimonios h2, .contacto h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonios p {
    font-style: italic;
    color: #555;
    margin-top: 0.5rem;
}

footer{
    background-color: #333;
    color: #fff;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .logo h1 {
        font-size: 1.8rem;
    }

    .banner h2 {
        font-size: 2rem;
    }

    .productos {
        flex-direction: column;
        align-items: center;
    }

    .producto {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    nav a {
        margin: 0 0.5rem;
        font-size: 0.9rem;
    }

    .banner h2 {
        font-size: 1.5rem;
    }

    .banner p {
        font-size: 1rem;
    }

    .galeria h2, .artistas h2, .testimonios h2, .contacto h2 {
        font-size: 1.5rem;
    }

    .producto h3 {
        font-size: 1.2rem;
    }
}
