/* productos.css */

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f5f5;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
html {
    scroll-behavior: smooth;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}
.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    gap: 15px;
}
.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
.navbar a {
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    transition: color 0.3s ease-in-out;
}
.logo {
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
}
.header {
    background: #072750;
    padding: 60px 0;
    color: white;
    text-align: center;
}
.header h1 {
    font-size: 2.5rem;
    font-weight: 600;
}
.productos-grid h3 a{
    text-decoration: none;
    color: #072750;
}
.productos {
    padding: 50px 0;
    text-align: center;
    background: #ffffff;
}
.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
}
.producto-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-align: center;
}
.producto-item:hover {
    transform: translateY(-5px);
}
.producto-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}
.producto-item p {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
}
.producto-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #ffcc00;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}
.footer {
    padding: 50px 0;
    background: #222;
    color: white;
    text-align: center;
}
.footer form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: auto;
}
.footer .campo {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
.footer .btn-2 {
    background: #ffcc00;
    color: #333;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;

}
 .whatsapp-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 50px;
    }    
 .whatsapp-button img {
        width: 100%;
    }