/* Nova seção com uma imagem que ocupa uma faixa menor */
.full-image-section {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F2F2F2;
    padding: 10px 0;
}

/* Imagem de Logos */
.full-image-section img {
    width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
}

.sobre-imagem-fixa {
    background-image: url('../img/inicio.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .sobre-overlay {
    background-color: rgba(22, 34, 47, 0.83); /* fundo escuro similar ao footer */
    padding: 60px 20px;
    width: 100%;
    text-align: center;
    color: #ffffff;
  }
  
  .sobre-conteudo {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .sobre-conteudo h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .sobre-conteudo p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 10px;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .sobre-conteudo h1 {
      font-size: 2rem;
    }
  
    .sobre-conteudo p {
      font-size: 1rem;
    }
  }
  

/* 📱 Tablets e telas médias (até 1024px) */
@media (max-width: 1024px) {
    .full-image-section {
        padding: 8px 0;
    }

    .full-image-section img {
        max-height: 90px;
    }
}

/* 📱 Mobile (até 768px) */
@media (max-width: 768px) {
    .full-image-section {
        padding: 6px 0;
    }

    .full-image-section img {
        max-height: 80px;
    }
}

/* 📱📱 Mobile pequeno (até 480px) */
@media (max-width: 480px) {
    .full-image-section {
        padding: 5px 0;
    }

    .full-image-section img {
        max-height: 60px;
    }
}
