/* ===== ESTILOS ESPECÍFICOS PARA PÁGINA ACTION PLANS ===== */

/* Hero Section - Página de Feature COM VÍDEO E BOTÕES */
.feature-hero {
  background: var(--brand-blue-hero);
  color: white;
  padding: 40px 0 50px;
  /* REDUZIDO de 70px/60px para 40px/50px */
  position: relative;
  overflow: hidden;
}

.feature-hero .container.wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  transition: all 0.3s ease;
}

.hero-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  text-align: left;
  padding-top: 8px;
}

.hero-title {
  font-family: "Dosis", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  /* REDUZIDO de 3.5rem para 2.8rem */
  font-weight: 700;
  line-height: 1.1;
  color: var(--brand-yellow);
  margin-bottom: 1rem;
  /* REDUZIDO de 1.5rem */
}

.hero-title b {
  color: white;
  font-weight: 700;
}

.hero-subtitle.subheadline {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  /* REDUZIDO tamanho */
  line-height: 1.5;
  /* REDUZIDO de 1.6 */
  color: white;
  opacity: 0.9;
  margin: 0 0 1.5rem 0;
  /* REDUZIDO de 2rem */
}

/* Botões do Hero (mesma estrutura da home) */
.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 1.5rem;
  /* REDUZIDO de 2.5rem */
  flex-wrap: wrap;
}

.hero-cta .btn.yellow:hover {
  background: #fdfd6b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 0, 0.3);
}

.hero-cta .btn.ghost {
  background: transparent;
  color: var(--brand-yellow);
  border: 2px solid var(--brand-yellow);
  font-family: "Dosis", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.hero-cta .btn.ghost:hover {
  background: rgba(255, 255, 0, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 0, 0.2);
}

/* Trust Badges */
.trust-badges {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1rem;
  /* REDUZIDO de 1.5rem */
}

.trust-badges p {
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  /* REDUZIDO de 0.95rem */
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.trust-badges p strong {
  color: white;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

/* Vídeo */
.hero-ill.hero-video {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 */
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.video-wrapper:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Resto do CSS permanece igual... */
/* Problems Section */
.feature-problems {
  background: var(--bg-light);
  padding: 80px 0;
}

.feature-problems h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--brand-blue) !important;
}

.problems-list {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
}

.problems-list li {
  font-family: "DM Sans", sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  padding: 1rem 0 1rem 2.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.problems-list li:last-child {
  border-bottom: none;
}

.problems-list li::before {
  content: "•";
  color: var(--brand-blue);
  font-size: 2rem;
  position: absolute;
  left: 0;
  top: 0.8rem;
}

/* Differentials Section */
.feature-differentials {
  padding: 80px 0;
  background: white;
}

.feature-differentials h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--brand-blue) !important;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.diff-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--brand-yellow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diff-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.diff-card h3 {
  color: var(--brand-blue);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.diff-card p {
  font-family: "DM Sans", sans-serif;
  color: var(--ink-700);
  line-height: 1.6;
  margin: 0;
}

/* Deep Dive Section */
.feature-deepdive {
  background: var(--bg-light);
  padding: 80px 0;
}

.feature-deepdive h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--brand-blue) !important;
}

.deepdive-intro {
  font-family: "DM Sans", sans-serif;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--ink-700);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-weight: 500;
}

.deepdive-content {
  max-width: 800px;
  margin: 0 auto;
}

.deepdive-content h3 {
  color: var(--brand-blue);
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(50, 58, 204, 0.1);
}

.deepdive-content p {
  font-family: "DM Sans", sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--ink-700);
  margin-bottom: 1.5rem;
}

/* Examples Section */
.feature-examples {
  padding: 80px 0;
  background: white;
}

.feature-examples h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--brand-blue) !important;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.example-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(50, 58, 204, 0.1);
  transition: transform 0.3s ease;
}

.example-card:hover {
  transform: translateY(-5px);
}

.example-card h3 {
  color: var(--brand-blue);
  font-size: 1.375rem;
  margin-bottom: 1rem;
}

.example-card p {
  font-family: "DM Sans", sans-serif;
  color: var(--ink-700);
  line-height: 1.6;
  margin: 0;
}

/* Case Study Links Section */
.feature-case-links {
  background: var(--bg-light);
  padding: 80px 0;
}

.feature-case-links h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--brand-blue) !important;
}

