@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

p {
  font-size: 1.2rem;
  line-height: 1.5rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.title {
  color: #173945;
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
}
.title::after {
  content: " ";
  display: block;
  width: 160px;
  height: 4px;
  margin: 0 auto;
  background-color: #173945;
  border-radius: 50%;
}

.btn {
  border: 1px solid #fff;
  color: #fff;
  background-color: transparent;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.btn:hover {
  background-color: #fff;
  color: #1d1d1d;
  border-color: #1d1d1d;
}

.btn2 {
  display: block;
  margin-top: 20px;
  width: fit-content;
  background-color: #fff;
  color: #1d1d1d;
  border-color: #1d1d1d;
}
.btn2:hover {
  background-color: #009432;
  color: #fff;
  border-color: #173945;
}

.realce {
  background-color: #92d5ac;
}

@media screen and (max-width: 768px) {
  .title {
    margin-bottom: 20px;
  }
  .container {
    max-width: 768px;
    padding: 0 12px;
  }
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .title::after {
    height: 2px;
  }
  .container {
    max-width: 576px;
    padding: 0 8px;
  }
  .btn {
    font-size: 1rem;
  }
  p {
    font-size: 1rem;
  }
}
.active-color {
  color: #009432 !important;
}

.efect-right, .efect-left, .efect-bottom {
  visibility: hidden;
}

.tooltip {
  position: absolute;
  z-index: 500;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 0 2px #6eca98, 0 0 0 6px rgba(0, 0, 0, 0.6);
  padding: 0.5rem;
  color: white;
  font-family: "IBM Plex Mono", monospace;
  font-weight: bold;
  font-size: 0.875rem;
  max-width: 300px;
  border-radius: 2px;
  top: 0px;
  left: 0px;
}

#top-menu {
  width: 100%;
  height: 12px;
  background-color: #009432;
  border-bottom: 1px solid #92d5ac;
}

#header {
  width: 100%;
  padding: 24px 8%;
  background-color: #fff;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
}

#logo {
  width: 120px;
}

#nav-menu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#nav-menu > ul {
  display: flex;
  gap: 24px;
}
#nav-menu > ul a {
  font-size: 0.925rem;
  color: #173945;
  font-weight: 400;
  padding: 12px 0;
}
#nav-menu > ul a:hover {
  color: #009432;
  transition: all 0.3s ease;
}

#mobile-btn {
  display: none;
  border: none;
  background-color: transparent;
  font-size: 1.5rem;
  cursor: pointer;
}

#nav-menu-mobile {
  display: none;
  margin-top: 12px;
}
#nav-menu-mobile a {
  color: #1d1d1d;
  font-weight: 500;
  padding: 12px 0;
}
#nav-menu-mobile a:hover {
  color: #009432;
  transition: all 0.3s ease;
}

#mobile-menu.active, #nav-menu-mobile.active {
  display: block;
}

[data-dropdown] {
  position: relative;
}

[data-dropdown] .dropdown {
  display: none;
}

[data-dropdown]:hover .dropdown,
[data-dropdown].active .dropdown {
  display: block;
  animation: show-up 0.3s forwards;
}

@keyframes show-up {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.dropdown {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 30px;
  width: max-content;
  background: #fff;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
  z-index: 200;
  border-radius: 4px;
  border-top: 4px solid #009432;
}
.dropdown li {
  padding: 12px;
  border-bottom: 1px solid #92d5ac;
}

.dropdown::before {
  content: "";
  display: block;
  position: absolute;
  top: -10px;
  width: 0px;
  left: calc(50% - 15px);
  height: 0px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #009432;
}

.dropdown li a:hover {
  color: white;
}

@media screen and (max-width: 768px) {
  #header {
    padding: 16px 8%;
  }
  #mobile-btn {
    display: block;
  }
  #nav-menu ul {
    display: none;
  }
  #nav-menu-mobile li {
    margin-bottom: 8px;
  }
}
#banner {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("./../img/bg.jpg");
  height: 600px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  background-repeat: no-repeat;
  opacity: 0.9;
}

.banner-content {
  max-width: 800px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.banner-content h1 {
  color: #fff;
  font-weight: 500;
  font-size: 2.4rem;
}
.banner-content span {
  color: #92d5ac;
  font-size: 3rem;
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  #banner {
    height: 400px;
  }
  #banner h1 {
    font-size: 1.4rem;
    padding: 0 5%;
  }
  #banner span {
    font-size: 2rem;
  }
}
#works {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1170px;
  margin: 60px auto;
  overflow: hidden;
}

