/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* CORES E FONTE BASE */
:root {
  --verde: #00c853;
  --cinza-escuro: #121212;
  --cinza-claro: #1e1e1e;
  --branco: #ffffff;
  --fonte: 'Inter', sans-serif;
}

body {
  background-color: var(--cinza-escuro);
  color: var(--branco);
  font-family: var(--fonte);
  text-align: center;
  padding: 1.5rem 1rem 3rem 1rem;
  overflow-x: hidden;
}

/* FOTO DE PERFIL */
#foto {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 100%;
  margin: 0 auto 1rem auto;
  box-shadow: 0 0 12px rgba(0, 200, 83, 0.4);
}

/* TÍTULO PRINCIPAL */
h1 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.verde {
  color: var(--verde);
}

/* CONTAINER GERAL */
#main {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* SEÇÕES */
section {
  background-color: var(--cinza-claro);
  border: 1px solid var(--verde);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 0 18px rgba(0, 200, 83, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease;
}

section:hover {
  transform: scale(1.01);
}

/* TEXTOS DENTRO DAS SEÇÕES */
section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
}

/* BOTÕES DE AÇÃO */
.action-button {
  background-color: var(--verde);
  color: var(--branco);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 200, 83, 0.3);
}

.action-button:hover {
  background-color: #00e676;
  transform: scale(1.05);
}

/* ÍCONES FLUTUANTES */
#whatsapp, #instagram, #youtube, #tiktok {
  position: fixed;
  width: 48px;
  height: 48px;
  z-index: 1000;
  animation: pulse 3s infinite ease-in-out;
  cursor: pointer;
}

#whatsapp { bottom: 80px; right: 20px; }
#instagram { bottom: 140px; right: 20px; }
#youtube { bottom: 200px; left: 20px; }
#tiktok { bottom: 80px; left: 20px; }

/* MENU */
#menu-button {
  position: fixed;
  top: 1rem;
  left: 1rem;
  height: 36px;
  cursor: pointer;
  z-index: 1002;
  animation: pulse 3s infinite ease-in-out;
}

/* ANIMAÇÕES */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* MOBILE */
@media screen and (max-width: 480px) {
  h1 {
    font-size: 1.4rem;
  }

  section p {
    font-size: 0.95rem;
  }

  .action-button {
    font-size: 0.95rem;
    padding: 0.8rem;
  }

  #foto {
    width: 100px;
    height: 100px;
  }

  #whatsapp, #instagram, #youtube, #tiktok {
    width: 40px;
    height: 40px;
  }
}
