/*
Theme Name:  Semavy Protocolo
Theme URI:   https://semavy.com.br
Author:      Hypera Pharma
Author URI:  https://hyperafarma.com.br
Description: Tema oficial do Protocolo Sema / Semavy
Version:     1.1.12
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: semavy-protocolo
Tags:        health, custom-colors, custom-logo, full-width-template
*/

/* ============================================
   Protocolo Sema - Custom Styles
   Matched to Pencil Design
   ============================================ */

* {
  font-family: "Asap", sans-serif;
}

/* ---- Container Width Override ----
   Pencil: 1366px frame with 70px side padding = 1226px content area.
   Tailwind max-w-7xl = 1280px which is too wide. Override globally. */
.max-w-7xl {
  max-width: 1226px !important;
}

/* ---- Hero Section ---- */
.hero-section {
  position: relative;
  overflow: hidden;
  background: #1a2744; /* fallback while image loads */
}

/* Desktop background image — covers full hero */
.hero-bg-desktop {
  display: none;
}

/* Mobile hero image — covers entire hero, text overlaid */
.hero-bg-mobile {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-mobile .hero-image-shell {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.hero-bg-mobile .hero-image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Mobile gradient overlay: dark top, fading to white at bottom (Pencil: multiply, 80% opacity) */
.hero-bg-mobile .hero-image-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 12, 28, 0.8) 0%,
    rgba(6, 12, 28, 0.5) 30%,
    rgba(6, 12, 28, 0.3) 50%,
    rgba(6, 12, 28, 0.6) 70%,
    rgba(6, 12, 28, 0.8) 100%
  );
  pointer-events: none;
}

/* Hero text content — overlaid at bottom on mobile */
.hero-content-wrapper {
  position: relative;
  z-index: 1;
  padding: 32px 16px 40px;
}

.hero-left-content {
  max-width: 620px;
}

/* Desktop layout */
@media (min-width: 768px) {
  /* Show desktop bg, hide mobile bg — full-width, no container limit */
  .hero-bg-desktop {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  .hero-bg-desktop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left top;
  }

  .hero-bg-mobile {
    display: none !important;
  }

  .hero-content-wrapper {
    display: flex;
    align-items: center;
    min-height: 744px;
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 70px;
    width: 100%;
  }

  .hero-left-content {
    max-width: 620px;
  }
}

/* ---- Hero Typography ---- */
.hero-title {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-family: "Asap", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: white;
  line-height: 1.35;
  margin-bottom: 8px;
}

/* ---- Hero List ---- */
.hero-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  margin-left: 10px;
}

.hero-list li {
  font-family: "Asap", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: white;
  line-height: 1.35;
  margin-bottom: 8px;
  padding-left: 20px; /* distância entre bolinha e texto */
  position: relative;
}

.hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em; /* melhor que 50% para alinhar com a primeira linha */
  width: 3px;
  height: 3px;
  background: white;
  border-radius: 50%;
}
/* ---- Hero CTA ---- */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #203c8b;
  color: white;
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 80px;
  text-decoration: none;
  border: 1px solid white;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 24px;
}

.hero-cta:hover {
  background: #1a3278;
}

.hero-cta svg,
.see-more-link svg,
.interactive-card .action-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero-cta svg,
.see-more-link svg,
.interactive-card .action-link svg,
.btn-jornada svg {
  display: block;
  vertical-align: middle;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255, 165, 50, 0.6);
  border-radius: 50px;
  padding: 10px 20px;
  color: #fbbf24;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #f97316;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.agora-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.agora-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316, #fb923c);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  box-shadow:
    0 0 0 12px rgba(249, 115, 22, 0.15),
    0 0 0 24px rgba(249, 115, 22, 0.08);
}

.agora-circle::before {
  content: "AGORA VOCÊ CONSEGUE";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: transparent;
  border: 2px dashed rgba(249, 115, 22, 0.4);
}

.rotating-text {
  position: absolute;
  width: 240px;
  height: 240px;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ---- Section Labels ---- */
.section-label {
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #808182;
  line-height: 1.45;
}

.label-mobile {
  display: none;
}

.label-desktop {
  display: inline;
}

/* ---- Section Titles ---- */
.section-title {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #323436;
  line-height: 1.2;
}

/* ---- Category Tabs ---- */
.category-tab {
  min-width: 160px;
  padding: 8px 24px;
  border-radius: 80px;
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid #cb460e;
  background: white;
  color: #cb460e;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
  line-height: 1.3;
}

.category-tab.active {
  background: #cb460e;
  color: white;
  border-color: #cb460e;
}

.category-tab:hover:not(.active) {
  background: rgba(203, 70, 14, 0.05);
}

/* ---- Article Cards ---- */
.article-card-featured {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #1a2744;
}

.article-card-featured .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
}

.article-card-small {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid #cccccd;
  border-radius: 12px;
  background: white;
}

.tag-semaglutida {
  background: #cb460e;
  color: white;
  font-family: "Asap", sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 80px;
}

