/* Estilos para melhorias de SEO */

/* Estilos para a seção de FAQ */
.faq-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px;
  background-color: #f9f9f9;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.faq-section h2 {
  color: var(--cor-p1);
  font-size: 2.2rem;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.faq-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--cor-s);
  border-radius: 2px;
}

.faq-item {
  margin-bottom: 25px;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 10px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.faq-question {
  padding: 20px 25px;
  background-color: white;
  color: var(--cor-p1);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(0,0,0,0.02);
}

.faq-question::after {
  content: '\25BC';
  font-size: 0.8rem;
  color: var(--cor-p1);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
  background-color: var(--cor-p1);
  color: white;
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
  color: white;
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  background-color: white;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  padding: 20px 25px;
  max-height: 500px;
}

/* Estilos para a seção de contato rápido */
.contato-rapido {
  background: linear-gradient(135deg, var(--cor-p1) 0%, var(--cor-p2) 100%);
  color: white;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  margin: 50px 0;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.contato-rapido h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 600;
}

.contato-rapido p {
  margin-bottom: 25px;
  font-size: 1.1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.contato-rapido .whatsapp {
  display: inline-flex;
  align-items: center;
  background-color: #25D366;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contato-rapido .whatsapp:hover {
  background-color: #128C7E;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.contato-rapido .whatsapp i {
  font-size: 1.5rem;
  margin-right: 10px;
}

/* Melhorias para imagens com lazy loading */
img[loading="lazy"] {
  transition: opacity 0.3s ease;
}

img[loading="lazy"]:not([src]) {
  opacity: 0;
}

/* Estilos para breadcrumbs */
.breadcrumbs {
  display: flex;
  list-style: none;
  padding: 15px 0;
  margin-bottom: 30px;
  font-size: 0.9rem;
  color: #666;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin: 0 10px;
  color: #ccc;
}

.breadcrumbs a {
  color: var(--cor-p1);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: var(--cor-s);
}

/* Responsividade */
@media (max-width: 768px) {
  .faq-section {
    padding: 30px 20px;
    margin: 40px auto;
  }
  
  .faq-section h2 {
    font-size: 1.8rem;
  }
  
  .faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  
  .contato-rapido {
    padding: 30px 20px;
    margin: 30px 0;
  }
  
  .contato-rapido h3 {
    font-size: 1.5rem;
  }
  
  .contato-rapido p {
    font-size: 1rem;
  }
  
  .contato-rapido .whatsapp {
    padding: 12px 25px;
    font-size: 1rem;
  }
}
