:root {
  --primary-color: #ff6b81;
  --secondary-color: #4fb8e7;
  --yellow-color: #ffd15c;
  --navy-color: #1e3d59;
  --white: #ffffff;
  --gray-light: #f5f5f5;
}

.faq-body {
  background: var(--gray-light);
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
}
.faq-container {
  background: var(--white);
  max-width: 1200px;
  margin: 30px auto;
  padding: 32px 24px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.faq-logo-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-top: 50px;
  min-width: 220px;
}
.faq-logo-area img {
  width: 300px;
  margin-bottom: 12px;
  animation: float 3s ease-in-out infinite;
}
.faq-logo-area .faq-brand {
  color: var(--primary-color);
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.faq-logo-area .faq-brand span {
  color: var(--primary-color);
  font-weight: 400;
}
.faq-area {
  flex: 2;
}
.faq-title {
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 24px;
  color: var(--navy-color);
  position: relative;
}
.faq-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  animation: expandWidth 1s ease-out forwards;
}
.faq-list {
  width: 100%;
}
.faq-details {
  background: var(--gray-light);
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 0;
  border: 1px solid rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  animation: slideIn 0.5s ease forwards;
  opacity: 0;
}
.faq-details:nth-child(1) { animation-delay: 0.1s; }
.faq-details:nth-child(2) { animation-delay: 0.2s; }
.faq-details:nth-child(3) { animation-delay: 0.3s; }
.faq-details:nth-child(4) { animation-delay: 0.4s; }
.faq-details:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(255, 107, 129, 0.1);
}
.faq-summary {
  padding: 1.2rem 1.5rem;
  background: transparent;
  cursor: pointer;
  font-weight: 500;
  color: var(--navy-color);
  position: relative;
  list-style: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-summary::before {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  order: 1;
  margin-left: auto;
}
.faq-details[open] .faq-summary {
  color: var(--primary-color);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.faq-details[open] .faq-summary::before {
  transform: rotate(45deg);
}
.faq-summary:hover {
  color: var(--primary-color);
  background: rgba(255, 107, 129, 0.05);
}
.faq-summary.pressed {
  transform: scale(0.98);
}
.faq-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  color: var(--navy-color);
  line-height: 1.6;
}
.faq-details[open] .faq-content {
  padding: 1.5rem;
  max-height: 500px;
  opacity: 1;
}
/* Animações */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
/* Efeito de ripple ao clicar */
.faq-summary {
  position: relative;
  overflow: hidden;
}
.faq-summary::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, var(--primary-color) 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform 0.5s, opacity 1s;
}
.faq-summary:active::after {
  transform: scale(0, 0);
  opacity: 0.3;
  transition: 0s;
}
@media (max-width: 768px) {
  .faq-container {
    flex-direction: column;
    padding: 1rem;
  }
  .faq-logo-area {
    margin-bottom: 2rem;
  }
  .faq-title {
    font-size: 1.5rem;
  }
  .faq-summary {
    padding: 1rem 1.2rem;
  }
  .faq-details[open] .faq-content {
    padding: 1.2rem;
  }
}
