/* General reset */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  scroll-behavior: smooth;
  /* overflow-x: hidden; */
}

/* Footer Styling */
.footer {
  background: rgb(19, 14, 22);
  background: linear-gradient(
    90deg,
    rgba(19, 14, 22, 1) 0%,
    rgba(137, 24, 185, 1) 99%
  );
  color: #ffffff; /* White text */
  padding: 30px 50px;
  font-family: "YourFont", sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 350px; /* Adjust logo size */
  height: auto;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-socials a img {
  width: 2vw; /* Social icons size */
  height: auto;
}

.footer-center {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-center a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1.2rem;
  transition: color 0.3s ease-in-out;
  font-family: "Mulish", serif;
}

.footer-center a:hover {
  color: #4d0d3f;
  font-weight: 700;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-right span {
  font-size: 1rem;
  font-weight: bold;
}

.footer-subscription {
  display: flex;
  gap: 10px;
}

.footer-subscription input {
  padding: 8px 12px;
  border: 1px solid #ffffff;
  border-radius: 4px;
  background-color: transparent;
  color: #ffffff;
  font-family: "Mulish", serif;
  height: 5vh;
}

.footer-subscription input::placeholder {
  color: #ffffff;
}

.footer-subscription button {
  padding: 8px 16px;
  background-color: #ffffff;
  color: #0c0d16;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Mulish", serif;
  font-weight: bold;
  transition: background-color 0.3s ease-in-out;
  height: 5vh;
}

.footer-subscription button:hover {
  background-color: #623565;
}

.footer-bottom {
  margin-top: 20px;
  text-align: center;
  font-size: 1rem;
  color: #ffffff;
}

/*                                                                          button up                                                                        */

#btnTopContainer {
  position: fixed; /* Garante que o botão esteja fixo na tela */
  bottom: 32px;
  right: 35px;
  display: none; /* Inicialmente escondido */
  flex-direction: column;
  align-items: center;
  cursor: grab; /* Cursor de mão para indicar que o botão pode ser arrastado */
  z-index: 9999; /* Isso vai colocar o botão acima de outros elementos */
}

#btnTop {
  width: 50px;
  height: 50px;
  background-color: #e78c16;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, transform 0.3s;
}

#btnTopContainer h5 {
  color: #e78c16;
  font-size: 1rem;
  font-weight: 900;
  font-family: var(--title-font);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  transition: color 0.3s, transform 0.3s;
  margin-top: 8px;
}

/* Estilos para hover */
#btnTopContainer:hover #btnTop {
  background-color: #cfae83; /* Cor de fundo ao passar o mouse */
  transform: scale(1.1); /* Aumenta o tamanho do botão */
}

#btnTopContainer:hover h5 {
  color: #cfae83; /* Cor do texto ao passar o mouse */
  transform: scale(1.1); /* Aumenta o tamanho do texto */
}