@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #ffffff;
}


/* barra de navegação */
 .navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 30px 30px;
    background-color: #ffffff;
    color: #0B4E9A;
    border-bottom: solid 10px #064081;
    
  }

  .navbar-left{
    display: flex;
  }

  .navbar-center{
    text-align: center;
    display: flex;
    flex-direction: column;
  }
  
  .navbar-center h1 {
    margin: 0;
    font-size: 1.7rem;
    font-weight: 800;
  }
  .navbar-center p {
    color: #333333;
    margin: 0;
    font-size: 20px;
  }
  
  .navbar-right .contact-link {
    color: #0B4E9A;
    text-decoration: none;
    font-size: 1em;
  }
  
  .navbar-right .contact-link:hover {
    text-decoration: underline;
  }

  .navbar img{
    width: 17rem;
    height: auto;
  }

  .navbar-right p{
    font-size: 1.3rem;
    margin: 4px;
  }

  /* Section 1 */

  .faq-section {
  max-width: 900px;
  margin: 50px auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.faq-section h1 {
  font-size: 28px;
  color: #064081;
  margin-bottom: 20px;
  text-align: center;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-question {
  background-color: #f7f7f7;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
  text-align: center;
}

.faq-question:hover {
  background-color: #e0e0e0;
}

.faq-answer {
  display: none;
  padding: 15px 20px;
  background-color: #fff;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

  /* Section 2 */

  .pricing-section {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

.pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}

.pricing-image img {
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
}

.pricing-plan {
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-radius: 8px;
  margin: 10px;
  padding: 20px;
  flex: 1 1 250px;
  max-width: 300px;
}

.pricing-plan h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.old-price {
  text-decoration: line-through;
  color: #c00;
  font-size: 0.9em;
}

.price {
  font-size: 2.2em;
  color: #333;
  margin: 10px 0;
}

.price span {
  font-size: 0.6em;
}

.pricing-plan button {
  background-color: orange;
  border: none;
  padding: 10px 20px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  margin-bottom: 15px;
}

.pricing-plan ul {
  text-align: left;
  padding: 0;
  list-style: none;
}

.pricing-plan li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.check {
  color: green;
  margin-right: 5px;
  font-weight: bold;
}

.cross {
  color: red;
  margin-right: 5px;
  font-weight: bold;
}

@media (max-width: 768px) {
    .navbar {
    flex-direction: column;
}

.navbar-center h1 {
    font-size: 1.5rem;
}
  .pricing-container {
    flex-direction: column;
    align-items: center;
  }

  .pricing-plan {
    max-width: 90%;
  }

  .pricing-image img {
    margin: auto;
  }
}

footer {
    background-color: #064081;
    text-align: center;
    padding: 50px;
    font-size: 18px;
    color: #ffffff;
}