.detalhe-container {
    max-width: 1150px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.detalhe-container img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
}

.detalhe-container h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

.detalhe-container p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Botão voltar */
.voltar-btn {
    display:inline-block;
    margin-top:20px;
    background:#54ae2b;
    color:#fff;
    padding:10px 20px;
    text-decoration:none;
    font-weight:bold;
    border-radius:4px;
    transition:0.3s;
}
.voltar-btn:hover {
    background:#3a7d1d;
}

/* Banner do topo */
.banner-topo {
    position: relative;
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-topo .overlay {
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.4);
}
.banner-conteudo {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}
.banner-conteudo h1 {
    color: #fff;
    font-size: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    margin: 0;
    line-height: normal;
}

@media (max-width: 992px) {
    .banner-topo {
        height: 250px;
    }
    .banner-conteudo h1 {
        font-size: 28px;
    }
}
@media (max-width: 600px) {
    .banner-topo {
        height: 200px;
    }
    .banner-conteudo h1 {
        font-size: 22px;
        letter-spacing: 1px;
    }
    .detalhe-container {
        margin: 20px 10px;
        padding: 15px;
    }
    .detalhe-container p {
        font-size: 14px;
    }
}


.banner-conteudo {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    margin-top: 80px;

}

.wrapper1 {
  width: calc(100% - 60px);
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0px 30px 0px 30px;
  z-index: 200;
  position: relative;
  align-content: center;
}

.banner-topo {
    position: relative;
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.banner-topo::after {
    content:"";
    position:absolute;
    top:0; left:0;
    width:100%; height:100%;
    background:rgba(0,0,0,0.4);
}
.banner-topo h1 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 76px;
    padding: 15px 10px 0px;
}
