
/* HEADER */

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.books-header {
  max-width: 1200px;
  margin: auto;
  font-size: 16px;
  color: #edf0f4;
  margin-bottom: 20px;
  margin-top: 20px;
}

/* GRID */

.books-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}

/* CARD */

.book-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
  transition: .2s;
}

.book-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */

.book-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* BODY */

.book-body {
  padding: 20px;
}

.tag {
  display: inline-block;
  background: #fff3e8;
  color: #ff7a00;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.tag-blue {
  background: #e8f0ff;
  color: #2563eb;
}

.book-body h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #111827;
}

.desc {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 10px;
}

.author,
.pages {
  font-size: 13px;
  color: #374151;
  margin-bottom: 6px;
}

/* RATING */

.rating {
  font-size: 14px;
  color: #f59e0b;
  margin: 10px 0;
}

.rating span {
  color: #6b7280;
  margin-left: 6px;
}

/* FORMATS */

.formats {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.formats span {
  background: #f3f4f6;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
}

/* PRICE */

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-row small {
  font-size: 12px;
  color: #6b7280;
}

.price-row strong {
  font-size: 18px;
  color: #ff7a00;
}

/* BUTTON */

button {
  background: linear-gradient(45deg, #ff7a00, #ff3c00);
  border: none;
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: .2s;
}

button:hover {
  opacity: .9;
}

/* RESPONSIVO */


@media (max-width: 600px) {
  .book-image {
    height: 180px;
  }
}

.books-benefits-section {
  display: flex;
  margin-top: 80px;
  justify-content: center;
}

/* BOX */

.books-benefits-box {
  max-width: 1100px;
  width: 100%;
  background: #ffffff;
  border-radius: 18px;
  padding: 50px 40px 60px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border: 2px solid #ffd1a6;
  text-align: center;
  margin-bottom: 20px;
}

/* TITLE */

.books-benefits-box h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #111827;
}

/* GRID */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

/* ITEM */

.benefit-item {
  padding: 10px 20px;
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  background: #fff1e6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ff7a00;
  margin-bottom: 16px;
}

/* TEXT */

.benefit-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #111827;
}

.benefit-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
}

.blog-section {
  max-width: 1400px;
  margin: auto;
  padding: 40px 20px 80px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}


/* TOOLBAR */

.blog-toolbar {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.search-box {
  flex: 1;
}

.search-box input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 15px;
  outline: none;
}

.category-select {
  min-width: 260px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 15px;
  background: #fff;
}


/* RESULTS */

.results-count {
  font-size: 15px;
  margin-bottom: 20px;
  color: #374151;
}


/* GRID */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}


/* CARD */

.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: all .25s ease;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,.12);
}


/* BADGE */




/* IMAGE */

.card-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
}


/* BODY */

.card-body {
  padding: 20px;
}


/* META */

.meta {
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 10px;
}


/* TITLE */

.blog-card h3 {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 10px;
  color: #111827;
}


/* DESC */

.blog-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 14px;
}


/* TAGS */

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.tags span {
  border: 1px solid #e5e7eb;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 8px;
  color: #374151;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag-cloud .tag-item {
  background: #f3f4f6;
  color: #1f2937;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all .15s ease;
}

.tag-cloud .tag-item:hover {
  background: #2563eb;
  color: #ffffff;
  transform: translateY(-1px);
}

/* FOOTER */

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.card-footer a {
  color: #ff7a00;
  font-weight: 600;
  text-decoration: none;
}

.card-footer a:hover {
  text-decoration: underline;
}


/* RESPONSIVE */

@media (max-width: 768px) {

  .blog-toolbar {
    flex-direction: column;
  }

  .category-select {
    width: 100%;
  }

}
/* RESPONSIVO */

@media (max-width: 768px) {
  .books-benefits-box {
    padding: 40px 20px;
  }

  .books-benefits-box h2 {
    font-size: 28px;
  }
}

/* ===== Shell-style para <pre> (aplica só quando você usar class="code-shell") ===== */

pre.wp-block-code{
  position: relative;
  margin: 18px 0 26px;
  padding: 44px 18px 18px;
  border-radius: 14px;
  background: #0b1220;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  overflow-x: auto;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  color: rgba(255,255,255,.70);
}

pre.wp-block-code::-webkit-scrollbar {
  height: 8px;
}

pre.wp-block-code::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 6px;
}

/* Barra superior da “janela” */
pre.wp-block-code::before{
  content: "";
  position: absolute;
  top: 10px;
  left: 12px;
  right: 12px;
  height: 26px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}

/* “Bolinhas” + título (terminal) */
pre.wp-block-code::after{
  content: "●  ●  ●   terminal";
  position: absolute;
  top: 14px;
  left: 18px;
  font-size: 12px;
  letter-spacing: .2px;
  color: rgba(255,255,255,.70);
}

/* Código */
pre.wp-block-code code{
  display: block;
  white-space: pre;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 13px;
  line-height: 1.6;
  color: #e5e7eb;
}

