
body {
    font-family: 'Verdana', sans-serif;
    background-color: #fdf5e6; 
    text-align: center;
    margin: 0;
    padding: 20px;
}
header h1 {
    color: #d2691e; 
}
.catalogo-container {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 20px; 
}
.tarjeta-producto {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px; 
    width: 250px; 
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
    transition: transform 0.2s; 
}
.tarjeta-producto:hover {
    transform: scale(1.05); 
}
.tarjeta-producto img {
    width: 100%;
    height: 200px; 
    object-fit: contain; 
    
    border-radius: 5px;
    
    background-color: #fdf5e6; 
}
.precio {
    font-size: 24px;
    color: #2e8b57; 
    font-weight: bold;
}
button {
    background-color: #d2691e;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 10px;
}

.menu-categorias {
    margin-bottom: 30px; 
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    gap: 10px;
}
.btn-filtro {
    background-color: white;
    border: 2px solid #d2691e;
    color: #d2691e;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}
.btn-filtro:hover {
    background-color: #d2691e; 
    color: white;
}
.tarjeta-producto {   
    animation: aparecer 0.5s ease;
}

@keyframes aparecer {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.btn-pedir {
    background-color: #25D366; 
    color: white;
    margin-left: 5px; 
}

.btn-pedir:hover {
    background-color: #128C7E; 
}

footer {
    background-color: #d2691e; 
    color: white;
    padding: 20px;
    margin-top: 50px; 
    font-size: 14px;
  
.redes-container {
    display: flex;
    justify-content: center; 
    gap: 25px; 
    margin-bottom: 20px; 
}
.icono-red {
    color: white; 
    font-size: 35px; 
    text-decoration: none; 
    transition: transform 0.3s, color 0.3s; 
}

.icono-red:hover {
    transform: scale(1.2); 
    color: #fdf5e6; 
}
.descripcion {
    font-size: 13px;
    color: #666;
    font-style: italic;
    margin-top: -10px; 
    margin-bottom: 10px;
    min-height: 30px; 
}
.menu-categorias {
    position: sticky; 
    top: 0; 
    background-color: #fdf5e6; 
    padding: 10px 0; 
    z-index: 100; 
    border-bottom: 2px solid #d2691e; 
}
@media (max-width: 600px) {   
    .tarjeta-producto {
        width: 90%; 
        margin: 0 auto; 
    }
        .tarjeta-producto {
        box-sizing: border-box; 
  
        width: calc(50% - 10px); 
        padding: 10px;
        margin: 0;    
    .btn-filtro {
        flex-grow: 1; 
        text-align: center;
        padding: 12px; 
    }
}