body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

.vitrine {
    display: flex;
    justify-content: space-around;
    padding: 50px;
    flex-wrap: wrap;
}

.produto {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.btn-comprar {
    background-color: #25d366;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

/* Ajuste das fotos dos produtos */
.produto img {
    width: 250px;
    /* Largura da foto */
    height: 350px;
    /* Altura da foto */
    object-fit: cover;
    /* Faz a foto preencher o espaço sem achatar */
    border-radius: 8px;
}

.preco {
    font-size: 20px;
    color: #e91e63;
    /* Um tom de rosa/vinho para o preço */
    font-weight: bold;
}

.btn-comprar {
    display: inline-block;
    text-decoration: none;
    background-color: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
    transition: 0.3s;
}

.btn-comprar:hover {
    background-color: #128c7e;
    /* Muda de cor quando passa o mouse */
}

/* Ajuste das fotos dos produtos */
.produto img {
    width: 250px;
    /* Largura da foto */
    height: 350px;
    /* Altura da foto */
    object-fit: cover;
    /* Faz a foto preencher o espaço sem achatar */
    border-radius: 8px;
}

.preco {
    font-size: 20px;
    color: #e91e63;
    /* Um tom de rosa/vinho para o preço */
    font-weight: bold;
}

.btn-comprar {
    display: inline-block;
    text-decoration: none;
    background-color: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
    transition: 0.3s;
}

.btn-comprar:hover {
    background-color: #128c7e;
    /* Muda de cor quando passa o mouse */
}

/* Estilo do Cabeçalho */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    /* Faz o topo ficar parado enquanto rola a página */
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h1 {
    margin: 0;
    color: #9f0583ea;
    /* Cor rosa destaque */
    font-size: 28px;
}

.logo span {
    font-size: 12px;
    color: #666;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: 0.3s;
}

nav a:hover {
    color: #9f0583ea;
}

/* Estilo do Rodapé */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 40px 0 20px 0;
    margin-top: 50px;
}

.footer-info p {
    margin: 5px 0;
}

.direitos {
    margin-top: 20px;
    font-size: 12px;
    border-top: 1px solid #444;
    padding-top: 10px;
}

/* Estilo do Banner */
.banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(fundorocho.png);
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.banner-conteudo h2 {
    font-size: 48px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.banner-conteudo p {
    font-size: 20px;
    margin-bottom: 20px;
}

.btn-banner {
    background-color: #e91e63;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-banner:hover {
    background-color: #c2185b;
    transform: scale(1.05);
}

/* --- RESPONSIVIDADE (PARA CELULAR) --- */
@media (max-width: 768px) {

    /* Faz os itens do topo ficarem um embaixo do outro */
    .header-container {
        flex-direction: column;
        gap: 10px;
    }

    /* Ajusta o tamanho do texto do banner para não cortar */
    .banner-conteudo h2 {
        font-size: 28px;
    }

    .banner-conteudo p {
        font-size: 16px;
    }

    /* O MAIS IMPORTANTE: Faz os produtos ficarem em uma coluna só no celular */
    .vitrine {
        padding: 20px;
        justify-content: center;
    }

    .produto {
        width: 100%;
        /* Ocupa a largura total da tela do celular */
        max-width: 300px;
    }
}