/* Opcional: destaca prompt */
pre.wp-block-code .prompt{
  color: #22c55e;
  font-weight: 600;
}

/* Opcional: seleção bonita */
pre.wp-block-code::selection,
pre.wp-block-code code::selection{
  background: rgba(59,130,246,.35);
}



/* GRUPO 2 */



/* GRID */

.blog-container {
  max-width: 1300px;
  margin: auto;
  padding: 10px 20px;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
}


/* ARTICLE */

.blog-content h1 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 12px;
}

.blog-content h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 12px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 20px;
}

.blog-cover {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 24px;
}


/* TEXT */

.blog-text {
  margin-top: 20px;
  margin-left: 20px;
  line-height: 1.8;
  font-size: 17px;
}

.blog-text h2 {
  margin-top: 10px;
  font-size: 26px;
}

.blog-text ul {
  padding-left: 20px;
}

.blog-text blockquote {
  background: #fff7ed;
  padding: 20px;
  border-left: 5px solid #ff7a00;
  border-radius: 8px;
  margin: 24px 0;
  font-style: italic;
}


/* AUTHOR */

.author-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #ffffff, #d1d4d7);
  padding: 26px 28px;
  border-radius: 18px;
  margin-top: 60px;
  border: 1px solid rgba(0,0,0,.04);
  box-shadow:
    0 12px 28px rgba(0,0,0,.08),
    inset 0 1px 0 rgba(255,255,255,.6);
  position: relative;
}

/* Linha destaque lateral */

.author-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(to bottom, #2563eb, #60a5fa);
}

.author-box img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.author-box h3 {
  margin: 0;
}

.author-box span {
  color: #ff7a00;
  font-size: 14px;
}


/* SIDEBAR */

.blog-sidebar {
  position: sticky;
  top: 30px;
  height: fit-content;
}

.sidebar-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,.05);
}

.sidebar-box h4 {
  margin-bottom: 12px;
}

.sidebar-box input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}


/* RELATED */

.related-list {
  list-style: none;
  padding: 0;
}

.related-list li {
  margin-bottom: 10px;
}

.related-list a {
  text-decoration: none;
  color: #ff7a00;
  font-weight: 600;
}


/* TAG CLOUD */

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-cloud span {
  background: #fff7ed;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: #ff7a00;
}


/* BANNER */

.sidebar-banner {
  background: linear-gradient(135deg,#ff7a00,#e63b16);
  color: #fff;
  padding: 24px;
  border-radius: 16px;
  text-align: center;
}

.sidebar-banner button {
  margin-top: 12px;
  background: #fff;
  color: #ff7a00;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}


/* RESPONSIVE */

@media (max-width: 900px) {

  .blog-container {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: relative;
    top: 0;
  }

}
.blog-search-form {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 24px;
}

.blog-search-form input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  outline: none;
}

.blog-search-form input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}

.blog-search-form button {
  padding: 12px 18px;
  border-radius: 10px;
  border: none;
  background: #2563eb;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.blog-search-form button:hover {
  background: #1d4ed8;
}

/* Mobile */

@media (max-width: 600px) {

  .blog-search-form {
    flex-direction: column;
  }

  .blog-search-form input,
  .blog-search-form button {
    width: 100%;
  }

}
.load-more-btn {
  margin: 30px auto 0;
  display: block;
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  background: #2563eb;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.load-more-btn:hover {
  background: #1d4ed8;
}
.badge-group{
  position: absolute;      /* mantém no topo da imagem */
  top: 16px;
  left: 16px;

  display: flex;           /* empilha */
  flex-direction: column;
  align-items: flex-start; /* não estica */
  gap: 8px;                /* espaço entre badges */
  z-index: 5;
}

/* blindagem contra CSS antigo que deixa badge absoluta */
.badge-group .badge{
  position: static !important;
  display: inline-block;
  width: fit-content;
  padding: .45rem .75rem;  /* opcional: deixa “premium” */
  border-radius: 999px;    /* opcional: pill */
}
.hero-terminal {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.tags {
  position: absolute;
  top: 16px;
  right: 16px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;

  z-index: 5;
}

.tags span {
  background: #2563eb;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;

  padding: 6px 12px;
  border-radius: 999px;

  display: inline-block;
  width: fit-content;

  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.internal-link {
  color: #2563eb;
  font-weight: 600;
  text-decoration: underline;
}

.internal-link:hover {
  color: #1e40af;
}
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin: 24px 0;
  border-radius: 12px;
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.related-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.related-list li {
  margin-bottom: 10px;
}

.related-list a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.related-list a:hover {
  text-decoration: underline;
}
.wp-block-table {
  width: 100%;
  overflow-x: auto;
  margin: 30px 0;
}

.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,.05);
}

/* Cabeçalho */

.wp-block-table thead {
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
  color: #ffffff;
}

.wp-block-table th {
  padding: 14px 16px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
}

/* Corpo */

.wp-block-table td {
  padding: 13px 16px;
  font-size: 14px;
  border-bottom: 1px solid #e5e7eb;
}

/* Zebra */

.wp-block-table tbody tr:nth-child(even) {
  background: #f8fafc;
}

