:root {
    --cor-card: #D01F17;
    --cor-fundo: #F2F0EB;
    --cor-header: #0D0D0D;
    --fonte-card: 'Montserrat';
    --fonte-preco: 'Open Sans';
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    list-style: none;
}

html{
    scroll-behavior: smooth;
}

body{
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #e4e4e4;
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--cor-fundo);
}

header{
    width: 100%;
    height: 100px;
    background-color: var(--cor-header);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 100px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo{
    height: 80px;
    width: 300px;
    background-color: black;
    display: flex;
    align-items: center;
}

.logo img{
    height: 80px;
    margin-right: 20px;
}

.logo h1{
    font-size: 20px;
    color: var(--cor-fundo);
    font-family: var(--fonte-card);
}

.menu{
    width: 1000px;
    
}

.menu ul{
    display: flex;
}

.menu ul li a{
    padding: 10px 40px;
    color: var(--cor-fundo);
    text-decoration: none;
    font-family: var(--fonte-preco);
}

.menu ul li a:hover{
    color: var(--cor-card)
}

.linha_home{
    background-image: url("../img/bgsk.png");
    background-size: cover;
    background-color: red;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
}

.container{
    width: 1200px;
    height: 100%;
    padding-top: 50px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.container img{
    width: 250px;
    height: 250px;
    border-radius: 20px;
   
}

.card{
    width: 270px;
    height: 330px;
    background-color: var(--cor-card);
    text-align: center;
    border-radius: 15px;
    padding-top: 15px;
    color: black
}

.card:hover{
    transform: scale(1.03);
}

.card img{
    width: 225px;
    height: 200px;
}

.card h1{
    font-size: 22px;
    font-family: var(--fonte-card);
}
.card h2{
    font-size: 15px;
    font-family: var(--fonte-preco);
    margin-top: 15px;
}

.linha{
    width: 100%;
    height: 100vh;
    color: gray;
    display: flex;
    justify-content: center;
}

footer{
    width: 100%;
    height: 300px;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    color: gray;
}

.coluna_rodape{
    width: 400px;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.coluna_rodape h2{
    font-family: var(--fonte-card);
    color: var(--cor-fundo);
}

.coluna_rodape h3{
    font-family: var(--fonte-preco);
    color: var(--cor-fundo);
}

.coluna_rodape img{
    width: 350px;
    height: 300px;
}

.comprar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 62px;
    height: 45px;
    width: 140px;
    background-color: #4B0000;
    color: white;
    padding: 15px 30px;
    font-size: 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    font-family: var(--fonte-card);
    }

a{
    color: #e4e4e4;
}
