/*
  STYLE.CSS MODERNO
  Paleta: Verde (#00c853), Cinza escuro (#212121), Branco (#fff)
  Fonte: Inter
  Layout mobile-first
*/

:root {
  --verde: #00c853;
  --cinza: #212121;
  --branco: #ffffff;
  --azul-hover: #00b0ff;
  --fonte: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--fonte);
}

body {
  background-image: url("https://www.shutterstock.com/image-photo/building-perspective-view-condominium-architecture-600nw-2559077527.jpg");
  background-size: cover;
  background-color: var(--cinza);
  color: var(--branco);
  text-align: center;
  overflow-x: hidden;
  padding: 1rem;
}

#logo {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  height: 60px;
  cursor: pointer;
  z-index: 1000;
  animation: pulse 5s infinite ease-in-out;
}

#main {
  width: 100%;
  max-width: 480px;
  margin: 90px auto 2rem auto;
  background-color: #111;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 200, 83, 0.4);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--verde);
  animation: pulse 3s infinite;
}

section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #1d1d1d;
  padding: 1rem;
  border-radius: 12px;
  border: 2px solid var(--verde);
}

coluna  {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
}

linha {
  display: flex;
  flex-direction: row;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
}
linha span {
  width: 100px;
  text-align: right;
  font-weight: 600;
}



  .content-ano, .contentSIMNAO, .contentNUMER {
    background-color: #b1f0b5;
   
    width: 50% !important;
    
    font-size: 1rem;
    border-radius: 12px;
    border: none;
    background-color: #c1eca3;
    color: var(--cinza);
    font-weight: bold;
    text-align: center;
  } 
  .MONEY {
    background-color: #b1f0b5;
    width: 200px !important;
    font-size: 1rem;
    border-radius: 12px;
    border: none;
    background-color: #c1eca3;
    color: var(--cinza);
    font-weight: bold;
    text-align: center;
  }


.content-mes {
  background-color: #b1f0b5;
  width: 70% !important;
  font-size: 1rem;
  border-radius: 12px;
  border: none;

  color: var(--cinza);
  font-weight: bold;
  text-align: center;
}
.select-confirmacao {
  width: 70% !important;
  font-size: 1rem;
  border-radius: 12px;
  border: none;
  font-weight: bold;
  text-align: center;
  padding: 8px 12px;
  transition: all 0.2s ease;
  color: var(--cinza);
  background-color: #14532d; /* padrão neutro */
}

.select-confirmacao--sim {
  background-color: #1926e6;
  color: #b5b5b9;
}

.select-confirmacao--nao {
  background-color: #ffb3b3;
  color: #7f1d1d;
}
.input-config,
.input-configAPIKEY
 {
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  border-radius: 12px;
  border: none;
  background-color: #f1f1f1;
  color: var(--cinza);
  font-weight: bold;
  text-align: center;
}

.input-config:hover,
.input-configAPIKEY:hover,
.content-select:hover {
  background-color: #ffffff;
  border: 1px solid var(--verde);
  box-shadow: 0 0 10px rgba(0, 200, 83, 0.4);
}

.action-button {
  background-color: var(--verde);
  color: var(--branco);
  border: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.action-button:hover {
  background-color: var(--azul-hover);
  transform: scale(1.03);
}

#MIC, #STOP, #passwordclasse {
  font-size: 1.5rem;
  cursor: pointer;
  animation: tremida 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes tremida {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(2px); }
  50% { transform: translateX(-2px); }
  75% { transform: translateX(2px); }
}

/* Botões flutuantes */
#whatsapp, #instagram, #youtube, #tiktok {
  position: fixed;
  width: 48px;
  height: 48px;
  z-index: 1000;
  animation: pulse 3s infinite;
  cursor: pointer;
}
#whatsapp { bottom: 80px; right: 20px; }
#instagram { bottom: 140px; right: 20px; }
#youtube { bottom: 200px; left: 20px; }
#tiktok { bottom: 80px; left: 20px; }

/* Mobile ajustes */
@media screen and (max-width: 480px) {
  #main {
    padding: 1rem;
  }
  h1 {
    font-size: 1.5rem;
  }
  .action-button {
    font-size: 0.95rem;
    padding: 0.75rem;
  }
  .input-config,
  .content-select,
  .input-configAPIKEY {
    font-size: 0.95rem;
  }
}
