/* galaxy.css completo e atualizado */

html, body {
  overscroll-behavior: none;
  touch-action: pan-y;
}

html {
  width: 100vw;
  max-width: 100vw;
  overflow-x: hidden !important;
  zoom: 1;
}

/* Fundo galáctico com animação */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at bottom, #250043 0%, #0b0028 100%);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 300%;
  height: 300%;
  background: url('https://cdn.pixabay.com/photo/2017/01/12/14/20/space-1970728_1280.jpg') repeat;
  background-size: cover;
  animation: moveStars 120s linear infinite;
  opacity: 0.35;
  z-index: -1;
}

@keyframes moveStars {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-20%, -20%); }
}

/* Vídeo de fundo configurado corretamente */
#bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100vw;
  min-height: 100vh;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -3;
  opacity: 0.6;
  pointer-events: none;
}

#bg-video::-webkit-media-controls-start-playback-button,
#bg-video::-webkit-media-controls-overlay-play-button {
  display: none !important;
  opacity: 0 !important;
  -webkit-appearance: none !important;
}

@media (max-width: 480px) {
  #bg-video {
    display: none !important;
  }
}

/* Brilho no h1 */
@keyframes shine {
  0% { left: -75%; }
  100% { left: 125%; }
}

.header h1 {
  position: relative;
  color: var(--amarelo);
  font-weight: bold;
  text-align: center;
  font-size: 2.5rem;
  margin: 0;
}

.header h1::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
  transform: skewX(-25deg);
  animation: shine 3s infinite;
}

@media (max-width: 600px) {
  .header h1 {
    font-size: 1.8rem;
    padding-top: 60px;
  }
}

/* Imagens SSL e PCI proporcionais e lado a lado no desktop */
.security-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 2px solid var(--amarelo);
  border-radius: 12px;
  text-align: center;
  max-width: 100%;
  margin: 20px auto;
}

.security-trust p {
  margin-bottom: 10px;
  max-width: 600px;
}

.security-trust-images {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 20px !important;
  flex-wrap: wrap !important;
}

.security-trust-images img {
  max-width: 120px !important;
  height: auto !important;
  display: inline-block !important;
  object-fit: contain;
}

@media (max-width: 400px) {
  .security-trust-images img {
    max-width: 100px !important;
  }
}


/* Rodapé centralizado */
.footer-highlight {
  text-align: center;
  align-items: center;
  justify-content: center;
}

/* Layout de criptomoedas em pirâmide no mobile */
@media (max-width: 480px) {
  .crypto-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: center;
  }

  .crypto-grid .crypto-option:nth-child(1) {
    grid-column: 1;
  }

  .crypto-grid .crypto-option:nth-child(2),
  .crypto-grid .crypto-option:nth-child(3) {
    grid-column: span 1;
    display: inline-block;
  }
}

/* Containers com sombra */
.container,
.payment-guide,
.qr-section,
.carousel-container,
.app-download,
.security-trust,
.success-banner,
.footer-highlight {
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.2),
              0 0 50px rgba(255, 255, 255, 0.05);
}

@media (max-width: 480px) {
  .crypto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    justify-items: center;
  }

  .crypto-option:nth-child(1),
  .crypto-option:nth-child(2) {
    grid-column: 1 / span 2;
  }

  .crypto-option:nth-child(3) {
    grid-column: 1;
  }

  .crypto-option:nth-child(4) {
    grid-column: 2;
  }
}


/*final galaxy.css*/


html, body {
  overscroll-behavior: none;
  touch-action: pan-y;
}

:root {
  --roxo-escuro: #1A082C;
  --amarelo: #FFD700;
  --branco: #FFFFFF;
  --amarelo-hover: #ffcc00;
}

body {
  background: var(--roxo-escuro);
  color: var(--branco);
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 20px;
}

.fade-in {
  animation: fadeInEffect 2s ease forwards;
  opacity: 0;
}

@keyframes fadeInEffect {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
  border: 2px solid var(--amarelo);
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
  position: relative;
}

.header {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 80px;
}

.logo-luxo {
  position: absolute;
  top: 10px;
  left: 20px;
  width: 160px;
  border-radius: 15px;
  border: 3px solid var(--amarelo);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
  background: var(--branco);
  padding: 5px;
  object-fit: contain;
  transition: width 0.2s ease;
}
@media (max-width: 600px) {
  .logo-luxo { left: 10px; width: 80px; }
  .header { padding-top: 40px; flex-direction: column; }
}

