.hero {
    text-align: center;
    background-color: var(--main-background);
    padding: 60px 20px
}

.hero h1 {
    font-size: var(--h1);
    color: var(--main-foreground);
    font-family: var(--heading-font);
    margin-bottom: 15px
}

.hero p {
    font-size: var(--font-base);
    color: var(--main-foreground);
    font-family: var(--body-font)
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-gap: 20px;
    padding: 0 20px;
    justify-items: center
}

.product {
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 100%;
    max-width: 350px;
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.product:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15)
}

.product img {
    display: block;
    margin: 0 auto 20px;
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-quarter)
}

.product h3 {
    font-size: var(--h3);
    color: var(--main-foreground);
    margin-bottom: 15px
}

.product p {
    color: var(--main-foreground);
    margin-bottom: 20px
}

.product .button {
    background-color: var(--button-background);
    color: var(--button-foreground);
    padding: 10px 20px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 5px;
    display: block;
    width: 100%;
    text-align: center;
    margin-top: auto;
    transition: all .3s ease
}

.product .button:hover {
    background-color: var(--button-background);
    color: var(--button-foreground)
}

@media(max-width:768px) {
    .hero h1 {
        font-size: var(--h1-huge-md)
    }

    .products {
        padding: 20px
    }

    .product {
        margin: 0 auto
    }

    .product img {
        max-width: 80%
    }

    .product h3 {
        font-size: var(--h4)
    }
}

/* Definição de Estilos para o Conteúdo Principal */
h2 {
    padding-top: 2remz;
}

#info {
    display: none;
}

.about-us {
    background-color: #f2f2f2;
    padding: 2rem;
}

.about-us h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-us p {
    margin-bottom: 1rem;
}

.map-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 20px;
}

.map {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.map h3 {
    margin-bottom: 10px;
}