@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');

* {
  font-family: 'Poppins', sans-serif ;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

nav {
  font-weight: 400;
}

body {
  background-color: #f8f8ff;
  overflow-x: hidden;
  min-height: 100vh;
}

main {
  background-color: #f8f8ff;
  flex: 1;
  min-height: calc(100vh - 200px);
}

/*Navbar*/
.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-toggle::after {
   content: none;
}

.dropdown-item:hover {
  background-color: #313131;
  color: #fff;
}


.sobrenos-image {
    max-width: 500px;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.container {
  margin-top: 2rem;
  margin-bottom: 3rem;
  background-color: #fff;
  padding: 1.2rem;
  border-radius: 10px;
  font-size: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: justify;
}

.barra-divisao {
  width: 100%; /* Largura da barra */
  height: 3px; /* Espessura da barra */
  background-color: #00b383; /* Cor da barra (preto) */
  margin: 10px 0; /* Margem superior e inferior */
}


.titulo {
  font-size: 1.5rem;
  font-weight: 700;
}

span {
  font-weight: 700;
}

/* Footer */

footer {
    width: 100%;
    background-color: #212529;
    padding: 0.5rem 0;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: auto; /* Isso empurra o footer para baixo */
    flex-shrink: 0;
  }
  
  .footer-link {
    text-decoration: none;
  }
  
  #footer_content {
    display: grid;
    padding: 1.25rem 3rem;
  }
  
  #footer_endereco, #footer_telefone, #footer_email, #footer_copyright {
    text-align: center;
    justify-content: center;
    display: flex;
  }
  
  #footer_endereco a { 
    color: inherit;
    text-decoration: none;
  }
  
  #footer_contacts p {
    margin: 0;
    padding: 0;
    color: #f5f5f5;
    display: flex;
    justify-content: center;
    margin-bottom: 7px;
  }
  
  #footer_social_media {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    text-decoration: none;
  }
  
  #footer_social_media .footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
    color: #f5f5f5;
    border-radius: 50%;
    transition: all 0.4s;
    font-size: 1.25rem;
    transition: opacity 0.5 ease-in-out;
  }
  
  #footer_social_media .footer-link:hover {
    opacity: 0.7;
  }
  
  #instagram {
    background: linear-gradient(#7f37c9, #ff2992, #ff9807);
    text-decoration: none;
  }
  
  #facebook {
    background-color: #0A62F7;
    text-decoration: none;
  }
  
  #linkedin {
    background-color: #0077B5;
    text-decoration: none;
  }
  
  #footer_copyright {
    margin: 0;
    padding: 0;
    margin-top: 10px;
    text-align: center;
  }
  
  #footer_contacts span {
    font-weight: 600;
  }
  
  
/* Responsividade */

 @media (max-width: 768px) {
  .sobrenos-image {
    max-width: 100%;
    height: auto;
  }

  .titulo {
    font-size: 1.3rem;
    text-align: left;
  }

  li a {
    font-size: 0.7rem; /* Reduz o tamanho da fonte */
}
 }

 @media (max-width: 575px) {
  .container {
    padding: 2rem;
    font-size: 1rem;
  }

  li a {
    font-size: 0.6rem; /* Reduz o tamanho da fonte */
}
 }


 @media (max-width: 385px) {
  .titulo {
    font-size: 0.9rem;
  }
  
  .texto {
    font-size: 0.8rem;
  }
 }


@media (min-width: 320px) and (max-width: 448px) {    
    
    .container {
      padding: 0.7rem;
    }
    .texto {
      font-size: 0.7rem;
    }
    
    footer p {
      font-size: 0.8rem; /* Reduz o tamanho da fonte de todos os parágrafos */
  }

  #footer_content {
      grid-template-columns: 1fr; /* Uma coluna */
      padding: 1rem; /* Reduz o padding */
  }
}