#cities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
#cities .city {
  position: relative;
  z-index: 0;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
  height: 300px;
  cursor: pointer;
}
#cities .city img {
  border-radius: 2px;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 300px;
  border: 4px solid #92d5ac;
}

.city-number {
  position: absolute;
  color: #fff;
  left: 50px;
  top: 50px;
  z-index: 10;
  font-size: 4rem;
  border: 6px solid #fff;
  padding: 20px 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
}

.city-name {
  position: absolute;
  color: #fff;
  right: 16px;
  left: 16px;
  bottom: 16px;
  z-index: 10;
  font-size: 1.3rem;
  background: rgba(0, 0, 0, 0.4);
  padding: 8px 16px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #works {
    padding: 40px auto;
    margin: 20px auto;
  }
  #cities {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  #cities .city {
    height: 200px;
  }
  #cities .city img {
    height: 200px;
  }
  .city-name {
    bottom: 10px;
    font-size: 1.1rem;
  }
  .city-number {
    font-size: 2rem;
    border: 4px solid #fff;
    padding: 10px 20px;
  }
}
#information {
  background-color: #467c28;
  margin-bottom: 60px;
  padding: 60px 0;
}

#information-content {
  display: flex;
  gap: 60px;
}

.inspiration {
  width: 75%;
  color: #fff;
  visibility: hidden;
}
.inspiration h3 {
  font-size: 2.6rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.inspiration p {
  font-weight: 300;
}

.data {
  color: #fff;
  visibility: hidden;
}
.data .data-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.data span {
  text-align: end;
  width: 20%;
  font-size: 3rem;
  font-weight: 700;
}
.data p {
  font-weight: 300;
  width: 72%;
}

@media screen and (max-width: 767px) {
  #information {
    margin: 20px auto;
  }
  #information-content {
    flex-direction: column;
    gap: 20px;
    align-items: start;
  }
  .data-item {
    gap: 0px;
  }
  .data-item span {
    font-size: 2.4rem;
  }
  #data p {
    width: 68%;
  }
  .inspiration h3 {
    font-size: 2rem;
  }
}
#footer {
  background-color: #1d1d1d;
}

#footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  padding: 40px 0;
  gap: 32px;
}
#footer-content #logo2 {
  width: 300px;
}
#footer-content .detail::after {
  content: "";
  display: block;
  height: 120px;
  width: 1px;
  background-color: #fff;
}
#footer-content .links li {
  margin-bottom: 12px;
}
#footer-content .links li a {
  color: #fff;
}
#footer-content .links li a:hover {
  color: #009432;
  transition: all 0.3s ease;
}
#footer-content .info {
  font-weight: 300;
}
#footer-content .contact {
  margin-bottom: 12px;
}
#footer-content .contact p {
  margin-bottom: 8px;
  font-size: 1rem;
}
#footer-content .address p {
  font-size: 1rem;
}
#footer-content .contact i,
#footer-content .address i {
  margin-right: 8px;
}

#social-media {
  width: 100%;
  background: #fff;
}

#social-media-content {
  color: #a4a4a4;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

#social-media-buttons {
  display: flex;
  gap: 12px;
}
#social-media-buttons a {
  color: #a4a4a4;
  font-size: 1.4rem;
}
#social-media-buttons i:hover {
  color: #1d1d1d;
  transition: all 0.3s ease;
  transform: perspective(1.6rem);
}

@media screen and (max-width: 767px) {
  #footer-content {
    flex-direction: column;
    align-items: start;
    gap: 12px;
    margin: 0 16px;
  }
  #footer-content .detail::after {
    display: none;
  }
  #footer-content #logo2 {
    display: none;
  }
  #footer-content .contact p, #footer-content .address p {
    font-size: 0.875rem;
  }
}
.about {
  margin: 60px 0;
}

.about-content {
  display: flex;
  gap: 32px;
}
.about-content .about-text {
  width: 100%;
  color: #555;
}
.about-content .about-text p {
  margin-bottom: 12px;
  line-height: 1.6rem;
}
.about-content .about-text a {
  display: block;
  margin-top: 20px;
  width: fit-content;
  background-color: #fff;
  color: #1d1d1d;
  border-color: #1d1d1d;
}
.about-content .about-text a:hover {
  background-color: #009432;
  color: #fff;
  border-color: #173945;
}
.about-content .about-img {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .about {
    margin: 20px 0;
  }
  .about-content {
    margin: 0 16px;
  }
  .about-text a {
    width: 100% !important;
    text-align: center;
  }
  .about-img {
    display: none;
  }
}
#project {
  margin: 60px 0;
}

#budget {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 60px auto;
}
#budget p {
  margin-bottom: 32px;
}

