@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;

/* CSS para remoção completa de setinhas */
input[type="number"]::-webkit-inner-spin-button, 
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield; /* Para Firefox */
}

.navbar-brand{
    font-weight: bold;

}


#title-2{
    font-weight: bold;
}
    



#typewriter {
    font-size: 2rem; /* Ajuste o tamanho da fonte conforme necessário */
    font-weight: 900;
    font-family: "Roboto", sans-serif;
    /* white-space: wrap; Evita que o texto quebre linha */
    /* overflow: hidden; Esconde o texto que ainda não foi "digitado" */
    /* border-right: 3px solid black; Cursor de digitação */
    /* width: 0; Inicia com a largura zero */
    /* animation: typing 7s steps(56) forwards, blink-caret 0.75s step-end infinite; Animações */
    
  }
/*   
  /* Animação de digitação */
/* @keyframes typing {
    from {
      width: 0;
    }
    to {
      width: 56ch; /* Ajustado para 56 caracteres */
    /* } */
  /* } */ */
  
  /* Animação do cursor piscando */
  /* @keyframes blink-caret { */
    /* from, to { */
      /* border-color: transparent; */
    /* } */
    /* 50% { */
      /* border-color: black; */
    /* } */
  /* } */
   /* */ */
#box-whats-sats{
    margin-top: 300px;
    padding-top: 300px;
}

#box-main{
  padding-top: 5vh;
}


#button-simulate{
  width: 30%;
}

#card {
  background-color: #ffcc00;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 300px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
#select-currency {
  margin-top: 10px;
}
#result {
  font-size: 24px;
  margin-top: 20px;
}

/* Estilos para o modal de doação */
#supportModal {
  animation: fadeIn 0.3s ease-out;
}

#modalContent {
  animation: slideIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-20px) scale(0.95);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* Hover effects para botões */
.hover-lift:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Animação para o ícone de copiar */
#copyButton {
  transition: all 0.2s ease;
}

#copyButton:hover {
  transform: scale(1.1);
}

/* Estilo para o QR Code */
.qr-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.qr-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.qr-container:hover::before {
  transform: translateX(100%);
} 