@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

ul {
  padding: 0;
}

html,
body {
  max-width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-family: 'Source Sans 3', sans-serif;
}

/* Estilo do Scroll */
body::-webkit-scrollbar {
  width: 12px; /* Largura do scrollbar */
}

body::-webkit-scrollbar-track {
  background: #2a2a2a; /* Cor do track */
}

body::-webkit-scrollbar-thumb {
  background-color: rgba(251, 108, 4, 0.88);
  border-radius: 20px; /* Arredondamento do thumb */
  border: 4px solid rgba(251, 108, 4, 0.88); /* Cria padding ao redor do thumb */
}

/* Estilos Gerais */
.footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #2a2a2a;
  color: #fff;
  padding: 2rem 1.5rem;
  width: 100%;
  min-height: 500px;
  position: relative;
  bottom: 0;
}

.footer-container {
  display: flex;
}

.footer-column {
  width: 100%;
}

.footer-column h3 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fb6c04;
}

.footer-link a {
  text-decoration: none;
  color: #fff;
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info {
  color: #fff;
  font-family: "Source Sans 3", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin: 1rem auto;
}

.info span {
  color: #fb6c04;
  font-size: 28px;
}

#infospan {
  color: #fff;
  font-family: "Source Sans 3", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.list,
.list2 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.list li a:hover, .list2 li a:hover {
  color: #fb6c04;
}

.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem 0;
  width: 100%;
}

.form input,
.form textarea {
  border: none;
  outline: none;
  background: #fff;
  color: rgba(63, 63, 63, 0.65);
  font-family: "Source Sans 3", sans-serif;
  font-size: 15px;
  font-weight: 400;
  padding: 0.5em;
  width: 100%;
}

.form-group button {
  width: 150px;
  height: 43px;
  justify-content: center;
  border: none;
}

#buttons {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 1rem;
}

button:hover {
  background-color: #5c0ccb;
  color: #fff;
}

#formResponse {
  text-align: center;
  padding: 1em;
  color: #28a745;
}

.logo-position {
  display: flex;
  align-items: center;
  position: absolute;
  right: 0px;
  top: 0;
}

.logo-position img {
  height: 55ch;
}

#copyright {
  background: #2a2a2a;
  padding: 1rem 0;
}

#copyright p {
  font-size: 12px;
  text-align: center;
}

@media screen and (max-width:425px){

  .footer{
    margin-top: 20rem;
  }
  
  .footer-link a{
    font-size: 16px !important;
   
  }

  #formulario{
    padding-top: 2em;
  }
}

@media (max-width: 1024px) {
  .logo-position {
    display: none;
  }
  .footer-container {
    justify-content: center;
    flex-direction: column;
  }
  .form-group button {
    width: 100%;
  }
}

/* Tablets */
@media screen and (min-width: 426px) and (max-width: 768px) {

  .footer{
    margin-top: 20rem;
  }
  
  .footer-container {
    flex-direction: column;
  }
  .logo-position {
    display: none;
  }
}

.footer-column h3 {
  font-size: 30px;
}

.footer-link a {
  font-size: 20px;
}

.footer-column-right {
  display: none;
}

#formResponse {
  text-align: center;
  padding: 1em;
  color: #28a745; /* verde para sucesso */
}

#copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  width: 100%;
}

#copyright p {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  font-family: "Be Vietnam Pro", sans-serif;
}

/* Grandes telas */
@media screen and (min-width: 1441px) {
  .footer-column-right {
    display: flex;
    justify-content: flex-end;
    align-items: center; 
    margin-top: 2rem; 
    margin-right: -2rem;  
  }

  #formResponse {
    text-align: center;
    color: #28a745; /* verde para sucesso */
  }

  #copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    width: 100%;
  }

  #copyright p {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    font-family: "Be Vietnam Pro", sans-serif;
  }
}