#budget-content {
  display: flex;
  gap: 32px;
}

#form-info {
  width: 50%;
}

#form-budget {
  width: 50%;
}
#form-budget button {
  display: block;
  margin-top: 20px;
  background-color: #fff;
  width: 100%;
  color: #1d1d1d;
  border-color: #1d1d1d;
}
#form-budget button:hover {
  background-color: #009432;
  color: #fff;
  border-color: #173945;
}

.form-group {
  margin-bottom: 12px;
}
.form-group label {
  display: block;
  margin-bottom: 4px;
  font-size: 1.1rem;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  border-radius: 4px;
  border: 1px solid #a4a4a4;
  width: 100%;
  padding: 4px;
  resize: vertical;
  outline: none;
  color: #a4a4a4;
  font-size: 1rem;
}
.form-group input:focus,
.form-group textarea:focus {
  box-shadow: 1px 1px 1px #6eca98, -1px -1px 1px #6eca98;
}

.form-group1, .form-group2, .form-group3, .form-group4, .form-group5, .form-group6, .form-group7 {
  visibility: hidden;
}

@media screen and (max-width: 768px) {
  #budget {
    margin: 40px auto;
  }
  #budget-content {
    flex-direction: column;
    margin: 0 16px;
    gap: 16px;
  }
  #form-info {
    width: 100%;
  }
  #form-budget {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #budget {
    margin: 20px auto;
  }
}
#partner {
  margin: 60px 0;
}

#partner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 64px;
}
#partner-content .partner-text {
  justify-self: center;
  align-self: center;
  color: #555;
}
#partner-content .partner-text p {
  margin-bottom: 12px;
  line-height: 1.6rem;
}
#partner-content .partner-text a {
  display: block;
  margin-top: 20px;
  width: fit-content;
  background-color: #fff;
  color: #1d1d1d;
  border-color: #1d1d1d;
}
#partner-content .partner-text a:hover {
  background-color: #009432;
  color: #fff;
  border-color: #173945;
}
#partner-content .partner-img {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
#partner-content .partner-img .partner-img-item {
  justify-self: center;
  filter: grayscale(70%);
  cursor: pointer;
  width: 260px;
}

@media screen and (max-width: 767px) {
  #partner {
    margin: 20px 0;
  }
  #partner-content {
    margin: 0 16px;
    flex-direction: column;
  }
  .partner-text a {
    width: 100% !important;
    text-align: center;
  }
  .partner-img {
    display: grid;
    grid-template-columns: 1fr !important;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }
  .partner-img .partner-img-item {
    justify-self: center;
  }
}
#be-partner {
  margin: 60px 0;
}

#be-partner-content {
  display: flex;
  justify-content: center;
  gap: 64px;
}
#be-partner-content #be-partner-img {
  width: 50%;
}
#be-partner-content #form-partner {
  width: 90%;
}
#be-partner-content #form-partner p {
  margin-bottom: 32px;
}

@media screen and (max-width: 767px) {
  #be-partner {
    margin: 20px 0;
  }
  #be-partner-content {
    margin: 0 16px;
    flex-direction: column;
  }
  #be-partner-img {
    display: none;
  }
}
#blog {
  margin: 60px 0;
}

#blog-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#blog-content .search {
  position: relative;
  margin-bottom: 32px;
  width: 60%;
}
#blog-content .search button {
  background-color: #009432;
  font-size: 1.2rem;
  position: absolute;
  top: 0px;
  right: 0px;
  color: #fff;
  cursor: pointer;
  padding: 6px 20px;
  border: 1px solid #a4a4a4;
  border-radius: 0px 4px 4px 0px;
}
#blog-content .search input {
  border: 1px solid #a4a4a4;
  padding: 8px;
  width: 100%;
  outline: none;
  color: #a4a4a4;
  font-size: 1rem;
  border-radius: 4px;
}
#blog-content .search input:focus {
  box-shadow: 1px 1px 1px #6eca98, -1px -1px 1px #6eca98;
}
#blog-content .search input::placeholder {
  color: #a4a4a4;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-item {
  display: flex;
  flex-direction: column;
  padding: 16px;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
  align-self: baseline;
}
.blog-item .blog-img {
  margin-bottom: 8px;
  max-height: 400px;
  overflow-y: hidden;
}
.blog-item .blog-img img {
  width: fit-content;
}
.blog-item h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.blog-item p {
  margin-bottom: 4px;
  font-size: 1rem;
  color: #a4a4a4;
  height: 74px;
  overflow-y: hidden;
}
.blog-item a {
  display: block;
  margin-top: 0px;
  width: fit-content;
  background-color: #fff;
  color: #1d1d1d;
  border-color: #1d1d1d;
  font-size: 0.875rem;
  padding: 4px 8px;
  margin-bottom: 16px;
}
.blog-item a:hover {
  background-color: #009432;
  color: #fff;
  border-color: #173945;
}
.blog-item .blog-autor {
  border-top: 1px solid #92d5ac;
  display: flex;
  align-items: center;
}
.blog-item .blog-autor span {
  display: block;
  padding: 8px;
  font-size: 0.875rem;
  font-weight: 300;
}

