body {
  margin: 0;
  padding: 0;
  background-color: #1a1a1a;
  font-family: 'Urbanist', sans-serif;
}

*{
box-sizing: border-box;
}
.apostila-venda {
  background-color: #1a1a1a;
  color: white;
  padding: 80px 40px;
  width: 100%;
}

.topo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.topo img {
  width: 35px;
  height: auto;
}

.topo span {
  color: white;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
}

.apostila-venda .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.apostila-venda .left img {
  max-width: 360px;
  width: 100%;
  border-radius: 8px;
}

.apostila-venda .right {
  flex: 1;
  min-width: 300px;
}

.apostila-venda h1 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.4;
}

.apostila-venda .destaque {
  color: #c4ff00;
}

.apostila-venda h2 {
  color: #c4ff00;
  font-size: 20px;
  font-weight: 500;
  margin: 20px 0 16px;
}

.apostila-venda p {
  font-size: 18px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 30px;
}

.btn-comprar {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #c4ff00;
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 16px;
  width: fit-content;
}

.btn-comprar:hover {
  background-color: #c4ff00;
  color: #000;
}

/* === RODAPÉ === */

.rodape-personalizado {
  background-color: #141414;
  color: #ccc;
  padding: 60px 20px 30px;
  font-family: 'Urbanist', sans-serif;
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-title {
  font-weight: bold;
  color: white;
  font-size: 16px;
  letter-spacing: 1px;
}

.logo-icon {
  width: 70px;
  border-radius: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  width: 100%;
}

.footer-links h4 {
  color: #c4ff00;
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  position: relative;
  color: #ccc;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #c4ff00;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #c4ff00;
}

.footer-links a:hover::after {
  width: 100%;
}

.telefone, .email {
  font-size: 13px;
  margin: 4px 0;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.social-icons img {
  width: 22px;
  height: 22px;
  transition: transform 0.3s;
}

.social-icons img:hover {
  transform: scale(1.2);
}

.footer-bottom {
  margin-top: 30px;
  text-align: center;
  font-size: 13px;
}

.footer-bottom a {
  color: white;
  text-decoration: none !important;
  font-weight: bold;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-bottom a:hover {
  color: #c4ff00;
  transform: scale(1.2);
}





/* Responsividade para telas menores */
@media (max-width: 1024px) {
  .apostila-venda .container {
    flex-direction: column;
    padding: 20px;
  }

  .apostila-venda .left img {
    max-width: 100%;
  }

  .apostila-venda h1 {
    font-size: 24px;
    text-align: center;
  }

  .apostila-venda h2 {
    font-size: 18px;
    text-align: center;
  }

  .apostila-venda p {
    font-size: 16px;
    text-align: center;
  }

  .btn-comprar {
    display: block;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .topo {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .topo img {
    width: 30px;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer-links div {
    text-align: center;
  }

  .footer-bottom {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .apostila-venda {
    padding: 40px 20px;
  }

  .apostila-venda h1 {
    font-size: 20px;
  }

  .apostila-venda h2 {
    font-size: 16px;
  }

  .apostila-venda p {
    font-size: 14px;
  }

.btn-comprar {
  margin: 0 auto;
}



  .logo-icon {
    width: 50px;
  }

  .footer-title {
    font-size: 14px;
  }
}
