.setor {
    background-color: #003366;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.setor .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Estilo do título e texto introdutório */
.setor h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.setor .intro-text {
    font-size: 1.2rem;
    max-width: 900px;
    margin-bottom: 40px;
    line-height: 1.5;
    text-align: center;
}

/* Layout da seção */
.setor-item {
    display: flex;
    flex-direction: column; /* Mantém tudo empilhado no mobile */
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    width: 100%;
    text-align: left;
}

.setor-item .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

/* Imagem */
.setor-item img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Título do subtítulo */
.setor-item h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 10px;
}

/* Texto */
.setor-item p {
    font-size: 1rem;
    max-width: 800px;
    line-height: 1.6;
	margin-bottom: 15px;
	text-align: justify;
}

/* Responsividade */
@media (min-width: 768px) {
    .setor-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        gap: 30px;
    }

    .setor-item img {
        width: 40%;
        max-width: 300px;
    }

    .setor-item .content {
        width: 70%;
        display: flex;
        flex-direction: column;
    }

    .setor-item p {
        width: 100%;
    }
}
