* {
margin:0;
padding:0;
font-family: sans-serif;
box-sizing: border-box;
}


body{
    background: #851a14;
}

header{
    display:flex;
    width: 100%;
    height: 80px;
    background: chocolate;
}

header p{
    margin-top: 20px;
    margin-left: 60px;
    text-align: center;
}

.cabecera{
    display: flex;
    justify-content: left;
    align-items: left;
    gap: 450px;
    height: 100%;
}

.logo{
    left: 10px;
    top: 10px; 
    height: 80px;
    width: 80px;
}

.titulos{
    display: block;
    color: #851a14;
    padding-top: 15px;
    padding-left: 20px;
}

nav{
    position: absolute;
    width: 100%;
    padding: 0 0;
    align-items: right;
    background-color: rgb(142, 88, 60);;
}

.menu-horizontal{
    list-style: none;
    display: flex;
    justify-content:space-around;
}

.menu-horizontal li{
    padding: 10px;
    text-decoration: none;
}

.menu-horizontal li a{
    text-decoration: none;
    color: white;
    font-weight: bold;
 }

.menu-horizontal li a:hover{
    color:rgb(19, 15, 205);
}
.menu-vertical{
    border: 1px solid black;
    position: absolute;
    display: none;
    list-style: none;
    width: 150px;
    margin: 0;
    padding: 0;
}

.menu-vertical li{
    padding: 5px;
    background-color: #851a14;
    border: 10px;
    border-color: black;

}

.menu-vertical li a{
    display: block;
    list-style: none;
}

.menu-horizontal li:hover .menu-vertical{
    display:block;
}

.detel{
    margin-left: 5%;
    margin-top: 75px;
    margin-bottom: 5px;
    width:100%;

}

.detel H1{
    font-size: 36px;
    color:white;
    margin-bottom: 20px;

}

span{
    color: orange;
}

.detel p{
    color:antiquewhite;
    line-height: 22 px;
}

.contacto{
    margin-top: 20px;
    list-style: none;
    color: antiquewhite;
}

.images{
    width:40px;
    height: 80px;
    position: absolute;
    top: 330px;
    left: 42%;

}

.images img{
    position: relative;
    top: 0;
    bottom: 0;  
    left: 0;
    transform: translateX(-50%);
    transition: bottom 1s, left 1s;

}

.logo{
    display: flex;
}

.cuadro{
     height: 180px;
     margin-left: 100px;
}