* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    background-color: #fff;
    color: #000;
}

.botao-voltar {
    margin: 120px 0 20px 90px;
}

.botao-voltar a {
    color: black;
    font-size: 24px;
    text-decoration: none;
}

.conteudo-abelhas {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
}

.tituloabelha {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: -30px;
    text-align: left;
}

.conteudo-abelhas p {
    margin-top: 20px;
    font-size: 16px;
}

.imagem-abelhas {
    margin-top: 20px;
    text-align: center;
}

.imagem-abelhas img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
}

.fonte-imagem {
    font-size: 12px;
    color: #777;
    margin-top: 5px;
}

.carrosselh2 {
    margin-top: 50px;
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.carrossel {
    margin-top: 40px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 20px;
}

.imagens-carrossel {
    display: flex;
    gap: 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;
}

@media (max-width: 768px) {
    .botao-voltar {
        margin: 20px 0 15px 20px;
    }

    .conteudo-abelhas {
        padding: 0 10px;
    }

    .tituloabelha {
        font-size: 26px;
        margin-top: 0;
    }

    .conteudo-abelhas p {
        font-size: 15px;
    }

    .carrosselh2 {
        font-size: 22px;
    }

    .imagem-carrossel {
        min-width: 200px;
        height: 160px;
    }

    .faixa-nome {
        font-size: 14px;
        padding: 6px 4px;
    }
}

@media (max-width: 480px) {
    .botao-voltar {
        margin: 15px 0 10px 15px;
    }

    .tituloabelha {
        font-size: 22px;
    }

    .conteudo-abelhas p {
        font-size: 14px;
    }

    .carrosselh2 {
        font-size: 20px;
    }

    .imagem-carrossel {
        min-width: 170px;
        height: 140px;
    }

    .faixa-nome {
        font-size: 13px;
        padding: 5px 3px;
    }
}
