/* Reset e configurações básicas */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-dark: #020617;
  --secondary-dark: #0f172a;
  --tertiary-dark: #1e293b;
  --blue-accent: #3b82f6;
  --blue-light: #60a5fa;
  --green-neon: #10b981;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #64748b;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--primary-dark);
  background-image:
    radial-gradient(
      circle at 20% 80%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(16, 185, 129, 0.1) 0%,
      transparent 50%
    );
  min-height: 100vh;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
.header {
  padding: 1.5rem 0;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.logo img {
  display: block;
}
.main-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.main-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 0.95rem;
}
.main-nav a:hover {
  color: var(--blue-light);
}
.btn-nav-highlight {
  background: rgba(59, 130, 246, 0.1);
  color: var(--blue-light) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  border: 1px solid rgba(59, 130, 246, 0.3);
}
.btn-nav-highlight:hover {
  background: rgba(59, 130, 246, 0.2);
}

/* HERO */
.hero.help-hero {
  text-align: center;
  padding: 4rem 0 3rem;
  position: relative;
}
.badge-hero {
  background: rgba(16, 185, 129, 0.1);
  color: var(--green-neon);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.hero h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(
    135deg,
    var(--text-primary) 0%,
    var(--blue-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* BUSCA */
.search-container {
  max-width: 600px;
  margin: 2.5rem auto 0;
  position: relative;
  display: flex;
}
.search-container input {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  background: rgba(15, 23, 42, 0.8);
  color: white;
  font-size: 1rem;
  padding-right: 60px;
  outline: none;
  transition: all 0.3s;
}
.search-container input:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}
.btn-search {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--blue-accent);
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SEÇÕES */
.section-block {
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h3 {
  font-size: 2.2rem;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  font-weight: 700;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* CARDS CATEGORIAS */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.category-card {
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.category-card:hover {
  background: rgba(30, 41, 59, 0.6);
  transform: translateY(-5px);
  border-color: var(--blue-accent);
}
.category-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.category-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.cat-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
}
.link-arrow {
  color: var(--blue-light);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

/* COLUNAS NEWS/ACADEMY */
.content-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
}
.col-title {
  font-size: 1rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
  font-weight: 600;
}

/* NEWS CARDS */
.news-card {
  background: linear-gradient(
    90deg,
    rgba(16, 185, 129, 0.03) 0%,
    transparent 100%
  );
  border-left: 3px solid var(--green-neon);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 0 12px 12px 0;
}
.news-date {
  font-size: 0.8rem;
  color: var(--green-neon);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}
.news-card h5 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.news-card p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.read-more {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: underline;
}

/* VIDEO CARDS */
.video-card {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  align-items: center;
  background: rgba(30, 41, 59, 0.2);
  padding: 1rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
}
.video-card:hover {
  background: rgba(30, 41, 59, 0.5);
  transform: translateX(5px);
}
.video-thumb {
  width: 140px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  background: #000;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  display: block;
}
.thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
}
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  background: rgba(59, 130, 246, 0.8);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-thumb-no-crop {
  width: 100%;
  height: 160px;
  object-fit: contain;
  background: #000;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: block;
}
.video-info h5 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.duration {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* GRID VITRINE (CORRIGIDO PARA MOBILE) */
.products-grid {
  display: grid;
  /* Alterado de 400px para 280px para caber em telas pequenas */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}
.product-card {
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.4s;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}
.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(59, 130, 246, 0.5);
}
.card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.product-card:hover .card-image img {
  transform: scale(1.1);
}
.card-content {
  padding: 2rem;
}
.card-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.product-type {
  background: linear-gradient(135deg, var(--green-neon) 0%, #059669 100%);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}
.product-id {
  color: rgba(248, 250, 252, 0.7);
  font-size: 0.8rem;
  font-weight: 500;
  background: rgba(15, 23, 42, 0.6);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
}
.card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  min-height: 4rem;
}
.card-actions {
  display: flex;
  gap: 1rem;
}

/* BOTÕES GERAIS */
.btn-primary {
  background: linear-gradient(135deg, var(--green-neon) 0%, #059669 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  flex: 1;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}
.btn-secondary {
  background: rgba(59, 130, 246, 0.1);
  color: var(--blue-light);
  border: 2px solid rgba(59, 130, 246, 0.3);
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  flex: 1;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-secondary:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: var(--blue-accent);
  color: var(--text-primary);
  transform: translateY(-2px);
}
.btn-soon {
  display: inline-block;
  width: 100%;
  background: rgba(59, 130, 246, 0.1);
  color: var(--blue-light);
  border: 2px solid rgba(59, 130, 246, 0.3);
  padding: 1rem;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
}
.coming-soon {
  opacity: 0.7;
  cursor: default;
}

/* BOTÃO 'FALE COM ESPECIALISTA' */
.general-cta {
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid rgba(59, 130, 246, 0.1);
  margin-top: 3rem;
}
.general-cta p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}
.btn-cta {
  max-width: 350px;
  margin: 0 auto;
  display: block;
  padding: 1.2rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s;
}
.btn-cta.secondary {
  background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  border: none;
}
.btn-cta.secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* FOOTER */
.footer {
  background: linear-gradient(
    135deg,
    var(--secondary-dark) 0%,
    var(--primary-dark) 100%
  );
  color: var(--text-secondary);
  text-align: center;
  padding: 3rem 0;
  margin-top: 5rem;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

/* --- MODAL CONTAINER BASE --- */
.product-details {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(2, 6, 23, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.product-details.hidden {
  display: none;
}
.details-content {
  background: rgba(30, 41, 59, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 20px;
  max-width: 950px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}
.close-details {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(59, 130, 246, 0.3);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-secondary);
  transition: all 0.3s;
  z-index: 10;
}
.close-details:hover {
  background: rgba(59, 130, 246, 0.2);
  color: var(--text-primary);
  transform: scale(1.1);
}
.details-body {
  padding: 0 !important;
}

/* =================================================================
   ISOLAMENTO TOTAL DO POPUP (CLASSES 'PP-')
   ================================================================= */

/* HEADER SEPARADO */
.pp-header {
  padding: 3rem 3rem 2rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}
.pp-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(
    135deg,
    var(--text-primary) 0%,
    var(--blue-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pp-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

/* BODY GRID */
.pp-body-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
  padding: 3rem;
  align-items: start;
}

/* Coluna Esquerda */
.pp-info h4 {
  color: var(--text-primary);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.pp-info p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
  font-size: 1.1rem;
}
.pp-features {
  list-style: none;
  margin-bottom: 2rem;
}
.pp-features li {
  padding: 0.8rem 0;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  position: relative;
  padding-left: 25px;
}
.pp-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Coluna Direita (Sidebar) */
.pp-sidebar {
  display: flex;
  justify-content: center;
}

/* Card Roxo (Pricing Section) */
.pp-pricing-section {
  background: linear-gradient(135deg, #6b46c1 0%, #3b82f6 100%);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  width: 100%;
  box-shadow: 0 20px 40px -10px rgba(107, 70, 193, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.pp-original-price {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.pp-strike {
  text-decoration: line-through;
  margin: 0 5px;
  opacity: 0.8;
}

.pp-installment-price {
  color: #10b981;
  margin-bottom: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.pp-installment-count {
  font-size: 1.2rem;
  font-weight: 800;
  display: block;
}

.pp-price-value {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: #10b981; /* Verde Neon */
  margin: 5px 0 15px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
}
.pp-price-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin-top: 10px;
}

.pp-cash-price {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

/* Botões do Popup */
.pp-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pp-btn {
  padding: 1rem;
  border-radius: 10px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  display: block;
  font-size: 1.1rem;
  transition: transform 0.2s;
}

.pp-btn.primary {
  background: #10b981;
  color: white;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}
.pp-btn.primary:hover {
  transform: translateY(-2px);
  background: #059669;
}

.pp-btn.secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
}
.pp-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Responsivo */
@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .pp-body-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pp-sidebar {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
  }
  .main-nav {
    width: 100%;
    justify-content: space-between;
    font-size: 0.85rem;
    flex-wrap: wrap;
  }
  .pp-header,
  .pp-body-grid {
    padding: 1.5rem;
  }
  .pp-title {
    font-size: 1.8rem;
  }
  .pp-price-value {
    font-size: 3rem;
  }
}

/* =================================================================
   ESTILOS DE ARTIGO (TIPOGRAFIA RICA)
   ================================================================= */

.article-content {
  font-family: "Inter", sans-serif;
  color: #cbd5e1; /* Cinza claro para leitura */
  font-size: 1.125rem; /* 18px */
  line-height: 1.8;
}

/* Títulos dentro do artigo */
.article-content h2 {
  color: #f8fafc; /* Branco */
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.3); /* Linha sutil azul */
}

.article-content h3 {
  color: #60a5fa; /* Azul claro */
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* Parágrafos e Listas */
.article-content p {
  margin-bottom: 1.5rem;
  text-align: justify;
}

.article-content ul,
.article-content ol {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  background: rgba(15, 23, 42, 0.4);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--green-neon);
}

.article-content li {
  margin-bottom: 0.8rem;
  padding-left: 0.5rem;
}

.article-content li::marker {
  color: var(--green-neon);
  font-weight: bold;
}

/* Destaques e Citações */
.article-content strong {
  color: white;
  font-weight: 700;
}

.article-content blockquote {
  font-style: italic;
  color: var(--blue-light);
  border-left: 4px solid var(--blue-accent);
  padding-left: 1.5rem;
  margin: 2rem 0;
  background: rgba(59, 130, 246, 0.1);
  padding: 1.5rem;
  border-radius: 0 12px 12px 0;
}

/* =================================================================
   ESTILOS DE LEITURA (ARTIGO)
   ================================================================= */

/* Container do texto */
.article-content {
  font-family: "Inter", sans-serif;
  color: #cbd5e1; /* Cinza claro */
  font-size: 1.1rem;
  line-height: 1.8; /* Espaçamento entre linhas confortável */
}

/* Títulos H2 (Subtítulos principais) */
.article-content h2 {
  color: #f8fafc; /* Branco */
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.3); /* Linha sutil azul */
}

/* Títulos H3 (Sub-tópicos) */
.article-content h3 {
  color: #60a5fa; /* Azul claro */
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

/* Parágrafos */
.article-content p {
  margin-bottom: 1.5rem;
  text-align: left; /* Ou justify se preferir */
}

/* Listas (ul/ol) */
.article-content ul,
.article-content ol {
  background: rgba(15, 23, 42, 0.4); /* Fundo sutil */
  padding: 2rem 2rem 2rem 3rem;
  border-radius: 12px;
  border-left: 4px solid var(--green-neon); /* Detalhe verde */
  margin: 2rem 0;
}

.article-content li {
  margin-bottom: 0.8rem;
  padding-left: 0.5rem;
}

.article-content li::marker {
  color: var(--green-neon); /* Bolinha verde */
  font-weight: bold;
}

/* Negrito */
.article-content strong {
  color: white;
  font-weight: 700;
}

/* Destaques/Citações */
.article-content blockquote {
  font-style: italic;
  font-size: 1.2rem;
  color: var(--blue-light);
  border-left: 4px solid var(--blue-accent);
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.1);
  margin: 2.5rem 0;
  border-radius: 0 12px 12px 0;
}

/* =================================================================
   TIPOGRAFIA DO ARTIGO (FORMATACAO RICA)
   ================================================================= */

/* Container dentro do editor e na página de leitura */
.ql-editor,
.article-content {
  font-family: "Inter", sans-serif;
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Títulos */
.ql-editor h2,
.article-content h2 {
  color: #f8fafc;
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.3);
}

.ql-editor h3,
.article-content h3 {
  color: #60a5fa;
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* Parágrafos e Listas */
.ql-editor p,
.article-content p {
  margin-bottom: 1.5rem;
  text-align: justify;
}

.ql-editor ul,
.article-content ul,
.ql-editor ol,
.article-content ol {
  background: rgba(15, 23, 42, 0.4);
  padding: 2rem 2rem 2rem 3rem;
  border-radius: 12px;
  border-left: 4px solid var(--green-neon);
  margin-bottom: 2rem;
}

.ql-editor li,
.article-content li {
  margin-bottom: 0.8rem;
  padding-left: 0.5rem;
}

/* Citações e Destaques */
.ql-editor blockquote,
.article-content blockquote {
  font-style: italic;
  font-size: 1.2rem;
  color: var(--blue-light);
  border-left: 4px solid var(--blue-accent);
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.1);
  margin: 2.5rem 0;
  border-radius: 0 12px 12px 0;
}

.ql-editor strong,
.article-content strong {
  color: white;
  font-weight: 700;
}

/* ===== MEDIA QUERIES MOBILE RESPONSIVO ===== */

/* TABLET (768px até 1024px) */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .article-content {
    font-size: 1rem;
    line-height: 1.7;
  }

  .article-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .article-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
  }

  .article-content p {
    margin-bottom: 1.2rem;
  }

  .article-content ul,
  .article-content ol {
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    margin-bottom: 1.5rem;
  }

  .article-content li {
    margin-bottom: 0.6rem;
  }

  .article-content blockquote {
    padding: 1.2rem;
    margin: 1.5rem 0;
    font-size: 1.1rem;
  }
}

/* MOBILE (480px até 768px) */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  /* Tipografia reduzida */
  .article-content,
  .ql-editor {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .article-content h1,
  .ql-editor h1 {
    font-size: 1.4rem;
    margin-top: 1.2rem;
    margin-bottom: 0.8rem;
  }

  .article-content h2,
  .ql-editor h2 {
    font-size: 1.2rem;
    margin-top: 1.2rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0.4rem;
  }

  .article-content h3,
  .ql-editor h3 {
    font-size: 1.05rem;
    margin-top: 1rem;
    margin-bottom: 0.6rem;
  }

  .article-content p,
  .ql-editor p {
    margin-bottom: 1rem;
    text-align: left;
  }

  /* Listas com espaçamento reduzido */
  .article-content ul,
  .article-content ol,
  .ql-editor ul,
  .ql-editor ol {
    background: rgba(15, 23, 42, 0.5);
    padding: 1rem 1rem 1rem 1.5rem;
    margin: 1rem 0;
    border-radius: 8px;
  }

  .article-content li,
  .ql-editor li {
    margin-bottom: 0.5rem;
    padding-left: 0.3rem;
    font-size: 0.9rem;
  }

  /* Blocos de citação */
  .article-content blockquote,
  .ql-editor blockquote {
    padding: 1rem;
    margin: 1rem 0;
    font-size: 0.95rem;
    border-left: 3px solid var(--blue-accent);
    border-radius: 0 8px 8px 0;
  }

  /* Imagens */
  .article-content img {
    margin: 0.8rem 0;
    border-radius: 6px;
  }

  /* Cabeçalho responsivo */
  .header-content {
    flex-direction: column;
    gap: 0.5rem;
  }

  .main-nav {
    width: 100%;
    gap: 0.4rem;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .main-nav a {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
  }

  .btn-nav-highlight {
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
  }

  .logo img {
    width: 120px !important;
  }

  /* Cards de categoria */
  .categories-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    padding: 1.5rem 1rem;
  }

  /* Grids responsivos */
  .kb-grid,
  .products-grid,
  .news-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* SUPER MOBILE (até 360px) */
@media (max-width: 360px) {
  .container {
    padding: 0 8px;
  }

  .article-content,
  .ql-editor {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .article-content h2,
  .ql-editor h2 {
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.6rem;
  }

  .article-content h3,
  .ql-editor h3 {
    font-size: 0.95rem;
  }

  .article-content p,
  .ql-editor p {
    margin-bottom: 0.8rem;
  }

  .article-content ul,
  .article-content ol,
  .ql-editor ul,
  .ql-editor ol {
    padding: 0.8rem 0.8rem 0.8rem 1.2rem;
    margin: 0.8rem 0;
  }

  .article-content li {
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
  }

  .logo img {
    width: 100px !important;
  }

  .main-nav {
    gap: 0.3rem;
  }

  .main-nav a {
    font-size: 0.65rem;
    padding: 0.2rem 0.4rem;
  }
}
