:root {
    /* Cores */
    --headerclr: #e4e4e4;
    --inputclr: #cccccc;
    --white: white;
    --black: black;
    --liclr: #e0e0e0;
    --topclr: #e4e4e4;
    --cinzacont:rgb(129, 129, 129);
    --gray: rgba(204, 204, 204, 0.45);
    /* Linhas */
    --line: 2px solid #cccccc;
    --clearline: 2px solid white
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
}

header h1 {
    font-size: 40px;
}

.searchbar {
    background-color: var(--inputclr);
    gap: 100px;
    width: fit-content;
    padding: 8px;
    border-radius: 10px;
}

header input {
    border: none;
    background-color: var(--inputclr);
    width: 666px;
}

header .icons {
    display: flex;
    gap: 40px;
}

header .top {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: var(--topclr);
    padding: 20px;
}

header ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    justify-content: center;
    border-bottom: var(--line);
    padding-top: 10px;
    padding-bottom: 30px;
}

header li {
    text-align: center;
    margin-right: 15px;
    margin-top: 10px;
    background-color: var(--liclr);
    padding: 10px;
    width: 175px;
    border-radius: 10px;
}

header li:hover {
    background-color: var(--inputclr);
}

header a:hover {
    color: var(--white);
}

header a {
    color: var(--black);
    text-decoration: none;
}

footer {
    padding: 60px;
    background-color: var(--inputclr);
}


.cont {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.cont1, .cont2{
    display: flex;
    gap: 8px;
    margin-top: 15px;
}

footer ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    justify-content: center;
    flex-direction: column;
    padding-top: 10px;
    padding-bottom: 30px;
}

footer li {
    margin-right: 15px;
    padding: 5px;
    width: 175px;
    border-radius: 10px;
}

footer li:hover {
    background-color: var(--inputclr);
}

footer a:hover {
    color: var(--white);
}

footer a {
    color: var(--black);
    text-decoration: none;
}

.cats h2, .sercli h2  {
    border-bottom: var(--clearline);
    padding-bottom: 15px;
}

.foot {
    display: flex;
    justify-content: space-evenly;
}

.catser{
    display: flex;
    gap: 30px;
}

.contact h6 {
    font-size: 14px;
}

.cpry {
    text-align: center;
    border-top: var(--clearline);
    margin-top: 20px;
    padding-top: 15px;
    font-size: 10px;
    color: var(--topclr);
}

@media (min-width:768px) and (max-width:1199px) {
    header {
        width: 100%;
    }

    header h1{
        font-size: 25px;
    }

    .searchbar {
        background-color: var(--inputclr);
        gap: 100px;
        width: 70%;
        border-radius: 10px;
        display: flex;
    }

    header .icons {
        gap: 30px;
    }

    header a {
        text-align: center;
        display: flex;
        justify-content: center;
        align-self: center;
    }
}

@media (max-width:768px) {
    header {
        width: 100%;
    }
    
    header h1{
        font-size: 25px;
    }
    
    .searchbar {
        background-color: var(--inputclr);
        padding: 8px;
        border-radius: 10px;
        width: 70%;
        display: flex;
    }
    
    header input {
        border: none;
        background-color: var(--inputclr);
        width: 100%;
    }
    
    header .icons {
        gap: 25px;
    }
    
    header ul {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    footer {
        width: auto;
    }
    
    .foot {
        display: flex;
        flex-wrap: wrap;
        gap: 50px;
    }
 
}