@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  font-family: 'Poppins', sans-serif;
letter-spacing: -0.3pt;
  margin: 0;
  color: #000;
  background: #fff;
}

.page {
    padding-top: 50px;
    padding-left: 200px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    background: #faf6ff;
}


.hero-section {
  background-image: url('hero-bg-novo.png'); /* use sua imagem aqui */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  position: relative;
}


.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
}

.hero-section > * {
  position: relative;
  z-index: 1;
  max-width: 560px;
}


.hero-text {
  flex: 1 1 480px;
}

.hero-text h1 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 20px;
    letter-spacing: -1.5pt;
}
.hero-text span{
    color: #930ee5;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 20px;
}

.form-box {
  background: #dfdfe4;
  border-radius: 16px;
  padding: 30px;
  max-width: 460px;
  flex: 1 1 400px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.form-box h2 {
  font-size: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-group label {
  margin-bottom: 6px;
  font-weight: 500;
}

.form-group input,
.form-group textarea, 
.form-group select {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: 16px;
}

.form-submit {

  background: linear-gradient(135deg, #930ee5, #b437f7);
  box-shadow: 0 8px 16px rgba(147, 14, 229, 0.3);
  transition: transform 0.2s ease;
  color: white;
  border: none;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  margin-top: 10px;
}


.form-submit:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #7e0cc3, #a32cf4);
}


.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #5a189A;
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 500;
  border: 2px solid white; /* <- AQUI ESTÁ A BORDA */
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 2000;
}

.toast.show {
  opacity: 1;
  pointer-events: auto;
}


.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.benefits ul {
  padding: 0;
  list-style: none;
}

.benefits li {
  margin-bottom: 16px;
  font-size: 18px;
  padding-left: 24px;
  position: relative;
}

.benefits li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #930ee5;
  font-weight: bold;
}



.highlights {
  background: #faf6ff;
  padding: 80px 20px;
  text-align: center;
}

.highlights h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #1e1e1e;
}

.highlights .subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.highlight-card {
  background: white;
  border-radius: 20px;
  padding: 30px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.highlight-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.highlight-card img {
  height: 40px;
  margin-bottom: 20px;
}
.highlight-card h2{
    margin-top: -10px;
}

.highlight-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #930ee5;
}

.highlight-card p {
  font-size: 16px;
  color: #333;
}



.trusted-by {
  text-align: center;
    padding-top: 40px;
    padding-bottom: 50px;
}

.trusted-by h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.logo-grid img {
  height: 140px;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.logo-grid img:hover {
  transform: scale(1.1);
  opacity: 1;
}




.padrao {
      text-align: center;
    padding-top: 40px;
    padding-bottom: 50px;
}



.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.4s ease-out, transform 1.2s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}





.site-footer {
  background: linear-gradient(135deg, #7e0cc3, #a32cf4);
  color: white;
  padding: 60px 40px 30px;
  font-family: 'Poppins', sans-serif;
    user-select: none; /* <- impede seleção de texto */
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
}

.footer-column h4 {
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.footer-column a:hover {
color: #b76aff; /* Substitua pela cor desejada para o hover */
  text-decoration: none; /* Remove o sublinhado */
}

.social-icons a {
  margin-right: 12px;
  display: inline-block;
}

.social-icons img {
  height: 20px;
  filter: invert(1);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  font-size: 14px;
  opacity: 0.9;
  padding-top: 20px;
}

.footer-heart {
  color: #ff5e99;
  font-weight: bold;
  transition: text-shadow 0.3s ease;
  cursor: default;
}

.footer-heart:hover {
  text-shadow: 0 0 8px #ffb3cc, 0 0 12px #ff5e99;
}



@media (max-width: 1000px) {
    
      .hero-text h1 {
    font-size: 34px;
          letter-spacing: normal;
  }

  .hero-text p {
    font-size: 16px;
  }
      .form-box {
    max-width: 90%;
    flex: 1 1 100%;
    padding: 24px 20px;
  }
    .page {
    padding-left: 30px;
    }
    
  .hero-section {
    flex-direction: column;
  }
    .hero-text {
        flex: 1 1 auto;
    }
}