.crypto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.crypto-option {
  background: #2A094C;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.crypto-option:hover {
  transform: translateY(-5px);
  border-color: var(--amarelo);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}
.crypto-option img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.4));
}

@media (max-width: 480px) {
  .crypto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }
  .crypto-option:nth-child(1),
  .crypto-option:nth-child(2),
  .crypto-option:nth-child(3),
  .crypto-option:nth-child(4) {
    grid-column: auto;
  }
}

.payment-guide {
  background: linear-gradient(145deg, #1A082C 30%, #2A094C 100%);
  padding: 25px;
  border-radius: 15px;
  border: 2px solid var(--amarelo);
  margin: 40px 0;
}
.guide-step {
  display: flex;
  align-items: center;
  margin: 20px 0;
  padding: 15px;
  background: #1A082C90;
  backdrop-filter: blur(5px);
  border-radius: 10px;
}
.step-icon {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  filter: drop-shadow(0 0 5px var(--amarelo));
}
.benefit-tag {
  background: #FFD70020;
  color: var(--amarelo);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9em;
  margin-top: 10px;
  display: inline-block;
}

.tutorial-title {
  display: block;
  margin: 20px auto 12px;
  text-align: center;
  color: var(--amarelo);
  font-size: 1.4rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  padding: 0 10px;
}

.carousel-container {
  position: relative;
  max-width: 800px;
  margin: 40px auto;
  background: rgba(26, 8, 44, 0.85);
  border: 2px solid var(--amarelo);
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
  padding: 20px;
  overflow: visible;
}
@media (min-width: 769px) {
  .carousel-container { height: 450px; }
}
@media (max-width: 768px) {
  .carousel-container { height: auto; }
  .carousel-video { height: auto !important; object-fit: contain; }
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}
.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.carousel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.carousel-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  position: relative;
  z-index: 2;
}

.carousel-controls button {
  z-index: 3;
  pointer-events: auto;
}
.carousel-controls button:hover {
  transform: translateY(-50%) scale(1.1);
}
.carousel-navigation {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.carousel-dot {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  transition: background 0.3s, transform 0.3s;
}
.carousel-dot.active {
  background: var(--amarelo);
  transform: scale(1.3);
}

.app-download {
  text-align: center;
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.app-download h3 {
  color: var(--amarelo);
  margin: 0;
}
.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.download-buttons img {
  height: 50px;
  transition: transform 0.3s ease;
}
.download-buttons img:hover {
  transform: scale(1.05);
}

.status-bar {
  max-width: 600px;
  margin: 20px auto;
  padding: 12px 20px;
  background: linear-gradient(145deg, rgba(26,8,44,0.7), rgba(42,9,76,0.7));
  border: 1px solid var(--amarelo);
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  text-align: center;
  color: var(--amarelo);
  font-weight: bold;
  font-size: 1rem;
  position: relative;
}

.qr-section {
  text-align: center;
  margin: 40px 0;
  padding: 20px;
  background: #2A094C;
  border-radius: 15px;
}
.qr-image {
  width: 200px;
  margin: 20px auto;
  border: 2px solid var(--amarelo);
  padding: 10px;
  background: var(--branco);
  border-radius: 10px;
}
.address-container {
  margin-top: 20px;
}
.wallet-address {
  background: #1A082C;
  padding: 15px;
  border-radius: 8px;
  font-family: monospace;
  color: var(--amarelo);
  word-break: break-word;
}
.copy-button {
  background: var(--amarelo);
  color: var(--roxo-escuro);
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}
.copy-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.3);
}
.feedback-message {
  display: block;
  margin-top: 10px;
  min-height: 20px;
}

.pay-now-btn {
  display: block;
  margin: 40px auto 20px;
  padding: 14px 28px;
  background-color: var(--amarelo);
  color: var(--roxo-escuro);
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  box-shadow: 0 0 20px rgba(255,215,0,0.4);
  transition: transform 0.3s ease;
  cursor: pointer;
}
.pay-now-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255,215,0,0.7);
}

