.planejamentos {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  gap: 24px;
}

.menu-lateral {
  display: flex;
  flex-direction: column;
  border-right: 2px solid #e2e5ea;
  padding-right: 30px;
  padding-top: 40px;
}

.select {
  text-decoration: none;
  color: #001341;
  padding: 0px 10px 0px 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: auto;
  height: 80px;
  background-color: #ffffff;
  border-style: solid;
  border-color: #e2e5ea;
}

.select div {
  display: flex;
  gap: 15px;
}

.select p {
  margin: 10px 10px 10px 0px;
  font-size: 1.5em;
  font-weight: 700;
}

.select img {
  filter: invert(6%) sepia(51%) saturate(100%) hue-rotate(213deg) brightness(0%)
    contrast(108%);
}

.select.active {
  background-color: #001341;
  color: white;
}

.select.active img {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(104deg)
    brightness(103%) contrast(102%);
}

.select.active .setinha {
  filter: none;
  rotate: -90deg;
}

.documentos {
  flex: 1;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-right: 30px;
}

#title-documents {
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 4rem);
  width: 100%;
  color: #01204c;
  margin-bottom: 30px;
}

.planejamento-card {
  width: 100%;
  margin-bottom: 15px;
  background: #fff;
  padding: 24px 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.planejamento-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.documents-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e8f0fb;
  border-radius: 5px;
  width: 80px;
  height: 80px;
}

.documents-icon img {
  width: 50px;
  height: 50px;
}

/* .planejamento-card:hover{
    transform: translateY(-2px);
} */

.planejamento-info h2 {
  margin: 0;
  padding: 10px;
  font-size: clamp(1.1rem, 4vw, 1.5rem);
}

.planejamento-info p {
  padding-left: 10px;
  margin-top: 8px;
  color: #666;
}

.btn-documento {
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  color: white;
  background: #0066cc;
  display: inline-block;
}

@media (max-width: 1024px) {
  .planejamentos {
    padding: 0 20px;
    gap: 20px;
  }

  .menu-lateral {
    min-width: 250px;
  }

  #title-documents {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .planejamentos {
    flex-direction: column;
    margin: 0;
    padding: 0 15px;
  }

  .menu-lateral {
    width: 100%;
    border-right: none;
    border-bottom: 2px solid #e2e5ea;
    padding-right: 0;
    padding-bottom: 20px;
    padding-top: 20px;
  }

  .documentos {
    width: 100%;
    padding-right: 0;
  }
}

@media (max-width: 600px) {
  .planejamento-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 16px;
  }

  .planejamento-card > div:last-child {
    width: 100%;
  }

  .planejamento-left {
    width: 100%;
    align-items: flex-start;
  }

  .btn-documento {
    width: 100%;
    text-align: center;
    display: block;
  }
}

@media (max-width: 600px) {
  .select {
    height: 60px;
  }

  .select p {
    font-size: 1rem;
  }

  .documents-icon {
    width: 60px;
    height: 60px;
  }

  .documents-icon img {
    width: 35px;
    height: 35px;
  }
}
