/*
  NOVO STYLE.CSS REFORMULADO
  Identidade visual preservada | Visual limpo | Responsivo | Padrão Google Planilhas
*/

:root {
  --verde: #00c853;
  --cinza: #212121;
  --branco: #ffffff;
  --cinza-claro: #f1f1f1;
  --azul-hover: #00b0ff;
  --fonte: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--fonte);
}

body {
  background-color: var(--cinza);
  color: var(--branco);
  text-align: center;
  overflow-x: hidden;
  padding: 1rem;
}

/* Logo Centralizado */
#logo {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  height: 60px;
  cursor: pointer;
  z-index: 1000;
  animation: pulse 5s infinite ease-in-out;
}

/* Conteúdo Principal */
#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;
}

/* Títulos */
h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--verde);
  animation: pulse 3s infinite;
}

/* Seções */
section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #1d1d1d;
  padding: 1rem;
  border-radius: 12px;
  border: 2px solid var(--verde);
}

/* Linhas de entrada */
linha, linha2 {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
}

/* Inputs e Selects */
.input-config,
.input-configAPIKEY,
.content-select {
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  border-radius: 12px;
  border: none;
  background-color: var(--cinza-claro);
  color: var(--cinza);
  font-weight: bold;
  text-align: center;
}

.input-config:hover,
.input-configAPIKEY:hover,
.content-select:hover {
  background-color: var(--branco);
  border: 1px solid var(--verde);
  box-shadow: 0 0 10px rgba(0, 200, 83, 0.4);
}

/* Botão principal */
.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);
}

/* Animações */
@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); }
}

/* Ícones dinâmicos */
#MIC, #STOP, #passwordclasse {
  font-size: 1.5rem;
  cursor: pointer;
  animation: tremida 2s infinite;
}

/* Botões de redes sociais */
#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; }

.video-hero {
  background: linear-gradient(to bottom, #1b1b1b, #000);
  padding: 2rem 1rem;
  border: 2px solid var(--verde);
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 200, 83, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  font-weight: 400;
}

.hero-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--branco);
  text-align: center;
}

.destaque {
  color: var(--verde);
  font-weight: 800;
}

.video-container {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 200, 83, 0.4);
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-descricao {
  font-size: 1rem;
  color: #eee;
  max-width: 500px;
  text-align: center;
  line-height: 1.6;
}

.destaque-cta {
  margin-top: 1rem;
  background-color: var(--verde);
  color: var(--branco);
  font-size: 1.1rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 200, 83, 0.4);
}

.destaque-cta:hover {
  background-color: var(--azul-hover);
  transform: scale(1.05);
}

/* Ajustes Mobile */
@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;
  }
}
