* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Segoe UI, system-ui, -apple-system, sans-serif;
  background: #f5f7fa;
  color: #2d3748;
}
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  overflow-x: hidden;
  font-size: 90%;
}
body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f7fafc;
  color: #2d3748;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}
a {
  text-decoration:none;
}
.app-root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  max-width: 100vw;
}
main {
  flex: 1;
}
.mega-header {
  background: linear-gradient(135deg, #0f2027, #1a365d, #2d3748);
  color: #fff;
  position: relative;
  z-index: 100;
  box-shadow: 0 4px 30px #0003;
}
.mega-nav {
  max-width: 1400px;
  margin: 0 auto;
}
.mega-nav-bar {
  display: flex;
  align-items: center;
  padding: 0 40px;
  min-height: 70px;
  gap: 10px;
  flex-wrap: wrap;
}
.mega-nav-brand {
  font-size: 2em;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  position: relative;
}
.mega-nav-brand .logo {
  height: 34px;
  width: auto;
  animation: logoShift 8s ease-in-out infinite;
}
@keyframes logoShift {
  0%,
  to {
    filter: hue-rotate(0deg) brightness(1);
  }
  50% {
    filter: hue-rotate(15deg) brightness(1.08);
  }
}
.mega-brand-full {
  display: flex;
  align-items: center;
}
.mega-brand-shrunk {
  display: none;
}
.mega-nav-tagline {
  font-size: 0.8em;
  color: #ffffff80;
  margin-right: auto;
  display: none;
}
@media (min-width: 900px) {
  .mega-nav-tagline {
    display: inline;
  }
}
.mega-mobile-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.5em;
  cursor: pointer;
  padding: 4px 12px;
  border-radius: 8px;
  margin-left: auto;
}
@media (max-width: 768px) {
  .mega-mobile-toggle {
    display: block;
  }
}
.mega-nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}
@media (max-width: 768px) {
  .mega-nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 10px 0;
  }
  .mega-nav-links.mobile-open {
    display: flex;
  }
  .static-page {
    margin-top:40px;
    height:80vh;
  }
  .ai-search-container {
    margin-top:40px;
  }
}
.static-page {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}
.page-header {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e2e8f0;
}
.page-header h1 {
  font-size: 2.5em;
  font-weight: 900;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.static-content {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px #0000000d;
  border: 1px solid #e2e8f0;
  line-height: 1.8;
}
.static-content h2 {
  font-size: 1.8em;
  color: #1a365d;
  margin: 30px 0 16px;
  font-weight: 800;
}
.static-content h2:first-child {
  margin-top: 0;
}
.static-content h3 {
  font-size: 1.3em;
  color: #2d3748;
  margin: 24px 0 12px;
  font-weight: 700;
}
.static-content p {
  color: #4a5568;
  margin-bottom: 16px;
  font-size: 1.05em;
}
.static-content ul, .static-content ol {
  color: #4a5568;
  margin: 16px 0 16px 24px;
  font-size: 1.05em;
}
.static-content li {
  margin-bottom: 8px;
}
.static-content a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.static-content a:hover {
  color: #764ba2;
}
.static-content strong {
  color: #2d3748;
  font-weight: 700;
}
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95em;
  transition: all 0.3s;
  box-shadow: 0 4px 15px #667eea4d;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px #667eea66;
  color: #fff;
}
  .ai-search-container {
    margin-top:40px;
  }

.mega-nav-link {
  color: #fffc;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9em;
  padding: 8px 8px;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}
