body {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #ffffff;
}

/*Sessão das redes Sociais*/
.redes-sociais {
    position: fixed;
    top: 40%;
    left: 6px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px;
    z-index: 1000;
  }
  
  .redes-sociais a {
    background-color: #222;
    color: #ffffff;
    padding: 12px;
    text-align: center;
    width: 45px;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
    font-size: 18px;
  }
  
  .redes-sociais a:hover {
    box-shadow: 0 0 15px 4px currentColor;
    color: white;
  }
  
  /* Cores específicas por rede */
  .redes-sociais .facebook:hover {
    background-color: #1877f2; /* azul do Facebook */
  }
  
  .redes-sociais .instagram:hover {
    background-color: #e4405f; /* rosa do Instagram */
  }
  
  .redes-sociais .whatsapp:hover {
    background-color: #25D366; /* verde do WhatsApp */
  }
  
  .redes-sociais .linkedin:hover {
    background-color: #0077b5; /* azul LinkedIn */
  }
  
/*Parte que estiliza o restante do site*/
h1 {
    text-align: center;
    margin-top: 50px;
}

h3 {
    margin-top: 30px;
    color: #333;
}

ul {
    margin-bottom: 30px;
}

li {
    margin-bottom: 8px;
}

/*footer*/
.destaque {
    color: #18a2e2; 
    font-weight: bold; /* opcional: deixa em negrito */
  }

.cnpj {
color: #ffffff; 
font-weight: bold; /* opcional: deixa em negrito */
}


.entrada-email{
    background-color: #000000;   /* fundo preto */
    color: #ffffff;              /* texto branco */
    padding: 225px 20px;         /* altura mantida, espaçamento lateral */
    font-size: 14px;
    line-height: 1.6;
  
    width: 100vw;                /* largura total da tela */
    position: relative;          /* comportamento normal na pilha de elementos */
    left: 50%;                   /* centralizar considerando o deslocamento com transform */
    transform: translateX(-50%);
    margin-top: 150px;                   /* zera margens externas */
    box-sizing: border-box;      /* inclui o padding dentro da largura */
  }
  
/* Container flexível para alinhar o conteúdo */
.container-entrada-email {
  display: flex;
  justify-content: space-between; /* espaço entre os dois blocos */
  align-items: center;
  max-width: 1200px; /* ou qualquer largura máxima desejada */
  margin: 0 auto;    /* centraliza o container */
  width: 100%;
}

/* Lado esquerdo */
.conteudo-entrada-email h1 {
  font-size: 3.1rem;
  margin: 0 0 0 -3rem;
}

/* Lado direito */
.conteudo-entrada-email2 input[type="email"] {
  padding: 10px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  width: 15rem;
  margin-left: 15rem;
}

.conteudo-entrada-email2 button[type="submit"] {
  padding: 15px;
  border-radius: 15px;
  background-color: #ffffff;
  font-size: 1.1rem;
  margin-left: 5px;
}

.conteudo-entrada-email2 button[type="submit"]:hover {
  background-color: #d0c6c6;
  transition: background-color 0.3s;  
  cursor: pointer;
  transform: scale(1.03);
} 

/* Active: sensação de clique */
.conteudo-entrada-email2 button[type="submit"]:active {
  transform: scale(0.95); /* leve compressão */
}

/* Checkbox embaixo */
.check-box {
  text-align: center; /* ou left/right se quiser alinhar diferente */
  margin-top: 20px;
  font-size: 1rem;
  margin-left: 59rem;
}

.check-box a {
  color: #25D366;
}

.check-box a:hover {
  color: #4b9365;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rodape {
  background-color: #ffffff;
  margin-left: -30%;
  color: #000000;
  padding: 60px 40px;
  width: 100vw;
  box-sizing: border-box;
  
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr)); /* 6 colunas de tamanhos iguais */
  gap: 20px;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  
}

.footer-col {
  min-width: 100px;
  
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.footer-col a {
  text-decoration: none;
  color: black;
  display: inline-block;
  transition: all 0.2s ease;
} 

.footer-col a:hover {
  color: rgb(48, 58, 201);
  transform: scale(1.05);
}

