* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
}

body {
  background-color: #000;
}

header {
  padding: 36px;
  background-color: #4b0082;
  border-bottom: 5px solid #ffd700;
}

.container-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.container-nav img {
  width: 50px;
  position: absolute;
  left: -4px;
  top: -5px;
}

.container-nav h1 {
  color: #fff;
  margin-left: 50px;
}

.nav-link {
  display: flex;
  list-style: none;
}

.nav-link li a {
  padding: 5px;
  background-color: #460b71;
  border-bottom: 2px solid #2b0149;
  border-radius: 8px;
}

.nav-link li a:hover {
  background-color: #4b1770;
  border-bottom: 2px solid #2e1242;
  border-radius: 8px;
}

.nav-link-item {
  margin-right: 26px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  
}

.nav-link-item:hover {
  color: #ffd700;
}

.sobre .container img {
  width: 50%;
}

.sobre .container {
  display: flex;
  background-color: #000;
  border-bottom: 5px solid #ffd700;
}

.sobre .container h2 {
  text-align: center;
  color:  #fff;
  margin-top: 50px;
}

.sobre .container p {
  text-align: center;
  color: #fff;
  padding: 30px;
  margin-left: 50px;
  margin-right: 50px;
}

.social-icon {
  color: #fff;
  text-align: center;
  font-size: 2em;
}

.social-icon-link {
  margin-left: 20px;
  cursor: pointer;
}

.social-icon-link:hover {
  color: #ffd700;
  scale: calc(1.2);
}

.planos .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 150px;
  color: #fff;
  background-color: #000;
}

.card-planos {
  display: flex;
  flex-direction: column;
  border: 2px solid #fff;
  padding: 26px;
  width: 200px;
  justify-content: flex-end;
  border-radius: 15px;
  margin-bottom: 50px;
}
.card-planos h3 {
  text-align: center;
  border-bottom: 2px solid #ffd700;
}

.card-planos p {
  text-align: center;
  font-size: 0.9em;
  margin-top: 18px;
}

.card-planos span {
  margin-top: 10px;
  text-align: center;
  font-size: 2em;
  font-weight: bold;
}

.price {
  font-weight: bold;
}

.destaque {
  color: #ffd700;
  text-decoration: underline;
}

.btn-card {
  width: 100%;
  padding: 5px;
  margin-top: 20px;
  background-color: #ffd700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  font-size: 1em;
}

.btn-card:hover {
  background-color: #e4d57e;
}

.img-card {
  margin-bottom: 100px;
}

.img-card img {
  width: 200px;
  margin-left: 50px;
  margin-right: 50px;
  border-radius: 50%;
}

.img-card h2 {
  text-align: center;
  margin-bottom: 30px;
}

.img-card p {
  text-align: center;
  margin-top: 10px;
  font-style: italic;
}

.recomend h3 {
  border-bottom: 2px solid #ffd700;
  color: #ffd700;
}

.recomend span {
  font-size: 3em;
  color: #ffd700;
}

.assine .container {
  display: flex;
  align-items: center;
  background-color: #ffd700;
  height: 150px;
  margin-top: 100px;
}

.content h2 {
  font-size: 2em;
  margin-left: 30px;
}

.content p {
  font-size: 1.25em;
  margin-left: 30px;
}

.content-p {
  font-size: 1.5em;
  display: flex;
  align-items: center;
}

.icon-whats {
  margin-left: 40px;
  font-size: 2em;
  color: #008000;
}

.linha {
  height: 100px;
  border-right: 3px solid rgb(0, 0, 0);
  margin-right: 20px;
  margin-left: 20px;
}

.row {
  display: none;
}

form {
  flex-grow: 1;
}

form, input, button {
  padding: 20px;
  margin-left: 10px;
  border-radius: 10px;
}

input {
  font-size: 0,9em;
}

form button {
  background-color: #ff9900;
  border: 1px solid #ff9900;
  cursor: pointer;
}

form button:hover {
  background-color: #feaf38;
}

.faq {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}

.faq-title {
  font-size: 2em;
  margin-top: 100px;
  margin-bottom: 40px;
}

