/* Estilos específicos para a página de comparação Yellow Tokens vs Social Listening Tools */

/* ===== LAYOUT PRINCIPAL ===== */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  background: #fff;
}

/* Hero Header */
main>header {
  text-align: center;
  padding: 60px 0 40px;
  background: linear-gradient(135deg, rgba(50, 58, 204, 0.05) 0%, rgba(255, 255, 0, 0.05) 100%);
  border-radius: 24px;
  margin-bottom: 60px;
  border: 1px solid rgba(50, 58, 204, 0.1);
}

main>header h1 {
  font-family: "Dosis", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--brand-blue);
  margin-bottom: 20px;
  line-height: 1.2;
  padding: 0 20px;
}

.subtitle {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--ink-700);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
  padding: 0 20px;
}

.subtitle a {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid var(--brand-yellow);
  transition: all 0.2s ease;
}

.subtitle a:hover {
  color: var(--brand-blue-hero);
  border-bottom-color: var(--brand-blue);
}

/* Seções de conteúdo */
section {
  margin-bottom: 80px;
  padding: 0 10px;
}

section h2 {
  font-family: "Dosis", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--brand-blue);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--brand-yellow);
  position: relative;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100px;
  height: 3px;
  background: var(--brand-blue);
}

section p {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink-700);
  margin-bottom: 24px;
}

section strong {
  color: var(--brand-blue);
  font-weight: 600;
}

section em {
  font-style: italic;
  color: var(--ink-900);
}

/* Listas */
section ul {
  list-style: none;
  padding-left: 0;
  margin: 30px 0;
}

section li {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--ink-700);
  margin-bottom: 16px;
  padding-left: 36px;
  position: relative;
}

section li::before {
  content: "•";
  color: var(--brand-yellow);
  font-size: 24px;
  position: absolute;
  left: 0;
  top: -4px;
}

section li a {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(50, 58, 204, 0.2);
  transition: all 0.2s ease;
}

section li a:hover {
  color: var(--brand-blue-hero);
  border-bottom-color: var(--brand-blue);
}

/* Tabela de comparação */
#comparison {
  background: var(--bg-light);
  border-radius: 20px;
  padding: 40px 30px;
  margin: 60px 0;
  border: 1px solid rgba(50, 58, 204, 0.1);
}

#comparison h2 {
  text-align: center;
  border: none;
  padding-bottom: 0;
}

#comparison h2::after {
  display: none;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 40px 0;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

thead {
  background: var(--brand-blue);
}

thead th {
  font-family: "Dosis", sans-serif;
  font-size: 1.25rem;
  color: var(--brand-yellow);
  padding: 24px 32px;
  text-align: center;
  font-weight: 600;
}

thead th:first-child {
  border-right: 1px solid rgba(255, 255, 0, 0.2);
}

tbody tr {
  transition: all 0.2s ease;
}

tbody tr:nth-child(even) {
  background: rgba(247, 248, 255, 0.5);
}

tbody tr:hover {
  background: rgba(50, 58, 204, 0.05);
}

tbody td {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--ink-700);
  padding: 24px 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  vertical-align: top;
}

tbody td:first-child {
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  font-weight: 500;
  color: var(--ink-900);
}

tbody td:last-child {
  color: var(--brand-blue);
  font-weight: 600;
}

tbody td a {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(50, 58, 204, 0.2);
  transition: all 0.2s ease;
}

tbody td a:hover {
  color: var(--brand-blue-hero);
  border-bottom-color: var(--brand-blue);
}

/* Seção de benefícios */
#benefits {
  background: linear-gradient(135deg, rgba(255, 255, 0, 0.05) 0%, rgba(50, 58, 204, 0.05) 100%);
  border-radius: 20px;
  padding: 50px 40px;
  border: 1px solid rgba(50, 58, 204, 0.1);
}

#benefits h2 {
  color: var(--brand-blue);
  text-align: center;
  border: none;
  padding-bottom: 0;
}

#benefits h2::after {
  left: 50%;
  transform: translateX(-50%);
}

#benefits ul {
  max-width: 800px;
  margin: 40px auto;
}

/* Seção de prova */
#proof {
  text-align: center;
  padding: 40px;
  background: var(--brand-blue);
  border-radius: 20px;
  color: white;
}

#proof p {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 0;
}

#proof a {
  color: var(--brand-yellow);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid var(--brand-yellow);
  transition: all 0.2s ease;
}

#proof a:hover {
  color: white;
  border-bottom-color: white;
}

/* CTA Section */
/* CTA Section */
#cta {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-hero) 100%);
  border-radius: 24px;
  color: white;
  margin-top: 80px;
}

#cta p {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 40px;
  /* Aumentei a margem inferior para dar mais espaço */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background: var(--brand-yellow);
  color: var(--brand-blue);
  font-family: "Dosis", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 18px 48px;
  border-radius: 50px;
  text-decoration: none;
  border: 3px solid var(--brand-yellow);
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  margin-top: 20px;
  /* Adicionei margem superior para separar do texto */
}

