/* Fundo estilo espaço */
body {
  margin: 0;
  padding: 0;
  background-size: cover;
  font-family: sans-serif;
  color: #fff;
}

/* Partículas */
#tsparticles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Outras seções */
section {
  position: relative;
  z-index: 1;
  padding: 60px 20px;
  background: rgba(0, 0, 0, 0.5); /* leve escurecimento para legibilidade */
  border-radius: 10px;
  margin: 20px;
}


header {
  background: #1c0145;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  position: sticky;
  top: 0;
  z-index: 10;
}


.logo {
  margin-left: 100px; /* 10 centímetros ≈ 100px */
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 50px;
  height: auto;
  border-radius: 8px;
}


nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

.section-home {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 5%;
  flex-wrap: wrap;
}


.home-img {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.home-img img {
  width: 300px;
  max-width: 90%;
  animation: flutuar 4s ease-in-out infinite;
  filter: drop-shadow(0 0 15px #8f00ff); /* brilho espacial roxo */
  transition: transform 0.3s ease;
}

/* Animação flutuante */
@keyframes flutuar {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}


.home-text {
  max-width: 600px;
}

.home-text h2 {
  color: white;
  font-size: 24px;
}

.home-text h1 {
  font-size: 60px;
  color: #ffb800;
  text-shadow: 2px 2px #6e00ff;
}

.beneficios {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.beneficios span {
  background: #5c00d2;
  padding: 6px 12px;
  border-radius: 8px;
}

.home-text .btn {
  background: #5c00d2;
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  display: inline-block;
}

.home-img img {
  max-width: 300px;
  border-radius: 10px;
}

.section-planos {
  padding: 60px 20px;
  background-color: #f8f8ff;
  text-align: center;
}

.planos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.plano-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  padding: 30px;
  width: 300px;
  transition: transform 0.3s ease;
}

.plano-card:hover {
  transform: translateY(-10px);
}

.plano-card h3 {
  font-size: 28px;
  color: #4b00c0;
  margin-bottom: 20px;
}

.plano-card h3 span {
  font-weight: bold;
}

.plano-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.plano-card ul li {
  display: flex;
  align-items: center;
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
}

.plano-card ul li img {
  width: 22px;
  margin-right: 10px;
}

.canais {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 15px 0;
}

.canais img {
  width: 30px;
  height: auto;
  filter: grayscale(0%);
}

.plano-card button {
  background-color: #6200ea;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 10px 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.plano-card button:hover {
  background-color: #4b00c0;
}

footer {
  text-align: center;
  background: #0a0025;
  padding: 10px;
  font-size: 14px;
}

/* Fundo partículas */
#tsparticles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Botão flutuante WhatsApp */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-image: url('img/whatsapp.webp'); /* Adicione essa imagem na pasta 'img' */
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50%;
  box-shadow: 0 0 10px #00e676;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp:hover {
  transform: scale(1.1);
}


/* Botão Hamburguer Espacial */
.menu-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 35px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle span {
  height: 4px;
  background: #0ff;
  border-radius: 2px;
  transition: 0.4s;
  box-shadow: 0 0 5px #0ff, 0 0 10px #0ff;
}

/* Menu lateral */
.side-menu {
  position: fixed;
  left: -250px;
  top: 0;
  width: 250px;
  height: 100%;
  background: rgba(5, 5, 30, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 5px 0 15px #0ff;
  transition: left 0.4s ease;
  z-index: 1050;
  padding-top: 80px;
}

.side-menu ul {
  list-style: none;
  padding: 0;
}

.side-menu li {
  padding: 20px;
  text-align: center;
}

.side-menu a {
  color: #0ff;
  font-size: 1.2em;
  text-decoration: none;
  text-shadow: 0 0 10px #0ff;
  transition: 0.3s;
}

.side-menu a:hover {
  color: #fff;
  text-shadow: 0 0 15px #fff;
}

/* Menu aberto */
.side-menu.open {
  left: 0;
}


.section-contato {
  background-color: #19004e;
  color: white;
  padding: 60px 30px;
}

.contato-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.contato-texto {
  flex: 1 1 40%;
  padding-right: 20px;
}

.contato-texto h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.contato-texto p {
  font-size: 18px;
  line-height: 1.6;
}

.contato-info {
  flex: 1 1 40%;
}

.contato-info h3 {
  font-size: 24px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contato-info hr {
  border: none;
  border-top: 2px solid white;
  margin-bottom: 15px;
  width: 100%;
}

.contato-info ul {
  list-style: none;
  padding: 0;
}

.contato-info ul li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
}

.contato-info ul li img {
  width: 20px;
  margin-right: 10px;
}

.selo-ra {
  position: absolute;
  right: 0;
  bottom: 20px;
}

.selo-ra img {
  width: 100px;
  border-radius: 10px;
}


.destaque-animado {
  font-size: 3rem;
  font-weight: bold;
  animation: coresAlternadas 2s infinite;
  text-shadow: 0 0 10px #fff, 0 0 20px #f0f, 0 0 30px #0ff;
  text-align: center;
  margin: 10px 0;
  margin-left: -4cm; /* Deslocamento para a esquerda */
}

@keyframes coresAlternadas {
  0%   { color: #ff0000; }   /* Vermelho */
  25%  { color: #ff9900; }   /* Laranja */
  50%  { color: #00ff00; }   /* Verde-limão */
  75%  { color: #00ccff; }   /* Azul-celeste */
  100% { color: #ff00ff; }   /* Magenta */
}


.beneficios {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 25px 0;
  margin-left: -5cm; /* <- Deslocamento para a esquerda */
  justify-content: center;
}


.beneficios {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 25px 0;
  margin-left: -2cm; /* <- Deslocamento para a esquerda */
  justify-content: center;
}

.beneficio-item {
  background: rgba(71, 214, 61, 0.664);
  border: 1px solid rgba(84, 218, 60, 0.466);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 0.95rem;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
  transition: transform 0.3s, background 0.3s;
}

.beneficio-item:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
}