.mega-nav-link:hover,
.mega-nav-link.active {
  color: #fff;
  background: #667eea40;
}
.mega-shrunk-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  background: #0f2027f2;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(102, 126, 234, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 20px;
  height: 48px;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  box-shadow: 0 2px 20px #00000059;
}
.mega-shrunk-bar.visible {
  transform: translateY(0);
  opacity: 1;
}
.mega-shrunk-brand {
  display: flex;
  align-items: center;
  margin-right: 16px;
  text-decoration: none;
}
.mega-shrunk-link {
  color: #ffffffbf;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 8px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.mega-shrunk-link:hover,
.mega-shrunk-link.active {
  color: #fff;
  background: #667eea40;
}
.mega-shrunk-link .vicon-nav {
  margin-right: 0;
}
.mega-shrunk-link[title]:hover:after,
.mega-shrunk-brand[title]:hover:after {
  content: attr(title);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%);
  background: #1a365d;
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.72em;
  font-weight: 500;
  white-space: nowrap;
  margin-top: 6px;
  pointer-events: none;
  box-shadow: 0 4px 12px #00000040;
  z-index: 200;
}
.logo-oo-svg {
  display: block;
}
@media (max-width: 768px) {
  .mega-shrunk-bar.mega-shrunk-mobile {
    transform: translateY(0);
    opacity: 1;
  }
  body.nav-shrunk .sub-nav {
    top: 44px;
  }
  .sub-nav {
    display: none !important;
  }
  .sub-nav-article-mobile {
    display: none !important;
  }
  .mega-header {
    display: none;
  }
}
@media (min-width: 769px) {
  .mega-shrunk-search-btn {
    display: none;
  }
}
.search-dash-panel {
  display:none;
  position: absolute;
  top: 44px;
  left: 0;
  right: 0;
  z-index:999;
  background: #0f2027fa;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 16px 20px 20px;
  animation: searchDashSlide 0.25s ease;
  box-shadow: 0 10px 40px #0006;
}
.search-dash-panel.visible {
  display: block;
}
@keyframes searchDashSlide {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.search-dash-form {
  display: flex;
  align-items: center;
  background: #ffffff1a;
  border: 2px solid rgba(102, 126, 234, 0.4);
  border-radius: 50px;
  padding: 0 4px 0 14px;
  margin-bottom: 16px;
}
.search-dash-form:focus-within {
  border-color: #667eea;
  background: #ffffff26;
}
.search-dash-input {
  border: none;
  background: transparent;
  padding: 10px 8px;
  font-size: 0.95em;
  outline: none;
  flex: 1;
  min-width: 0;
  color: #fff;
}
.search-dash-input::placeholder {
  color: #ffffff73;
}
.search-dash-btn {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.82em;
  cursor: pointer;
  flex-shrink: 0;
}
.search-dash-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}
.search-dash-card {
  background: #ffffff14;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: all 0.2s;
  color: #ffffffd9;
  font-size: 0.72em;
  font-weight: 500;
  font-family: inherit;
}
.search-dash-card:hover {
  background: #667eea4d;
  border-color: #667eea;
  color: #fff;
}
.search-dash-card-icon {
  color: #667eea;
  margin-bottom: 2px;
}
.search-dash-card-tag {
  flex-direction: row;
  padding: 8px 6px;
}
.search-dash-card-tag span {
  font-size: 0.82em;
}
.mega-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  background: #fff;
  color: #2d3748;
  box-shadow: 0 20px 60px #00000026;
  border-top: 3px solid #667eea;
  animation: dropIn 0.2s ease;
}
@keyframes dropIn {
  0% {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mega-dropdown-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding: 35px 40px;
}
.mega-dropdown-left h3 {
  font-size: 1.5em;
  color: #1a365d;
  margin-bottom: 10px;
}
.mega-dropdown-left p {
  color: #718096;
  margin-bottom: 20px;
}
.mega-subcats {
  margin-bottom: 18px;
}
.mega-subcat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.15s;
}
.mega-subcat-name {
  font-size: 0.9em;
  color: #2d3748;
  font-weight: 500;
}
.mega-subcat-count {
  font-size: 0.8em;
  color: #667eea;
  font-weight: 700;
  background: #ebf4ff;
  padding: 3px 10px;
  border-radius: 50px;
}
.mega-cta {
  display: inline-block;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.mega-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #667eea66;
}
.mega-dropdown-right h4 {
  color: #1a365d;
  margin-bottom: 15px;
  font-size: 1em;
}
.mega-featured-item {
  display: flex;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
  text-decoration: none;
  color: #2d3748;
  transition: background 0.2s;
  align-items: center;
}
.mega-featured-item:hover {
  background: #f7fafc;
}
.mega-featured-item:last-child {
  border-bottom: none;
}
.mega-featured-item img {
  width: 70px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.mega-featured-item div {
  display: flex;
  flex-direction: column;
}
.mega-featured-item strong {
  font-size: 0.9em;
  color: #1a365d;
  line-height: 1.3;
}
.mega-featured-item span {
  font-size: 0.8em;
  color: #a0aec0;
  margin-top: 4px;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  overflow-x: hidden;
}
.stories-section {
  background: #fff;
  padding: 18px 0;
  margin-bottom: 0;
  border-bottom: 1px solid #e2e8f0;
}
.stories-title {
  font-size: 1.1em;
  color: #1a365d;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid #667eea;
  display: inline-block;
  margin-left: 20px;
}
.stories-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 15px 20px;
  scroll-snap-type: x mandatory;
  justify-content: center;
}
.stories-carousel::-webkit-scrollbar {
  height: 5px;
}
.stories-carousel::-webkit-scrollbar-thumb {
  background: #cbd5e0;
  border-radius: 3px;
}
.story-thumb {
  flex: 0 0 auto;
  width: 90px;
  text-align: center;
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform 0.2s;
}
.story-thumb:hover {
  transform: translateY(-4px);
}
.story-thumb-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #9409a7;
  margin: 0 auto 4px;
  position: relative;
}
.story-thumb-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-thumb.new .story-thumb-ring:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background: #38a169;
  border-radius: 50%;
  border: 2px solid white;
}
.story-thumb-label {
  font-size: 0.75em;
  color: #4a5568;
  line-height: 1.3;
  display: block;
  max-width: 88px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0 auto;
}
.rotation-info {
  text-align: center;
  font-size: 0.85em;
  color: #718096;
  margin-top: 15px;
}
.story-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000eb;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.story-modal-card {
  position: relative;
  width: 480px;
  max-width: 95vw;
  max-height: 95vh;
  animation: slideUp 0.3s ease;
}
@keyframes slideUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.story-modal-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}
.story-modal-img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
  display: block;
}
.story-modal-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 30px 30px;
  background: linear-gradient(transparent, #000000d9);
  color: #fff;
}
.story-modal-cat {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.8em;
  font-weight: 600;
  margin-bottom: 10px;
}
.story-modal-cat.financas {
  background: #d69e2e;
  color: #fff;
}
.story-modal-cat.software {
  background: #319795;
  color: #fff;
}
.story-modal-cat.educacao {
  background: #805ad5;
  color: #fff;
}
.story-modal-cat.legal {
  background: #e53e3e;
  color: #fff;
}
.story-modal-cat.saude {
  background: #38a169;
  color: #fff;
}
.story-modal-title {
  font-size: 1.6em;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #fff;
}
.story-modal-excerpt {
  font-size: 0.95em;
  line-height: 1.5;
  color: #ffffffd9;
  margin-bottom: 15px;
}
.story-modal-cta {
  display: inline-block;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9em;
}
.story-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: #0009;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.1em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s;
}
.story-modal-close:hover {
  background: #000000e6;
}
.story-modal-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  color: #ffffffb3;
  font-size: 0.85em;
}
.story-modal-nav button {
  background: none;
  border: none;
  color: #fffc;
  cursor: pointer;
  font-size: 0.9em;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.2s;
}
.story-modal-nav button:hover {
  background: #ffffff1a;
  color: #fff;
}
.section-title {
  font-size: 1.8em;
  color: #1a365d;
  margin: 40px 0 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid #667eea;
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}
.article-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px #0000000f;
  transition: transform 0.3s, box-shadow 0.3s;
}
.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px #0000001a;
}
.article-image-link {
  display: block;
  position: relative;
  text-decoration: none;
}
.article-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.article-content {
  padding: 16px;
}
.article-category {
  display: inline-block;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 0.8em;
  font-weight: 600;
  margin-bottom: 12px;
}
.article-category.financas {
  background: #fefcbf;
  color: #744210;
}
.article-category.software {
  background: #e6fffa;
  color: #234e52;
}
.article-category.educacao {
  background: #e9d8fd;
  color: #553c9a;
}
.article-category.legal {
  background: #fed7d7;
  color: #742a2a;
}
.article-category.saude {
  background: #c6f6d5;
  color: #22543d;
}
.article-title {
  font-size: 1em;
  color: #1a365d;
  margin-bottom: 8px;
  line-height: 1.4;
}
.article-title a {
  color: inherit;
  text-decoration: none;
}
.article-title a:hover {
  color: #667eea;
}
.article-excerpt {
  color: #4a5568;
  line-height: 1.5;
  font-size: 0.88em;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85em;
  color: #718096;
  padding-top: 15px;
  border-top: 1px solid #e2e8f0;
}
.read-more {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}
.read-more:hover {
  color: #764ba2;
}
.cat-hero {
  background: linear-gradient(135deg, var(--cat-color, #667eea), #1a365d);
  color: #fff;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}
.cat-hero:before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: #ffffff0d;
  border-radius: 50%;
}
.cat-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.cat-hero-icon {
  font-size: 3em;
  display: block;
  margin-bottom: 10px;
}
.cat-hero h1 {
  font-size: 2.8em;
  margin-bottom: 10px;
  font-weight: 800;
}
.cat-hero p {
  font-size: 1.1em;
  opacity: 0.9;
  max-width: 600px;
  margin-bottom: 25px;
}
.cat-hero-stats {
  display: flex;
  gap: 30px;
}
.cat-stat {
  text-align: center;
  background: #ffffff26;
  padding: 15px 25px;
  border-radius: 12px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.cat-stat strong {
  display: block;
  font-size: 1.6em;
}
.cat-stat span {
  font-size: 0.8em;
  opacity: 0.8;
}
.cat-subcats {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}
.cat-subcat-pill {
  background: #edf2f7;
  color: #4a5568;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85em;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.cat-subcat-pill strong {
  color: #667eea;
  margin-left: 6px;
  font-size: 0.85em;
}
.cat-subcat-pill:hover {
  background: #667eea;
  color: #fff;
}
.cat-subcat-pill:hover strong {
  color: #fff;
}
.cat-subcat-pill.active {
  background: #667eea;
  color: #fff;
}
.cat-subcat-pill.active strong {
  color: #fff;
}
.section-count {
  font-size: 0.5em;
  background: #edf2f7;
  color: #667eea;
  padding: 3px 10px;
  border-radius: 50px;
  margin-left: 10px;
  vertical-align: middle;
}
.article-breadcrumb {
  max-width: 1400px;
  margin: 0 auto;
  padding: 15px 40px;
  font-size: 0.9em;
  color: #718096;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}
.article-breadcrumb a {
  color: #667eea;
  text-decoration: none;
}
.article-breadcrumb a:hover {
  text-decoration: underline;
}
.article-breadcrumb span {
  margin: 0 6px;
}
.article-layout {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .article-layout {
    grid-template-columns: 1fr;
    padding: 15px;
  }
}
.article-main {
  background: #fff;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 10px 40px #00000014;
  overflow-x: hidden;
}
.article-main h1 {
  font-size: 2em;
  color: #1a365d;
  margin: 10px 0;
  line-height: 1.3;
}
.article-meta-bar {
  display: flex;
  gap: 20px;
  font-size: 0.9em;
  color: #718096;
  margin-bottom: 12px;
}
.article-hero-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin: 0 0 20px;
}
.article-hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
.article-hero-credit {
  position: absolute;
  bottom: 2px;
  right: 2px;
  font-size: 0.72em;
  color: #ffffff8c;
  background: #00000059;
  padding: 4px 10px;
  border-radius: 4px 0 12px;
  letter-spacing: 0.02em;
  pointer-events: none;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.article-hero-mobile {
  display: none;
  position: relative;
  width: 100%;
  height: 60vh;
  height: 60dvh;
  overflow: hidden;
}
.article-hero-mobile-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-hero-mobile-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 20px 30px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    transparent 100%
  );
  color: #fff;
}
.article-hero-mobile-overlay .article-category {
  display: inline-block;
  margin-bottom: 8px;
}
.article-hero-mobile-overlay h1 {
  font-size: 1.5em;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 10px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.article-hero-mobile-overlay .article-meta-bar {
  color: #ffffffd9;
  font-size: 0.85em;
  gap: 14px;
}
.article-hero-mobile-overlay .article-meta-bar .article-pubdate {
  color: #ffffffd9;
}
.article-hero-mobile .article-hero-credit {
  z-index: 2;
}
.article-desktop-header {
  display: block;
}
@media (max-width: 768px) {
  .article-hero-mobile {
    display: block;
  }
  .article-desktop-header,
  .article-hero-wrap {
    display: none;
  }
  .article-main {
    padding-top: 0;
  }
}
.article-body {
  color: #2d3748;
  line-height: 1.8;
  font-size: 1.05em;
}
.article-body h2 {
  color: #1a365d;
  margin-top: 40px;
  margin-bottom: 15px;
  padding: 15px 20px;
  background: #edf2f7;
  border-left: 5px solid #667eea;
  border-radius: 0 8px 8px 0;
}
.article-body h3 {
  color: #2d3748;
  margin-top: 30px;
  margin-bottom: 10px;
}
.article-body p {
  margin: 15px 0;
}
.article-body ol,
.article-body ul {
  margin: 15px 0;
  padding-left: 25px;
}
.article-body li {
  margin: 8px 0;
}
.article-body strong {
  color: #1a365d;
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 0.9em;
}
.article-body th {
  background: #1a365d;
  color: #fff;
  padding: 10px 12px;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}
.article-body td {
  padding: 8px 12px;
  border-bottom: 1px solid #e2e8f0;
}
.article-body tr:nth-child(2n) {
  background: #f7fafc;
}
.article-body tr:hover {
  background: #edf2f7;
}
@media (max-width: 768px) {
  .article-body table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
    font-size: 0.82em;
  }
  .article-body th,
  .article-body td {
    padding: 7px 8px;
    min-width: 50px;
  }
  .article-body th:first-child,
  .article-body td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    background: inherit;
    min-width: 90px;
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .article-body th:first-child {
    background: #1a365d;
  }
  .article-body td:first-child:after {
    content: "";
    position: absolute;
    top: 0;
    right: -6px;
    bottom: 0;
    width: 6px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.06), transparent);
    pointer-events: none;
  }
  .article-body th:first-child {
    z-index: 3;
    box-shadow: 2px 0 4px #0000001a;
  }
  .article-body td:first-child {
    background: #fff;
    box-shadow: 2px 0 4px #0000000f;
  }
  .article-body tr:nth-child(2n) td:first-child {
    background: #f7fafc;
  }
  .article-body tr:hover td:first-child {
    background: #edf2f7;
  }
}
.article-body em {
  color: #718096;
  font-size: 0.9em;
}
.fact-box {
  background: #f0fff4;
  border-left: 5px solid #38a169;
  padding: 20px;
  margin: 20px 0;
  border-radius: 8px;
}
.fact-box strong {
  color: #22543d;
}
.article-bottom-tags {
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid #e2e8f0;
}
.article-bottom-tags h4 {
  color: #1a365d;
  margin-bottom: 12px;
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-pill {
  display: inline-block;
  background: #edf2f7;
  color: #4a5568;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82em;
  font-weight: 500;
  transition: all 0.2s;
  cursor: default;
}
.article-nav {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}
.article-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.sidebar-widget {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 6px 25px #0000000f;
}
.sidebar-heading {
  font-size: 1em;
  color: #1a365d;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #667eea;
}
.sidebar-ranking {
  list-style: none;
  padding: 0;
  counter-reset: rank;
}
.sidebar-ranking li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}
.sidebar-ranking li:last-child {
  border-bottom: none;
}
.sidebar-ranking a {
  color: #2d3748;
  text-decoration: none;
  font-size: 0.88em;
  line-height: 1.4;
  transition: color 0.2s;
}
.sidebar-ranking a:hover {
  color: #667eea;
}
.ranking-num {
  font-weight: 800;
  color: #667eea;
  font-size: 0.9em;
  flex-shrink: 0;
  min-width: 28px;
}
.sidebar-related {
  list-style: none;
  padding: 0;
}
.sidebar-related li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  align-items: center;
}
.sidebar-related li:last-child {
  border-bottom: none;
}
.sidebar-thumb {
  width: 60px;
  height: 45px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.sidebar-related a {
  color: #2d3748;
  text-decoration: none;
  font-size: 0.88em;
  line-height: 1.4;
  transition: color 0.2s;
}
.sidebar-related a:hover {
  color: #667eea;
}
.sidebar-cta {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  text-align: center;
}
.sidebar-cta h3 {
  color: #fff;
  margin-bottom: 8px;
}
.sidebar-cta p {
  font-size: 0.9em;
  opacity: 0.9;
  margin-bottom: 15px;
}
.sidebar-input {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 8px;
  font-size: 0.9em;
  margin-bottom: 10px;
  background: #fff3;
  color: #fff;
}
.sidebar-input::placeholder {
  color: #fff9;
}
.sidebar-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #fff;
  color: #667eea;
  font-weight: 700;
  font-size: 0.95em;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sidebar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #0003;
}
.site-footer {
  background: linear-gradient(135deg, #0f2027, #1a365d, #0f2027);
  color: #ffffffd9;
  padding: 0;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}
.site-footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
}
.footer-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr) 1.2fr;
  gap: 40px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}