.success-banner {
  background: linear-gradient(145deg, rgba(26,8,44,0.7), rgba(42,9,76,0.7));
  border: 1px solid var(--amarelo);
  padding: 15px 25px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  max-width: 600px;
  margin: 30px auto;
  text-align: center;
  color: var(--amarelo);
  font-weight: bold;
  font-size: 1.1rem;
}
.success-banner ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}

.protected-footer {
  text-align: center;
  margin: 10px 0;
}
.protected-footer img {
  max-width: 120px;
  height: auto;
}

  .qr-image {
    width: 160px;
  }
  .pay-now-btn {
    font-size: 1rem;
    padding: 12px 24px;
  }
  .logo-luxo {
    width: 80px;
  }
.carousel-dot.active {
  display: none;
}
.crypto-benefits {
  background: #2A094C;
  margin: 24px auto;
  padding: 20px;
  border-radius: 12px;
  border: 2px solid var(--amarelo);
  box-shadow: 0 0 20px rgba(255,215,0,0.1);
  color: var(--amarelo);
  max-width: 700px;
  text-align: center;
}
.crypto-benefits ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.crypto-benefits li {
  margin-bottom: 8px;
  font-weight: bold;
}
.footer-links a {
  color: #FFFFFF; /* branco legível */
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #FFD700; /* amarelo no hover */
  text-decoration: underline;
}

.footer-links {
  margin-top: 16px;
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  margin-top: 8px; /* menor espaço para colar melhor ao bloco de links */
  font-size: 0.85rem;
  text-align: center;
  opacity: 0.9;
  color: #ccc;
}
.security-trust p {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 10px;
  font-size: 1.1rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .carousel-container {
    padding-bottom: 110px; /* Garante espaço visual para as setas abaixo do vídeo */
  }

  .carousel-controls {
    margin-top: 16px;
    justify-content: space-between;
    padding: 0 12px;
    position: relative;
    z-index: 10;
  }

  .carousel-controls button {
    background: var(--amarelo);
    color: var(--roxo-escuro);
    border: none;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease;
  }

  .carousel-controls button:hover {
    transform: scale(1.1);
  }
}
@media (min-width: 769px) {
  .carousel-controls {
    margin-top: 16px;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 10;
  }

  .carousel-controls button {
    background: var(--amarelo);
    color: var(--roxo-escuro);
    border: none;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease;
  }

  .carousel-controls button:hover {
    transform: scale(1.1);
  }
}
.security-trust-images img[alt="PCI-DSS Compliant"] {
  max-width: 160px;
}

.payment-section {
  display: none;
}

.login-container {
  max-width: 500px;
  margin: 40px auto;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--amarelo);
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
  text-align: center;
}

.login-container h2 {
  margin-bottom: 20px;
  color: var(--amarelo);
  font-size: 1.4rem;
  font-weight: bold;
}

#user-auth-form input {
  width: 100%;
  margin-bottom: 16px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
}

#user-auth-form input:focus {
  border-color: var(--amarelo);
  box-shadow: 0 0 5px var(--amarelo);
}

#user-auth-form .pay-now-btn {
  width: 100%;
  padding: 14px;
  font-size: 1.1rem;
}

#user-auth-form input {
  box-sizing: border-box; /* Garante que padding não ultrapasse a largura */
  width: 100%;
  margin-bottom: 16px;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
}

#user-auth-form {
  padding-left: 4px;
  padding-right: 4px;
}

.client-profile {
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid var(--amarelo);
  border-radius: 12px;
  padding: 20px;
  max-width: 500px;
  margin: 0 auto 40px auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  color: #fff;
  text-align: center; /* 💛 Centraliza tudo dentro */
}

.client-profile ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.client-profile li {
  margin-bottom: 12px;
  font-size: 1.1rem;
  text-align: center; /* 🔥 Garante que cada linha fique no centro */
}

.client-profile strong {
  color: var(--amarelo);
}

.qr-section {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 30px 20px;
  margin: 30px auto;
  max-width: 420px;
  box-shadow: 0 0 20px rgba(255, 255, 0, 0.1);
  text-align: center;
}

.qr-section h3 {
  margin-bottom: 16px;
  color: var(--amarelo);
  font-size: 1.4rem;
}

.qr-image {
  width: 180px;
  margin-bottom: 16px;
  border-radius: 8px;
}