@media screen and (max-width: 767px) {
  #blog {
    margin: 40px 0;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .blog-item {
    margin: 0 16px;
  }
  .search {
    width: 60%;
    margin-bottom: 16px;
  }
}
#post {
  margin: 60px auto;
}
#post .post-content {
  margin-bottom: 20px;
}
#post h3 {
  font-size: 3rem;
}
#post .blog-img {
  margin-bottom: 20px;
}
#post p {
  font-size: 1.5rem;
  line-height: 2rem;
  height: fit-content;
  margin-bottom: 8px;
}
#post .blog-autor {
  justify-content: end;
}

@media screen and (max-width: 767px) {
  #post {
    margin: 40px auto;
  }
  #post h3 {
    font-size: 1.5rem;
  }
  #post p {
    font-size: 1rem;
  }
  #post .blog-autor {
    justify-content: start;
  }
  #post a {
    margin-left: 16px;
  }
}
#login {
  margin: 60px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 377px);
}

#login-content {
  display: flex;
  gap: 32px;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
#login-content .login-text {
  border-radius: 8px 0px 0px 8px;
  color: #fff;
  background: #009432;
  padding: 120px 32px;
  width: 50%;
}
#login-content .login-text h3 {
  font-size: 2rem;
}
#login-content .login-text p {
  font-size: 1rem;
}
#login-content form {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#login-content form .form-group {
  position: relative;
}
#login-content form input {
  text-indent: 24px;
}
#login-content form i {
  position: absolute;
  left: 8px;
  bottom: 10px;
  color: #173945;
}
#login-content button {
  font-size: 1rem;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .login-text {
    display: none;
  }
}
#admin {
  margin: 60px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

#admin-content {
  display: flex;
  gap: 32px;
}

#crud-btn {
    
    padding-left: 10px;
    padding-top: 20px;
    width: 300px;
}

#admin-btn {
    
    padding-top: 20px;
    padding-left: 10px;
    width: 280px;
}


#crud-btn a {
    
    width: 250px;
}

#admin-btn a {
    
    width: 250px;
}
    
#admin-content #admin-btn {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
    
}

#admin-content #admin-btn a {
  display: block;
  padding: 8px;
  color: #173945;
  transition: all 0.3s ease-in;
  border-left: 4px solid transparent;
}
#admin-content #admin-btn a:hover {
  background-color: #6eca98;
  border-left: 4px solid #173945;
  border-radius: 4px;
  color: #fff;
}
#admin-content button {
  font-size: 1rem;
  width: 100%;
}
#admin-content form {
  width: 100%;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.activeMenu {
  background-color: #6eca98;
  border-left: 4px solid #173945;
  border-radius: 4px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  #admin {
    margin: 20px auto;
  }
  #admin-content {
    flex-direction: column;
  }
}
#crud {
  margin: 60px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

#crud-content {
  display: flex;
  gap: 32px;
}
#crud-content #crud-btn {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
#crud-content #crud-btn a {
  display: block;
  padding: 8px;
  color: #173945;
  transition: all 0.3s ease-in;
  border-left: 4px solid transparent;
}
#crud-content #crud-btn a:hover {
  background-color: #6eca98;
  border-left: 4px solid #173945;
  border-radius: 4px;
  color: #fff;
}

#crud-table {
  border-collapse: collapse;
  border: 2px solid rgb(140, 140, 140);
  font-size: 0.8rem;
  letter-spacing: 1px;
  min-width: 600px;
  max-width: 700px;
}
#crud-table caption {
  caption-side: top;
  padding: 8px;
  font-weight: bold;
  font-size: 1rem;
}
#crud-table thead {
  background-color: #6eca98;
  color: #173945;
}
#crud-table th,
#crud-table td {
  border: 1px solid rgb(160, 160, 160);
  padding: 12px;
}
#crud-table td:last-of-type {
  text-align: center;
}
#crud-table tbody > tr:nth-of-type(even) {
  background-color: rgb(237, 238, 242);
}
#crud-table .flex {
  display: flex;
  gap: 4px;
  justify-content: space-around;
}
#crud-table .flex button {
  border: none;
  cursor: pointer;
  background-color: transparent;
}

