/* Estilos específicos para la página de Resistencias Eléctricas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body {
    font-family: 'Poppins', sans-serif;
    background: #eef2f7;
    margin: 0;
    padding: 0;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}
.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    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: 500;
    transition: color 0.3s ease-in-out;
}
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}
.header {
    background: linear-gradient(to right, #072750, #145da0);
    padding: 60px 0;
    color: white;
    text-align: center;
}
.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
}
.productos {
    padding: 50px 0;
    text-align: center;
    background: white;
}
.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    justify-content: center;
}
.producto-item {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
    text-align: center;
}
.producto-item:hover {
    transform: translateY(-7px);
}
.producto-item h3 {
    font-size: 1.6rem;
    color: #072750;
}
.producto-item p {
    font-size: 1.1rem;
    color: #555;
}
.producto-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: #ffcc00;
    color: #072750;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease-in-out;
}
.btn:hover {
    background: #e6b800;
}
.footer {
    padding: 40px 0;
    background: #072750;
    color: white;
    text-align: center;
}
.whatsapp-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 50px;
    }    
 .whatsapp-button img {
        width: 100%;
    }