.cta-button:hover {
  background: transparent;
  color: var(--brand-yellow);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

/* Responsividade */
@media (max-width: 768px) {
  main {
    padding: 20px 15px 60px;
  }

  main>header {
    padding: 40px 20px;
    margin-bottom: 40px;
  }

  section {
    margin-bottom: 60px;
    padding: 0;
  }

  section h2 {
    font-size: 1.75rem;
  }

  section p,
  section li {
    font-size: 1.0625rem;
  }

  #comparison,
  #benefits,
  #proof,
  #cta {
    padding: 30px 20px;
    margin-left: -10px;
    margin-right: -10px;
    border-radius: 0;
    width: calc(100% + 20px);
  }

  table {
    display: block;
    overflow-x: auto;
  }

  thead th,
  tbody td {
    padding: 18px 20px;
    font-size: 1rem;
  }

  #cta p {
    font-size: 1.25rem;
  }

  .cta-button {
    padding: 16px 32px;
    font-size: 1.125rem;
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  main>header h1 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1.125rem;
  }

  section h2 {
    font-size: 1.5rem;
  }

  thead th {
    font-size: 1.125rem;
    padding: 16px 12px;
  }

  tbody td {
    padding: 16px 12px;
    font-size: 1rem;
  }

  #cta {
    padding: 40px 20px;
  }

  #cta p {
    font-size: 1.125rem;
  }
}

/* Animações suaves */
section,
table,
.cta-button {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}





/* ===== SEÇÃO DE DESTAQUE (Summary difference) ===== */
/* ===== SEÇÃO DE DESTAQUE (Summary difference) ===== */
#category-insight.highlight {
  background: linear-gradient(135deg,
      rgba(50, 58, 204, 0.05) 0%,
      rgba(255, 255, 0, 0.08) 100%);
  border-radius: 20px;
  padding: 40px 30px;
  margin: 60px 0;
  border-left: 4px solid var(--brand-yellow);
  border-right: 1px solid rgba(50, 58, 204, 0.1);
  border-top: 1px solid rgba(50, 58, 204, 0.1);
  border-bottom: 1px solid rgba(50, 58, 204, 0.1);
  text-align: center;
  position: relative;
}

#category-insight .insight {
  font-family: "Dosis", sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.875rem);
  line-height: 1.4;
  color: var(--brand-blue);
  max-width: 900px;
  margin: 0 auto;
}

#category-insight .insight p {
  margin: 0;
}

#category-insight .insight p:first-child {
  margin-bottom: 15px;
  color: var(--ink-900);
}

#category-insight .insight p:last-child {
  color: var(--brand-blue);
}

#category-insight .insight p:first-child::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--brand-yellow);
  margin: 12px auto 0;
  border-radius: 2px;
  opacity: 0.7;
}

/* Efeito hover mais suave */
#category-insight.highlight:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(50, 58, 204, 0.08);
  background: linear-gradient(135deg,
      rgba(50, 58, 204, 0.07) 0%,
      rgba(255, 255, 0, 0.1) 100%);
}

#category-insight.highlight {
  transition: all 0.3s ease;
}

.cta-secondary a {
  color: var(--brand-yellow);
}

/* Responsividade */
@media (max-width: 768px) {
  #category-insight.highlight {
    padding: 30px 20px;
    margin: 50px -10px;
    width: calc(100% + 20px);
    border-radius: 0;
    border-left: 3px solid var(--brand-yellow);
    border-right: none;
  }

  #category-insight .insight {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  #category-insight.highlight {
    padding: 25px 15px;
  }

  #category-insight .insight {
    font-size: 1.15rem;
  }

  #category-insight .insight p:first-child::after {
    width: 60px;
    margin: 10px auto 0;
  }
}







.feature-faq {
  background: white;
  padding: 80px 0;
}

.feature-faq .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.feature-faq h2 {
  color: var(--brand-blue);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.feature-faq h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: #FFAA00;
  border-radius: 2px;
}

.feature-faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-faq details {
  border: 1px solid #EEF0FF;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 26px rgba(0, 0, 0, .08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.feature-faq details:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
  border-color: #D0D4FF;
}

.feature-faq details[open] {
  border-color: var(--brand-blue);
}

.feature-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 60px 20px 20px;
  font-family: "Dosis", sans-serif;
  font-weight: 600;
  color: var(--brand-blue);
  font-size: 18px;
  position: relative;
  line-height: 1.4;
  transition: all 0.2s ease;
}

.feature-faq summary:hover {
  background-color: rgba(247, 248, 255, 0.5);
}

.feature-faq summary::-webkit-details-marker {
  display: none;
}

.feature-faq summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Dosis", sans-serif;
  font-weight: 700;
  color: var(--brand-blue);
  font-size: 24px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 248, 255, 0.8);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.feature-faq details[open] summary::after {
  content: "–";
  background: var(--brand-blue);
  color: white;
}

.feature-faq details p {
  padding: 0 20px 20px 20px;
  color: var(--ink-700);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.feature-faq details a {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
  padding-bottom: 2px;
}

.feature-faq details a:hover {
  color: var(--brand-blue-hero);
  border-bottom-color: #FFAA00;
}