
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    padding-top: 50px; 
}

.contenedor {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

header {
    width: 100%;
    height: 50px;
    background-color: black;
    position: fixed; 
    top: 0;
    left: 0;
    color: aliceblue;
    z-index: 1000;
}

header .contenedor {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}

#menu_bar {
    display: none; 
}

header label {
    cursor: pointer;
    font-size: 25px;
    line-height: 50px;
    color: white;
}

.menu {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50px;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    transition: all 0.3s ease;
    transform: translateX(-100%); 
}

.menu a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 15px;
    border-bottom: 1px solid #333;
    text-align: center;
}

.menu a:hover {
    background-color: #036bfd;
}

#menu_bar:checked ~ .menu {
    transform: translateX(0%);
}


@media (min-width: 1200px) {
    header label { display: none; }
    .menu {
        position: static;
        width: auto;
        transform: translateX(0);
        display: flex;
        background: none;
        align-items: center;
    }
    .menu a {
        border: none;
        padding: 0 15px;
        font-size: 0.9rem; 
    }
}


.headerProductos {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    z-index: 1;
}

.bannerCatalogo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlayTexto {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.logoSitio {
    height: 30px; 
    transition: transform 0.3s;
}


.seccion-cotizar {
    max-width: 700px;
    margin: 0 auto 50px auto;
    padding: 0 20px;
}

.formulario-cotizacion {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
}

.formulario-cotizacion h2 {
    color: #2c3e50;
    margin-bottom: 25px;
    border-left: 5px solid #f39c12; 
    padding-left: 15px;
}

.campo {
    margin-bottom: 20px;
    text-align: left;
}

.campo label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #444;
}


.campo input, 
.campo select, 
.campo textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.campo input:focus, 
.campo select:focus, 
.campo textarea:focus {
    outline: none;
    border-color: #036bfd; 
}


.btn-cotizar {
    background-color: #036bfd;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
}

.btn-cotizar:hover {
    background-color: #0256cc;
    transform: scale(1.02);
}


.fa {
    margin: 15px;
    cursor: pointer;
}

hr {
    margin: 20px 0;
    border: 0;
    border-top: 1px solid #ccc;
}

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);
}