@media screen and (max-width: 768px) {
  #crud-content {
    flex-direction: column;
  }
  #crud-table {
    min-width: 600px;
    max-width: 700px;
  }
    
    .data span{
	text-align: start;
}

.data p{
	width: 80%;
}
}
@media screen and (max-width: 767px) {
  #crud {
    margin: 20px auto;
  }
  #crud-content {
    flex-direction: column;
  }
  #crud-table {
    min-width: 280px;
    max-width: 460px;
  }
}

#crud-btn p {

    background-color: #6eca98;
        border-left: 4px solid $gray;
        border-radius: 4px;
        font-size: 18px;
        padding-left: 10px;
        font-weight: 600;
    color: white;
    margin-right: 40px;
    height: 34px;
    padding-top: 5px;
    

}

* Borda superior e estrutura de navegação */
header {
  background-color: #009432; /* Cor do fundo da borda superior */
  padding: 10px 0;
  border-bottom: 3px solid #fff;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header .logo img {
  width: 150px;
}

header nav ul {
  list-style: none;
  display: flex;
  padding: 0;
}

header nav ul li {
  margin-left: 20px;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

header nav ul li a:hover {
  color: #92d5ac;
}

/* Estilo do conteúdo da página (Perguntas e Respostas) */
.about {
  padding: 40px 0;
  background-color: #f9f9f9;
}

.about .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about .title {
  font-size: 36px;
  margin-bottom: 30px;
  text-align: center;
}

.about .about-content {
  display: flex;
  justify-content: space-between;
}

.about .about-text {
  width: 60%;
}

.about .about-text ul {
  list-style-type: none;
  padding: 0;
}

.about .about-text ul li {
  margin-bottom: 20px;
}

.about .about-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Botões */
.btn {
  display: inline-block;
  color: #fff;
  background-color: #009432;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 20px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #1d1d1d;
}

/* Rodapé */
.footer {
  background-color: #1c1c1c;
  color: #fff;
  padding: 20px 0;
  margin-top: 40px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-logo img {
  width: 150px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-contact p {
  margin: 5px 0;
}

.footer-social a {
  margin-right: 15px;
  color: #fff;
  font-size: 20px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #92d5ac;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  border-top: 1px solid #333;
  padding-top: 10px;
}


*# sourceMappingURL=style.css.map */


/*------------------------------------------------------*/



* Faixa de Título */
#accordion-title {
  background-color: #8BC34A; /* Cor verde da faixa */
  color: white; /* Cor da letra */
  text-align: center;
  font-size: 36px; /* Tamanho da fonte maior */
  font-weight: bold;
  padding: 30px; /* Aumenta o espaço interno */
  margin: 20px auto; /* Centraliza e adiciona espaço externo */
  border-radius: 10px; /* Bordas arredondadas */
  max-width: 800px; /* Limita a largura máxima */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra suave */
}


* Centralização do container */
#accordion-container {
  width: 90%;
  max-width: 600px;
  margin: 40px auto; /* Espaço entre o cabeçalho e os quadros */
  padding: 10px;
  background-color: #ffffff;
}

/* Estilo do quadro do acordeão */
.accordion-item {
  background-color: #E8F5E9; /* Cor do fundo do conteúdo */
  border: 1px solid #8BC34A; /* Borda verde para destacar o quadro */
  border-radius: 5px;
  margin-bottom: 20px; /* Espaço entre os quadros */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden; /* Para manter o arredondamento */
}

/* Estilo do título */
.accordion-header {
  background-color: #8BC34A; /* Cor verde para o cabeçalho */
  color: white;
  padding: 15px;
  font-weight: bold;
  text-align: center;
  font-size: 16px;
  border-bottom: 1px solid #7CB342; /* Linha separadora */
}

/* Estilo do conteúdo */
.accordion-content {
  display: flex;
  justify-content: center; /* Centraliza horizontalmente */
  align-items: center; /* Centraliza verticalmente */
  padding: 20px;
  background-color: #F1F8E9; /* Cor do fundo da resposta */
  color: #333;
  font-size: 14px;
  line-height: 1.6;
  min-height: 80px; /* Garante altura mínima para centralização */
  text-align: center; /* Centraliza o texto */
}

/* Espaço entre o acordeão e o rodapé */
#accordion-container::after {
  content: "";
  display: block;
  height: 40px; /* Espaço em branco abaixo dos quadros */
  background-color: #ffffff;
}

@media (max-width: 768px) {
  #accordion-container {
    width: 95%;
    padding: 5px;
  }

  .accordion-header, .accordion-content {
    padding: 10px;
  }
}

