* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    font-size: 62.5%;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #e6e2dc;
    color: #333;
    font-size: 1.6rem;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    background-color: #303030;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    height: 100px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    z-index: 9999;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.buttonclass {

    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.6rem;
    border-radius: 50px;
    cursor: pointer;
    transition: background-image 0.3s;
}

.buttonclass:hover {
    transform: scale(1.03);
}

.header nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.header nav a:hover {
    opacity: 0.8;
    color: #3498db;
    transition: color 0.3s, opacity 0.3s;
}



h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #3498db;
    text-decoration: none;
}


ul,
li {
    padding-left: 2rem;
    list-style: none;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.logo img {
    margin: 0;
    max-width: 180px;
    width: 100%;
}

.cart img {
    margin: 0;
    max-width: 50px;
    width: 100%;
}

.background-cremecinza {
    padding: 2rem 0;
}

.imgmenu img {
    max-width: 600px;
    width: 100%;
}


.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

main .container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 2rem;
    height: 600px;
    margin-top: 3rem;
    padding: 20px
}

main .container section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-direction: column;

}

main>.container section h1 {
    color: #222;
    text-align: left;
    font-size: 6rem;
    font-weight: 700;
}

main>.container section p {
    color: #444;
    text-align: left;
    font-size: 2rem;
    line-height: 1.4;
}

.produtosdestaque {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 0;
    background-color: #303030;
    flex-wrap: wrap;
    align-items: center;
}

.produtosdestaque img {
    max-width: 450px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.produtosdestaque img:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.produtosselecionados,
.precosimperdiveis {
    text-align: center;
    padding: 2rem 0;
}

.produtosselecionados h2,
.precosimperdiveis h2 {
    font-size: 3rem;
    color: #222;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
    display: inline-block;
    padding-bottom: 7px;
    position: relative;
}

.produtosselecionados h2::after {
    content: "";
    display: block;
    width: 33%;
    height: 4px;
    background-color: #3498db;
    margin: 0 auto;
    margin-top: 7px;
    border-radius: 2px;
}

.precosimperdiveis h2::after {
    content: "";
    display: block;
    width: 33%;
    height: 4px;
    background-color: #3498db;
    margin: 0 auto;
    margin-top: 7px;
    border-radius: 2px;
}

.precosimperdiveis {
    text-align: center;
    padding: 2rem 0;
    margin-top: 30px;
}

.vendas {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.vendas div img:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.vendas p {
    margin-top: 10px;
    font-size: 18px;
    color: #333;
    font-weight: 600;
    gap: 5px;
}

.vendas p:hover {
    color: #3498db;
    transition: color 0.3s;
}

.vendas div>img {
    max-width: 300px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.estrela.cheia {
    color: #3498db;
}

.estrela.vazia {
    color: #ccc;
}

.avaliacao {
    font-size: 24px;
}

.cinzaescuro {
    background-color: #303030;
    padding: 2rem 0;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    height: 700px;
}

.texto-relogio {
    max-width: 500px;
    text-align: left;
}

.cinzaescuro h2 {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.cinzaescuro p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cinzaescuro img {
    max-width: 550px;
    width: 100%;
    transition: transform 0.3s;
}

.cinzaescuro img:hover {
    transform: scale(1.05);
}

.relatos {
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: center;
    display: flex;
    flex-direction: row;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    height: auto;
    padding: 20px;
}

.relato {
    background-color: #fff;
    padding: 1rem;
    border-radius: 8px;
    max-width: 300px;
    flex: 1;
    align-self: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;

}

.relato:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

#especial {
    font-size: 8rem;
    color: #3498db;
    font-weight: 600;
    margin-bottom: -20px;
}

.app img {
    max-width: 150px;
    width: 100%;
    margin: 1rem;
    transition: transform 0.3s;
}

.app img:hover {
    transform: scale(1.1);
}

footer {
    background-color: #303030;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    font-size: 1.4rem;
}

footer .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 4rem;
}

.app {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem 0;
    justify-content: center;

}

.app p {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 500;
    opacity: 0.7;
}

.app h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.app h3:hover {
    color: #3498db;
    transition: color 0.3s;
}

.objetivo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-left: 3rem;
    text-align: center;
}

.objetivo p {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 500;
    opacity: 0.7;
}

.objetivo img {
    max-width: 200px;
    width: 100%;
    align-self: center;
}


.links,
.suporte {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    max-width: 200px;
    width: 100%;
    height: 300px;

}

.links ul,
.suporte ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.links a,
.suporte a {
    color: white;
    opacity: 0.8;
}

.links a:hover,
.suporte a:hover {
    color: #3498db;
    transition: color 0.3s;
}

.links h3,
.suporte h3 {
    color: #3498db;
    font-size: 2rem;

}

.links h3:hover,
.suporte h3:hover {
    transform: scale(1.05);
    color: white;
    transition: transform 0.3s;
    transition: color 0.3s;
}

.direitos {
    margin-top: 20px;
}

.direitos p {
    margin-top: 20px;
    opacity: 0.8;
}



.direitos ::before {
    content: "";
    display: block;
    width: 66%;
    height: 4px;
    background-color: white;
    margin: 0 auto;
    margin-bottom: 15px;
    border-radius: 2px;
}

.menu-icon {
    display: none;
    cursor: pointer;
}

.menu-icon img {
    width: 32px;
    height: 32px;
}

.cart:hover {
    transform: scale(1.05);
    transition: transform 0.3s;
}

@media (max-width: 1100px) {
    main .container {
        gap: 1rem;
        flex-direction: column;
        height: auto;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 960px) {
    main .container {
        flex-direction: column;
        height: auto;
        text-align: center;
        align-items: center;
        margin-top: 100px;
    }

    main .container section,
    .imgmenu {
        width: 100%;
    }

    main>.container section h1 {
        font-size: 3rem;
    }

    main>.container section p {
        font-size: 1.8rem;
    }

    .produtosdestaque img {
        max-width: 300px;
        width: 100%;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .cinzaescuro {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

    .cinzaescuro img {
        max-width: 300px;
        width: 100%;
    }

    footer .container {
        flex-wrap: wrap;
        padding: 10px;
        justify-content: center;
        align-items: center;
    }

    .links,
    .suporte {
        gap: 20px;
        height: 300px;
        align-items: center;
        justify-content: center;
    }
    .links ul,
    .suporte ul {
        max-width: 250px;
        width: 100%;
        justify-content: center;
        align-self: center;
        flex-direction: row;
        margin-top: 0;
        text-align: center;
        
    }

    .links h3,
    .suporte h3 {
        text-align: center;
    }

    .texto-relogio {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .menu-icon {
        display: block;
    }

    nav {
        display: none;
    }

    nav.active {
        display: block;
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        background: #303030;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
        text-align: center;
    }
}

@media (max-width: 720px) {
    main>.container section h1 {
        font-size: 3rem;
    }

    main>.container section p {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    main>.container section h1 {
        font-size: 3rem;
    }

    main>.container section p {
        font-size: 1.6rem;
    }

    .produtosdestaque img {
        max-width: 150px;
        width: 100%;
        transition: transform 0.3s, box-shadow 0.3s;
    }

}