/* Estilos gerais */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

.conteudo-equipamentos {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.banner {    
    width: 100%;
    object-fit: cover;
    height: 500px;
    border-radius: 8px;
}

/* Título principal */
h1 {
    font-size: 28px;
    font-weight: bold;
    color: #222;
    text-align: center;
    margin-top: 20px;
}

/* Parágrafo inicial */
p {
    font-size: 16px;
    line-height: 1.6;
    text-align: justify; /* Texto justificado */
    margin-bottom: 20px;
}

.author {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
}

/* Container para imagem e descrição */
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Imagem do gráfico */
.image {
    width: 40%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
}

/* Descrição do conteúdo */
.description {
    width: 55%;
}

/* Subtítulos */
h2 {
    font-size: 22px;
    color: #222;
    margin-bottom: 10px;
}

/* Lista de vantagens */
ul {
    list-style-type: disc;
    padding-left: 20px;
}

li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.image-grafico img {
    width: 80%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
}

.image-grafico p {
    margin-right: 80px;
}

/* Última seção de texto */
.container + p {
    font-size: 18px;
    font-weight: bold;
    text-align: justify; /* Texto justificado */
    margin-top: 20px;
}

.conteudo-equipamentos .btn-default {
    display: flex;
    padding: 10px 20px;
    width: 240px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    margin: 20px auto;
}

.conteudo-equipamentos .btn-default:hover {
    background-color: #333;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }
    .image, .description {
        width: 100%;
    }
}
