/* geral */
html,
body {
  margin: 0;
  font: 16px "lato", sans-serif;
  color: black;
  height: 100%;
}

p {
  margin-bottom: 20px;
}

/* perfil */
.perfil {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  overflow: hidden;
  position: absolute;
  margin: 8px 0 0 0;
}

.perfil img {
  position: relative;
  bottom: 0;
  width: 100%;
}

/* caixas */
.caixa1 {
  height: 100%;
  opacity: 0.8;
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* background-size: cover; */
  background-position: center;
  position: relative;
}
.caixa1 {
  background-image: url(/imgs/sobre.png);
  background-position: cover;
  background-repeat: repeat;
}

/* conteudo */
.conteudo {
  color: black;
  background-color: white;
  text-align: justify;
  padding: 50px 80px;
}

.conteudo-titulo {
  position: absolute;
  top: 45%;
  left: 0;
  width: 100%;
  text-align: center;
}

.conteudo-titulo span.titulo {
  background-color: white;
  padding: 18px;
  font-size: 25px;
  letter-spacing: 5px;
  color: black;
  text-transform: uppercase;
}

.menu_nav {
  position: fixed;
  top: 0;
  z-index: 5;
  width: 100%;
}

/* estilização links */
.nav-item a:hover {
  background-color: black;
  color: white;
  transition: 0.8s;
}

.titulo-p {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.paragrafo-p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1.2rem;
}

.card-text {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 700;
  color: #333;
}

.card {
  border-radius: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: scale(1.03);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15);
}

/* media */
/* // X-Small devices (portrait phones, less than 576px) */
@media (max-width: 362.98px) {
  .rodape {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* // Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
}

/* // Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
}

/* // Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
}

/* // X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
}

/* // XX-Large devices (larger desktops) */
/* // No media query since the xxl breakpoint has no upper bound on its width */
