@import url('https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz');
@import url('https://fonts.googleapis.com/css?family=Open+Sans');

*{
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin:0;
    background-color: orangered;
}

.titleInfo{
    color:white;
    text-align: center;
    padding: 1%;
}

.PanelNuestrosProductos {
    padding-top: 2%;
    padding-bottom: 2%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px; /* Espacio entre los productos */
    background-color: maroon;
}

.entradaProducto {
    background-color: #f3a949; /* Color de fondo claro */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra suave */
    width: 250px; /* Ancho de cada producto */
    padding: 20px;
    border-radius: 12px; /* Bordes redondeados */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transición para hover */
    font-family: Arial, sans-serif; /* Tipografía más profesional */
}

.entradaProducto:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5); /* Sombra más pronunciada */
    background-color: #f7e7d3; /* Color de fondo claro */
}



.imageProd img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    display: inline-block;
}





.textoProducto h2 {
    color: #333; /* Color de texto más oscuro */
    font-size: 1.5em; /* Tamaño de fuente más grande */
    margin-bottom: 10px;
    font-weight: bold;
}

.textoProducto p {
    color: #666; /* Color de texto secundario */
    font-size: 1em;
    line-height: 1.5;
}

