/* --- ESTILOS GENERALES --- */
body {
    background-image: url('Imagenes/fondo.jpg');
    background-size: cover;
    background-attachment: fixed;
    color: #00ff00;
    text-align: center;
    font-family: monospace;
    margin: 0;
    padding: 20px;
}

h1 { color: #ff00ff; text-shadow: 2px 2px #000; }

/* --- VENTANAS (BOTONES) --- */
.ventana {
    display: inline-block;
    padding: 10px 15px;
    margin: 5px;
    background-color: #333;
    border: 3px outset #ccc;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
.ventana:hover { border: 3px inset #ccc; }

/* --- ESTRUCTURA HOME --- */
.contenedor-cuerpo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}
.caja-texto {
    background-image: url('Imagenes/fondo3.jpg');
    background-size: cover;
    border: 4px ridge #ff00ff;
    padding: 20px;
    width: 300px;
    color: white;
}
.parte-arriba { width: 150px; margin-bottom: -10px; }

/* --- COMISIONES --- */
.contenedor-comisiones { display: flex; justify-content: center; padding: 20px; }
.hoja-precios {
    background-color: #f0f0f0;
    border: 5px solid #ff00ff;
    padding: 20px;
    max-width: 600px;
    border-radius: 10px;
}
.hoja-precios img { width: 100%; display: block; border: 1px solid #333; }

/* --- REDES SOCIALES (LOGOS) --- */
.contenedor-redes { display: flex; justify-content: center; padding: 20px; }
.ventana-redes {
    background-color: #f0f0f0;
    border: 5px solid #ff00ff;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* AQUÍ ESTÁ LA REGLA ESTRICTA PARA LOS LOGOS */
.ventana-redes a img {
    width: 60px !important;
    height: 60px !important;
    border: 3px outset #ccc;
    padding: 5px;
    background-color: white;
    object-fit: contain;
}
.ventana-redes a img:hover { border: 3px inset #ccc; background-color: #ddd; }

/* --- TIENDA --- */
.contenedor-tienda { display: flex; justify-content: center; padding: 20px; }
.caja-tienda {
    background-color: #f0f0f0;
    border: 5px solid #ff00ff;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.caja-tienda img {
    width: 200px !important;
    border: 4px ridge #ff00ff;
    background-color: white;
}