.case-links-list {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.case-links-list li {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.case-links-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.case-links-list a {
  font-family: "DM Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-blue);
  text-decoration: none;
  display: block;
  padding: 1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.case-links-list a:hover {
  background: rgba(50, 58, 204, 0.05);
  text-decoration: underline;
  color: var(--brand-blue-hero);
}

/* Related Features Section */
.related-features {
  padding: 80px 0;
  background: white;
}

.related-features h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--brand-blue) !important;
}

.related-features-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.related-features-list li {
  margin: 0;
}

.related-features-list a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--bg-light);
  color: var(--brand-blue);
  text-decoration: none;
  border-radius: 999px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.related-features-list a:hover {
  background: var(--brand-blue);
  color: var(--brand-yellow);
  border-color: var(--brand-blue);
  transform: translateY(-2px);
}

/* How To Section */
.feature-howto {
  background: var(--bg-light);
  padding: 80px 0;
}

.feature-howto h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--brand-blue) !important;
}

.howto-steps {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  counter-reset: step;
}

.howto-steps li {
  font-family: "DM Sans", sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  padding: 1.5rem 0 1.5rem 3.5rem;
  margin-bottom: 1rem;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.howto-steps li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.howto-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--brand-blue);
  color: var(--brand-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Dosis", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
}

/* CTA Section */
.feature-cta {
  background: linear-gradient(135deg, var(--brand-blue-hero) 0%, #2a35cc 100%);
  color: white;
  padding: 90px 0;
  /* AUMENTADO de 80px */
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Efeito de partículas no fundo do CTA */
.feature-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  animation: shimmer 20s linear infinite;
}

@keyframes shimmer {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

.feature-cta h2 {
  color: var(--brand-yellow) !important;
  margin-bottom: 1.5rem;
  font-size: clamp(2.2rem, 4vw, 3rem);
  /* AUMENTADO tamanho */
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.feature-cta p {
  font-family: "DM Sans", sans-serif;
  font-size: 1.3rem;
  /* AUMENTADO de 1.25rem */
  color: white;
  opacity: 1;
  /* REMOVIDO opacidade */
  font-weight: 500;
  /* ADICIONADO peso médio */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 2;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-yellow) 0%, #ffeb3b 100%);
  color: var(--brand-blue-hero);
  font-family: "Dosis", sans-serif;
  font-size: 1.25rem;
  /* AUMENTADO de 1.125rem */
  font-weight: 800;
  /* AUMENTADO peso */
  padding: 1.25rem 3rem;
  /* AUMENTADO padding */
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid var(--brand-yellow);
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(255, 255, 0, 0.4);
  position: relative;
  z-index: 2;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffeb3b 0%, var(--brand-yellow) 100%);
  color: var(--brand-blue-hero);
  transform: translateY(-4px);
  box-shadow: 0 10px 35px rgba(255, 255, 0, 0.6);
  text-decoration: none;
}

/* ===== CORREÇÃO: TÍTULOS EM AZUL DA MARCA ===== */
.feature-page h2:not(.hero-title) {
  color: var(--brand-blue);
}

.feature-page h3 {
  color: var(--brand-blue);
}

/* ===== CORREÇÃO DE FONTES ESPECÍFICA PARA ESTA PÁGINA ===== */

/* Garantir que todos os textos usem DM Sans */
.feature-page .example-card p,
.feature-page .deepdive-content p,
.feature-page .deepdive-intro,
.feature-page .pricing-intro,
.feature-page .pricing-benefits,
.feature-page .pricing-link-hint,
.feature-page .feature-cta p,
.feature-page .case-links-list a {
  font-family: "DM Sans", system-ui, sans-serif !important;
}

/* Garantir que todos os títulos usem Dosis */
.feature-page .example-card h3,
.feature-page .deepdive-content h3,
.feature-page .feature-case-links h2,
.feature-page .related-features h2,
.feature-page .feature-howto h2,
.feature-page .feature-faq h2,
.feature-page .feature-cta h2,
.feature-page .feature-pricing h2 {
  font-family: "Dosis", sans-serif !important;
}

/* Correção específica para problemas-list */
.feature-page .problems-list li {
  font-family: "DM Sans", system-ui, sans-serif !important;
}

/* Correção para howto-steps */
.feature-page .howto-steps li {
  font-family: "DM Sans", system-ui, sans-serif !important;
}

/* Garantir que os títulos dos diffs também usem Dosis */
.feature-page .diff-card h3 {
  font-family: "Dosis", sans-serif !important;
}

/* Integrations logos */
.integrations-logos {
  text-align: center;
}

.integration-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  margin: 32px 0 24px;
}

.integration-logos img {
  height: 40px;
  width: auto;
  opacity: 0.75;
  filter: grayscale(100%);
  transition: opacity 0.2s ease;
}

