* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
    color: inherit;
}
ul,ol,li{
    list-style: none;
}
:root{
    --primary-color: #548f99;
    --secundary-color: #ebf8fd;
    --default-shadow: 0 4px 4px #0004;
    --default-padding: 0 80px;
}

html {
    scroll-behavior: smooth;
}

body{
    font-family: "Poppins", sans-serif;
    background-color: var(--secundary-color);
}

header{
    height: 60px;
    width: 100%;
    position: fixed;
    top: 60px;
    padding: var(--default-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff5;
    z-index: 999;
}

header img {
    width: 70px;
}

header menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

header li{
    padding: 4px 8px;
    transition: .5s;
}
header li:hover{
    background-color: var(--secundary-color);
    box-shadow: 0 4px 8px #0005;
}

header button {
    height: 40px;
    width: 120px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 8px #0005;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background-color: var(--secundary-color);
    color: var(--primary-color);
    font-weight: 600;
    font-family: inherit;
}

header button img {
    width: 20%;
}

.hero{
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 64px;
    margin-top: 300px;
}
.hero h2 {
    font-size: 4rem;
    width: 568px;
    font-weight: 500;
    position: relative;
    bottom: 80px;
    font-style: italic;
}
.hero span{
    color: var(--primary-color)
}


/* .home {
    background-color: aquamarine;
    background-image: url();
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
    display: grid;
    grid-template-rows: 70% 30%;
} */

.container-produtos{
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* flex-wrap: wrap; */
    /* grid-auto-flow: c; */
    justify-content: space-between;
    align-items: center;
    height: 760px;
    gap: 16px;
}

.card-produto{
    
    width:500px;
    height:500px;
    position: relative;
    opacity: 1;
    display: grid;
    border: 3px solid var(--primary-color);
    border-radius: 12px;
    
}

.card-produto:hover{
    opacity: .5;
    transition: .5s;
    cursor: pointer;
}

.produto {
    position: relative;
    display:flex;
    flex-direction: column;
    align-items: center;
    border-radius: 12px;
    
}

.produto img {

    width: 300px;
    height:300px;
    object-fit: contain;
    /* margin-top: 250px;
    width: 70%;
    height: 70%;
    object-fit: contain; */
}

.card-produto .nome-produto{
    font-size: 1.2rem;
    margin-top: 70px;
    color:#025664
}

.card-produto .preco-produto {
    margin-top: 10px;
    color: #025664;
}

.card-produto .avaliacao-produto {
    color: var(--primary-color);
}


.servicos {
    margin-top: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    
}


.opcoes-servicos {
    display: flex;
    justify-content: space-between;


}

.servico-card {
    width: 400px;
    height: 500px;
    border: 4px solid var(--primary-color);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 40px;
    
}

.servico-card img {
    width: 200px;
    height: auto;
    color: var(--primary-color);
    filter: drop-shadow(1px 1px 4px #777)
    var(--primary-color);
}

.servico-card h4 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 400;
    text-shadow: 2px 2px 4px #777;
}

.servico-card p {
    text-align: center;
    font-size: 1.2rem;

}