.footer-logo-svg {
  width: 36px;
  height: 36px;
}
.footer-logo-text {
  font-size: 1.4em;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.footer-desc {
  font-size: 0.9em;
  line-height: 1.7;
  color: #ffffffa6;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 0;
}
.social-link {
  width: 30px;
  height: 30px;
  text-align: center;
  color: #ffffffb3;
  transition: all 0.2s;
}
.social-link svg {
  width: 18px;
  height: 18px;
}
.social-link:hover {
  color: #fff;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.95em;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-col a {
  display: block;
  color: #fff9;
  text-decoration: none;
  font-size: 0.9em;
  transition: all 0.2s;
  position: relative;
  padding: 1px 0;
}
.footer-col a:hover {
  color: #fff;
}
.footer-newsletter p {
  font-size: 0.88em;
  color: #fff9;
  margin-bottom: 16px;
}
.footer-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-input {
  background: #ffffff14;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.9em;
  color: #fff;
  outline: none;
  transition: all 0.2s;
}
.footer-input::placeholder {
  color: #fff6;
}
.footer-input:focus {
  border-color: #667eea;
  background: #ffffff1f;
}
.footer-btn {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 0.9em;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s;
}
.footer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #667eea66;
}
.footer-privacy {
  display: block;
  font-size: 0.75em;
  color: #fff6;
  margin-top: 10px;
}
.footer-bottom {
  background: #00000040;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-bottom-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 20px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.85em;
  color: #ffffff80;
}
.footer-disclosure {
  font-size: 0.78em;
  color: #fff6;
  margin-top: 8px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .footer-desc {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .footer-main {
    padding: 40px 15px 30px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-newsletter {
    grid-column: 1 / -1;
  }
  .footer-form {
    flex-direction: row;
  }
  .footer-input {
    flex: 1;
  }
  .footer-col h4 {
    font-size: 0.85em;
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-social {
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .mega-nav-bar {
    padding: 0 15px;
    min-height: 56px;
  }
  .mega-nav-brand {
    font-size: 1.5em;
  }
  .mega-mobile-toggle {
    padding: 6px 10px;
    font-size: 1.3em;
  }
  .mega-nav-links {
    gap: 0;
  }
  .articles-grid {
    grid-template-columns: 1fr;
  }
  .story-modal-card {
    width: 98vw;
  }
  .story-modal-img {
    height: 450px;
  }
  .story-modal-title {
    font-size: 1.3em;
  }
  .article-main {
    padding: 14px;
    border-radius: 10px;
  }
  .article-main h1 {
    font-size: 1.4em;
    margin: 4px 0 6px;
  }
  .article-meta-bar {
    margin-bottom: 8px;
  }
  .article-hero-image {
    height: 200px;
    border-radius: 8px;
  }
  .article-hero-wrap {
    margin: 0 0 12px;
  }
  .cat-hero {
    padding: 30px 15px;
  }
  .cat-hero h1 {
    font-size: 1.8em;
  }
  .cat-hero p {
    font-size: 0.95em;
  }
  .cat-hero-stats {
    flex-wrap: wrap;
    gap: 10px;
  }
  .cat-stat {
    padding: 10px 15px;
  }
  .cat-subcats {
    padding: 12px 15px;
  }
  .article-breadcrumb {
    padding: 10px 15px;
    font-size: 0.8em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .article-layout {
    padding: 15px;
  }
  .article-body {
    font-size: 0.95em;
  }
  .article-body h2 {
    font-size: 1.1em;
    padding: 10px 14px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .mega-dropdown-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 15px;
  }
  .stories-section {
    padding: 12px 0;
  }
  .stories-carousel {
    margin-top:40px;
    justify-content: flex-start;
    padding: 10px 15px;
  }
  .article-meta-bar {
    flex-wrap: wrap;
    gap: 8px;
  }
  .container {
    padding: 20px 15px;
  }
  .section-title {
    font-size: 1.4em;
  }
}
.article-pubdate {
  color: #4a5568;
  font-size: 0.82em;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.sidebar-item-date {
  display: block;
  font-size: 0.75em;
  color: #718096;
  margin-top: 2px;
}
.article-meta-bar .article-pubdate {
  font-size: 0.9em;
  color: #4a5568;
}
.tag-pill {
  cursor: pointer;
  text-decoration: none;
}
.tag-pill:hover {
  background: #667eea;
  color: #fff;
}
.sub-nav {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 70px;
  z-index: 90;
  box-shadow: 0 2px 10px #0000000a;
  transition: top 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
body.nav-shrunk .sub-nav {
  top: 44px;
  display:none;
}
.sub-nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: stretch;
  min-height: 52px;
}
.sub-nav-search {
  display: flex;
  align-items: center;
  background: #f7fafc;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  padding: 0 4px 0 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  flex: 1;
  max-width: 600px;
  margin: 8px 24px 8px 0;
  align-self: center;
}
.sub-nav-search:focus-within {
  border-color: #667eea;
  background: #fff;
  box-shadow: 0 0 0 3px #667eea1f;
}
.sub-nav-search-input {
  border: none;
  background: transparent;
  padding: 9px 10px;
  font-size: 0.9em;
  outline: none;
  flex: 1;
  min-width: 0;
  color: #2d3748;
}
.sub-nav-search-input::placeholder {
  color: #a0aec0;
}
.sub-nav-search-btn {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  border: none;
  padding: 7px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.82em;
  cursor: pointer;
  transition: transform 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.sub-nav-search-btn:hover {
  transform: scale(1.05);
}
.sub-nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}
.sub-nav-cats {
  display: flex;
  gap: 2px;
}
.sub-nav-cat-btn {
  background: none;
  border: none;
  color: #4a5568;
  font-size: 0.82em;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.sub-nav-cat-btn:hover {
  background: #edf2f7;
  color: #1a365d;
}
.sub-nav-tags {
  display: flex;
  gap: 5px;
  overflow: hidden;
}
.sub-nav-tag-btn {
  background: #f0f4ff;
  color: #667eea;
  border: none;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75em;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}
.sub-nav-tag-btn:hover {
  background: #667eea;
  color: #fff;
}
.hub-hero {
  background: linear-gradient(135deg, var(--hub-color, #667eea), #1a365d);
  color: #fff;
  padding: 70px 40px;
  position: relative;
  overflow: hidden;
}
.hub-hero:before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: #ffffff0d;
  border-radius: 50%;
}
.hub-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.hub-hero-icon {
  font-size: 3em;
  display: block;
  margin-bottom: 10px;
}
.hub-hero h1 {
  font-size: 2.6em;
  font-weight: 800;
  margin-bottom: 12px;
}
.hub-hero p {
  font-size: 1.15em;
  opacity: 0.9;
  max-width: 650px;
  margin-bottom: 25px;
  line-height: 1.6;
}
.hub-hero-cta {
  display: inline-block;
  background: #fff;
  color: #1a365d;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1em;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hub-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px #00000040;
}
.hub-subareas {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}
.hub-subarea-pill {
  background: #f0f4ff;
  color: #4a5568;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85em;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hub-subarea-pill strong {
  color: #667eea;
  font-size: 0.85em;
}
.hub-subarea-pill:hover {
  background: #667eea;
  color: #fff;
}
.hub-subarea-pill:hover strong {
  color: #fff;
}
.mega-dropdown-desc {
  color: #718096;
  margin-bottom: 15px;
  font-size: 0.9em;
  line-height: 1.5;
}
.mega-subcat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.15s;
  text-decoration: none;
  color: #2d3748;
}
.mega-subcat-row:hover {
  background: #edf2f7;
}
@media (max-width: 768px) {
  .hub-hero {
    padding: 70px 15px 30px;
    height:60vh;
    text-align:center;
  }
  .hub-hero h1 {
    font-size: 1.6em;
  }
  .hub-hero p {
    font-size: 0.95em;
  }
  .hub-subareas {
    padding: 12px 15px;
  }
}
.search-results-header {
  margin-bottom: 30px;
}
.search-results-title {
  font-size: 1.4em;
  color: #1a365d;
  margin: 0 0 15px;
}
.search-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.search-filter-btn {
  background: #edf2f7;
  color: #4a5568;
  border: none;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85em;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.search-filter-btn:hover,
.search-filter-btn.active {
  background: #667eea;
  color: #fff;
}
.search-filter-btn.financas.active {
  background: #d69e2e;
  color: #fff;
}
.search-filter-btn.software.active {
  background: #319795;
  color: #fff;
}
.search-filter-btn.educacao.active {
  background: #805ad5;
  color: #fff;
}
.search-filter-btn.legal.active {
  background: #e53e3e;
  color: #fff;
}
.search-filter-btn.saude.active {
  background: #38a169;
  color: #fff;
}
.search-empty {
  text-align: center;
  padding: 60px 20px;
}
.search-empty p {
  font-size: 1.1em;
  color: #4a5568;
}
.search-empty-hint {
  font-size: 0.95em;
  color: #a0aec0;
  margin-top: 8px;
}
mark.search-highlight {
  background: #fefcbf;
  color: #744210;
  padding: 1px 4px;
  border-radius: 3px;
  font-weight: 600;
}
.search-match-hint {
  font-size: 0.82em;
  color: #a0aec0;
  margin: 4px 0 10px;
}
.search-term-badge {
  display: inline-block;
  background: #f0f4ff;
  color: #667eea;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  margin-right: 4px;
  font-size: 0.95em;
}
.vicon {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}
.vicon-nav {
  color: #ffffffd9;
  margin-right: 4px;
  vertical-align: -2px;
}
.vicon-dropdown {
  color: #1a365d;
  margin-right: 6px;
  vertical-align: -3px;
}
.vicon-hero {
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}
.vicon-section {
  color: #2d3748;
  margin-right: 6px;
  vertical-align: -3px;
}
.vicon-inline {
  color: inherit;
  margin-right: 4px;
  vertical-align: -2px;
}
.vicon-sidebar {
  color: #667eea;
  margin-right: 6px;
  vertical-align: -2px;
}
.vicon-search {
  color: #a0aec0;
  margin-right: 6px;
  vertical-align: -1px;
  flex-shrink: 0;
}
.vicon-cat {
  margin-right: 4px;
  vertical-align: -2px;
}
.cat-hero-icon .vicon-hero,
.hub-hero-icon .vicon-hero {
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .sub-nav {
    top: 56px;
  }
  .sub-nav-inner {
    padding: 8px 15px;
    flex-wrap: wrap;
  }
  .sub-nav-search {
    width: 100%;
    max-width: none;
    margin: 0 0 8px;
    order: -1;
  }
  .sub-nav-search-input {
    flex: 1;
    min-width: 0;
  }
  .sub-nav-right {
    width: 100%;
    flex-wrap: wrap;
  }
  .sub-nav-cats {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }
  .sub-nav-tags {
    display: none;
  }
}
.affiliate-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #38a169, #276749);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92em;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.affiliate-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #38a16966;
  color: #fff;
}
.affiliate-cta-sm {
  padding: 6px 14px;
  font-size: 0.78em;
}
.affiliate-cta-lg {
  padding: 14px 32px;
  font-size: 1em;
}
.affiliate-cta-store {
  font-size: 0.82em;
  opacity: 0.8;
  margin-left: 4px;
  font-weight: 400;
}
.product-cards-section {
  margin: 35px 0 0;
  padding-top: 30px;
  border-top: 3px solid #38a169;
}
.product-cards-title {
  color: #1a365d;
  font-size: 1.3em;
  margin-bottom: 20px;
}
.product-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.product-card {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
}
.product-card:hover {
  border-color: #38a169;
  box-shadow: 0 8px 30px #38a1691f;
}
.product-card-best {
  border-color: #38a169;
  background: linear-gradient(135deg, #f0fff4, #fff);
}
.product-badge {
  position: absolute;
  top: -10px;
  right: 14px;
  background: linear-gradient(135deg, #38a169, #276749);
  color: #fff;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.72em;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.product-badge-alt {
  background: linear-gradient(135deg, #667eea, #764ba2);
}
.product-badge-sm {
  font-size: 0.68em;
  padding: 2px 8px;
}
.product-card-body {
  flex: 1;
}
.product-name {
  color: #1a365d;
  font-size: 1em;
  margin-bottom: 8px;
  line-height: 1.3;
}
.rating-stars {
  color: #d69e2e;
  font-size: 0.9em;
  letter-spacing: 1px;
}
.rating-value {
  color: #718096;
  font-size: 0.82em;
  margin-left: 6px;
  font-weight: 500;
}
.price-badge {
  display: inline-block;
  background: #edf2f7;
  color: #2d3748;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.88em;
  font-weight: 700;
}
.price-badge-sm {
  font-size: 0.78em;
  padding: 3px 10px;
}
.price-comparison-widget {
  border: 2px solid #38a169;
  padding: 18px;
}
.price-comparison-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.price-comparison-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  flex-wrap: nowrap;
}
.price-comparison-row:last-child {
  border-bottom: none;
}
.price-comparison-medal {
  flex-shrink: 0;
  width: 22px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-comparison-medal .vicon {
  vertical-align: middle;
}
.medal-placeholder {
  font-size: 0.85em;
}
.price-comparison-name {
  font-size: 0.84em;
  color: #1a365d;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  flex-shrink: 1;
}
.price-comparison-type {
  font-size: 0.62em;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.price-comparison-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #38a169, #276749);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.price-comparison-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px #38a16966;
}
.sticky-buy-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 2px solid #38a169;
  box-shadow: 0 -4px 20px #0000001a;
  z-index: 95;
  padding: 10px 20px;
  display: none;
}
@media (max-width: 900px) {
  .sticky-buy-bar {
    display: block;
  }
}
.sticky-buy-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.sticky-buy-bar-trophy {
  color: #d69e2e;
  flex-shrink: 0;
}
.sticky-buy-bar-name {
  font-weight: 700;
  color: #1a365d;
  font-size: 0.9em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
  flex: 1;
  min-width: 0;
}
.sticky-buy-bar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #38a169, #276749);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sticky-buy-bar-cta:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 15px #38a16966;
}
.affiliate-disclosure {
  background: #fffbeb;
  border-left: 5px solid #d69e2e;
  padding: 20px;
  margin: 30px 0;
  border-radius: 8px;
  color: #744210;
  line-height: 1.6;
  font-size: 0.92em;
}
.affiliate-disclosure strong {
  color: #744210;
}
.ad-slot-container {
  text-align: center;
  margin: 0 auto;
  overflow: hidden;
  min-height: 90px;
}
@media (max-width: 900px) {
  .ad-sidebar-top,
  .ad-sidebar-mid;
}
@media (max-width: 768px) {

  .article-hero-mobile + .article-layout {
    padding-top: 0;
  }
  .article-layout .article-main .article-breadcrumb {
    background: #ffffffeb;
    font-size: 0.78em;
    padding: 8px 15px;
  }
  .article-hero-mobile {
    margin-bottom: 0;
  }
  .article-main {
    padding-top: 12px;
  }

}
.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}
.page-content h1 {
  font-size: 2.2em;
  color: #1a365d;
  margin-bottom: 10px;
  line-height: 1.3;
}
.page-content h2 {
  color: #1a365d;
  margin-top: 35px;
  margin-bottom: 15px;
  padding: 12px 18px;
  background: #edf2f7;
  border-left: 4px solid #667eea;
  border-radius: 0 8px 8px 0;
  font-size: 1.4em;
}
.page-content h3 {
  color: #2d3748;
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 1.2em;
}
.page-content p {
  margin: 15px 0;
  line-height: 1.8;
  color: #4a5568;
}
.page-content ul,
.page-content ol {
  margin: 15px 0;
  padding-left: 25px;
}
.page-content li {
  margin: 8px 0;
  line-height: 1.7;
  color: #4a5568;
}
.page-content strong {
  color: #1a365d;
}
.page-updated {
  color: #a0aec0;
  font-size: 0.9em;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}
.page-content section {
  margin-bottom: 25px;
}
.media-kit-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 25px 0;
}
.stat-box {
  background: #f7fafc;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e2e8f0;
}
.stat-number {
  display: block;
  font-size: 2em;
  font-weight: 800;
  color: #667eea;
}
.stat-label {
  font-size: 0.85em;
  color: #718096;
}
@media (max-width: 768px) {
  .page-content h1 {
    font-size: 1.6em;
  }
  .page-content h2 {
    font-size: 1.2em;
  }
  .media-kit-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .stat-number {
    font-size: 1.5em;
  }
}
