body {
    font-family: 'Merriweather', serif;
    margin: 0;
    padding: 0;
    background-color: #ffe0e0;
    color: #333;
}

header.header-banner {
    background-color: #000000; /* preto elegante */
    color: #ffffff;
    text-align: center;
    padding: 50px 20px;
}

header.header-banner h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 3em;
    margin: 0;
}

header.header-banner p {
    font-size: 1.2em;
    margin-top: 10px;
}

main.produtos {
    padding: 40px 20px;
}

.apresentacao {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.apresentacao h2 {
    color: #0b5c00;
    font-size: 2em;
    margin-bottom: 15px;
}

.apresentacao p {
    font-size: 1.1em;
    line-height: 1.6;
}

.categorias {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.categoria {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.categoria:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.categoria img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.categoria h3 {
    color: #0b5c00;
    margin: 10px 0;
}

.categoria p {
    font-size: 1em;
    color: #555;
}

/* Chamada para ação */
.cta {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 50px 20px;
    border-radius: 15px;
    margin-top: 50px;
}

.cta h2 {
    font-size: 2em;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.btn-whatsapp {
    background-color: #0b5c00; /* verde WhatsApp */
    color: #fff;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.btn-whatsapp:hover {
    background-color: #0b5c00;
    transform: scale(1.05);
}

footer {
    background-color: #162e00;
    color: #fff;
    text-align: center;
    padding: 15px 10px;
    font-size: 0.95em;
}

.Banner {
  display: block; 
}

.Banner img {
display: flex;
margin: 100px;
}

.Banner h2 {
font-family: dancing script, cursive;
 text-align: center;
 font-size: 3em;
 color:#0b5c00;
}

