/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --branco: #fff; 
  --azul: #2e0c93;
  --botao: linear-gradient(45deg, #131415, #041a6d);
  --deg: linear-gradient(45deg, #040969, #052598);
  --deg2:linear-gradient(45deg, #131415, #041a6d);
  --span: #2e0c93;
  --preto: #000;
  --card: #1c1c1c;
  --cardt: #1e90ff;
  --icon: #333;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--branco); /* fundo geral claro */
  color: #333;
  line-height: 1.6;
}

/* Container padrão */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
}

/* Header preto */
header {
  background-color: var(--preto);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
}

.menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #2e0c93;
}

.btn {
  background: var(--deg2);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

/* Hero preto com imagem */
.hero {
  height: 80vh;
  background-image: url('../img/casasobre.png');
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-color: var(--preto);
}

.hero-text h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.quiz-section {
  text-align: center;
  margin: 40px auto;
  padding: 20px;
}

.quiz-container {
  background: #f4f4f9;
  border-radius: 10px;
  padding: 25px;
  width: 250px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.quiz-title {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.btn-quiz{
  align-items: center;
}

/* Link que envolve o botão */
.btn-quiz {
  text-decoration: none; /* remove sublinhado do link */
}

/* Botão principal */
.quiz-button {
  background: #0077cc;        /* azul principal */
  color: #fff;                /* texto branco */
  border: none;               /* remove borda padrão */
  padding: 12px 30px;         /* espaçamento interno */
  border-radius: 8px;         /* cantos arredondados */
  cursor: pointer;            /* cursor de mão */
  font-size: 16px;            /* tamanho da fonte */
  font-weight: bold;          /* texto em negrito */
  transition: all 0.3s ease;  /* animação suave */
  box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* sombra */
}

/* Efeito ao passar o mouse */
.quiz-button:hover {
  background: #005fa3;        /* azul mais escuro */
  transform: scale(1.05);     /* leve aumento */
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* Efeito ao clicar */
.quiz-button:active {
  background: #004a80;        /* azul ainda mais escuro */
  transform: scale(0.95);     /* leve redução */
}


/* Seções com fundo claro */
section {
  padding: 4rem 0;
  background-color: var(--branco);
  border-bottom: 1px solid #ddd;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #2e0c93;
  text-align: center;
}

/* Sobre */
.sobre p {
  max-width: 800px;
  margin: auto;
  text-align: center;
  color: #444;
}

/* Valores e Parcerias */
.valores ul,
.parcerias ul {
  list-style: none;
  padding-left: 0;
  max-width: 800px;
  margin: auto;
}

.valores li,
.parcerias li {
  margin-bottom: 1rem;
  padding-left: 1rem;
  position: relative;
  color: #333;
}

.valores li::before,
.parcerias li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2e0c93;
}

/* Modelo de Negócio */
.modelo p {
  max-width: 800px;
  margin: auto;
  text-align: center;
  color: #444;
}

/* Contato */
.contato p {
  text-align: center;
  font-size: 1.1rem;
  color: #333;
}

.contato a {
  color: #2e0c93;
  text-decoration: underline;
}

/* Footer com fundo cinza escuro */
footer {
  background-color: var(--preto);
  color: #fff;
  padding: 50px 30px 20px;
}

footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  text-align: left;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

footer h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #fff;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 10px;
}

footer ul li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

footer ul li a:hover {
  color: #2954ee;
}

/* Redes sociais */
.redes-sociais {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.redes-sociais img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.facebook:hover {
  filter: drop-shadow(0 0 6px #3b5998);
  transform: scale(1.1);
}

.twitter:hover {
  filter: drop-shadow(0 0 6px #1da1f2);
  transform: scale(1.1);
}

.instagram:hover {
  filter: drop-shadow(0 0 6px #e1306c);
  transform: scale(1.1);
}

.linkedin:hover {
  filter: drop-shadow(0 0 6px #0077b5);
  transform: scale(1.1);
}

/* Contatos */
.contatos li {
  font-size: 16px;
  margin: 8px 0;
}

.phone-icon,
.email-icon {
  margin-right: 8px;
  font-size: 18px;
  color: #2e0c93;
}

/* Rodapé inferior */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #aaa;
}