/* Hover */

.wp-block-table tbody tr:hover {
  background: #eef2ff;
}

/* Última linha */

.wp-block-table tr:last-child td {
  border-bottom: none;
}

/* Responsivo */

@media (max-width: 768px) {

  .wp-block-table table {
    font-size: 13px;
  }

  .wp-block-table th,
  .wp-block-table td {
    padding: 10px 12px;
  }

}

.post-image{
  max-width: 900px;
  width: 100%;
  height: auto;
  display: block;
  margin: 24px auto;
  border-radius: 8px;
}

.share-box{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
  margin: 18px 0 28px;
}

.share-label{
  font-size:14px;
  font-weight:700;
  color:#374151;
  margin-right:4px;
}

.share-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 12px;
  border-radius:10px;
  font-size:13px;
  font-weight:700;
  text-decoration:none;
  border:1px solid rgba(0,0,0,.06);
  transition: transform .15s ease, filter .15s ease;
  cursor:pointer;
  line-height:1;
}

.share-btn svg{
  width:18px;
  height:18px;
  flex:0 0 18px;
}

.share-btn.linkedin{ background:#0a66c2; color:#fff; border-color: rgba(255,255,255,.12); }
.share-btn.x{ background:#111827; color:#fff; border-color: rgba(255,255,255,.12); }
.share-btn.whatsapp{ background:#25d366; color:#0b1220; border-color: rgba(0,0,0,.08); }
.share-btn.telegram{ background:#229ED9; color:#fff; border-color: rgba(255,255,255,.12); }

.share-btn.copy{
  background:#f3f4f6;
  color:#111827;
}

.share-btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.share-btn:active{
  transform: translateY(0);
}

/* Toast */
.share-toast{
  margin-left:8px;
  font-size:13px;
  font-weight:600;
  color:#16a34a;
  opacity:0;
  transform: translateY(2px);
  transition: opacity .2s ease, transform .2s ease;
}

.share-toast.show{
  opacity:1;
  transform: translateY(0);
}

@media (max-width: 520px){
  .share-label{ width:100%; }
  .share-btn{ flex: 1 1 auto; justify-content:center; }
}

.has-text-align-center {
  text-align: center;
  margin: 32px auto;
  padding: 10px 16px;
  max-width: 900px;
  
  line-height: 1.4;
  color: #0f172a;
  position: relative;
}

/* detalhe decorativo */
.has-text-align-center::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 6px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  opacity: 0.9;
}

/* leve destaque visual */
.has-text-align-center strong {
  color: #16a34a;
  font-weight: 700;
}

/* mobile refinado */
@media (max-width: 600px) {
  .has-text-align-center {
    padding: 8px 12px;
    font-size: 18px;
  }
}

.special-section {
  background: #f3f6fb;
  padding: 80px 20px;
}

.special-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.special-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 12px;
}

.special-header p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
}

/* GRID */
.special-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

/* CARD */
.special-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.special-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
}

.special-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.special-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  padding: 18px 18px 8px;
}

.special-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #4b5563;
  padding: 0 18px 22px;
}

/* RESPONSIVO */
@media (max-width: 992px) {
  .special-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .special-grid {
    grid-template-columns: 1fr;
  }

  .special-header h2 {
    font-size: 28px;
  }
}
/* Container geral */
.about-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: Arial, sans-serif;
  color: #1f2937;
}

/* Título grande e subtítulo */
.about-header {
  text-align: center;
  margin-bottom: 40px;
}

.about-header h1 {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
}

.about-header p {
  font-size: 17px;
  color: #4b5563;
  margin-top: 6px;
}

/* Estatísticas horizontais */
.about-stats {
  display: flex;
  justify-content: space-around;
  gap: 16px;
  margin: 40px 0;
  text-align: center;
}

.about-stats .stat {
  flex: 1;
}

.about-stats .number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #2563eb;
}

.about-stats .label {
  font-size: 13px;
  color: #6b7280;
}

/* Conteúdo principal */
.about-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #111827;
}

.about-content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 22px;
  color: #374151;
}

/* Seções internas */
.about-mission,
.about-founder,
.about-values {
  margin-top: 32px;
}

/* Listas de valores */
.about-values ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 14px;
}

.about-values li {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
}

/* Destaque forte nos títulos internos */
.about-mission h3,
.about-founder h3,
.about-values h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

/* Credentials */

.lpic1-cred-title {
  margin-top: 24px;
   padding: 20;
}

.lpic1-cred-list {
  list-style: none;
  padding: 20;
}

.lpic1-cred-list li {
  padding-left: 26px;
  margin-bottom: 10px;
  position: relative;
}

.lpic1-cred-list li::before {
  content: "🏅";
  position: absolute;
  left: 0;
}

.lpic1-diploma-list {
  list-style: none;
  padding: 20;
}

.lpic1-diploma-list li {
  padding-left: 26px;
  margin-bottom: 10px;
  position: relative;
}

.lpic1-diploma-list li::before {
  content: "🪪";
  position: absolute;
  left: 0;
}