body{
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background:#753807;
    color: black;
}

.encabezado img{
    height: 210px;
    width: 100%;
}

.encabezado h1{
    text-align: center;
    color: black;
    margin-top: 10px;
    font-weight: bold;
}

.container-nav{
    width:85%; 
    margin:auto; 
    margin-top: 10px;
}

form {
    display: flex;
    gap: 20px;
}

.container{
    width:85%; 
    margin:auto; 
    margin-top:30px;
}

.top{
    display:flex; 
    justify-content:space-between; 
    margin-bottom:20px;
}

input{
    padding:8px; 
    width:60%;
    border: none;
    border-radius: 8px;
}

.btn-carrito {
    width: 130px; 
    border: none;
    border-radius: 10px;
    background-color: #7b7b7b;
    color: white;
}

.productos{
    display:flex; 
    gap:15px;
}

.producto{
    background:white; 
    padding:15px; 
    width:30%; 
    border-radius: 10px;
}

.producto h4 {
    text-align: center;
    font-weight: bold;
}

.producto p {
    font-size: 16px;
}

.producto img{
    width: 285px;
    height: 200px;
    margin-bottom: 10px;
}

.producto button{
    margin-top:10px; 
    width:120px;
    display: inline-block;
    margin-right: 20px;
}

.btn-agregar{
    padding:8px 12px;
    display: flex;
    width: 5px;
    gap: 5px;
    border: none;
    border-radius: 10px;
    background-color: #7b7b7b;
    color: white;
}

.btn-detalles{
    padding:8px 12px;
    display: flex;
    width: 25px;
    gap: 5px;
    border: none;
    border-radius: 10px;
    background-color: #7b7b7b;
    color: white;
}

.container .card {
    margin-bottom: 25px;
}

article .container {
    display: flex;   
    gap: 24px;       
    flex-wrap: wrap; 
    margin-left: 80px;
}

.card-body h5 {
    text-align: center;
    font-weight: bold;
    color: black;
}

.card-body p {
    font-size: 17px;
    color: black;
}

.contenedor-marcas {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.marcas {
    text-align: center;
    padding: 40px;
    background: #ffc107;
}

.marcas h2 {
    margin-bottom: 30px;
    font-weight: bold;
}

.marca {
    text-align: center;
}

.marca p {
    color: black;
    margin-top: 10px;
    font-size: 20px;
}

.marca img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 50%;
    background: #7b7b7b;
    padding: 15px;
}

.footer-bottom {
    color: white;
    text-align: center;
    background: #222;
    padding: 10px;
}

.footer-contenido {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    flex-wrap: wrap;
}

.footer-seccion {
    max-width: 250px;
    margin-left: -50px;
}

.footer-seccion a {
    display: block;
    color: white;
    text-decoration: none;
    margin: 5px;
}

.footer-seccion a:hover {
    text-decoration: underline;
}