.tag-tratamento {
  color: #cb460e;
  font-family: "Asap", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.tag-quiz {
  background: #cb460e;
  color: white;
  font-family: "Asap", sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 80px;
}

.tag-calculadora {
  background: #cb460e;
  color: white;
  font-family: "Asap", sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 80px;
}

/* ---- Featured article content ---- */
.featured-date {
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: white;
}

.featured-title {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-desc {
  font-family: "Asap", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* ---- Small article card content ---- */
.small-card-tag {
  font-family: "Asap", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #cb460e;
}

.small-card-title {
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #323436;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.small-card-date {
  font-family: "Asap", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #808182;
}

/* ---- "Veja mais conteúdos" link ---- */
.see-more-link {
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #e46434;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.4;
}

.see-more-link:hover {
  color: #cb460e;
}

/* ---- Calculator / Quiz Cards ---- */
.interactive-card {
  background: white;
  border: 1px solid #c7cee2;
  border-radius: 16px;
  padding: 24px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
}

.interactive-card:hover {
  border-color: #203c8b;
  box-shadow: 0 8px 30px rgba(32, 60, 139, 0.12);
  transform: translateY(-2px);
}

.interactive-card-title {
  font-family: "Asap", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1e2939;
  margin-bottom: 8px;
  line-height: 1.35;
}

.interactive-card-desc {
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #6a7282;
  line-height: 1.45;
}

.interactive-card .action-link {
  color: #203c8b;
  font-family: "Asap", sans-serif;
  font-weight: 500;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.see-more-link .link-text-underline,
.interactive-card .action-link .link-text-underline {
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  line-height: 1;
}

.interactive-card .action-link:hover {
  gap: 10px;
}

/* ---- Jornada Section ---- */
.jornada-section {
  position: relative;
}

/* Background image wrapper — constrained to 1366px */
.home-jornada-bg-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.home-jornada-bg-inner {
  width: 100%;
  max-width: 1366px;
  height: 100%;
}

.jornada-title {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #203c8b;
  line-height: 1.2;
  margin-bottom: 16px;
}

.jornada-desc {
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #323436;
  line-height: 1.45;
  margin-bottom: 16px;
}

.btn-jornada {
  background: #203c8b;
  color: white;
  font-family: "Asap", sans-serif;
  font-weight: 500;
  font-size: 16px;
  padding: 12px 16px;
  border-radius: 80px;
  border: 1px solid #203c8b;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  width: 212px;
  justify-content: center;
  white-space: nowrap;
}

.btn-jornada:hover {
  background: #1a3278;
}

/* ---- FAQ Section ---- */
.faq-section {
  background: white;
  padding: 80px 0;
}

.faq-left-title {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #323436;
  line-height: 1.2;
}

.faq-left-subtitle {
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #323436;
  line-height: 1.45;
}

.faq-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #203c8b;
  color: white;
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 80px;
  text-decoration: none;
  border: 1px solid #203c8b;
  cursor: pointer;
  transition: background 0.2s;
  width: 240px;
}

.faq-cta:hover {
  background: #1a3278;
}

/* ---- FAQ Accordion ---- */
.faq-item {
  border: 1px solid #c7cee2;
  border-radius: 16px;
  padding: 0 24px;
  background: white;
}

.faq-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #203c8b;
}

.faq-toggle .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #cb460e;
  transition: color 0.2s;
}

.faq-toggle.open .icon {
  color: #cb460e;
}

.faq-content {
  display: none;
  border-top: 1px solid #cccccd;
  padding: 16px 0 24px;
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #323436;
  line-height: 1.45;
}

.faq-content.open {
  display: block;
}

/* ---- Newsletter Section ---- */
.newsletter-section {
  background: white;
  padding: 80px 0;
}

.newsletter-card {
  background: #f4f5f9;
  border-radius: 16px;
  padding: 80px 70px;
}

.newsletter-label {
  font-family: "Asap", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #808182;
  margin-bottom: 12px;
  line-height: 1.35;
}

.newsletter-title {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #323436;
  line-height: 1.2;
}

.newsletter-input {
  flex: 1;
  border: 1px solid #cccccd;
  border-radius: 8px;
  padding: 8px 16px;
  height: 48px;
  font-family: "Asap", sans-serif;
  font-size: 16px;
  outline: none;
}

.newsletter-input:focus {
  border-color: #203c8b;
  box-shadow: 0 0 0 2px rgba(32, 60, 139, 0.1);
}

.btn-newsletter {
  background: #203c8b;
  color: white;
  font-family: "Asap", sans-serif;
  font-weight: 500;
  font-size: 16px;
  padding: 12px 28px;
  border-radius: 80px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-newsletter:hover {
  background: #1a3278;
}

.newsletter-checkbox-text {
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #323436;
  line-height: 1.4;
}

/* ---- Footer ---- */
.footer-main {
  background: #283b52;
}

.footer-link {
  color: #f5f5f5;
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s;
  line-height: 2;
}

.footer-link:hover {
  color: white;
}

.footer-col-title {
  color: #f5f5f5;
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-nav-box {
  background: #3d587b;
  border-radius: 16px;
  padding: 32px 80px;
}

.footer-nav-link {
  color: #f5f5f5;
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.5;
}

.footer-nav-link:hover {
  color: white;
}

.footer-nav-heading {
  color: #f5f5f5;
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.footer-legal-link {
  color: #f5f5f5;
  font-family: "Asap", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal-link:hover {
  color: white;
}

.footer-social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-social-icon img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

/* Mobile-first: show mobile icons, hide desktop icons */
.footer-icon-desktop {
  display: none !important;
}

.footer-icon-mobile {
  display: block !important;
}

.footer-social-icon:hover {
  opacity: 0.8;
}

.footer-social-icon svg {
  color: #132453;
}

.hympar-text {
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: white;
  line-height: 1.5;
}

.hympar-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

.home-blog-section,
.home-calculators-section,
.home-quiz-section {
  padding: 80px 0;
}

/* Quiz decorative wrapper — contains content within 1366px */
.quiz-container-wrapper {
  max-width: 1366px;
}

/* Quiz decorative spiral — mobile first */
/* Pencil mobile: SVG 251x251 at x:179,y:0 inside clip frame 391x1044 */
/* right = 390 - 179 - 251 = -40px (overflows right, clipped by section overflow:clip) */
.quiz-decorative {
  top: 0;
  right: -40px;
  width: 251px;
  height: 251px;
  z-index: 0;
  overflow: visible;
}

.quiz-decorative img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Quiz decorative spiral — desktop */
/* Pencil desktop: clip frame 347x413 at x:1019,y:40 inside 1366px section */
/* SVG 413x413 inside clip frame — right 66px clipped (413-347=66) */
@media (min-width: 768px) {
  .quiz-decorative {
    top: 40px;
    right: calc(max(0px, (94.5% - 1366px) / 2));
    width: 347px;
    height: 413px;
    overflow: hidden;
  }

  .quiz-decorative img {
    width: 413px;
    height: 413px;
    object-fit: contain;
  }

  /* Footer social icons — desktop: only Instagram + Facebook, with desktop images */
  .footer-social-mobile-only {
    display: none !important;
  }

  .footer-icon-desktop {
    display: block !important;
  }

  .footer-icon-mobile {
    display: none !important;
  }

  /* Desktop order: Instagram first (-1), Facebook stays at 0 */
  .footer-social-instagram {
    order: -1;
  }
}

.home-blog-container {
  gap: 40px;
}

.home-interactive-container {
  gap: 32px;
}

.home-section-label {
  margin-bottom: 12px;
}

.home-section-label-wide {
  margin-bottom: 16px;
}

.home-interactive-grid {
  gap: 24px;
}

.home-category-tabs {
  gap: 16px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.home-category-tabs:active {
  cursor: grabbing;
}

.home-category-tabs::-webkit-scrollbar {
  display: none;
}

.home-category-tabs .category-tab {
  flex-shrink: 0;
}

.home-posts-layout {
  display: flex;
  gap: 24px;
}

.home-posts-featured {
  flex: 1;
  min-width: 0;
  text-decoration: none;
}

.home-posts-featured-card {
  height: 440px;
}

.home-posts-small-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 389px;
  flex-shrink: 0;
}

.home-posts-small-card {
  height: 136px;
  text-decoration: none;
}

.home-posts-small-thumb {
  width: 96px;
  height: 96px;
}

.home-jornada-content {
  padding: 60px 0;
  width: 510px;
  flex-shrink: 0;
}

.home-jornada-row {
  justify-content: flex-start;
}

.home-jornada-mobile-image {
  display: none;
}

.home-faq-layout {
  gap: 24px;
}

.home-faq-left-column {
  flex: 1;
}

.home-faq-left-stack {
  gap: 40px;
}

.home-faq-heading-stack {
  gap: 16px;
}

.home-faq-right-column {
  width: 705px;
  flex-shrink: 0;
}

.home-faq-list {
  gap: 12px;
}

.newsletter-form-wrap {
  gap: 12px;
}

.newsletter-input-row {
  gap: 12px;
}

.btn-newsletter-fixed {
  width: 160px;
}

.footer-content-shell {
  gap: 48px;
}

.footer-social-list {
  gap: 24px;
}

.footer-nav-col {
  padding: 8px 0;
}

.footer-nav-col-featured {
  gap: 4px;
}

.footer-nav-col-wide {
  width: 194px;
  gap: 4px;
}

.footer-nav-item-wrap {
  padding: 8px 0;
}

.footer-legal-row {
  width: 100%;
  gap: 32px;
}

.footer-hympar-row {
  gap: 8px;
}

.footer-hympar-text {
  width: 998px;
}

.hynpar-bar {
  background: #f97316;
  padding: 10px 0;
}

/* ---- Fixed Header ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition:
    background 0.3s,
    box-shadow 0.3s;
}

.site-header .header-main {
  position: relative;
  z-index: 2;
  transition:
    background 0.3s,
    box-shadow 0.3s;
}

/* Header container — same width as hero content wrapper (1366px with 70px padding = 1226px content) */
.header-container {
  max-width: 1366px;
  width: 100%;
}

/* Default state: transparent over hero (front page only) */
.site-header.header-home-page:not(.scrolled) .header-main {
  background: transparent;
}

/* Non-transparent pages: always white */
.site-header:not(.header-home-page) .header-main {
  background: #fff;
  box-shadow: 0 4px 5.25px rgba(0, 0, 0, 0.1);
}

/* Scrolled state: white + shadow */
.site-header.scrolled .header-main {
  background: #fff;
  box-shadow: 0 4px 5.25px rgba(0, 0, 0, 0.1);
}

/* Logo switching — transparent header (front page) */
.site-header.header-home-page:not(.scrolled) .header-logo-white {
  display: block !important;
}
.site-header.header-home-page:not(.scrolled) .header-logo-color {
  display: none !important;
}
.site-header.scrolled .header-logo-white {
  display: none !important;
}
.site-header.scrolled .header-logo-color {
  display: block !important;
}

/* Logo — non-transparent pages: always color */
.site-header:not(.header-home-page) .header-logo-white {
  display: none !important;
}
.site-header:not(.header-home-page) .header-logo-color {
  display: block !important;
}

/* ---- Nav ---- */
.nav-link {
  font-family: "Asap", sans-serif;
  font-size: 14px;
  color: #203c8b;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #cb460e;
}

.nav-link-item {
  font-family: "Asap", sans-serif;
  font-size: 14px;
  color: #203c8b;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.45;
  white-space: nowrap;
  cursor: pointer;
}

.nav-link-item:hover {
  color: #cb460e;
}

.nav-link-dropdown {
  gap: 6px;
  align-items: center;
}

/* Nav link colors: transparent header = white text */
.site-header.header-home-page:not(.scrolled) .nav-link-item {
  color: white;
  text-shadow: 0 1px 2.54px rgba(0, 0, 0, 0.15);
}

.site-header.header-home-page:not(.scrolled) .nav-link-item:hover {
  color: rgba(255, 255, 255, 0.7);
}

.site-header.header-home-page:not(.scrolled) .nav-chevron-svg {
  color: white;
}

/* Nav link colors: scrolled header = blue text */
.site-header.scrolled .nav-link-item {
  color: #203c8b;
  text-shadow: none;
}

.site-header.scrolled .nav-chevron-svg {
  color: #203c8b;
}

/* Chevron SVG */
.nav-chevron-svg {
  width: 7px;
  height: 12px;
  transition:
    transform 0.2s,
    color 0.2s;
  flex-shrink: 0;
  display: block;
  overflow: visible;
  transform: translateY(0.5px) rotate(90deg);
  transform-origin: center;
}

.nav-dropdown-wrapper.open .nav-chevron-svg,
.nav-dropdown-wrapper:hover .nav-chevron-svg {
  transform: translateY(0.5px) rotate(-90deg);
}

/* ---- Dropdown Wrapper ---- */
.nav-dropdown-wrapper {
  position: relative;
}

/* ---- Dropdown Menu ---- */
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  width: 286px;
  background: #fff;
  border-radius: 0 0 16px 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 5.25px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity 0.2s,
    visibility 0.2s,
    transform 0.2s;
  z-index: 10;
}

.nav-dropdown-wrapper.open .nav-dropdown-menu,
.nav-dropdown-wrapper:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  font-family: "Asap", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #203c8b;
  text-decoration: none;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 39px;
  line-height: 1.45;
  border-radius: 8px;
  transition: background 0.15s;
}

.nav-dropdown-item:hover {
  background: #f4f5f9;
}

/* ---- Search Toggle Button ---- */
.search-toggle-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 80px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s;
  color: #203c8b;
}

.site-header.header-home-page:not(.scrolled) .search-toggle-btn {
  color: white;
}

.site-header.scrolled .search-toggle-btn {
  color: #203c8b;
}

.search-toggle-btn.active {
  background: #7586b7;
  color: #f4f5f9 !important;
}

/* ---- Search Panel ---- */
.search-panel {
  position: relative;
  z-index: 1;
  background: #fff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    opacity 0.3s;
  opacity: 0;
}

.search-panel.open {
  max-height: 200px;
  opacity: 1;
}

.search-close-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #203c8b;
  cursor: pointer;
  transition: opacity 0.2s;
}

.search-close-btn:hover {
  opacity: 0.7;
}

.search-input-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #c5c5c5;
  border-radius: 24px;
  padding: 2px 16px;
  background: #fff;
  height: 46px;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #323436;
  line-height: 1.45;
  background: transparent;
}

