/* RESET SITE */
* {
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* HEADER */
header {
    height: 100px;
    background: #290d19;
    padding: 0 50px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left-section {
    display: flex;
    align-items: center;
}

.nombre-empresa {
    text-transform: uppercase;
    font-size: 35px;
    color: #FFFFFF;
    font-weight: 600;
}

/* .menu {
    display: flex;
    align-items: center;
}

.menu a {
    color: #FFFFFF;
    font-size: 20px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0 10px;
}

.mostrar-menu,
.esconder-menu {
    font-size: 30px;
    cursor: pointer;
    display: none;
    transition: 0.4s;
}

.mostrar-menu {
    order: 1;
}

.menu a:hover,
.mostrar-menu:hover,
.esconder-menu:hover {
    color: #D5B198;
}

#check {
    display: none;
} */

/* BANNER */
#banner {
    padding: 0 50px;
    background-image: url(./images/Backgrounds/FondoDetalleProductos.jpeg);
    height: 90vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

#banner::before {
    content: '';
    background: rgba(77, 77, 92, 0.1);
    position: absolute;
    width: 100%;
    height: 90vh;
    left: 0;
}

.contenido-banner {
    position: relative;
    color: #290d19;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* PRODUCTOS */
.producto {
    border: 2px solid #290d19;
    padding: 20px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    margin: 20px 0;
}

.nombre-producto {
    color: #290d19;
}

.imagenes-producto {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.imagen {
    /* border: 2px solid #0000ff; */
    border-radius: 20px;
    max-width: 45%;
}
.imagen-ancha{
    border-radius: 20px;
    /* margin: 5px; */
    height: 50%;
    width: 50%;
}

.descripcion-producto {
    background-color: rgba(213, 177, 152, 0.4);
    padding: 15px;
    border-radius: 5px;
}
.medidas-producto {
    margin-top: 15px;
    padding: 10px;
    background-color: rgba(213, 177, 152, 0.5);
    border-radius: 5px;
    text-align: left;
}

.medidas-producto h2 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}

.medidas-producto table {
    width: 100%;
    border-collapse: collapse;
}

.medidas-producto table, 
.medidas-producto th, 
.medidas-producto td {
    border: 1px solid #290d19;
    padding: 8px;
}

.medidas-producto th {
    background-color: rgba(77, 77, 92, 0.3);
    text-align: left;
}

.medidas-producto td {
    text-align: left;
}


/* FOOTER */
footer {
    background: #290d19;
    color: #cccccc4a;
    text-align: center;
    padding: 10px 0px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    /* HEADER */
    /*  .mostrar-menu,
    .esconder-menu {
        display: block;
    }

   .menu {
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #290d19;
        right: -100%;
        top: 0;
        text-align: center;
        padding: 100px 0px;
        z-index: 100;
        transition: 0.8s;
        flex-direction: column;
    }

    .menu a {
        display: block;
        padding: 20px;
    }

    .esconder-menu {
        position: absolute;
        top: 40px;
        right: 40px;
    }

    #check:checked ~ .menu {
        right: 0;
    } */
}
