body {
    background: red;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}

body{
    background:#fafafa;
    color:#333;
}

header{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 10%;
    background:#8b0000;
    color:white;
}

.logo{
    font-size:25px;
    font-weight:bold;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:20px;
}


.banner{
    height:400px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    background:
    linear-gradient(
    rgba(0,0,0,.5),
    rgba(0,0,0,.5)
    ),
    url("/images/abacate.png");
    background-size:cover;
    color:white;
}


.banner h1{
    font-size:45px;
}

.banner p{
    margin:20px;
    font-size:20px;
}

button{

    padding:12px 25px;
    border:none;
    background:#d35400;
    color:white;
    border-radius:5px;
    cursor:pointer;
}


section{
    padding:50px 10%;
    text-align:center;
}


h2{
    margin-bottom:30px;
    font-size:32px;
}

.menu{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.lista-produtos{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
    gap:20px;
}

.produto{
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 3px 10px rgba(0,0,0,.12);
    transition:.2s;
}

.produto video{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:10px;
    margin-bottom:15px;
}

.produto:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.produto h3{
    margin:0 0 10px;
    color:#333;
}

.produto p{
    color:#666;
    line-height:1.5;
    margin-bottom:18px;
}

.produto span{
    display:block;
    font-size:22px;
    font-weight:bold;
    color:#0a8f3d;
}

.categoria{
    margin:50px auto;
}

.categoria-header{
    margin-top: 30px;    
    background:#fff;
    border-radius:18px;
    padding:25px 35px;
    margin-bottom:30px;

    display:flex;
    align-items:center;
    gap:20px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);
    border-left:6px solid #4CAF50;
}

.categoria-header .icone{
    font-size:50px;
}

.categoria-header h2{
    margin:0;
    font-size:2rem;
    color:#222;
}

.categoria-header p{
    margin-top:8px;
    color:#777;
    font-size:1rem;
}

#sobre{
    background:#eee;
}


#contato{
    background:#fff3e0;
}

footer{
    background:#222;
    color:white;
    text-align:center;
    padding:20px;
}