* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    background-color: #fff;
    color: #000;
}

.conteudo-principal {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
    color: #333;
}

.botao-voltar {
    margin-top: 120px;
    margin-bottom: 20px;
    margin-left: 90px; 
}

.botao-voltar a {
    color: black;
    font-size: 24px;
    text-decoration: none;
}

.tituloabelha{
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: -50px;
}

.texto-imagem {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.texto-imagem .texto {
    flex: 1.5; 
    min-width: 250px;
}

.texto-imagem .imagem {
    flex: 1; 
    min-width: 300px;  
}

.texto-imagem .imagem img {
    width: 100%;
    border-radius: 8px;
    height: auto;
}

.fonte-imagem {
    font-size: 12px;
    color: #777;
    text-align: left;
}

.conteudo p {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 20px;
}
.caracteristicas {
    margin-top: 40px;
}

.caracteristicas-conteudo {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap; 
}

.imagem-caracteristicas {
    flex: 1;
    min-width: 250px;
}

.imagem-caracteristicas img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.texto-caracteristicas {
    flex: 2;
    min-width: 300px;
}

.texto-caracteristicas h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.texto-caracteristicas ul {
    list-style: disc inside;
}

.texto-caracteristicas ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.fonte-texto {
    font-size: 12px;
    color: #777;
    text-align: left; 
}
.carrossel {
    margin-top: 40px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 20px;
}

.imagens-carrossel {
    display: flex;
    gap: 20px;
}

.carrosselh2 {
    margin-top: 50px;
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}
.imagem-carrossel {
    position: relative;
    min-width: 250px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.imagem-carrossel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faixa-nome {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: rgba(255, 215, 0, 0.7);  
    color: #000;
    font-weight: bold;
    padding: 8px 5px;
    font-size: 16px;
    text-align: center;
    box-sizing: border-box;
}

.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #f7be00;
    color: white;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

/* -------- RESPONSIVIDADE -------- */
@media (max-width: 1024px) {
    .conteudo-principal {
        padding: 0 20px;
    }

    .botao-voltar {
        margin-left: 60px;
    }

    .texto-imagem {
        flex-direction: column;
    }

    .caracteristicas-conteudo {
        flex-direction: column;
    }

    .texto-caracteristicas, 
    .imagem-caracteristicas {
        min-width: 100%;
    }

    .imagem-carrossel {
        min-width: 220px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .tituloabelha {
        font-size: 28px;
        margin-top: -40px;
        text-align: center;
    }

    .botao-voltar {
        margin-left: 30px;
    }

    .carrosselh2 {
        font-size: 22px;
    }

    .faixa-nome {
        font-size: 14px;
        padding: 6px 5px;
    }

    .imagem-carrossel {
        min-width: 200px;
        height: 160px;
    }

    .texto-caracteristicas h2 {
        font-size: 22px;
    }

    .texto-caracteristicas ul li, 
    .conteudo p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .tituloabelha {
        font-size: 24px;
        margin-top: -30px;
    }

    .botao-voltar {
        margin-left: 20px;
        margin-top: 20px;
    }

    .carrosselh2 {
        font-size: 20px;
    }

    .imagem-carrossel {
        min-width: 170px;
        height: 140px;
    }

    .faixa-nome {
        font-size: 12px;
        padding: 5px 4px;
    }

    .scroll-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
