* {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
}
.container{
    width:80%;
    margin:auto;
    overflow: hidden;
}

header {
    background: #0c0c0c;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: rgb(245, 9, 9) 3px solid;
} 
.loggo{
    color: white;
}
.highlight{
    color: rgb(245, 9, 9);
}
#caixinha-catalago{
    float:left ;
}

header h1 {
    font-family:"Roboto", sans-serif;
    font-size: 40px;
    color: rgb(247, 247, 246);
    display: flex;
    margin-right: 50px;
}
header nav{
    float: right;
    margin-top: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content:center;
    gap: 20px;
    padding: 10px;
}

nav ul li {
    display: inline;
}

nav a {
    font-family:"Roboto", sans-serif;
    color:rgb(247, 247, 246);
    font-size: 26px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    padding: 20px;
    padding-left: 50px;
    transition: 0.3s;
}

nav a:hover {
    color:rgb(245,9,9);
    font-size: 26px;
    transform: scale(0.9)
}

nav a:active {
    transform: scale(0.9);
}
.botao-troca-img{
    cursor: pointer;
    width: 20px;
    border-radius: 5px;
    color: rgb(245, 9, 9);
    background-color: #333;

}
.body-plano-fundo {
    background: linear-gradient(90deg, rgba(36,0,0,1) 8%, rgba(176,7,7,1) 100%);
}

.main-card {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px;
}

.catalogo {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}
.btn-add-to-cart {
    font-size: 16px;
    font-weight: bold;
    background-color: #ff4d4d;
    color: white;
    width: 250px;
    height: 50px;
    border: none;
    border-radius: 10px;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Estilo do Footer */
footer {
    width: 100%;
    background: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
}

footer a {
    color: #00c3ff;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}
/* Responsividade */
@media (max-width: 480px) {
    .container{
        overflow: hidden;
    }
    #caixinha-catalago h1 {
        font-size: 28px;
    }

    nav a {
        font-size: 16px;
    }
    .card{
        background: white;
        border: 1px solid #ddd;
        border-radius: 5px;
        padding: 10px;
        text-align: center;
        width: 300px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    .main-card {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
        margin: 20px;
    }

    .card img {
        height: 350px;
        width: 300px;
    }

    .btn-add-to-cart {
        font-size: 14px;
        height: 45px;
    }

    footer {
        font-size: 14px;
    }
}
