@import url("https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Savate:ital,wght@0,200..900;1,200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #444343;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: 25px;
  padding: 20px;
}

h1 {
  color: #fffdfd;
  text-align: center;
  font-size: 5vh;
  font-family: "Permanent Marker", cursive;
}

h2 {
  font-family: "Exo 2", sans-serif;
  margin-bottom: 10px;
  font-size: 2.5vh;
}

.logo {
  width: 120px;
  height: auto;
  margin-bottom: 25px;
}

.barclays,
.lloyds {
  display: flex;
  align-items: center;
  gap: 5px;
}

.barclays {
  color: rgb(0, 174, 255);
}

.lloyds {
  color: rgb(23, 146, 7);
}

.box {
  background-color: rgba(0, 0, 0, 0.144);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 253, 253, 0.932);
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

p {
  color: white;
  font-size: 1.5vh;
  font-family: "Savate", sans-serif;
  margin-bottom: 10px;
  text-align: center;
}

.pix,
.paypal,
.transferencia {
  text-align: center;
  margin-top: 30px;
}

.transferencia {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qr-code {
  max-width: 200px;
  width: 100%;
  margin: 10px auto;
}

button.paypal-button {
  background-color: #ffc439;
  border: none;
  padding: 10px 20px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
}

button.paypal-button:hover {
  background-color: #faaf0086;
}

.key,
.bank-info {
  font-weight: bold;
  color: #555;
}

footer {
  text-align: center;
  margin-top: 40px;
  font-size: 1.5vh;
  color: #c7c4c4;
}

/* SLIDER */
.slider-container {
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  margin-top: 20px;
  padding: 10px;
  position: relative;
}

.slider {
  display: flex;
  animation: loopScroll 25s linear infinite;
}

.conta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 300px;
  margin: 0 10px;
  padding: 20px;
  background: radial-gradient(
    circle,
    rgb(67, 67, 68) 0%,
    rgb(89, 89, 90) 35%,
    rgba(41, 41, 43, 1) 100%
  );
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  text-align: left;
}

.conta p {
  color: rgb(250, 248, 248);
  font-size: 1.2vh;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  h1 {
    font-size: 4vh;
  }

  h2 {
    font-size: 2.2vh;
  }

  p {
    font-size: 1.4vh;
  }

  .slider {
    flex-direction: column;
    animation: none;
    align-items: center;
    width: 100%;
  }

  .slider-container {
    overflow: visible;
  }

  .conta {
    width: 90%;
    margin: 10px 0;
  }

  .logo {
    width: 100px;
  }

  .box {
    padding: 20px;
  }
  .duplicate {
    display: none;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 3.5vh;
  }

  .paypal-button {
    font-size: 16px;
    padding: 8px 16px;
  }
}

@keyframes loopScroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
