/* For future custom styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

body {
  font-family: 'Inter', sans-serif;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
}

.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1rem;
  font-family: 'Inter', sans-serif;
}

.faq-title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #000000;
  /* Cor da sua logo */
}

.faq-subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 2rem;
}

.accordion-item {
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  background: #f9f9f9;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.accordion-toggle {
  background: #fff;
  width: 100%;
  padding: 1rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  border: none;
  outline: none;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.accordion-toggle:hover {
  background-color: #f0f0f0;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  background: #fff;
  border-top: 1px solid #eee;
  transition: all 0.4s ease;
  will-change: max-height;
  /* Otimiza a animação */
}

.accordion-content.open {
  padding: 1rem 1.5rem;
  overflow: visible;
  /* Permite que todo o conteúdo seja visível */
}

/* Garanta que as listas tenham espaço suficiente */
.accordion-content ul {
  padding-left: 1.5rem;
  margin: 0.5rem 0;
  list-style-type: disc;
  /* Adiciona marcadores de lista */
}

.accordion-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  /* Espaçamento maior entre linhas */
  padding-right: 1rem;
  /* Espaço à direita para evitar cortes */
}

/* Seta animada */
.accordion-toggle .arrow {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  border-right: 2px solid #1B2B52;
  border-bottom: 2px solid #1B2B52;
  transition: transform 0.3s ease;
}

.accordion-toggle.open .arrow {
  transform: translateY(-50%) rotate(135deg);
}

.section-bg {
  background-color: #f9f9f9;
}

.section-padding {
  padding: 60px 20px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #000000;
  font-weight: 700;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.diferencial-item {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.diferencial-item:hover {
  transform: translateY(-5px);
}

.diferencial-item i {
  font-size: 48px;
  color: #0077FF;
  margin-bottom: 15px;
}

.diferencial-item h3 {
  font-size: 20px;
  color: #0A2540;
  margin-bottom: 10px;
}

.diferencial-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

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

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 15px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  color: #0A2540;
}

.faq-answer {
  padding: 0 15px 15px;
  display: none;
  color: #333;
}

html {
  scroll-behavior: smooth;
}

/* Estilo para a seção Sobre Nós */
#about h2 {
  color: #0A2540;
  font-weight: 700;
}

#about p {
  color: #444;
  font-size: 1.125rem;
  /* 18px */
  line-height: 1.8;
}

.portfolio-highlight {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-5px);
}

.portfolio-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0A2540;
}

.card-description {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1.2rem;
  line-height: 1.5;
  flex-grow: 1;
}

.read-more {
  font-weight: 500;
  font-size: 0.95rem;
  color: #0077FF;
  text-decoration: none;
  transition: color 0.2s ease;
}

.read-more:hover {
  color: #005fcc;
}

.see-more-wrapper {
  text-align: center;
  margin-top: 40px;
}

.see-more-button {
  background: none;
  border: none;
  color: #0077FF;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: underline;
}

.modal-content {
  transition: all 0.3s ease;
  transform: scale(0.95);
  opacity: 0;
}

.modal-content.scale-100 {
  transform: scale(1);
  opacity: 1;
}

.see-more-button {
  background-color: #3B82F6;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: background 0.3s ease;
  text-decoration: none;
  /* remove sublinhado */
  display: inline-block;
}

.see-more-button:hover {
  background-color: #2563EB;
}