/* RESET */
body, html {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f0fff0;
  padding: 0;
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex-grow: 1;
}

.cabecalho {
  background: linear-gradient(to right, #b2dfdb, #81c784);
  border-bottom: 2px solid #2c572c;
  color: #103c10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 65px;
  flex-wrap: wrap;
}

.logo-esquerda,
.logo-direita {
  width: 200px;
  max-width: 30vw;
  height: auto;
}

.cabecalho .titulo {
  flex-grow: 1;
  text-align: center;
  padding: 10px 10px;
}

.cabecalho .titulo h2 {
  margin: 4px 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a4d1a;
}

@media (max-width: 768px) {
  .cabecalho {
    flex-direction: column;
    text-align: center;
  }

  .cabecalho .titulo h2 {
    font-size: 1.2rem;
  }

  .logo-esquerda,
  .logo-direita {
    margin: 10px 0;
  }
}

.main-container {
  flex-grow: 1;
  display: flex;
  gap: 1.5rem;
  padding: 1rem;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
  align-items: flex-start;
}

.menu-lateral {
  width: 280px;
  background-color: #f8f9fa;
  border: 2px solid #040404;
  display: flex;
  flex-direction: column;
  padding: 0;
  box-sizing: border-box;
  align-self: flex-start;
}

.menu-lateral a {
  text-decoration: none;
  color: #000;
  display: block;
  width: 100%;
}

.menu-lateral .list-group-item {
  border: none;
  border-radius: 0;
  padding: 12px 20px;
  transition: background 0.3s;
  font-weight: 500;
  position: relative;
}

.menu-lateral .list-group-item:hover {
  background-color: #4cd26b;
}

.menu-lateral .list-group-item.active {
  background-color: #4dd05e;
  color: #fff;
  font-weight: bold;
}

.menu-lateral .list-group-item .arrow {
  float: right;
  font-size: 12px;
  margin-left: 10px;
}

.menu-lateral .list-group {
  flex: 1;
  padding: 0;
  margin: 0;
}

.menu-lateral ul,
.menu-lateral li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  margin-top: 0;
  border-radius: 0;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  min-width: 220px;
  z-index: 1000;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

.conteudo {
  flex: 1;
  padding: 2rem;
  background-color: #fff;
  border-left: 1px solid #ccc;
}

#verticalMenu p {
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  color: #1d4ed8;
  text-transform: uppercase;
  text-align: center;
  border-top: 1px solid #ccc;
  padding-top: 10px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 20px;
}

.carousel .card {
  max-width: 100%;
  margin: auto;
}

.carousel .card img {
  height: 300px;
  object-fit: cover;
}

.footer-site {
  background-color: #eaeaea;
  color: #333;
  font-size: 14px;
}

.footer-top {
  background-color: #e5e5e5;
  padding: 20px 30px;
}

.footer-links h5 {
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-middle {
  background: linear-gradient(to right, #3630cf 40%, #4abe69 60%);
  color: white;
}

.footer-info {
  max-width: 400px;
}

.footer-info a {
  color: #cce6ff;
  text-decoration: none;
}

.footer-bottom {
  background-color: #d6d6d6;
  color: #222;
}

.social-icons a {
  margin: 0 8px;
  color: #555;
  font-size: 20px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #000;
}

.footer-credit {
  font-size: 13px;
  text-align: center;
}

.footer-link {
  text-decoration: none;
  color: inherit;
}

.footer-link:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
}

table img {
  object-fit: cover;
  height: 70px;
  width: 70px;
  border-radius: 50%;
}

.card img {
  margin-top: 5px;
  transition: transform 0.2s ease-in-out;
}

.card img:hover {
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .main-container {
    flex-direction: column;
    padding: 1rem;
  }

  .menu-lateral {
    width: 100%;
    border: none;
  }

  .conteudo {
    padding: 1rem;
  }

  .footer-middle {
    flex-direction: column;
    text-align: center;
  }

  .footer-info,
  .social-icons {
    margin-top: 15px;
  }

  .dropdown-submenu > .dropdown-menu {
    position: relative;
    left: 0;
    top: 0;
    display: none;
    width: 100%;
    padding-left: 0;
    margin-left: 0;
    background-color: #f8f9fa;
    border: none;
  }

  .dropdown-submenu > .dropdown-menu.show {
    display: block;
  }

  .dropdown-submenu > .dropdown-menu .list-group-item {
    padding-left: 24px !important;
  }

  .dropdown-submenu > .dropdown-menu .dropdown-menu .list-group-item {
    padding-left: 32px !important;
  }

  .menu-lateral .list-group-item {
    padding-left: 16px;
  }
}