.wallet-address {
  background: #000;
  color: #fff;
  font-size: 0.95rem;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 8px;
  max-width: 90%;
  word-break: break-all;
  margin: 0 auto 8px auto;
}

.copy-button {
  background-color: var(--amarelo);
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  transition: background 0.3s ease;
}

.copy-button:hover {
  background-color: #fff200;
}

/* Títulos principais */
.section-title,
.client-profile h2,
.payment-details h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--amarelo);
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.3);
  animation: fadeInZoom 0.6s ease forwards;
}

/* Efeito de entrada suave com escala */
@keyframes fadeInZoom {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* Layout da seção de pagamento */
.payment-details {
  text-align: center;
  padding: 20px;
}

/* Card individual */
.qr-card {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid var(--amarelo);
  border-radius: 16px;
  padding: 20px;
  margin: 20px auto;
  max-width: 320px;
  box-shadow: 0 0 15px rgba(255, 255, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(255, 255, 0, 0.3);
}

.qr-card h3 {
  margin-bottom: 15px;
  color: var(--amarelo);
}

.qr-card .qr-image {
  width: 180px;
  margin: 0 auto 15px;
  display: block;
}

.qr-card .wallet-address {
  word-break: break-all;
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #fff;
}

/* Ramp botão */
.buy-with-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px 30px;
  margin: 50px auto;
  max-width: 360px;
  text-align: center;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 20px rgba(255, 255, 0, 0.05), 0 0 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.buy-with-card:hover {
  transform: translateY(-4px);
}

.cartao-icon-centered {
  width: 100%;
  max-width: 280px;
  margin-bottom: 24px;
  border-radius: 10px;
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    filter: drop-shadow(0 0 4px rgba(255, 255, 0, 0.2));
  }
  50% {
    filter: drop-shadow(0 0 16px rgba(255, 255, 0, 0.5));
  }
}
.card-subtext {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 1.4;
}
.bloco-com-borda {
  border: 2px solid var(--amarelo);
  border-radius: 16px;
  padding: 30px 10px;
  margin: 40px auto;
  max-width: 420px;
}
.client-profile {
  text-align: center;
}

.client-profile ul {
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  text-align: left;
  width: 100%;
  max-width: 420px;
}

.client-profile li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 1rem;
  flex-wrap: nowrap;
  word-break: break-word;
}

.icon-dado {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  margin-top: 4px;
  filter: drop-shadow(0 0 5px rgba(255, 255, 0, 0.4));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.client-profile li:hover .icon-dado {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(255, 255, 0, 0.7));
}

.info-text {
  flex: 1;
  word-break: break-word;
}

.info-text strong {
  display: block;
  color: var(--amarelo);
  margin-bottom: 2px;
}
.login-form {
  max-width: 90vw; /* em vez de 400px fixo */
  width: 100%;
  margin: 40px auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid var(--amarelo);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 0 25px rgba(255, 255, 0, 0.1);
  box-sizing: border-box;
}

.login-form input {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.05);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  box-sizing: border-box;
}

.login-form input::placeholder {
  color: #ccc;
}

.login-form button {
  background: var(--amarelo);
  border: none;
  padding: 14px 26px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 10px;
  color: var(--roxo-escuro);
  cursor: pointer;
  transition: background 0.3s ease;
  box-sizing: border-box;
}

.login-form button:hover {
  background: #fff466;
}

.login-aviso {
  color: var(--amarelo);
  font-size: 0.95rem;
  margin-bottom: 20px;
  text-align: center;
}
.secure-icon {
  display: block;
  max-width: 120px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 6px rgba(255, 255, 0, 0.3));
}
.login-bloco {
  border: 2px solid var(--amarelo);
  border-radius: 16px;
  padding: 30px 20px;
  max-width: 420px;
  margin: 40px auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 0 15px rgba(255, 255, 0, 0.1);
}
.welcome-user {
  text-align: center;
  font-size: 1.2rem;
  color: var(--amarelo);
  font-weight: bold;
  margin: 30px auto 10px;
  text-shadow: 0 0 8px rgba(255, 255, 0, 0.4);
}
.dados-confirmados {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dados-confirmados li {
  font-size: 1rem;
  margin-bottom: 10px;
  text-align: left;
  color: #fff;
  word-break: break-word;
}

.dados-confirmados strong {
  color: var(--amarelo);
  margin-right: 6px;
}
#boas-vindas-section {
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid var(--amarelo);
  border-radius: 12px;
  padding: 20px;
  margin: 30px auto;
  max-width: 460px;
  box-shadow: 0 0 16px rgba(255, 255, 0, 0.1);
}
#boas-vindas-section h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.client-cadastro {
  border: 2px solid var(--amarelo);
  border-radius: 16px;
  padding: 30px 20px;
  max-width: 500px;
  margin: 40px auto;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 0 15px rgba(255, 255, 0, 0.1);
  text-align: center;
}