.integration-logos img:hover {
  opacity: 1;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== RESPONSIVIDADE ===== */

@media (max-width: 1024px) {
  .feature-hero .container.wrap {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .feature-hero .container.wrap {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
    padding: 0 20px;
  }

  .hero-ill.hero-video {
    width: 100%;
    max-width: 800px;
    min-width: 100%;
    margin: 0 auto;
  }

  .video-wrapper {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }

  .hero-cta {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .feature-hero {
    padding: 30px 0 40px;
    /* AJUSTADO para mobile */
  }

  .feature-problems,
  .feature-differentials,
  .feature-deepdive,
  .feature-examples,
  .feature-case-links,
  .related-features,
  .feature-howto {
    padding: 60px 0;
  }

  .feature-cta {
    padding: 60px 0;
    /* AJUSTADO para mobile */
  }

  .feature-cta h2 {
    font-size: 2rem;
    /* AJUSTADO para mobile */
  }

  .feature-cta p {
    font-size: 1.1rem;
    /* AJUSTADO para mobile */
  }

  .btn-primary {
    font-size: 1.1rem;
    /* AJUSTADO para mobile */
    padding: 1rem 2rem;
    /* AJUSTADO para mobile */
  }

  .problems-list,
  .case-links-list,
  .howto-steps {
    padding: 1.5rem;
  }

  .differentials-grid,
  .examples-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .related-features-list {
    flex-direction: column;
    align-items: center;
  }

  .related-features-list a {
    width: 100%;
    text-align: center;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle.subheadline {
    font-size: 1.25rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-cta .btn.yellow,
  .hero-cta .btn.ghost {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .deepdive-content {
    padding: 0 20px;
  }

  .deepdive-intro {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .feature-hero {
    padding: 30px 0 30px;
    /* AJUSTADO para telas pequenas */
  }

  .feature-hero .container.wrap {
    gap: 30px;
  }

  .hero-content {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle.subheadline {
    font-size: 1.125rem;
  }

  .hero-cta .btn.yellow,
  .hero-cta .btn.ghost {
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .video-wrapper {
    border-radius: 16px;
  }

  .problems-list li,
  .howto-steps li {
    padding-left: 2rem;
  }

  .diff-card,
  .example-card {
    padding: 1.5rem;
  }

  .trust-badges {
    padding-top: 1rem;
  }

  .trust-badges p {
    font-size: 0.8rem;
    /* AJUSTADO para telas pequenas */
  }
}


/* Classe utilitária para centralizar hero */
.hero-centered .feature-hero .container.wrap {
  display: block;
  text-align: center;
}

.hero-centered .hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding-top: 0;
}

.hero-centered .hero-cta {
  justify-content: center;
}

.hero-centered .hero-ill.hero-video {
  display: none;
}


/* ===== ESTILOS EXCLUSIVOS PARA AS SEÇÕES ESPECÍFICAS ===== */

/* Seção com largura limitada (narrow-section) */
.narrow-section .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Estilos específicos para a seção feature-deepdive */
.feature-deepdive.narrow-section {
  background: white;
  padding: 80px 0;
}

.feature-deepdive.narrow-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--brand-blue) !important;
  font-family: "Dosis", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.feature-deepdive.narrow-section .deepdive-intro {
  font-family: "DM Sans", sans-serif;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--ink-700);
  text-align: left;
  max-width: 100%;
  margin: 0 auto 1.5rem;
  font-weight: 500;
}

.feature-deepdive.narrow-section p:not(.deepdive-intro) {
  font-family: "DM Sans", sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--ink-700);
  margin-bottom: 1.5rem;
  text-align: left;
}

/* Estilos específicos para a seção feature-followup */
.feature-followup.narrow-section {
  background: var(--bg-light);
  padding: 80px 0;
}

.feature-followup.narrow-section h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--brand-blue) !important;
  font-family: "Dosis", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.2;
}

.feature-followup.narrow-section p {
  font-family: "DM Sans", sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--ink-700);
  margin-bottom: 1.5rem;
}

.feature-followup.narrow-section strong {
  color: var(--brand-blue);
  font-weight: 700;
}

.feature-followup.narrow-section a {
  color: var(--brand-blue);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.feature-followup.narrow-section a:hover {
  color: var(--brand-blue-hero);
  text-decoration: underline;
}

/* Estilos para as bolinhas laranjas (orange-bullets) */
.orange-bullets ul {
  margin: 2rem 0 2.5rem;
  padding-left: 1.5rem;
}

.orange-bullets li {
  font-family: "DM Sans", sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--ink-700);
  margin-bottom: 1rem;
  padding-left: 0.75rem;
  position: relative;
}

.orange-bullets li::before {
  content: "•";
  color: #FFAA00;
  font-size: 1.5rem;
  position: absolute;
  left: -1.25rem;
  top: -0.1rem;
  font-weight: bold;
}

.orange-bullets li:last-child {
  margin-bottom: 0;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {

  .feature-deepdive.narrow-section,
  .feature-followup.narrow-section {
    padding: 60px 0;
  }

  .feature-deepdive.narrow-section h2,
  .feature-followup.narrow-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .feature-deepdive.narrow-section .deepdive-intro {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
  }

  .feature-deepdive.narrow-section p:not(.deepdive-intro),
  .feature-followup.narrow-section p {
    font-size: 1rem;
  }

  .orange-bullets li {
    font-size: 1rem;
    padding-left: 0.5rem;
  }

  .orange-bullets li::before {
    left: -1rem;
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {

  .feature-deepdive.narrow-section h2,
  .feature-followup.narrow-section h2 {
    font-size: 1.75rem;
  }

  .feature-deepdive.narrow-section .deepdive-intro {
    font-size: 1rem;
  }

  .narrow-section .container {
    padding: 0 15px;
  }

  .orange-bullets ul {
    margin: 1.5rem 0 2rem;
  }
}



/* ===== ESTILIZAÇÃO DA SEÇÃO DE INTEGRAÇÕES ===== */

.feature-examples.integrations-logos {
  background: white;
  padding: 80px 0;
}

.feature-examples.integrations-logos .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.feature-examples.integrations-logos h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--brand-blue) !important;
  font-family: "Dosis", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
}

/* Estilos para o parágrafo de descrição */
.integration-description {
  font-family: "DM Sans", sans-serif;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--ink-700);
  text-align: center;
  max-width: 700px;
  margin: 2.5rem auto 0;
  font-weight: 500;
}

/* Melhorias para a lista de logos */
.integration-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.integration-logos li {
  margin: 0;
  padding: 0;
}

.integration-logos figure {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.integration-logos img {
  height: 48px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.integration-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-3px);
}

/* Adicionando legenda visível para acessibilidade melhorada */
.integration-logos figcaption:not(.visually-hidden) {
  font-family: "DM Sans", sans-serif;
  font-size: 0.875rem;
  color: var(--ink-600);
  text-align: center;
  margin-top: 8px;
  font-weight: 500;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
  .feature-examples.integrations-logos {
    padding: 60px 0;
  }

  .feature-examples.integrations-logos h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }

  .integration-description {
    font-size: 1.125rem;
    margin-top: 2rem;
    padding: 0 10px;
  }

  .integration-logos {
    gap: 30px;
  }

  .integration-logos img {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .feature-examples.integrations-logos h2 {
    font-size: 1.75rem;
  }

  .integration-description {
    font-size: 1rem;
    margin-top: 1.5rem;
  }

  .integration-logos {
    gap: 20px;
  }

  .integration-logos img {
    height: 32px;
  }
}


/* ===== ESTILOS ESPECÍFICOS PARA HOW TO SECTION ===== */

.feature-deepdive.how-to-section {
  background: white;
  padding: 80px 0;
}

.feature-deepdive.how-to-section .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.feature-deepdive.how-to-section h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--brand-blue) !important;
  font-family: "Dosis", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.feature-deepdive.how-to-section .how-to-content {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--brand-yellow);
}

.feature-deepdive.how-to-section p {
  font-family: "DM Sans", sans-serif;
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--ink-700);
  margin: 0;
  text-align: justify;
  hyphens: auto;
}

/* Se preferir alinhamento normal ao invés de justificado:
.feature-deepdive.how-to-section p {
  text-align: left;
}
*/

/* Destaque para palavras-chave */
.feature-deepdive.how-to-section p strong {
  color: var(--brand-blue);
  font-weight: 700;
}

/* ===== RESPONSIVIDADE ESPECÍFICA ===== */

@media (max-width: 768px) {
  .feature-deepdive.how-to-section {
    padding: 60px 0;
  }
  
  .feature-deepdive.how-to-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .feature-deepdive.how-to-section .how-to-content {
    padding: 2rem;
  }
  
  .feature-deepdive.how-to-section p {
    font-size: 1.125rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .feature-deepdive.how-to-section h2 {
    font-size: 1.75rem;
  }
  
  .feature-deepdive.how-to-section .how-to-content {
    padding: 1.5rem;
  }
  
  .feature-deepdive.how-to-section p {
    font-size: 1.05rem;
    text-align: left; /* Em telas pequenas, alinhar à esquerda é melhor */
  }
}