body {
    background-color: rgb(19, 44, 69);
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
    max-width: 100%;
}

/* Destacar nome da loja */
.destaque {
   color: rgb(68, 168, 108);
}

html, body {
    overflow: hidden;
    overflow-y: auto;
}

/* Títulos */
h1, h2, h3 {
    text-align: center;
}
h1 {
    color: rgb(220, 211, 211);
    font-size: 2.5em;
    padding: 10px;
}
h2 {
    color: rgb(220, 211, 211);
    font-size: 1.8em;
    padding: 10px;
}
h3 {
    color: rgb(68, 168, 108);
    font-size: 1.5em;
}

/* Container das imagens */
.img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
    width: 100%;
}

/* Ajustando tamanho das imagens */
.img-container img { 
    width: 100%; /* Agora as imagens ocupam 100% da tela */
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

/* No desktop, as imagens ficam grandes */
@media (min-width: 1024px) {
    .img-container {
        flex-wrap: nowrap;  /* Impede que quebrem para outra linha */
    }
    .img-container img {
        width: 33.33%; /* Cada imagem ocupa 1/3 da tela */
        height: 90vh;  /* Faz com que fiquem quase na tela toda */
    }
}

/* Parágrafo principal */
.p1 {
    color: rgb(220, 211, 211);
    text-align: center;
    font-size: 1.2em;
    max-width: 90%;
    margin: 0 auto;
}

/* Marcas */
.marcas {
    font-size: 1.2em;
    color: rgb(220, 211, 211);
    text-align: center;
}

/* Rodapé */
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}

footer a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 1.2em;
}

footer img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
       
    }
    h2 {
        font-size: 1.5em;
        padding-left: 20px;
        padding-right: 20px;
       
    }
    h3 {
        font-size: 1.2em;
       
    }
    .p1 {
        font-size: 1em;
       
    }
    .marcas {
        font-size: 1em;
    }
}