.client-cadastro input {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.08);
  color: white;
}

.client-cadastro input::placeholder {
  color: #ccc;
}

.client-cadastro button {
  margin-top: 10px;
}
.logout-btn {
  position: absolute;
  top: 0px; /* ou igual ao .logo-luxo */
  right: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
  padding: 0;
}

.logout-btn img.logout-icon {
  width: 45px;
  height: 45px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 6px rgba(255, 255, 0, 0.5));
}

.logout-btn:hover img.logout-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px rgba(255, 255, 0, 0.8));
}

@media (max-width: 768px) {
  .logout-btn {
    top: 1px; /* sobe o botão */
    right: 10px;
  }

  .logout-btn img.logout-icon {
  width: 52px;
  height: 52px;
  animation: pulseGlow 2.5s infinite ease-in-out;
  filter: drop-shadow(0 0 6px rgba(255, 255, 0, 0.5));
  transition: transform 0.3s ease, filter 0.3s ease;
    transform: scale(1.1) rotate(3deg);
}

@keyframes pulseGlow {
  0%, 100% {
    filter: drop-shadow(0 0 6px rgba(255, 255, 0, 0.5));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 14px rgba(255, 255, 0, 0.8));
    transform: scale(1.05);
  }
}

@media (max-width: 400px) {
  .login-form {
    padding: 20px;
    margin: 20px auto;
  }

  .login-form input {
    font-size: 0.95rem;
    padding: 12px;
  }

  .login-form button {
    font-size: 1rem;
    padding: 12px 20px;
  }
}
.hidden {
  display: none;
}
  
.info-pagamento-cripto {
  text-align: center;
  margin: 40px auto 25px;
  max-width: 720px;
  font-size: 17px;
  line-height: 1.7;
  color: #ffffff;
  background-color: #1a0033;
  padding: 22px 28px;
  border-radius: 16px;
  border: 1px solid #ffd700;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease-in-out;
}

.info-pagamento-cripto:hover {
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.info-pagamento-cripto strong {
  color: #ffd700;
  font-weight: 600;
}

.info-pagamento-cripto p {
  margin: 0;
}
  
html, body {
  max-width: 100vw;
  overflow-x: hidden;
  zoom: 1;
  box-sizing: border-box;
}

.ramp-info-text {
  text-align: center;
  color: #fff;
  font-size: 15px;
  margin-top: 10px;
  margin-bottom: 15px;
}
  
.secure-text {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  color: #ccc;
  font-size: 14px;
  margin: 30px auto 10px;
  max-width: 600px;
  line-height: 1.7;
  padding: 0 20px;
}

.secure-icon-text {
  font-size: 1.2rem;
  margin-right: 6px;
  vertical-align: text-top;
  display: inline-block;
  line-height: 1;
}

.shine-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.shine-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  transform: skewX(-20deg);
  z-index: 2;
  animation: brilho-passando 3s infinite;
}

@keyframes brilho-passando {
  0% { left: -75%; }
  100% { left: 125%; }
}

.pulsante {
  animation: pulseRamp 2.5s infinite;
}

@keyframes pulseRamp {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 0, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(255, 255, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 0, 0); }
}
  
.checkout-protegido {
  color: #ccc;
  font-size: 14px;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 20px;
}
  
@keyframes pulseZap {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

.whatsapp-float {
  animation: pulseZap 2.8s infinite ease-in-out;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  background-color: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebd5a;
  transform: scale(1.05);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.5));
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 85px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float img {
    width: 26px;
    height: 26px;
  }
}
  
.desconto-card {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  max-height: unset !important;
}

@media (max-width: 420px) {
  .whatsapp-float {
    bottom: 20px;
  }
}
