
.secao-artigos {
  padding: 3em 0;
}

.grid-artigos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2em; 
}

.card {
  background-color: #f0faff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  padding: 2em 1.5em;
  text-align: center;
  text-decoration: none;
  color: #000;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card img {
  width: 80px; 
  height: auto;
  margin-bottom: 1.5em;
}

.card span {
  font-size: 16px;
  display: block;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #0077cc;
}

.assistencia {
  padding: 6rem 0;
  background-color: #fff;
}

.container-suporte {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2em;
}

.container-suporte .text {
  flex: 1;
  text-align: left;
  max-width: 500px;
}

.container-suporte h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #333;
}

.container-suporte p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #555;
  line-height: 1.6;
}

.botao-suporte {
  display: inline-block;
  background-color: #00579c;
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.botao-suporte:hover {
  background-color: #003f73;
}

.circle {
  width: 280px;
  height: 280px;
  background-color: #004b8e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0; 
}

.circle img {
  max-width: 90%;
  height: auto;
  object-fit: contain;
}

.duvidas-frequentes {
  background-color: #f2fafd;
  padding: 60px 20px;
}

.faq-container-home {
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  font-size: 22px;
  margin-bottom: 40px;
  font-weight: bold;
  color: #333;
}

.faq-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  color: #333;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
  padding: 18px 25px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  font-size: 15px;
  font-weight: 500;
}

.faq-link i {
  font-size: 14px; 
  color: #0077cc;
  transition: transform 0.2s ease;
}

.faq-link:hover {
  background-color: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  color: #0077cc;
  transform: translateY(-2px);
}

.faq-link:hover i {
  transform: translateX(5px); 
}
footer {
  margin-top: 0;
}
/* --- Responsividade Específica da Home --- */
@media (max-width: 900px) {
  .grid-artigos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .assistencia {
    padding: 4rem 0;
  }

  .container-suporte {
    flex-direction: column-reverse; 
    text-align: center;
    gap: 2rem;
  }

  .container-suporte .text {
    text-align: center;
    margin: 0 auto;
  }

  .circle {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 600px) {
  .grid-artigos {
    grid-template-columns: 1fr; 
  }

  .faq-link {
    padding: 15px;
    font-size: 14px;
  }
}