.search-input::placeholder {
  color: #8f8d8d;
}

.search-input-icon {
  flex-shrink: 0;
  color: #203c8b;
}

.search-submit-btn {
  width: 160px;
  height: 46px;
  border-radius: 80px;
  border: 1px solid #203c8b;
  background: transparent;
  color: #203c8b;
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
}

.search-submit-btn:hover {
  background: #203c8b;
  color: #fff;
}

/* ---- Top Bar ---- */
.top-bar {
  background: #f0f0f0;
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
  z-index: 101;
}

/* When header has dropdown or search open, show white bg even if not scrolled */
.site-header.has-overlay .header-main {
  background: #fff;
  box-shadow: 0 4px 5.25px rgba(0, 0, 0, 0.1);
}

.site-header.has-overlay .header-logo-white {
  display: none !important;
}
.site-header.has-overlay .header-logo-color {
  display: block !important;
}

.site-header.has-overlay .nav-link-item {
  color: #203c8b;
  text-shadow: none;
}

.site-header.has-overlay .nav-chevron-svg {
  color: #203c8b;
}

.site-header.has-overlay .search-toggle-btn {
  color: #203c8b;
}

.mobile-menu-toggle {
  width: 40px;
  height: 40px;
  border-radius: 80px;
  border: none;
  background: transparent;
  display: none;
  align-items: center;
  justify-content: center;
  color: #203c8b;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}

.mobile-menu-open-icon,
.mobile-menu-close-icon {
  display: block;
  flex-shrink: 0;
}

.mobile-menu-close-icon {
  display: none;
}

.mobile-menu-toggle.active .mobile-menu-open-icon {
  display: none;
}

.mobile-menu-toggle.active .mobile-menu-close-icon {
  display: block;
}

.mobile-menu-panel,
.mobile-search-panel {
  display: none;
}

.mobile-menu-link,
.mobile-submenu-link {
  font-family: "Asap", sans-serif;
  text-decoration: none;
}

.mobile-submenu[hidden] {
  display: none;
}

body.mobile-nav-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  i.banner-icon.fa-circle {
    background: #fff !important;
  }
  html,
  body {
    overflow-x: hidden;
    scrollbar-width: none; /* Firefox: hide scrollbar on mobile */
    -ms-overflow-style: none; /* IE/Edge: hide scrollbar on mobile */
  }
  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    display: none; /* Chrome/Safari: hide scrollbar on mobile */
  }

  .home-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  body.blog .max-w-7xl,
  body.archive .max-w-7xl,
  body.single-post .max-w-7xl,
  body.author .max-w-7xl {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Hero mobile overrides */
  .hero-section {
    padding-bottom: 0;
    background: #1a2744 !important;
  }

  .hero-content-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    padding: 0 16px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .hero-title {
    font-size: 24px;
    margin-bottom: 16px;
    max-width: none;
    font-family: "Be Vietnam Pro", sans-serif;
  }

  .hero-list {
    max-width: none;
  }

  .hero-list li {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45;
    margin-bottom: 8px;
  }

  .hero-cta {
    margin-top: 32px;
    font-size: 16px;
    width: 100%;
    max-width: none;
    justify-content: center;
    padding: 12px 16px;
    border: 1px solid white;
  }

  .home-blog-section,
  .home-calculators-section,
  .home-quiz-section,
  .faq-section {
    padding: 32px 0;
  }

  .newsletter-section {
    padding: 0 0 40px 0;
  }

  .home-blog-container {
    gap: 32px;
  }

  .home-interactive-container,
  .home-faq-left-stack {
    gap: 24px;
  }

  .home-blog-head-row {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 16px;
  }

  .section-label {
    font-size: 12px;
  }

  .home-section-label-wide {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.55px;
  }

  .label-mobile {
    display: inline;
  }

  .label-desktop {
    display: none;
  }

  .section-title,
  .faq-left-title {
    font-size: 28px;
  }

  .faq-left-title br {
    display: none;
  }

  .see-more-link {
    font-size: 16px;
  }

  .home-category-tabs {
    padding-bottom: 4px;
  }

  .category-tab {
    padding: 8px 24px;
    font-size: 16px;
  }

  .home-posts-layout {
    flex-direction: column;
    gap: 16px;
  }

  .home-posts-featured-card {
    height: 280px;
  }

  .home-posts-small-list {
    width: 100%;
    gap: 16px;
    display: flex;
    flex-direction: column;
  }

  .home-posts-small-card {
    height: 136px;
    min-height: 0;
    padding: 16px;
    border: 1px solid #cccccd;
    border-radius: 12px;
    background: white;
    gap: 8px;
  }

  .home-posts-small-card:last-child {
    border-bottom: 1px solid #cccccd;
    padding-bottom: 16px;
  }

  .home-posts-small-thumb {
    width: 96px;
    height: 96px;
    border-radius: 8px;
    flex-shrink: 0;
  }

  .article-card-featured .overlay {
    padding: 16px;
  }

  .article-card-featured {
    min-height: 280px;
    border-radius: 12px;
  }

  .featured-date {
    font-size: 12px;
  }

  .featured-title {
    font-size: 20px;
  }

  .featured-desc {
    font-size: 14px;
  }

  .small-card-title {
    font-size: 14px;
  }

  .interactive-card-title {
    font-size: 24px;
  }

  .interactive-card-desc {
    font-size: 14px;
  }

  .interactive-card {
    border-radius: 16px;
    padding: 24px;
    gap: 24px;
    border-color: #c7cee2;
  }

  .interactive-card .action-link {
    font-size: 13px;
  }

  .home-jornada-shell {
    min-height: auto !important;
    display: block;
    background: linear-gradient(180deg, #ffffff 0%, #f4f5f9 29%) !important;
  }

  .home-jornada-bg-wrapper {
    display: none !important;
  }

  .home-jornada-container {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .home-jornada-row {
    display: block;
  }

  .home-jornada-content {
    width: 100%;
    max-width: none;
    padding: 40px 0 0;
  }

  .jornada-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .jornada-desc {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .btn-jornada {
    width: 100%;
    max-width: none;
  }

  .home-jornada-mobile-image {
    display: block;
    width: calc(100% + 32px);
    margin-left: -16px;
    height: 387px;
    background: url("./images/bg-jornada-emagrecimento.png") no-repeat;
    background-size: cover;
    background-position: 56% top;
  }

  body.single-post .py-6.bg-white .max-w-7xl > .flex.gap-10.items-start {
    flex-direction: column;
    gap: 32px;
  }

  body.single-post .py-6.bg-white aside {
    position: static;
    top: auto;
    width: 100%;
  }

  body.single-post .py-6.bg-white article {
    width: 100%;
  }

  .home-faq-layout {
    flex-direction: column;
    gap: 40px;
  }

  .home-faq-right-column {
    width: 100%;
  }

  .faq-cta {
    width: 100%;
    max-width: none;
  }

  .faq-item {
    padding: 0 24px;
    border-color: #c7cee2;
    border-radius: 16px;
  }

  .faq-item:first-child {
    border-color: #c7cee2;
    border-width: 1px;
  }

  .faq-toggle {
    padding: 24px 0;
    font-size: 16px;
    color: #203c8b;
  }

  .faq-toggle .icon {
    color: #cb460e;
  }

  .faq-content {
    font-size: 16px;
    padding: 16px 0 24px;
    color: #323436;
  }

  .newsletter-card {
    width: 100%;
    border-radius: 16px;
    padding: 40px 16px;
  }

  .newsletter-label {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .newsletter-title {
    font-size: 24px;
  }

  .newsletter-input-row {
    flex-direction: column;
  }

  .btn-newsletter-fixed {
    width: 100%;
  }

  .newsletter-checkbox-text {
    font-size: 16px;
    color: #203c8b;
  }

  .footer-content-shell {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    gap: 40px;
  }

  .footer-top-row {
    flex-direction: column;
    justify-content: center;
    gap: 40px;
  }

  .footer-nav-box {
    border-radius: 24px;
    padding: 24px;
  }

  .footer-nav-grid {
    flex-direction: column;
    align-items: center;
  }

  .footer-nav-col,
  .footer-nav-col-wide {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .footer-nav-link,
  .footer-nav-heading {
    text-align: center;
  }

  .footer-legal-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .footer-legal-link {
    font-size: 12px;
  }

  .footer-hympar-row {
    flex-direction: column;
  }

  .footer-hympar-text {
    width: auto;
    text-align: center;
    margin: 10px 0;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .top-bar .max-w-7xl {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-header .header-main .header-container {
    justify-content: space-between;
  }

  .search-panel {
    display: none !important;
  }

  .mobile-menu-panel,
  .mobile-search-panel {
    display: block;
    position: relative;
    z-index: 1;
    background: #fff;
    box-shadow: 0 4px 5.25px rgba(0, 0, 0, 0.1);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition:
      max-height 0.3s ease,
      opacity 0.3s ease;
  }

  .mobile-menu-panel.open,
  .mobile-search-panel.open {
    max-height: calc(100vh - 76px);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-search-panel.open {
    min-height: calc(100vh - 76px);
  }

  .mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 16px 16px 32px;
    min-height: calc(100vh - 76px);
    overflow-y: auto;
  }

  .mobile-menu-link {
    width: 100%;
    border: 0;
    background: transparent;
    color: #203c8b;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45;
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }

  .mobile-menu-link-expand {
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
  }

  .mobile-menu-chevron {
    width: 14px;
    height: 14px;
    color: #203c8b;
    transition: transform 0.2s;
    transform: rotate(90deg);
    transform-origin: center;
  }

  .mobile-menu-section.is-open .mobile-menu-chevron {
    transform: rotate(-90deg);
  }

  .mobile-submenu {
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-left: 1px solid #d8dce7;
    padding-left: 12px;
  }

  .mobile-submenu-link {
    color: #203c8b;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.15s;
  }

  .mobile-submenu-link:hover {
    background: #f4f5f9;
  }

  .mobile-search-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .mobile-search-input-wrapper {
    width: 100%;
  }

  .mobile-search-submit-btn {
    width: 100%;
  }

  .site-header.header-home-page:not(.scrolled):not(.has-overlay)
    .mobile-menu-toggle {
    color: #fff;
  }

  .site-header.header-home-page:not(.scrolled):not(.has-overlay)
    .mobile-menu-toggle:hover {
    color: rgba(255, 255, 255, 0.75);
  }
}

/* ---- Featured image placeholder ---- */
.img-placeholder {
  background: linear-gradient(135deg, #1a2744, #2d4a7a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
}

.img-placeholder-light {
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  font-size: 0.75rem;
}

/* ---- Logo sema circle ---- */
.logo-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #f97316;
  border-radius: 50%;
  margin-left: 1px;
  vertical-align: middle;
}

/* ---- Scrollbar (desktop only) ---- */
@media (min-width: 768px) {
  ::-webkit-scrollbar {
    width: 6px;
  }
  ::-webkit-scrollbar-track {
    background: #f1f5f9;
  }
  ::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
  }
}

/* ---- Blog Article Cards (4-column grid) ---- */
.blog-article-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: white;
  border: 1px solid #cccccd;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.blog-article-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.blog-article-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
}

.blog-article-body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.blog-article-title {
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #323436;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-article-date {
  font-family: "Asap", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #808182;
  margin-top: 2px;
}

/* ---- Blog Article Small Cards (in 3-column) ---- */
.blog-article-card-sm {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px;
  border: 1px solid #cccccd;
  border-radius: 12px;
  background: white;
}

.blog-article-img-sm {
  width: 72px;
  height: 60px;
  flex-shrink: 0;
}

.blog-article-title-sm {
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #323436;
  line-height: 1.3;
}

/* ---- Tag Categoria ---- */
.tag-categoria {
  color: #cb460e;
  font-family: "Asap", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  display: inline-block;
}

/* ---- Running person image placeholder ---- */
.img-placeholder-runner {
  background: linear-gradient(135deg, #e8f0f7 0%, #d1dce8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Hide scrollbar for category tabs ---- */
.no-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* ============================================================
   CATEGORY PAGE (category.php) - Pencil frames cHbVE / LsxTb
============================================================ */

/* -- Container -- */
.cat-container {
  width: calc(100% - 140px);
  max-width: 1226px;
  margin-left: auto;
  margin-right: auto;
}

/* -- Breadcrumb + Title Section -- */
.cat-breadcrumb-section {
  background: #ffffff;
  padding-top: 11rem;
  padding-bottom: 0;
}
.cat-breadcrumb {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
  font-family: "Asap", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  color: #1c2b33;
}
.cat-breadcrumb a {
  color: #1c2b33;
  text-decoration: none;
  transition: color 0.2s;
}
.cat-breadcrumb a:hover {
  color: #203c8b;
}
.cat-breadcrumb svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.cat-breadcrumb-current {
  font-weight: 700;
  color: #1c2b33;
}
.cat-page-title {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  color: #203c8b;
  margin-bottom: 0;
}

/* -- Hero Section -- */
.cat-hero-section {
  background: #ffffff;
  padding: 32px 0 40px;
}
.cat-hero-grid {
  display: flex;
  gap: 24px;
  align-items: center;
}
.cat-hero-featured {
  flex: 1;
  min-width: 0;
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 440px;
  text-decoration: none;
}
.cat-hero-featured-img {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e8f0f7, #d1dce8);
}
.cat-hero-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cat-hero-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
}
.cat-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px;
  background: linear-gradient(
    to top,
    rgba(33, 33, 33, 0.85) 0%,
    transparent 100%
  );
  z-index: 2;
}
.cat-hero-date {
  font-family: "Asap", sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}
.cat-hero-title {
  font-family: "Asap", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 8px;
}
.cat-hero-excerpt {
  font-family: "Asap", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
.cat-hero-side {
  width: 389px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cat-hero-side-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid #cccccd;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  background: #ffffff;
  transition: box-shadow 0.2s;
}
.cat-hero-side-card:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.cat-hero-side-thumb {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f0f7, #d1dce8);
}
.cat-hero-side-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cat-hero-side-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cat-hero-side-title {
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #323436;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cat-hero-side-date {
  font-family: "Asap", sans-serif;
  font-size: 12px;
  color: #808182;
}

/* -- Content Section (Article List + Sidebar) -- */
.cat-content-section {
  background: #ffffff;
  padding: 48px 0;
}
.cat-content-grid {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.cat-articles-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.cat-articles-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Article Cards */
.cat-article-card {
  display: flex;
  gap: 24px;
  border: 1px solid #cccccd;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
  min-height: 153px;
}
.cat-article-card:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.cat-article-card-img {
  width: 288px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #e8f0f7, #d1dce8);
  overflow: hidden;
  border-radius: 4px 0 0 4px;
}
.cat-article-card-img .cat-article-card-img-inner,
.cat-article-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cat-article-card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px;
  gap: 12px;
}
.cat-article-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cat-article-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cat-article-card-title {
  font-family: "Asap", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #323436;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cat-article-card-excerpt {
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #323436;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cat-article-card-date {
  font-family: "Asap", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #323436;
  line-height: 1.45;
}
.cat-article-divider {
  width: 100%;
  height: 2px;
  background: #f5f5f5;
}

/* Load More Button */
.cat-load-more {
  display: flex;
  align-items: center;
  height: 48px;
}
.cat-load-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #cb460e;
  text-decoration: none;
  border: none;
  border-bottom: 1px solid #cb460e;
  background: transparent;
  transition: background 0.2s;
  cursor: pointer;
  padding: 0 0 2px 0;
  border-radius: 0;
  line-height: 1.2;
}
.cat-load-more-btn:hover {
  background: rgba(203, 70, 14, 0.05);
}

/* -- Sidebar -- */
.cat-sidebar {
  width: 289px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.cat-sidebar-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cat-sidebar-heading {
  font-family: "Asap", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #403d3c;
  line-height: 1.35;
}

/* Sidebar Category Pills */
.cat-sidebar-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cat-sidebar-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 1px solid #203c8b;
  border-radius: 80px;
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #203c8b;
  text-decoration: none;
  background: transparent;
  transition: all 0.2s;
  text-align: center;
  box-sizing: border-box;
  line-height: 1.3;
  word-break: break-word;
}
.cat-sidebar-pill:hover {
  background: #f4f5f9;
}
.cat-sidebar-pill.active {
  background: #203c8b;
  color: #ffffff;
}

/* Sidebar Post Cards */
.cat-sidebar-posts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cat-sidebar-post-card {
  display: block;
  padding: 16px;
  background: #f4f5f9;
  border-radius: 16px;
  border-bottom: 1px solid #e5e7eb;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
}
.cat-sidebar-post-card:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.cat-sidebar-post-title {
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #323436;
  line-height: 1.45;
  margin: 8px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cat-sidebar-post-date {
  font-family: "Asap", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #323436;
}

/* -- Mobile-only sidebar section -- */
.cat-mobile-sidebar-section {
  display: none; /* shown on mobile */
  background: #ffffff;
  padding: 40px 0;
}
.cat-mobile-categories-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.cat-mobile-categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cat-mobile-posts-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ============================================================
   CATEGORY PAGE - Responsive (Mobile < 768px)
============================================================ */
@media (max-width: 767px) {
  .cat-container {
    width: calc(100% - 32px);
  }
  .cat-breadcrumb-section {
    padding-top: 7.5rem;
  }
  .cat-breadcrumb {
    gap: 4px;
    font-size: 12px;
  }
  .cat-breadcrumb svg {
    width: 14px;
    height: 14px;
  }
  .cat-page-title {
    font-size: 36px;
  }

  /* Hero mobile */
  .cat-hero-section {
    padding: 16px 0 24px;
  }
  .cat-hero-grid {
    flex-direction: column;
    gap: 16px;
  }
  .cat-hero-featured {
    min-height: 280px;
    border-radius: 12px;
    width: 100%;
  }
  .cat-hero-side {
    width: 100%;
  }
  .cat-hero-side-card {
    padding: 16px;
  }

  /* Content mobile - single column */
  .cat-content-section {
    padding: 24px 0 0;
  }
  .cat-content-grid {
    flex-direction: column;
  }
  .cat-sidebar {
    display: none; /* hidden on mobile, shown via separate section */
  }

  /* Article cards mobile */
  .cat-article-card {
    flex-direction: row;
    gap: 8px;
    border-radius: 12px;
    padding: 16px;
    height: 136px;
  }
  .cat-article-card-img {
    width: 96px;
    height: 96px;
    border-radius: 8px;
    flex-shrink: 0;
  }
  .cat-article-card-body {
    padding: 0;
    gap: 8px;
  }
  .cat-article-card-title {
    font-size: 16px;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    height: 46px;
  }
  .cat-article-card-excerpt {
    display: none;
  }
  .cat-articles-list {
    gap: 16px;
  }
  .cat-article-divider {
    display: block;
    height: 2px;
    background: #f5f5f5;
  }

  /* Load more mobile */
  .cat-load-more {
    justify-content: center;
  }
  .cat-load-more-btn {
    width: auto;
  }

  /* Mobile sidebar sections visible */
  .cat-mobile-sidebar-section {
    display: block;
    padding: 40px 0;
  }
  .cat-mobile-categories-grid .cat-sidebar-pill {
    padding: 8px 16px;
  }
}

/* ============================================================
   SINGLE ARTICLE PAGE (single.php) - Pencil frames 2Y4dU / fhToR
============================================================ */

.single-breadcrumb-section {
  background: #ffffff;
  padding-top: 9rem;
  padding-bottom: 32px;
}

.single-breadcrumb {
  margin-bottom: 0;
  flex-wrap: nowrap;
  overflow: hidden;
}

.single-breadcrumb-current {
  display: inline-block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.single-callout-section {
  background: #ffffff;
  padding: 0 0 24px;
}

.single-callout-card {
  min-height: 120px;
  border-radius: 8px;
  padding: 16px 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 24%, rgba(0, 0, 0, 0.05) 100%),
    linear-gradient(120deg, #2a3c54, #617d9d);
}

.single-callout-title {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  max-width: 840px;
}

.single-callout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 80px;
  border: 1px solid #cb460e;
  background: #cb460e;
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #f4f5f9;
  text-decoration: none;
  white-space: nowrap;
}

.single-top-section {
  background: #ffffff;
  padding: 0 0 40px;
}

.single-top-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.single-top-category {
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  color: #cb460e;
}

.single-page-title {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  color: #323436;
}

.single-page-subtitle {
  font-family: "Asap", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
  color: #323436;
}

.single-author-line,
.single-author-line a,
.single-date-line {
  font-family: "Asap", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  color: #595b5c;
}

.single-author-line a {
  text-decoration: none;
}

.single-author-line a:hover {
  color: #203c8b;
}

.single-date-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.single-date-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #595b5c;
  display: inline-block;
}

.single-featured-image {
  width: 100%;
  height: 420px;
  border-radius: 8px;
  overflow: hidden;
}

.single-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.single-content-section {
  background: #ffffff;
  padding: 48px 0;
}

.single-content-grid {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.single-main-col {
  flex: 1;
  min-width: 0;
  padding-right: 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.single-article-content {
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: #323436;
}

.single-article-content table {
  display: block;
  width: 100%;
  margin: 0;
}

.single-article-content table th,
.single-article-content table td {
  padding: 12px;
  border-top: 1px solid #e5e7eb;
  font-family: "Asap", sans-serif;
  font-size: 14px;
  line-height: 1.45;
  color: #323436;
}

.single-article-content > * {
  margin-top: 0;
  margin-bottom: 2rem;
}

.single-article-content > *:last-child {
  margin-bottom: 0;
}

.single-article-content h2,
.single-article-content h3,
.single-article-content h4 {
  font-family: "Be Vietnam Pro", sans-serif;
  color: #323436;
  line-height: 1.2;
  margin-top: 32px;
  margin-bottom: 2rem;
}

.single-article-content h2 {
  font-size: 36px;
  font-weight: 700;
}

.single-article-content h3 {
  font-size: 32px;
  font-weight: 700;
}

.single-article-content h4 {
  font-size: 28px;
  font-weight: 700;
}

.single-article-content a {
  color: #cb460e;
  text-decoration: none;
}

.single-article-content a:hover {
  color: #203c8b;
}

.single-article-content ul,
.single-article-content ol {
  padding-left: 20px;
}

.single-article-content img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 32px 0;
}

.single-share-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.single-share-label {
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  color: #323436;
}

.single-share-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.single-share-btn {
  width: 32px;
  height: 32px;
  border-radius: 64px;
  background: #f4f4f4;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
}

.single-share-btn:hover {
  background: #e5e7eb;
}

.single-ref-accordion {
  display: flex;
  flex-direction: column;
}

.single-ref-toggle {
  width: 100%;
  height: 54px;
  border: 1px solid #a7a8a9;
  border-radius: 8px;
  background: #f4f5f9;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.single-ref-toggle span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: #132453;
}

.single-ref-icon {
  color: #132453;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.single-ref-toggle[aria-expanded="true"] .single-ref-icon {
  transform: rotate(180deg);
}

.single-ref-content {
  border: 1px solid #acacad;
  border-top: 0;
  border-radius: 0 0 8px 8px;
  padding: 48px 24px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #3d3d40;
}

.single-ref-content p {
  word-break: break-all;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.single-ref-content > * {
  margin-top: 0;
  margin-bottom: 16px;
}

.single-ref-content > *:last-child {
  margin-bottom: 0;
}

.single-sidebar {
  width: 289px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* pills in sidebar use grid auto width */

.single-sidebar-banner {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.single-sidebar-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.single-sidebar-posts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.single-sidebar-post-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  border-bottom: 1px solid #e5e7eb;
  background: #f4f5f9;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
}

.single-sidebar-post-card:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.single-sidebar-post-thumb {
  display: none;
}

.single-sidebar-post-thumb-img {
  display: none;
}

.single-sidebar-post-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.single-sidebar-post-title {
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #323436;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.single-sidebar-post-date {
  font-family: "Asap", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  color: #323436;
}

.single-related-section {
  background: #ffffff;
  padding: 48px 0;
}

.single-related-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.single-related-header .blog-ver-tudo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e46434;
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
}

.single-related-header .blog-ver-tudo span {
  border-bottom: 1px solid currentColor;
  line-height: 1;
  padding-bottom: 1px;
}

.single-related-header .blog-ver-tudo-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.single-related-title {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: #323436;
}

.single-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.single-related-grid .blog-article-card {
  border-radius: 12px;
  border: 1px solid #cccccd;
}

.single-related-grid .blog-article-img {
  height: 140px;
}

.single-related-grid .blog-article-body {
  padding: 12px;
  gap: 8px;
}

.single-related-grid .blog-article-title {
  line-height: 1.45;
  min-height: 69px;
}

.single-related-grid .blog-article-date {
  color: #323436;
}

.single-mobile-sidebar-section {
  display: none;
  background: #ffffff;
  padding: 40px 0 0 0;
}

.single-mobile-newsletter {
  display: none;
}

@media (max-width: 767px) {
  .single-breadcrumb-section {
    padding-top: 7.5rem;
  }

  .single-breadcrumb {
    width: 100%;
    flex-wrap: nowrap;
    overflow: hidden;
  }
  .single-breadcrumb a,
  .single-breadcrumb span:not(.single-breadcrumb-current) {
    flex-shrink: 0;
    white-space: nowrap;
  }
  .single-breadcrumb-current {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .single-callout-section {
    padding-bottom: 16px;
  }

  .single-callout-card {
    min-height: 140px;
    border-radius: 12px;
    padding: 16px;
    justify-content: center;
  }

  .single-callout-title {
    font-family: "Asap", sans-serif;
    font-size: 20px;
    line-height: 1.35;
    text-align: center;
  }

  .single-callout-btn {
    display: none;
  }

  .single-top-section {
    padding: 24px 0 40px;
  }

  .single-page-title {
    font-size: 36px;
    line-height: 1.2;
  }

  .single-page-subtitle {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45;
  }

  .single-featured-image {
    height: 279px;
    border-radius: 12px;
  }

  .single-content-section {
    padding: 0;
  }

  .single-content-grid {
    flex-direction: column;
  }

  .single-main-col {
    padding-right: 0;
    gap: 32px;
  }

  .single-article-content h2 {
    font-size: 32px;
  }

  .single-article-content h3,
  .single-article-content h4 {
    font-size: 28px;
  }

  .single-article-content img {
    margin: 24px 0;
  }

  .single-sidebar {
    display: none;
  }

  .single-related-section {
    display: none;
  }

  .single-mobile-sidebar-section {
    display: block;
  }

  .single-mobile-sidebar-section .cat-mobile-categories-grid .cat-sidebar-pill {
    /* auto width based on content */
  }

  .single-mobile-sidebar-section .cat-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-bottom: 40px;
  }

  .single-mobile-sidebar-section .cat-mobile-categories-block {
    margin-bottom: 0;
  }

  .single-mobile-sidebar-section .cat-sidebar-heading {
    color: #323436;
  }

  .single-mobile-sidebar-section .single-sidebar-banner {
    height: 300px;
    margin-bottom: 0;
  }

  .single-mobile-newsletter {
    display: block;
  }

  body.single-post .newsletter-section {
    display: none;
  }
}

/* Mobile Newsletter */
.single-mobile-newsletter-card {
  border-radius: 16px;
  background: #f4f5f9;
  padding: 40px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.single-mobile-newsletter-title {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.single-mobile-newsletter-label {
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  color: #a7a8a9;
}

.single-mobile-newsletter-heading {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #323436;
}

.single-mobile-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.single-mobile-newsletter-field {
  width: 100%;
}

.single-mobile-newsletter-input {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  border: 1px solid #a7a8a9;
  background: #ffffff;
  padding: 8px 16px;
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: #323436;
  outline: none;
  box-sizing: border-box;
}

.single-mobile-newsletter-input::placeholder {
  color: #a7a8a9;
}

.single-mobile-newsletter-btn {
  width: 100%;
  height: auto;
  border-radius: 80px;
  border: 1px solid #203c8b;
  background: #203c8b;
  padding: 12px 16px;
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #f4f5f9;
  cursor: pointer;
  text-align: center;
}

.single-mobile-newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}

.single-mobile-newsletter-checkbox {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  border: 1px solid #c0c0c0;
  background: #ffffff;
  flex-shrink: 0;
  margin-top: 3px;
  cursor: pointer;
}

.single-mobile-newsletter-consent span {
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: #203c8b;
}

/* ---- Single-post newsletter overrides (footer shared component) ---- */
body.single-post .newsletter-section {
  padding: 0 0 80px;
}

body.single-post .newsletter-label {
  text-transform: none;
}

body.single-post .btn-newsletter {
  background: #cb460e;
  border-color: #cb460e;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

body.single-post .btn-newsletter::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 14'%3E%3Cpath d='M1 1l6 6-6 6' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E")
    no-repeat center;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 14'%3E%3Cpath d='M1 1l6 6-6 6' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E")
    no-repeat center;
}

body.single-post .btn-newsletter:hover {
  background: #a93a0b;
}

body.single-post .newsletter-checkbox-text {
  color: #203c8b;
}

body.single-post .newsletter-checkbox-text a {
  color: #203c8b;
}

/* ---- Wavy Decoration ---- */
.wavy-decoration {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  opacity: 0.15;
}

/* ---- Btn Primary (legacy, kept for FAQ CTA) ---- */
.btn-primary {
  background: #203c8b;
  color: white;
  font-family: "Asap", sans-serif;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 80px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #1a3278;
}

.btn-primary-outline {
  background: transparent;
  color: white;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 80px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.btn-primary-outline:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

/* ============================================================
   BLOG (/blog) - PNG fidelity scoped overrides
============================================================ */
body.blog .blog-breadcrumb .max-w-7xl,
body.blog .blog-hero .max-w-7xl,
body.blog .blog-category-nav .max-w-7xl,
body.blog .blog-listing-section .max-w-7xl,
body.blog .blog-three-columns-section .max-w-7xl {
  width: calc(100% - 140px);
  max-width: 1226px;
  margin-left: auto;
  margin-right: auto;
}

.blog-breadcrumb {
  padding-bottom: 40px;
}

.blog-breadcrumb nav {
  margin-bottom: 16px;
  font-family: "Asap", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  color: #1c2b33;
}

.blog-breadcrumb nav a,
.blog-breadcrumb nav span {
  color: #1c2b33;
}

.blog-breadcrumb nav svg {
  width: 7px;
  height: 12px;
  color: #1c2b33;
}

.blog-breadcrumb nav span {
  font-weight: 700;
}

.blog-breadcrumb h1 {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  color: #203c8b;
  margin-bottom: 0;
}

body.blog .blog-hero {
  padding-bottom: 48px;
}

body.blog .blog-hero .grid.grid-cols-1.lg\:grid-cols-3 {
  display: flex;
  gap: 24px;
}

body.blog .blog-hero .grid.grid-cols-1.lg\:grid-cols-3 > .lg\:col-span-2 {
  flex: 1 1 0;
  min-width: 0;
}

body.blog .blog-hero .grid.grid-cols-1.lg\:grid-cols-3 > .flex.flex-col.gap-4 {
  flex: 0 0 389px;
  width: 389px;
  gap: 16px;
}

body.blog .blog-hero .article-card-featured {
  min-height: 440px;
  height: 440px;
  border-radius: 16px;
}

body.blog .blog-hero .article-card-featured .overlay {
  padding: 32px 24px;
}

body.blog .blog-hero .article-card-featured .overlay > p:first-of-type {
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  color: #ffffff;
  margin-bottom: 8px;
}

body.blog .blog-hero .article-card-featured .overlay h3 {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.blog .blog-hero .article-card-featured .overlay > p:last-of-type {
  font-family: "Asap", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.7);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.blog .blog-hero .tag-semaglutida {
  background: #cb460e;
  color: #f4f5f9;
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  padding: 8px 24px;
}

body.blog .blog-hero .article-card-small {
  height: 136px;
  padding: 16px;
  gap: 8px;
  align-items: center;
  border-radius: 12px;
  border: 1px solid #cccccd;
}

body.blog .blog-hero .article-card-small > .w-24.h-20 {
  width: 96px;
  height: 96px;
  border-radius: 8px;
}

body.blog .blog-hero .article-card-small h4 {
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #323436;
  line-height: 1.45;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.blog .blog-hero .article-card-small h4.is-semaglutida {
  -webkit-line-clamp: 3;
}

body.blog .blog-hero .article-card-small p {
  font-family: "Asap", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  color: #808182;
  margin-top: 0;
}

body.blog .blog-category-nav {
  padding-top: 48px;
  padding-bottom: 48px;
}

body.blog .blog-category-nav h2 {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #313232;
}

body.blog .blog-category-nav .flex.items-center.justify-between {
  margin-bottom: 24px;
}

body.blog .blog-category-nav #cat-prev,
body.blog .blog-category-nav #cat-next {
  width: 40px;
  height: 40px;
  border-radius: 80px;
  border: 2px solid #c7cee2;
  color: #203c8b;
  background: #ffffff;
}

body.blog .blog-category-nav #cat-prev svg,
body.blog .blog-category-nav #cat-next svg {
  width: 14px;
  height: 24px;
}

body.blog .search-toggle-btn .search-icon-svg {
  width: 25px;
  height: 25px;
}

body.blog .mobile-menu-open-icon,
body.blog .mobile-menu-close-icon {
  width: 24px;
  height: 24px;
}

body.blog .blog-category-nav #cat-prev:hover,
body.blog .blog-category-nav #cat-next:hover {
  border-color: #c7cee2;
  color: #203c8b;
  background: #f4f5f9;
}

body.blog .blog-category-nav .category-tab {
  min-width: 160px;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid #203c8b;
  border-radius: 80px;
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #203c8b;
  background: #ffffff;
  line-height: 1.4;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

body.blog .blog-category-nav .category-tab.active {
  border-color: #203c8b;
  background: #ffffff;
  color: #203c8b;
}

body.blog .blog-category-nav .category-tab:hover:not(.active) {
  background: #f4f5f9;
}

body.blog .blog-category-nav #category-tabs-container {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 16px;
  padding-bottom: 4px;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

body.blog .blog-category-nav #category-tabs-container::-webkit-scrollbar {
  display: none;
}

body.blog .blog-listing-section,
body.blog .blog-three-columns-section {
  padding-top: 48px;
  padding-bottom: 48px;
}

body.blog .blog-listing-section .flex.items-center.justify-between.mb-8,
body.blog .blog-listing-section-final .flex.items-center.justify-between.mb-8,
body.blog
  .blog-three-columns-section
  .grid.grid-cols-1.lg\:grid-cols-3
  > div
  > h2 {
  margin-bottom: 24px;
}

body.blog .blog-listing-section .flex.items-center.justify-between.mb-8 h2,
body.blog
  .blog-listing-section-final
  .flex.items-center.justify-between.mb-8
  h2 {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: #323436;
}

body.blog .blog-three-columns-section .grid.grid-cols-1.lg\:grid-cols-3 {
  gap: 24px;
}

body.blog
  .blog-three-columns-section
  .grid.grid-cols-1.lg\:grid-cols-3
  > div
  > h2 {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #403d3c;
}

/* Old Ver Tudo styling removed — now handled by .blog-ver-tudo */

body.blog .blog-listing-section .blog-article-card,
body.blog .blog-three-columns-section .blog-article-card {
  border: 1px solid #cccccd;
  border-radius: 12px;
  overflow: hidden;
}

body.blog .blog-listing-section .blog-article-img,
body.blog .blog-three-columns-section .blog-article-img {
  height: 140px;
  border-radius: 4px 4px 0 0;
}

body.blog .blog-listing-section .blog-article-body,
body.blog .blog-three-columns-section .blog-article-body {
  padding: 12px;
  gap: 8px;
}

body.blog .blog-listing-section .tag-categoria,
body.blog .blog-three-columns-section .tag-categoria {
  font-family: "Asap", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
  color: #cb460e;
}

body.blog .blog-listing-section .blog-article-title,
body.blog .blog-three-columns-section .blog-article-title,
body.blog .blog-three-columns-section .blog-article-title-sm {
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #323436;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.blog .blog-listing-section .blog-article-title.is-semaglutida,
body.blog .blog-three-columns-section .blog-article-title.is-semaglutida,
body.blog .blog-three-columns-section .blog-article-title-sm.is-semaglutida {
  -webkit-line-clamp: 3;
}

body.blog .blog-listing-section .blog-article-date,
body.blog .blog-three-columns-section .blog-article-date {
  font-family: "Asap", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #323436;
  margin-top: 0;
}

body.blog .blog-three-columns-section .blog-article-card-sm {
  align-items: center;
  border: 1px solid #cccccd;
  border-radius: 12px;
  height: 136px;
  padding: 16px;
  gap: 8px;
}

body.blog .blog-three-columns-section .blog-article-img-sm {
  width: 96px;
  height: 96px;
  border-radius: 8px;
  overflow: hidden;
}

body.blog .blog-three-columns-section .blog-article-title-sm {
  margin-bottom: 0;
}

body.blog .blog-three-columns-section .blog-article-card-sm .blog-article-date {
  color: #808182;
}

@media (min-width: 1024px) and (max-width: 1365px) {
  body.blog .blog-breadcrumb .max-w-7xl,
  body.blog .blog-hero .max-w-7xl,
  body.blog .blog-category-nav .max-w-7xl,
  body.blog .blog-listing-section .max-w-7xl,
  body.blog .blog-three-columns-section .max-w-7xl {
    width: calc(100% - 64px);
    max-width: none;
  }

  body.blog .blog-listing-section,
  body.blog .blog-three-columns-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  body.blog
    .blog-hero
    .grid.grid-cols-1.lg\:grid-cols-3
    > .flex.flex-col.gap-4 {
    flex-basis: 360px;
    width: 360px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  body.blog .blog-breadcrumb .max-w-7xl,
  body.blog .blog-hero .max-w-7xl,
  body.blog .blog-category-nav .max-w-7xl,
  body.blog .blog-listing-section .max-w-7xl,
  body.blog .blog-three-columns-section .max-w-7xl {
    width: calc(100% - 48px);
    max-width: none;
  }

  body.blog .blog-hero .grid.grid-cols-1.lg\:grid-cols-3 {
    display: flex;
    flex-direction: column;
  }

  body.blog
    .blog-hero
    .grid.grid-cols-1.lg\:grid-cols-3
    > .flex.flex-col.gap-4 {
    width: 100%;
    flex-basis: auto;
  }

  body.blog .blog-hero .article-card-featured {
    min-height: 360px;
    height: 360px;
  }

  body.blog
    .blog-listing-section
    .grid.grid-cols-1.sm\:grid-cols-2.lg\:grid-cols-4,
  body.blog
    .blog-listing-section-final
    .grid.grid-cols-1.sm\:grid-cols-2.lg\:grid-cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.blog .blog-listing-section,
  body.blog .blog-three-columns-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* "Ver Tudo" link — unified style (desktop + mobile) */
body.blog .blog-ver-tudo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e46434;
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
}
body.blog .blog-ver-tudo span {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: #e46434;
}
body.blog .blog-ver-tudo-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
/* Mobile-only variant: hidden on desktop */
body.blog .blog-ver-tudo--mobile-only {
  display: none;
}

@media (max-width: 767px) {
  .page-pagina {
    margin-top: 2rem !important;
    padding: 0px 1.5rem;
  }

  .single-article-content table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  body.blog .blog-breadcrumb .max-w-7xl,
  body.blog .blog-hero .max-w-7xl,
  body.blog .blog-category-nav .max-w-7xl,
  body.blog .blog-listing-section .max-w-7xl,
  body.blog .blog-three-columns-section .max-w-7xl,
  body.blog .blog-listing-section-final .max-w-7xl {
    width: 100%;
    max-width: none;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  body.blog .blog-breadcrumb {
    padding-top: 6.75rem !important;
    padding-bottom: 24px;
  }

  body.blog .blog-breadcrumb nav {
    margin-bottom: 12px;
    gap: 6px;
    font-size: 11px;
  }

  body.blog .blog-breadcrumb h1 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 0;
  }

  body.blog .blog-hero {
    padding-bottom: 32px;
  }

  body.blog .blog-hero .grid.grid-cols-1.lg\:grid-cols-3 {
    display: flex;
    flex-direction: column;
  }

  body.blog .blog-hero .grid.grid-cols-1.lg\:grid-cols-3 > .lg\:col-span-2,
  body.blog
    .blog-hero
    .grid.grid-cols-1.lg\:grid-cols-3
    > .flex.flex-col.gap-4 {
    width: 100%;
    flex-basis: auto;
  }

  body.blog .blog-hero .article-card-featured {
    min-height: 280px;
    height: 280px;
    border-radius: 12px;
  }

  body.blog .blog-hero .article-card-featured .overlay {
    padding: 18px 16px;
  }

  body.blog .blog-hero .article-card-featured .overlay > p:first-of-type {
    font-size: 12px;
  }

  body.blog .blog-hero .article-card-featured .overlay h3 {
    font-size: 20px;
  }

  body.blog .blog-hero .article-card-featured .overlay > p:last-of-type {
    font-size: 14px;
  }

  body.blog .blog-hero .tag-semaglutida {
    font-size: 12px;
    padding: 4px 12px;
  }

  body.blog .blog-hero .flex.flex-col.gap-4 {
    gap: 16px;
  }

  body.blog .blog-hero .article-card-small {
    height: 136px;
  }

  body.blog .blog-category-nav {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  body.blog .blog-category-nav .flex.items-center.justify-between {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }

  body.blog .blog-category-nav h2 {
    font-size: 20px;
    line-height: 1.35;
  }

  body.blog .blog-category-nav #cat-prev,
  body.blog .blog-category-nav #cat-next {
    width: 40px;
    height: 40px;
  }

  body.blog .blog-category-nav #cat-prev svg,
  body.blog .blog-category-nav #cat-next svg {
    width: 12px;
    height: 20px;
  }

  body.blog .search-toggle-btn .search-icon-svg {
    width: 22px;
    height: 22px;
  }

  body.blog .mobile-menu-open-icon,
  body.blog .mobile-menu-close-icon {
    width: 20px;
    height: 20px;
  }

  body.blog .blog-category-nav #category-tabs-container {
    gap: 10px;
  }

  body.blog .blog-category-nav .category-tab {
    min-height: 44px;
    min-width: 132px;
    padding: 10px 16px;
    flex-shrink: 0;
  }

  body.blog .blog-listing-section,
  body.blog .blog-three-columns-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  /* ---- Hide desktop-only "Ver Tudo" from header row on mobile ---- */
  body.blog
    .blog-listing-section
    .flex.items-center.justify-between.mb-8
    > a.blog-ver-tudo,
  body.blog
    .blog-listing-section-final
    .flex.items-center.justify-between.mb-8
    > a.blog-ver-tudo {
    display: none;
  }

  /* Show mobile-only "Ver Tudo" on mobile */
  body.blog .blog-ver-tudo--mobile-only {
    display: inline-flex;
    margin-top: 24px;
  }

  body.blog .blog-listing-section .flex.items-center.justify-between.mb-8,
  body.blog
    .blog-three-columns-section
    .flex.items-center.justify-between.mb-8 {
    margin-bottom: 24px;
    padding: 0;
  }

  body.blog .blog-listing-section h2,
  body.blog .blog-three-columns-section h2 {
    font-size: 32px;
    line-height: 1.2;
  }

  /* ---- Mobile card grid: stacked with dividers ---- */
  body.blog
    .blog-listing-section
    .grid.grid-cols-1.sm\:grid-cols-2.lg\:grid-cols-4,
  body.blog
    .blog-listing-section-final
    .grid.grid-cols-1.sm\:grid-cols-2.lg\:grid-cols-4,
  body.blog .blog-three-columns-section .grid.grid-cols-1.lg\:grid-cols-3 {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* ---- First card: vertical (image on top) ---- */
  body.blog .blog-listing-section .blog-article-card:first-child,
  body.blog .blog-listing-section-final .blog-article-card:first-child {
    display: flex;
    flex-direction: column;
    border: 1px solid #cccccd;
    border-radius: 12px;
    overflow: hidden;
  }
  body.blog
    .blog-listing-section
    .blog-article-card:first-child
    .blog-article-img,
  body.blog
    .blog-listing-section-final
    .blog-article-card:first-child
    .blog-article-img {
    height: 140px;
    width: 100%;
    border-radius: 4px 4px 0 0;
  }
  body.blog
    .blog-listing-section
    .blog-article-card:first-child
    .blog-article-body,
  body.blog
    .blog-listing-section-final
    .blog-article-card:first-child
    .blog-article-body {
    padding: 12px;
  }

  /* ---- Cards 2+: horizontal (image left, text right) ---- */
  body.blog .blog-listing-section .blog-article-card:not(:first-child),
  body.blog .blog-listing-section-final .blog-article-card:not(:first-child) {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    border: 1px solid #cccccd;
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
  }
  body.blog
    .blog-listing-section
    .blog-article-card:not(:first-child)
    .blog-article-img,
  body.blog
    .blog-listing-section-final
    .blog-article-card:not(:first-child)
    .blog-article-img {
    width: 107px;
    min-width: 107px;
    height: 100%;
    min-height: 125px;
    border-radius: 0;
  }
  body.blog
    .blog-listing-section
    .blog-article-card:not(:first-child)
    .blog-article-body,
  body.blog
    .blog-listing-section-final
    .blog-article-card:not(:first-child)
    .blog-article-body {
    flex: 1;
    min-width: 0;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }
  body.blog
    .blog-listing-section
    .blog-article-card:not(:first-child)
    .blog-article-title,
  body.blog
    .blog-listing-section-final
    .blog-article-card:not(:first-child)
    .blog-article-title {
    font-size: 12px;
    line-height: 1.45;
    -webkit-line-clamp: 4;
  }
  body.blog
    .blog-listing-section
    .blog-article-card:not(:first-child)
    .tag-categoria,
  body.blog
    .blog-listing-section-final
    .blog-article-card:not(:first-child)
    .tag-categoria {
    font-size: 10px;
  }

  /* ---- Divider lines between cards ---- */
  body.blog .blog-listing-section .blog-article-card + .blog-article-card,
  body.blog
    .blog-listing-section-final
    .blog-article-card
    + .blog-article-card {
    margin-top: 16px;
    position: relative;
  }
  body.blog
    .blog-listing-section
    .blog-article-card
    + .blog-article-card::before,
  body.blog
    .blog-listing-section-final
    .blog-article-card
    + .blog-article-card::before {
    content: "";
    display: block;
    position: absolute;
    top: -9px;
    left: 0;
    right: 0;
    height: 2px;
    background: #c7cee2;
  }

  body.blog .blog-listing-section .blog-article-img,
  body.blog .blog-three-columns-section .blog-article-img {
    height: 140px;
  }

  body.blog .blog-three-columns-section .blog-article-card-sm {
    margin-bottom: 0;
  }

  /* ---- Three-columns section: each column stacked on mobile ---- */
  body.blog .blog-three-columns-section .grid.grid-cols-1.lg\:grid-cols-3 {
    gap: 0;
  }
  body.blog .blog-three-columns-section .flex.flex-col {
    padding: 40px 0;
    border-top: 1px solid #f3f4f6;
  }
  body.blog .blog-three-columns-section .flex.flex-col:first-child {
    border-top: none;
  }
  body.blog .blog-three-columns-section .flex.flex-col h2 {
    margin-bottom: 24px;
  }
  /* Main card in three-columns: vertical layout */
  body.blog .blog-three-columns-section .blog-article-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #cccccd;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0;
  }
  body.blog .blog-three-columns-section .blog-article-card .blog-article-img {
    height: 140px;
    width: 100%;
    border-radius: 4px 4px 0 0;
  }
  body.blog .blog-three-columns-section .blog-article-card .blog-article-body {
    padding: 12px;
  }
  /* Small cards in three-columns: horizontal layout */
  body.blog .blog-three-columns-section .blog-article-card-sm {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    border: 1px solid #cccccd;
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
    margin-top: 16px;
    position: relative;
  }
  body.blog .blog-three-columns-section .blog-article-card-sm::before {
    content: "";
    display: block;
    position: absolute;
    top: -9px;
    left: 0;
    right: 0;
    height: 2px;
    background: #c7cee2;
  }
  body.blog
    .blog-three-columns-section
    .blog-article-card-sm
    .blog-article-img-sm {
    width: 107px;
    min-width: 107px;
    height: 100%;
    min-height: 125px;
    border-radius: 0;
  }
  body.blog .blog-three-columns-section .blog-article-card-sm .flex-1 {
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }
  body.blog
    .blog-three-columns-section
    .blog-article-card-sm
    .blog-article-title-sm {
    font-size: 12px;
    line-height: 1.45;
    -webkit-line-clamp: 4;
  }
  body.blog .blog-three-columns-section .blog-article-card-sm .tag-categoria {
    font-size: 10px;
  }

  /* Also add divider between main card and first small card */
  body.blog
    .blog-three-columns-section
    .blog-article-card
    + .blog-article-card-sm {
    margin-top: 16px;
    position: relative;
  }
  body.blog
    .blog-three-columns-section
    .blog-article-card
    + .blog-article-card-sm::before {
    content: "";
    display: block;
    position: absolute;
    top: -9px;
    left: 0;
    right: 0;
    height: 2px;
    background: #c7cee2;
  }

  /* ---- Mobile "Ver Tudo" — already styled by base rule, no overrides needed ---- */
}

/* ============================================================
   AUTHOR PAGE (author.php) - Pencil frames GmjD8 / lev5m
============================================================ */

/* -- Container (matches cat-container pattern) -- */
.author-container {
  width: calc(100% - 140px);
  max-width: 1226px;
  margin-left: auto;
  margin-right: auto;
}

/* -- Hero section -- */
.author-hero-section {
  background: #ffffff;
  padding-top: 7.5rem;
  padding-bottom: 0;
}

/* -- Breadcrumb -- */
.author-breadcrumb {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 88px;
  margin-bottom: 2rem;
  font-family: "Asap", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  color: #1c2b33;
}
.author-breadcrumb a {
  color: #1c2b33;
  text-decoration: none;
  transition: color 0.2s;
}
.author-breadcrumb a:hover {
  color: #203c8b;
}
.author-breadcrumb svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.author-breadcrumb-current {
  font-weight: 700;
  color: #1c2b33;
}

/* -- Author profile row (image + info) -- */
.author-profile {
  display: flex;
  gap: 48px;
  align-items: stretch;
  max-width: 1140px;
}

/* Avatar */
.author-avatar {
  width: 294px;
  height: 192px;
  flex-shrink: 0;
  border-radius: 0;
  overflow: hidden;
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Info column */
.author-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-width: 0;
}
.author-name {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  color: #3d3d40;
  margin: 0;
}
.author-especialidade {
  font-family: "Asap", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  color: #3d3d40;
  margin: 0;
}
.author-crm {
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: #3d3d40;
  margin: 0;
}

/* Social buttons */
.author-social {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 32px;
}
.author-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 64px;
  background: #f5f5f5;
  padding: 4px;
  color: #3d3d40;
  text-decoration: none;
  transition: background 0.2s;
}
.author-social-btn:hover {
  background: #e8e8e8;
}
.author-social-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Description (full-width below profile) */
.author-description {
  margin-top: 32px;
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: #3d3e40;
  max-width: 913px;
}
.author-description p {
  margin: 0 0 10px 0;
}
.author-description p:last-child {
  margin-bottom: 0;
}

/* -- Articles section -- */
.author-articles-section {
  background: #ffffff;
  padding: 48px 0 48px;
}

/* Articles heading */
.author-articles-heading {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #3d3d40;
  margin: 0 0 24px 0;
}

/* Cards grid — 4 columns */
.author-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 288px);
  row-gap: 24px;
  justify-content: space-between;
}

/* Individual card */
.author-card {
  width: 288px;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #cccccd;
  background: #ffffff;
  text-decoration: none;
  color: inherit;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
  cursor: pointer;
}
.author-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* Card image */
.author-card-img {
  width: 100%;
  height: 140px;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
}
.author-card-img img,
.author-card-img .author-card-img-inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Card body */
.author-card-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  background: #ffffff;
}
.author-card-category {
  font-family: "Asap", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  color: #cb460e;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.author-card-title {
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  color: #323436;
  margin: 0;
  height: 69px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.author-card-date {
  font-family: "Asap", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  color: #323436;
  margin: 0;
}

/* Load More button (matches cat-load-more-btn) */
.author-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  height: 48px;
  align-items: center;
}
.author-load-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #cb460e;
  text-decoration: none;
  border: none;
  border-bottom: 1px solid #cb460e;
  background: transparent;
  transition: background 0.2s;
  cursor: pointer;
  padding: 0 0 2px 0;
  border-radius: 0;
  line-height: 1.2;
}
.author-load-more-btn:hover {
  background: rgba(203, 70, 14, 0.05);
}
.author-load-more-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ============================================================
   AUTHOR PAGE — MOBILE (max-width: 767px)
============================================================ */
@media (max-width: 767px) {
  .author-container {
    width: calc(100% - 32px);
  }

  .author-hero-section {
    padding-top: 7.5rem;
  }

  /* Breadcrumb */
  .author-breadcrumb {
    height: 56px;
    padding: 16px 0;
    gap: 4px;
    font-size: 12px;
  }
  .author-breadcrumb svg {
    width: 14px;
    height: 14px;
  }

  /* Profile — stacked layout */
  .author-profile {
    flex-direction: column;
    gap: 32px;
  }
  .author-avatar {
    width: 100%;
    height: 140px;
  }

  /* Name smaller on mobile */
  .author-name {
    font-size: 36px;
  }

  /* Description */
  .author-description {
    margin-top: 32px;
  }

  /* Articles section */
  .author-articles-section {
    padding: 32px 0 32px;
  }

  /* Articles heading — mobile version */
  .author-articles-heading {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;
    color: #3d3d40;
    text-align: center;
    margin-bottom: 24px;
  }

  /* Cards — single column */
  .author-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .author-card {
    width: 100%;
  }

  /* Load more */
  .author-load-more-wrap {
    margin-top: 24px;
  }
}

.page-pagina {
  margin-top: 4rem;
}

sr7-slide.sr7-staticslide-high {
  display: none !important;
}

i.banner-icon.fa-circle {
    width: 5px;
    height: 5px;
    display: inline-block;
    background: #203c8b;
    border-radius: 50%;
    margin-bottom: 5px;
    margin-right: 3px;
}