
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    background-color: #f8f9fa; 
    color: #333;
    line-height: 1.6;
    padding-top: 50px; 
}

.contenedor {
    width: 95%;
    max-width: 1200px;
    margin: auto;
}


header {
    width: 100%;
    height: 50px;
    background-color: #000;
    position: fixed; 
    top: 0;
    left: 0;
    z-index: 1000;
}

header .contenedor {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    height: 50px;
}

.logoSitio {
    height: 35px; 
    width: auto;
}

#menu_bar { display: none; }

header label {
    cursor: pointer;
    font-size: 25px;
    color: white;
    display: none; 
}

.menu a {
    color: #fff;
    text-decoration: none;
    padding: 0 15px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.menu a:hover {
    color: #007bff;
}


.gridProductos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

.tarjetaProducto {
        background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.tarjetaProducto:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}


.tarjetaProducto img {
   width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tarjetaProducto:hover img {
    transform: scale(1.05);
}


.info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
}

.info h3 {
    color: #1e293b;
    font-size: 1.15rem;
    margin-bottom: 10px;
    border-left: 5px solid #f39c12; 
    padding-left: 12px;
}

.info p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 15px;
    min-height: 40px; 
}


.precio {
    display: block;
    color: #22c55e;
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 20px;
}


.btn-cotizar {
     background-color: #036bfd;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
    font-size: 1rem;
    transition: background 0.3s;
}



.btn-cotizar:hover {
    background-color: #0056b3;
}


@media (max-width: 1199px) {
    header label { display: block; }
    .menu {
        position: absolute;
        width: 100%;
        background: rgba(0,0,0,0.95);
        top: 50px;
        left: 0;
        transform: translateX(-100%);
        transition: 0.3s;
        display: flex;
        flex-direction: column;
    }
    .menu a {
        padding: 15px;
        border-bottom: 1px solid #222;
        text-align: center;
    }
    #menu_bar:checked ~ .menu {
        transform: translateX(0);
    }
}


footer {
    padding: 40px 0;
    text-align: center;
    background: #fff;
}

.redes-sociales i {
    font-size: 25px;
    margin: 0 12px;
    transition: transform 0.3s;
    cursor: pointer;
}


.fa-facebook { color: #3b5998; }
.fa-instagram { color: #e1306c; }
.fa-whatsapp { color: #25d366; }

.redes-sociales i:hover {
    transform: translateY(-5px);
}