.produto-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 2rem auto;
}
.produto-container {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border: 1px solid rgba(26, 54, 93, 0.05);
}
.produto-imagem {
  flex: 0 0 300px;
  height: auto;
  align-self: stretch;
}
.produto-texto {
  flex: 1;
}
@media (max-width: 900px) {
  .produto-container {
    flex-direction: column;
    padding: 1.2rem;
    gap: 1.2rem;
  }
  .produto-imagem {
    flex: none;
    height: 200px;
  }
}

.faq-section {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 2.5rem auto;
  background: #f5f7fa;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-sizing: border-box;
  box-shadow: 0 4px 24px rgba(26,54,93,0.10);
}
.faq-title {
  color: #1A365D;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}
.faq-item {
  margin-bottom: 1.2rem;
  border-bottom: 1px solid #e0e0e0;
  background: none;
}
.faq-question {
  color: #1A365D;
  font-weight: bold;
  font-size: 1.08rem;
  cursor: pointer;
  padding: 1rem 0;
  transition: background 0.2s, color 0.2s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  background: none;
  border-radius: 8px;
}
.faq-question:hover {
  background: #e6ecf5;
  color: #163056;
}
.faq-arrow {
  margin-left: 1rem;
  font-size: 1.2rem;
  transition: transform 0.3s;
  color: #C8A977;
}
.faq-answer {
  color: #1A365D;
  background: none;
  font-weight: 400;
  font-size: 1rem;
  text-align: justify;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
  padding: 0 0;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0.7rem 0 1.2rem 0;
}
.faq-item .faq-arrow {
  transform: rotate(0deg);
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.banner-whatsapp {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 2.5rem auto;
  background: #1A365D;
  border-radius: 16px;
  padding: 2.2rem 1.5rem 2.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.banner-whatsapp-text {
  color: #fff;
  font-size: 1.45rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
}
.banner-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  padding: 0.9rem 2.2rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(26,54,93,0.10);
}
.banner-whatsapp-btn:hover {
  background: #128C7E;
}
.banner-whatsapp-btn svg {
  margin-right: 10px;
}
.banner-whatsapp-modal-bg {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(26,54,93,0.45);
  align-items: center;
  justify-content: center;
}
.banner-whatsapp-modal-bg.active {
  display: flex;
}
.banner-whatsapp-modal {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  box-shadow: 0 4px 24px rgba(26,54,93,0.18);
  max-width: 95vw;
  width: 350px;
  text-align: center;
}
.banner-whatsapp-modal label {
  color: #1A365D;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: block;
}
.banner-whatsapp-modal input {
  width: 100%;
  padding: 0.7rem;
  border-radius: 8px;
  border: 1px solid #C8A977;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}
.banner-whatsapp-modal .modal-btn {
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.banner-whatsapp-modal .modal-btn:hover {
  background: #128C7E;
}
.banner-whatsapp-modal .modal-cancel {
  background: #e0e0e0;
  color: #1A365D;
  margin-left: 0.7rem;
}
