* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --roxo-principal: #6c3ef4;
  --roxo-claro: #a178ff;
  --fundo: #f5f6fa;
  --texto: #1f2937;
  --branco: #ffffff;
}

body {
  font-family: "Poppins", sans-serif;
  background:#fff;
  color: var(--texto);
  padding: 20px;
  overflow-x: hidden;
}

.header {
  max-width: 1200px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.logo img {
  width: 120px;
  height: auto;
  display: block;
}

.menu {
  display: flex;
  gap: 16px;
}

.menu a {
  text-decoration: none;
  color: var(--roxo-principal);
  background: var(--branco);
  border: 1px solid var(--roxo-claro);
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  transition: 0.2s;
  white-space: nowrap;
}

.menu a:hover {
  transform: translateY(-5px);
  background-color: var(--roxo-principal);
  color: var(--branco);
}

.menu .ativo {
  background: var(--roxo-principal);
  color: var(--branco);
  box-shadow: 0 6px 15px rgba(108, 62, 244, 0.3);
}
.menu a.ativo:hover{
  background-color: var(--branco);
  color: var(--roxo-principal);
}

.secao-principal {
  max-width: 1200px;
  margin: 0 auto;
  background: #ececf1;
  border-radius: 28px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  width: 100%;
}

.conteudo h1 {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 16px;
  font-weight: 800;
}

.linha {
  width: 80px;
  height: 4px;
  background: var(--roxo-principal);
  border-radius: 999px;
  margin-bottom: 24px;
}

.conteudo p {
  font-size: 24px;
  max-width: 470px;
  margin-bottom: 40px;
  line-height: 1.4;
}

.vantagens {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.vantagem {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 180px;
  max-width: 220px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.icone {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(108, 62, 244, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icone img {
  width: 50px;
  height: 50px;
}

.botao {
  border: none;
  background: var(--roxo-principal);
  color: var(--branco);
  padding: 15px 30px 15px 25px;
  border-radius: 18px;
  font-size: 20px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(108, 62, 244, 0.35);
  max-width: 100%;
  text-align: left;
  text-decoration: none;
}

.botao div {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--roxo-principal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.botao img {
  width: 50px;
  height: 50px;
  margin-left: 2px;
}

 a.botao:hover{
  transform: translateY(-2px);
}

.area-imagem {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.imagem-principal {
  width: 100%;
  height: 100%;
  max-width: 400px;
  max-height: 400px;
  aspect-ratio: 1 / 1;
  border: 3px dashed var(--roxo-principal);
  border-radius: 50%;
  background: rgba(161, 120, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.imagem-principal img {
  width: 85%;
  height: auto;
  object-fit: contain;
}

.cartao {
  position: absolute;
  background: var(--branco);
  border-radius: 16px;
  padding: 14px 22px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.cartao img {
  max-width: 120px;
  width: 100%;
  height: auto;
  display: block;
}

.gov {
  top: 10%;
  right: 0%;
}

.inss {
  bottom: 20%;
  left: -5%;
}

@media (max-width: 1024px) {
  .secao-principal {
    padding: 40px;
    gap: 30px;
  }

  .conteudo h1 {
    font-size: 52px;
  }

  .conteudo p {
    font-size: 22px;
  }
}

@media (max-width: 992px) {
  .header {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .menu {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .menu a {
    padding: 10px 20px;
    font-size: 16px;
  }

  .secao-principal {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 24px;
  }

  .linha {
    margin: 0 auto 24px;
  }

  .conteudo p {
    margin-left: auto;
    margin-right: auto;
  }

  .vantagens {
    justify-content: center;
  }

  .botao {
    margin: 0 auto;
  }

  .area-imagem {
    margin-top: 40px;
    max-width: 400px;
    height: 400px;
  }

  .gov {
    top: 5%;
    right: -2%;
  }

  .inss {
    bottom: 15%;
    left: -5%;
  }
}

@media (max-width: 480px) {
  body {
    padding: 12px;
  }

  .header {
    margin-bottom: 20px;
  }

  .menu {
    gap: 10px;
  }

  .menu a {
    padding: 8px 14px;
    font-size: 14px;
    border-radius: 8px;
    flex: 1 1 calc(50% - 10px); 
    text-align: center;
  }

  .secao-principal {
    border-radius: 20px;
    padding: 30px 16px;
  }

  .conteudo h1 {
    font-size: 38px;
  }

  .conteudo p {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .vantagens {
    gap: 16px;
    margin-bottom: 30px;
  }

  .vantagem {
    max-width: 100%;
    flex: 1 1 100%;
    text-align: left;
    background: rgba(255, 255, 255, 0.5);
    padding: 10px;
    border-radius: 12px;
  }

  .botao {
    width: 100%;
    font-size: 18px;
    padding: 8px 16px 8px 8px;
    justify-content: flex-start;
  }

  .area-imagem {
    max-width: 290px;
    height: 290px;
    margin-top: 20px;
  }

  .cartao {
    padding: 10px 16px;
    border-radius: 12px;
  }

  .cartao img {
    max-width: 85px;
  }

  .gov {
    top: 2%;
    right: -4%;
  }

  .inss {
    bottom: 10%;
    left: -8%;
  }
}

@media (max-width: 340px) {
  .conteudo h1 {
    font-size: 32px;
  }

  .menu a {
    flex: 1 1 100%;
  }
}
