body {
  font-family: "Montserrat", Arial, sans-serif;
  margin: 0;
  background: #111;
  color: #fff;
}
.navbar {
  background: #181818;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 100;
  height: 80px;
}
.navbar-logo {
  font-weight: bold;
  font-size: 1.7rem;
  color: #323aa8;
  padding: 18px 0;
  letter-spacing: 1px;
}
.navbar-links {
  display: flex;
  gap: 32px;
}
.navbar-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.15rem;
  transition: color 0.2s;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}
.navbar-links a:hover {
  color: #323aa8;
  border-bottom: 2px solid #323aa8;
}
.navbar-links a#faca-parte-link {
  background: #323aa8;
  color: #fff;
  border-radius: 22px;
  padding: 10px 28px;
  font-weight: bold;
  font-size: 1.13rem;
  margin-left: 18px;
  box-shadow: 0 2px 12px rgba(50, 58, 168, 0.18);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
  outline: none;
  position: relative;
  animation: attention-pop 1.2s infinite alternate
    cubic-bezier(0.5, 1.8, 0.5, 1);
}
.navbar-links a#faca-parte-link:hover {
  background: #23287a;
  color: #ffdf6b;
  box-shadow: 0 6px 24px rgba(50, 58, 168, 0.28);
  transform: scale(1.06);
}
@keyframes attention-pop {
  0% {
    transform: scale(1) perspective(200px) translateZ(0px);
    box-shadow: 0 2px 12px rgba(50, 58, 168, 0.18);
  }
  100% {
    transform: scale(1.03) perspective(200px) translateZ(24px);
    box-shadow: 0 12px 32px 0 rgba(50, 58, 168, 0.28);
  }
}
.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #181818 60%, #323aa8 100%);
  padding: 0 16px;
  gap: 64px;
  margin-top: 80px;
}
.hero-text {
  max-width: 520px;
}
.hero-title {
  font-size: 3.2rem;
  color: #fff;
  margin-bottom: 22px;
  font-weight: 800;
  letter-spacing: 1px;
}
.hero-desc {
  font-size: 1.3rem;
  color: #d1d1ff;
  margin-bottom: 32px;
}
.hero-btn {
  background: #323aa8;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 16px 44px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(50, 58, 168, 0.12);
}
.hero-btn:hover {
  background: #23287a;
}
.hero-img {
  max-width: 400px;
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 2px 24px rgba(50, 58, 168, 0.18);
}
.section {
  max-width: 1100px;
  margin: 56px auto 0 auto;
  padding: 0 16px;
}
.section-title {
  font-size: 2rem;
  color: #323aa8;
  margin-bottom: 18px;
  font-weight: 700;
  text-align: center;
}
.como-funciona {
  background: #181818;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(50, 58, 168, 0.1);
  padding: 32px 24px;
  margin-bottom: 32px;
}
.como-funciona-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.como-funciona-list li {
  background: #23287a;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(50, 58, 168, 0.1);
  color: #fff;
  font-size: 1.12rem;
  padding: 24px 18px 18px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  min-height: 80px;
  transition: transform 0.15s;
}
.como-funciona-list li:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 6px 18px rgba(50, 58, 168, 0.18);
}
.como-funciona-list li::before {
  content: attr(data-icon);
  font-size: 1.7rem;
  margin-right: 10px;
  color: #ffdf6b;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .como-funciona-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .como-funciona-list {
    grid-template-columns: 1fr;
  }
}
.faq {
  background: #181818;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(50, 58, 168, 0.1);
  padding: 32px 24px;
  margin-bottom: 32px;
}
.faq-item {
  border-bottom: 1px solid #23287a;
}
.faq-question {
  cursor: pointer;
  padding: 16px 0;
  font-weight: 600;
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: #d1d1ff;
  font-size: 1rem;
  padding-left: 8px;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 16px;
}
.faq-item:last-child {
  border-bottom: none;
}
.relatos-section {
  background: #181818;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(50, 58, 168, 0.1);
  padding: 32px 24px 48px 24px;
  margin-bottom: 32px;
  position: relative;
}
.relatos-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  min-height: 260px;
}
.relato {
  min-width: 320px;
  max-width: 380px;
  margin: 0 18px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, #23287a 60%, #323aa8 100%);
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(50, 58, 168, 0.18), 0 1.5px 8px rgba(0, 0, 0, 0.1);
  padding: 38px 32px 28px 32px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1.5px solid #323aa8;
}
.relato.active {
  opacity: 1;
  position: relative;
  transform: scale(1.04);
  z-index: 2;
}
.relato-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 3px solid #ffdf6b;
  box-shadow: 0 2px 12px rgba(255, 223, 107, 0.12);
}
.relato-nome {
  font-weight: bold;
  color: #ffdf6b;
  margin-bottom: 8px;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
}
.relato-texto {
  color: #fff;
  font-size: 1.13rem;
  margin-bottom: 0;
  font-style: italic;
  line-height: 1.5;
}
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
}
.carousel-btn {
  background: #ffdf6b;
  color: #23287a;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(50, 58, 168, 0.1);
}
.carousel-btn:hover {
  background: #323aa8;
  color: #ffdf6b;
}
footer {
  background: #181818;
  color: #fff;
  text-align: center;
  padding: 32px 0 16px 0;
  margin-top: 64px;
}
.footer-links {
  margin-bottom: 16px;
}
.footer-links a {
  color: #323aa8;
  margin: 0 12px;
  text-decoration: none;
  font-size: 1.1rem;
}
.footer-links a:hover {
  text-decoration: underline;
}
.modal-faca-parte {
  background: #23232b;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(50, 58, 168, 0.22),
    0 1.5px 8px rgba(0, 0, 0, 0.18);
  padding: 40px 36px 32px 36px;
  width: 60vw;
  max-width: 480px;
  min-width: 300px;
  color: #fff;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  border: 1.5px solid #323aa8;
}
.modal-faca-parte h2 {
  color: #323aa8;
  margin-bottom: 22px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.modal-faca-parte form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-sizing: border-box;
}
.modal-faca-parte label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 6px;
  width: 100%;
  font-size: 1.08rem;
  color: #d1d1ff;
  font-weight: 500;
  letter-spacing: 0.2px;
  box-sizing: border-box;
}
.modal-faca-parte input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 0;
  border: 1.5px solid #323aa8;
  margin-top: 2px;
  margin-bottom: 0;
  font-size: 1.08rem;
  background: #333;
  color: #fff;
  box-sizing: border-box;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
}
.modal-faca-parte input:focus {
  border: 1.5px solid #ffdf6b;
  box-shadow: 0 0 0 2px #323aa8;
}
.modal-faca-parte button[type="submit"] {
  background: #323aa8;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 0;
  font-size: 1.13rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 18px;
  transition: background 0.2s;
  width: 100%;
  box-shadow: 0 2px 8px rgba(50, 58, 168, 0.1);
  letter-spacing: 0.5px;
}
.modal-faca-parte button[type="submit"]:hover {
  background: #23287a;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s;
}
.modal-close:hover {
  color: #ffdf6b;
}
#faca-parte-messages {
  margin-top: 18px;
  color: #ffdf6b;
  font-size: 1.08rem;
  text-align: left;
}
@media (max-width: 600px) {
  .modal-faca-parte {
    width: 95vw;
    padding: 24px 8vw 18px 8vw;
    min-width: unset;
  }
}

#faca-parte-messages {
  margin-top: 16px;
  color: #ffdf6b;
  font-size: 1.05rem;
}
.modal-faca-parte-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-faca-parte button[type="submit"] {
  background: #323aa8;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 32px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.2s;
}
.modal-faca-parte button[type="submit"]:hover {
  background: #23287a;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}