.container-faq {
  max-width: 1280px;
  width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
}

.container-faq button {
  background-color: #ffd700;
  width: 100%;
  border-radius: 0;
  border: none;
  border-bottom: 5px solid #4b0082;
  margin-bottom: 30px;
}

.painel {
  display: none;
  background-color: transparent;
  overflow: hidden;
  padding-bottom: 20px;
  text-align: center;
  color: #fff;
}

.accordion {
  font-size: 1em;
  font-weight: bold;
  text-align: left;
  position: relative;
}

.accordion::after {
  content: ">";
  position: absolute;
  top: 15px;
  right: 30px;
  color: #000;
  font-size: 1.5em;
}

.accordion.active::after {
  content: '↕';
  top: 8px;
  font-size: 2em;
  font-weight: bold;
}

.contato {
  margin-top: 150px;
  color: #000;
  background-color: #ffd700
}

.contato .container {
  padding-bottom: 50px;
}

section.contato {
  border-top: 5px solid #4b0082
}

.contato h2 {
  margin-left: 40px;
  padding-top: 16px;
}

label {
  color: #000;
  font-weight: bold;
}

form.container {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

input, textarea {
  border: none;
}

input:focus {
  background-color: #faeda7;
}

textarea {
  resize: none;
  border-radius: 5px;
}

textarea:focus {
  background-color: #faeda7;
}

hr {
  border: 1px solid #000;
}

footer {
  padding: 10px;
  background-color: #4b0082;
  color: #fff;
}

footer, h4, h5, p {
  text-align: center;
  margin-bottom: 10px;
}

footer p {
  font-size: 0.7em;
}

.social-icon-footer {
  color: #fff;
  text-align: center;
  font-size: 1.5em;
}

.social-icon-footer-link {
  cursor: pointer;
}

.social-icon-footer-link:hover {
  color: #ffd700;
  scale: calc(1.2);
}

@media (max-width: 767px) {
  .container-nav {
    flex-direction: column;
}

.container-nav img {
  width: 50px;
  position: absolute;
  left: 50px;
  top: -7px;
}

.container-nav h1 {
  text-align: center;
  margin-bottom: 15px;
}

.nav-link {
  flex-direction: column;
  width: 100%;
  height: 100px;
  text-align: center;
}

.nav-link li {
  margin-left: 40px;
  margin-bottom: 14px;
}

.sobre .container {
  flex-direction: column;
}

.sobre .container img {
  width: 100%;
}

.social-icon {
  margin-bottom: 20px;
}

.planos .container {
  flex-direction: column;
}

.assine .container {
  height: 340px;
  flex-direction: column;
}

.content, h2 p {
  margin-right: 40px;
}

.form input {
  margin-bottom: 10px;
}

.row {
  display: flex;
  width: 90%;
  margin-top: 8px;
  margin-bottom: 8px;
}

.content-p p {
  margin-left: 18px;
}

.icon-whats {
  margin-right: 40px;
}

.linha {
  display: none;
}

.container-faq {
  width: 90%;
}

.contato .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

textarea {
  width: 100%;
}

}

@media (min-width: 767px) and (max-width: 768px) {
  .planos .container {
    flex-direction: column;
  }

  .sobre .container {
    flex-direction: column;
  }

  .sobre .container img {
    width: 100%;
  }

  .social-icon {
    margin-bottom: 20px;
  }

  .form input, 
  .form button {
    padding: 10px;
    margin-bottom: 10px;
  }

  form.container {
    flex-direction: column;
    gap: 20px;
  }

  form.container,
  textarea {
    margin-left: 40px;
  }

  form.containe, h2{
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .sobre .container {
    flex-direction: column;
  }
  .sobre .container img {
    width:  100%;
  }

  .social-icon {
    margin-bottom: 20px;
  } 

  .planos .container{
    justify-content: space-around;
  }
  .img-card {
    display: none;
  }
  form.container {
    flex-direction: column;
    gap: 10px;
  }
  form.containe, h2 {
    text-align: center;
  }

  form.container,
  textarea {
    margin-left: 30px;
  }
}