/* Estilos Gerais */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #d4cbc4;
    color: #a78d82;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Cabeçalho */
header {
    background-color:#48182f ;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
    font-size: 2em;
    color: #555;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin-left: 25px;
}

header nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: bold;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #a0b86c; /* Cor de destaque (rosa quente) */
}

/* Botões */
.btn {
    display: inline-block;
    background-color: #bfcda3; /* Cor de destaque */
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

.btn:hover {
    background-color: #93a966; /* Tom mais escuro no hover */
}

/* Seção Hero */
.hero {
    background: url('https://via.placeholder.com/1500x500?text=Nova+Colecao+Moda') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero h2 {
    font-size: 3.5em;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

/* Seção Produtos */
.produtos {
    padding: 50px 0;
    background-color: #fff;
    text-align: center;
}

.produtos h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #555;
}

.galeria-produtos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

.produto-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.produto-item:hover {
    transform: translateY(-5px);
}

.produto-item img {
    max-width: 100%;
    height: 300px; /* Altura fixa para as imagens */
    object-fit: cover; /* Garante que a imagem preencha o espaço sem distorcer */
    border-radius: 4px;
    margin-bottom: 15px;
}

.produto-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #666;
}

.produto-item p {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 15px;
}

.produto-item .preco {
    font-size: 1.3em;
    font-weight: bold;
    color: #bfcda3; /* Cor de destaque */
    display: block;
    margin-bottom: 15px;
}

.btn-add-carrinho {
    background-color: #8fae68; /* Verde para adicionar ao carrinho */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-add-carrinho:hover {
    background-color: #45a049;
}

/* Seção Novidades (Newsletter) */
.novidades {
    background-color: #f0f0f0;
    padding: 50px 0;
    text-align: center;
}

.novidades h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #555;
}

.novidades p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #666;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex-grow: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.newsletter-form .btn {
    padding: 12px 25px;
}

/* Rodapé */
footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Para responsividade em telas menores */
}

footer p {
    margin: 0;
    font-size: 0.9em;
}

.redes-sociais a {
    color: #fff;
    font-size: 1.5em;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.redes-sociais a:hover {
    color: #bfcda3; /* Cor de destaque */
}

/* Responsividade Básica */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    header nav ul {
        margin-top: 15px;
        flex-direction: column;
    }

    header nav ul li {
        margin: 5px 0;
    }

    .hero h2 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1.2em;
    }

    .galeria-produtos {
        grid-template-columns: 1fr; /* Uma coluna em telas pequenas */
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input[type="email"] {
        width: 100%;
        margin-bottom: 10px;
    }

    footer .container {
        flex-direction: column;
        gap: 15px;
    }

    .redes-sociais {
        margin-top: 15px;
    }
}