@charset "UTF-8";

/* =========================
   Página SEO (tela)
   ========================= */

body.seo {
  background: #fff;
}

.seo-page__header {
  padding: 2.25rem 0 0.75rem;
}

.seo-page__title {
  margin: 0 0 0.75rem;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.seo-page__description {
  margin: 0;
  color: #475569;
  max-width: 72ch;
}

.seo-section {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.seo-grid {
  align-items: start;
}

.seo-content {
  color: #0f172a;
  max-width: 80ch;
}

.seo-content h2,
.seo-content h3,
.seo-content h4 {
  color: #0f172a;
  margin: 1.25rem 0 0.6rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.seo-content p {
  color: #1f2937;
  line-height: 1.75;
  margin: 0 0 0.9rem;
}

.seo-content ul,
.seo-content ol {
  margin: 0.25rem 0 1rem 1.25rem;
  padding: 0;
}

.seo-content li {
  margin: 0.25rem 0;
  line-height: 1.6;
}

.seo-content a {
  color: #0b5ed7;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.seo-content a:hover {
  color: #084298;
}

.seo-content blockquote {
  margin: 1.25rem 0;
  padding: 0.75rem 1rem;
  border-left: 4px solid #ffc107;
  background: #fff8e1;
  color: #111827;
}

.seo-content code {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 0.1rem 0.3rem;
  border-radius: 6px;
}

.seo-content pre {
  background: #0b1220;
  color: #e5e7eb;
  border-radius: 12px;
  padding: 1rem;
  overflow: auto;
}

.seo-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.25rem;
  font-size: 0.95rem;
}

.seo-content th,
.seo-content td {
  border: 1px solid #e2e8f0;
  padding: 0.6rem 0.7rem;
  vertical-align: top;
}

.seo-content th {
  background: #f8fafc;
  font-weight: 600;
}

.seo-figure {
  margin: 0;
  position: sticky;
  top: 1.25rem;
}

.seo-figure__img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.12);
}

@media (max-width: 991px) {
  .seo-figure {
    position: static;
  }
  .seo-content {
    max-width: 100%;
  }
}

.menuLateral .title {
  border: none;
  color: #0056b3;
  border-left: 2px solid #ffc107;
  font-size: 22px;
  font-weight: 500;
  padding-left: 10px;
  transition: 0.4s;
}

.menuLateral li {
  padding: 3px 30px;
  list-style: none !important;
}

.menuLateral li a {
  line-height: 2.5;
  color: #444444;
  transition: 0.4s;
}

/** CTA */
.hotline-area {
  color: #fff;
  background: red;
  position: relative;
  z-index: 1;
  padding: 3rem 0;
}

.hotline-area .hotline-area h2 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 45px;
  font-weight: 400;
}

.hotline-area .hotline-area span {
  font-size: 60px;
  font-weight: 800;
  font-family: "Rubik", sans-serif;
  margin-bottom: 28px;
  display: block;
}

.rowTab {
  display: flex;
  padding-top: 2rem;
}

.rowTab .col {
  flex: 1;
}

.rowTab .d-flex {
  display: flex;
}

.rowTab .col:last-child {
  margin-left: 1em;
}

.rowTab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

/* Accordion styles */
.tabs {
  /* border-radius: 8px; */
  overflow: hidden;
  /* box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5); */
}

.tab {
  width: 100%;
  color: white;
  overflow: hidden;
}

.tab-label {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem;
  background: #2c3e50;
  font-weight: bold;
  cursor: pointer;
  font-size: 0.7rem;
  /* Icon */
}

.tab-label:hover {
  background: #1a252f;
}

.tab-label::after {
  content: "❯";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.35s;
}

.tab-content {
  max-height: 0;
  padding: 0 1em;
  color: #2c3e50;
  background: white;
  transition: all 0.35s;
}

.tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #2c3e50;
  cursor: pointer;
}

.tab-close:hover {
  background: #1a252f;
}

input:checked+.tab-label {
  background: #1a252f;
}

input:checked+.tab-label::after {
  transform: rotate(90deg);
}

input:checked~.tab-content {
  max-height: 100vh;
  padding: 1em;
}

@media (max-width: 768px) {
  .rowTab .d-flex {
    flex-direction: column;
  }
}

/* =========================
   Impressão (PDF / papel)
   ========================= */
@media print {
  @page {
    margin: 14mm 12mm;
  }

  html,
  body {
    background: #fff !important;
  }

  body {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  /* Esconde elementos que normalmente “poluem” a impressão */
  header,
  footer,
  nav,
  .header-area,
  .footer-area,
  .breadcrumb,
  .breadcrumb-area,
  .menuLateral,
  .hotline-area,
  .tabs,
  .rowTab,
  .btn,
  .button,
  .scroll-top,
  .preloader,
  .slick-slider {
    display: none !important;
  }

  /* Área principal */
  .seo-page {
    padding: 0 !important;
    margin: 0 !important;
  }

  .seo-page__header {
    padding: 0 0 6mm !important;
    margin: 0 0 6mm !important;
    border-bottom: 1px solid #e5e7eb;
  }

  .seo-page__title {
    font-size: 18pt !important;
    margin: 0 0 3mm !important;
  }

  .seo-page__description {
    font-size: 11pt !important;
    color: #111827 !important;
    margin: 0 !important;
  }

  .seo-section {
    padding: 0 !important;
    margin: 0 0 8mm !important;
  }

  /* Tipografia “limpa” para impressão */
  .seo-content,
  .seo-content p,
  .seo-content li {
    font-size: 11pt !important;
    line-height: 1.55 !important;
    color: #111827 !important;
  }

  .seo-content h2 {
    font-size: 14pt !important;
    margin: 6mm 0 2.5mm !important;
    page-break-after: avoid;
  }

  .seo-content h3 {
    font-size: 12.5pt !important;
    margin: 5mm 0 2mm !important;
    page-break-after: avoid;
  }

  .seo-content h4 {
    font-size: 11.5pt !important;
    margin: 4mm 0 2mm !important;
    page-break-after: avoid;
  }

  .seo-content p,
  .seo-content ul,
  .seo-content ol,
  .seo-content table,
  .seo-content blockquote {
    orphans: 3;
    widows: 3;
  }

  /* Imagens */
  img {
    max-width: 100% !important;
    height: auto !important;
    page-break-inside: avoid;
    break-inside: avoid;
  }

  .seo-figure {
    position: static !important;
    top: auto !important;
  }

  .seo-figure__img {
    box-shadow: none !important;
    border-radius: 0 !important;
  }

  /* Links: mostra URL no papel */
  a,
  a:visited {
    color: #111827 !important;
    text-decoration: underline !important;
  }

  a[href^="http"]:after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #374151;
    word-break: break-word;
  }

  /* Evita quebras ruins */
  blockquote,
  table,
  pre {
    page-break-inside: avoid;
    break-inside: avoid;
  }

  /* Ajusta containers comuns de framework */
  .container {
    max-width: none !important;
    width: auto !important;
  }
}


/*# sourceMappingURL=pg-seo.css.map */