/* ============================================
   HUBSPOT BLOG CLONE - Complete Design System
   ============================================ */

:root {
  --hs-orange: #FF5D2A;
  --hs-orange-hover: #e04d1e;
  --hs-orange-pressed: #c43d12;
  --hs-accent-blue: #2563EB;
  --hs-accent-blue-light: #EFF6FF;
  --hs-text-primary: #0F172A;
  --hs-text-secondary: #64748B;
  --hs-text-placeholder: #94A3B8;
  --hs-bg-primary: #FAFAF8;
  --hs-bg-warm: #F5F2ED;
  --hs-bg-white: #FFFFFF;
  --hs-bg-footer: #0F172A;
  --hs-border: #E2E8F0;
  --hs-border-strong: #0F172A;
  --hs-success: #059669;
  --hs-error: #DC2626;
  --hs-container-max: 1120px;
  --hs-gutter: 16px;
  --hs-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --hs-font-display: 'Inter', serif;
  --hs-radius-sm: 6px;
  --hs-radius-md: 10px;
  --hs-radius-lg: 20px;
  --hs-shadow-card: 0 1px 2px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.04);
  --hs-shadow-card-hover: 0 8px 30px rgba(0,0,0,0.08);
  --hs-shadow-header: 0 1px 3px rgba(0,0,0,0.04);
  --hs-transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--hs-font-family);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--hs-text-primary);
  background: var(--hs-bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--hs-text-primary); font-weight: 500; text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 2px; transition: color var(--hs-transition); }
a:hover { color: var(--hs-orange); }
a:focus-visible { outline: 2px solid var(--hs-accent-blue); outline-offset: 2px; }

h1, h2, h3, h4, h5, h6 { margin-block: 1rem 0.5rem; font-weight: 600; line-height: 1.2; color: var(--hs-text-primary); }
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.375rem; }
h5 { font-size: 1.125rem; }

p { margin-block: 1rem; }

ul, ol { list-style: none; margin: 0; padding: 0; }

.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
  height: 1px; overflow: hidden; padding: 0; position: absolute;
  white-space: nowrap; width: 1px;
}

/* ============================================
   CONTAINER
   ============================================ */
.hs-container {
  max-width: min(100% - var(--hs-gutter) * 2, var(--hs-container-max));
  margin-inline: auto;
}

/* ============================================
   HEADER / TOPBAR
   ============================================ */
.hs-header {
  background: var(--hs-bg-white);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.hs-header__topbar {
  background: var(--hs-bg-warm);
  border-bottom: 1px solid var(--hs-border);
}

.hs-header__topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  font-size: 0.8125rem;
}

.hs-header__locale {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--hs-text-secondary);
  cursor: pointer;
}

.hs-header__locale-icon { display: flex; }

.hs-header__login {
  color: var(--hs-text-primary) !important;
  text-decoration: none !important;
  font-weight: 500;
}

.hs-header__main {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--hs-border);
}

.hs-header__main-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 32px;
}

.hs-header__brand {
  flex-shrink: 0;
}

.hs-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
}

.hs-header__logo-mark {
  width: 40px;
  height: 40px;
  background: var(--hs-orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
}

.hs-header__logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--hs-text-primary);
}

/* Navigation */
.hs-header__nav {
  flex: 1;
}

.hs-nav-menu {
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.hs-nav-menu li {
  position: relative;
}

.hs-nav-menu a {
  color: var(--hs-text-secondary) !important;
  font-weight: 500;
  text-decoration: none !important;
  font-size: 0.9375rem;
  transition: color var(--hs-transition);
  padding: 8px 0;
}

.hs-nav-menu a:hover {
  color: var(--hs-text-primary) !important;
}

/* Header Actions */
.hs-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.hs-header__search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--hs-text-primary);
  padding: 8px;
  display: flex;
}

.hs-header__menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}

.hs-header__menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--hs-text-primary);
  border-radius: 2px;
  transition: var(--hs-transition);
}

/* Search Bar */
.hs-header__search {
  display: none;
  background: var(--hs-bg-warm);
  border-bottom: 1px solid var(--hs-border);
  padding: 16px 0;
}

.hs-header__search.active { display: block; }

.hs-header__search form {
  display: flex;
  gap: 8px;
}

.hs-header__search input[type="search"] {
  flex: 1;
  height: 48px;
  padding: 0 16px;
  border: 2px solid var(--hs-border);
  border-radius: var(--hs-radius-md);
  font-size: 1rem;
  background: var(--hs-bg-white);
  color: var(--hs-text-primary);
  outline: none;
  transition: border-color var(--hs-transition);
}

.hs-header__search input[type="search"]:focus {
  border-color: var(--hs-accent-blue);
}

/* ============================================
   BUTTONS
   ============================================ */
.hs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  border-radius: var(--hs-radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none !important;
  cursor: pointer;
  border: none;
  transition: all var(--hs-transition);
  white-space: nowrap;
}

.hs-btn--primary {
  background: var(--hs-orange);
  color: #fff !important;
}

.hs-btn--primary:hover {
  background: var(--hs-orange-hover);
}

.hs-btn--primary:active {
  background: var(--hs-orange-pressed);
}

.hs-btn--secondary {
  background: transparent;
  color: var(--hs-text-primary) !important;
  border: 2px solid var(--hs-orange);
}

.hs-btn--secondary:hover {
  background: #F5F2ED;
  color: var(--hs-orange-hover) !important;
}

/* ============================================
   SECTION TITLES
   ============================================ */
.hs-section-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--hs-text-primary);
  margin: 0 0 24px;
}

.hs-section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--hs-text-primary) !important;
  text-decoration: none !important;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color var(--hs-transition);
}

.hs-section-link:hover {
  color: var(--hs-orange) !important;
}

/* ============================================
   HERO SECTION (Featured Post)
   ============================================ */
.hs-hero {
  padding: 64px 0 48px;
  position: relative;
}

.hs-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 480px;
  background: linear-gradient(180deg, rgba(37,99,235,0.03) 0%, rgba(255,93,42,0.02) 100%);
  pointer-events: none;
}

.hs-hero__featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

.hs-hero__featured-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.hs-hero__featured-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.hs-hero__featured-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #F5F2ED, #E2E8F0);
  border-radius: 16px;
}

.hs-hero__featured-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hs-hero__featured-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
}

.hs-hero__featured-title a {
  color: var(--hs-text-primary) !important;
  text-decoration: none !important;
}

.hs-hero__featured-title a:hover {
  color: var(--hs-orange) !important;
}

.hs-hero__featured-excerpt {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--hs-text-secondary);
  margin: 4px 0;
}

.hs-hero__featured-meta,
.hs-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--hs-text-secondary);
}

.hs-author, .hs-date { font-size: 0.875rem; }

/* Category Badge */
.hs-category-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: var(--hs-orange);
  color: #fff !important;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

/* ============================================
   HIGHLIGHTS GRID (Featured Articles)
   ============================================ */
.hs-highlights {
  padding: 40px 0 64px;
}

.hs-highlights .hs-section-title {
  margin-bottom: 32px;
}

.hs-highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hs-highlights__card {
  background: var(--hs-bg-white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--hs-shadow-card);
  transition: all var(--hs-transition);
}

.hs-highlights__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hs-shadow-card-hover);
}

.hs-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.hs-card__image .hs-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  margin-bottom: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.hs-card__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(transparent, rgba(0,0,0,0.04));
  pointer-events: none;
}

.hs-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hs-highlights__card:hover .hs-card__image img {
  transform: scale(1.06);
}

.hs-card__body {
  padding: 24px;
}

.hs-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}

.hs-card__title a {
  color: var(--hs-text-primary) !important;
  text-decoration: none !important;
}

.hs-card__title a:hover {
  color: var(--hs-orange) !important;
}

.hs-card__excerpt {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--hs-text-secondary);
  margin: 0 0 12px;
}

.hs-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8125rem;
  color: var(--hs-text-placeholder);
}

.hs-card__image--small {
  aspect-ratio: 100/134;
  width: 100px;
  float: left;
  margin-right: 16px;
  border-radius: 8px;
}

.hs-card__image--small img {
  border-radius: 8px;
}

.hs-card__body {
  padding: 24px;
}

.hs-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 8px;
}

.hs-card__title a {
  color: var(--hs-text-primary) !important;
  text-decoration: none !important;
}

.hs-card__title a:hover {
  color: var(--hs-orange) !important;
}

.hs-card__title--small {
  font-size: 0.9375rem;
}

.hs-card__excerpt {
  font-size: 0.875rem;
  color: var(--hs-text-secondary);
  line-height: 1.6;
  margin: 0 0 12px;
}

/* ============================================
   CATEGORY SECTIONS
   ============================================ */
.hs-category-section {
  padding: 40px 0;
  border-top: 1px solid var(--hs-border);
}

.hs-category-section:nth-child(even) {
  background: var(--hs-bg-warm);
}

.hs-category-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.hs-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hs-category-card {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 16px;
  background: var(--hs-bg-white);
  border-radius: 12px;
  transition: background var(--hs-transition);
}

.hs-category-card:hover {
  background: var(--hs-bg-warm);
}

/* ============================================
   SINGLE POST
   ============================================ */
.hs-single {
  padding: 40px 0;
}

.hs-single__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  margin-bottom: 24px;
  color: var(--hs-text-secondary);
}

.hs-single__breadcrumbs a {
  color: var(--hs-text-secondary) !important;
  text-decoration: none !important;
}

.hs-single__breadcrumbs a:hover {
  color: var(--hs-orange) !important;
}

.hs-single__breadcrumb-sep {
  color: var(--hs-text-placeholder);
}

.hs-single__header {
  margin-bottom: 32px;
}

.hs-single__title {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.15;
  margin: 16px 0;
}

.hs-single__meta {
  display: flex;
  gap: 16px;
  color: var(--hs-text-secondary);
  font-size: 0.9375rem;
}

.hs-single__thumbnail {
  margin-bottom: 32px;
  border-radius: var(--hs-radius-lg);
  overflow: hidden;
}

.hs-single__thumbnail img {
  width: 100%;
  height: auto;
}

.hs-single__content {
  max-width: 720px;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--hs-text-primary);
}

.hs-single__content p {
  margin-bottom: 1.5rem;
}

.hs-single__content a {
  color: var(--hs-text-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hs-single__content a:hover {
  color: var(--hs-orange);
}

/* ============================================
   RELATED POSTS
   ============================================ */
.hs-related {
  padding: 48px 0 64px;
  background: var(--hs-bg-warm);
}

.hs-related .hs-section-title {
  margin-bottom: 32px;
}

/* ============================================
   PAGE
   ============================================ */
.hs-page {
  padding: 48px 0;
}

.hs-page__header {
  margin-bottom: 32px;
}

.hs-page__title {
  font-size: 2.5rem;
  font-weight: 600;
}

.hs-page__content {
  max-width: 720px;
  line-height: 1.8;
}

/* ============================================
   404
   ============================================ */
.hs-404 {
  padding: 80px 0;
  text-align: center;
}

.hs-404__title {
  font-size: 3rem;
  margin-bottom: 16px;
}

.hs-404__desc {
  color: var(--hs-text-secondary);
  font-size: 1.125rem;
  margin-bottom: 24px;
}

/* ============================================
   FOOTER
   ============================================ */
.hs-footer {
  background: var(--hs-bg-footer);
  color: #F5F2ED;
  padding: 48px 0 24px;
}

.hs-footer a {
  color: #64748B !important;
  text-decoration: none !important;
  font-weight: 400;
  font-size: 0.875rem;
}

.hs-footer a:hover {
  color: #F5F2ED !important;
}

.hs-footer h2, .hs-footer h4 {
  color: #F5F2ED;
}

/* Newsletter */
.hs-footer__newsletter {
  padding: 32px;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  margin-bottom: 48px;
  text-align: center;
}

.hs-footer__newsletter-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.hs-footer__newsletter-desc {
  color: rgba(255,255,255,0.62);
  margin-bottom: 24px;
}

.hs-footer__newsletter-options {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hs-newsletter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.9);
  transition: border-color var(--hs-transition);
}

.hs-newsletter-option:hover {
  border-color: var(--hs-orange);
}

.hs-newsletter-option input[type="checkbox"] {
  accent-color: var(--hs-orange);
}

.hs-newsletter-option__icon {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.75rem;
  color: #fff;
}

.hs-footer__newsletter-form {
  display: flex;
  justify-content: center;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
}

.hs-footer__newsletter-form input[type="email"] {
  flex: 1;
  height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: #F5F2ED;
  font-size: 0.9375rem;
  outline: none;
}

.hs-footer__newsletter-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.4);
}

.hs-footer__newsletter-form input[type="email"]:focus {
  border-color: var(--hs-orange);
}

.hs-footer__newsletter-form .hs-btn--primary {
  height: 48px;
}

/* Footer Columns */
.hs-footer__columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.hs-footer__col h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.hs-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Social */
.hs-footer__social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hs-footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: background var(--hs-transition);
  color: #F5F2ED !important;
}

.hs-footer__social-link:hover {
  background: rgba(255,255,255,0.2);
}

/* Bottom */
.hs-footer__bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

.hs-footer__bottom p { margin: 0; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hs-hero__featured {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hs-hero__featured-title {
    font-size: 1.75rem;
  }

  .hs-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hs-footer__columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hs-header__main-inner {
    justify-content: space-between;
  }
  .hs-header__nav {
    display: none;
  }

  .hs-header__menu-toggle {
    display: flex;
  }

  .hs-nav-menu {
    flex-direction: column;
    gap: 0;
    background: var(--hs-bg-white);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border-bottom: 1px solid var(--hs-border);
    padding: 16px 24px;
  }

  .hs-nav-menu.active {
    display: flex;
  }

  .hs-nav-menu a {
    padding: 12px 0;
  }

  .hs-section-title {
    font-size: 1.5rem;
  }

  .hs-highlights__grid {
    grid-template-columns: 1fr;
  }

  .hs-category-grid {
    grid-template-columns: 1fr;
  }

  .hs-footer__newsletter-options {
    flex-direction: column;
    align-items: stretch;
  }

  .hs-footer__newsletter-form {
    flex-direction: column;
  }

  .hs-footer__columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  :root {
    --hs-gutter: 12px;
  }

  .hs-hero__featured-title {
    font-size: 1.5rem;
  }

  .hs-single__title {
    font-size: 1.75rem;
  }

  .hs-header__actions .hs-btn {
    display: none;
  }
}


/* ============================================
   IAgora - ADDITIONAL STYLES
   ============================================ */

/* Card Badge for category */
.hs-card__badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0,0,0,0.55);
  color: #fff !important;
  border-radius: 4px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
}

/* Colunistas Section */
.hs-colunistas-section {
  padding: 40px 0;
  background: var(--hs-bg-warm);
}

.hs-colunistas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hs-colunista-card {
  background: var(--hs-bg-white);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--hs-shadow-card);
  transition: all var(--hs-transition);
}

.hs-colunista-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hs-shadow-card-hover);
}

.hs-colunista-card__avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
}

.hs-colunista-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hs-colunista-card__avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--hs-orange), var(--hs-orange-hover));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
}

.hs-colunista-card__avatar-placeholder--large {
  width: 120px;
  height: 120px;
  font-size: 2.5rem;
}

.hs-colunista-card__name {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 4px;
}

.hs-colunista-card__name a {
  color: var(--hs-text-primary) !important;
  text-decoration: none !important;
}

.hs-colunista-card__name a:hover {
  color: var(--hs-orange) !important;
}

.hs-colunista-card__role {
  font-size: 0.875rem;
  color: var(--hs-text-primary);
  margin: 0;
  line-height: 1.4;
}

.hs-colunista-card__bio {
  font-size: 0.875rem;
  color: var(--hs-text-secondary);
  margin: 12px 0 0;
  line-height: 1.5;
}

/* Archive Colunistas */
.hs-archive-colunistas {
  padding: 48px 0;
}

.hs-archive-colunistas__desc {
  font-size: 1.125rem;
  color: var(--hs-text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
}

/* Single Colunista */
.hs-single-colunista {
  padding: 48px 0;
}

.hs-single-colunista__header {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--hs-border);
}

.hs-single-colunista__info {
  flex: 1;
}

.hs-single-colunista__name {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.hs-single-colunista__role {
  font-size: 1.125rem;
  color: var(--hs-text-secondary);
  margin: 0 0 16px;
}

.hs-single-colunista__social {
  display: flex;
  gap: 12px;
}

.hs-single-colunista__social-link {
  padding: 6px 16px;
  border: 1px solid var(--hs-border);
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none !important;
  transition: all var(--hs-transition);
}

.hs-single-colunista__social-link:hover {
  border-color: var(--hs-orange);
  color: var(--hs-orange) !important;
}

.hs-single-colunista__bio {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--hs-text-secondary);
  margin-bottom: 48px;
}

.hs-single-colunista__posts {
  padding-top: 32px;
}

/* Coluna taxonomy badge */
.hs-coluna-badge {
  display: inline-block;
  padding: 3px 12px;
  background: var(--hs-accent-blue);
  color: #fff !important;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  .hs-colunistas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hs-single-colunista__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hs-single-colunista__social {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hs-colunistas-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Archive Pages */
.hs-archive-page {
  padding: 48px 0;
}

.hs-archive-page__header {
  margin-bottom: 40px;
}

.hs-archive-page__desc {
  font-size: 1.125rem;
  color: var(--hs-text-secondary);
  max-width: 600px;
  margin-top: 8px;
}

/* Pagination */
.hs-pagination {
  padding: 40px 0;
  text-align: center;
}

.hs-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  margin: 0 4px;
  border: 1px solid var(--hs-border);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--hs-text-primary);
  text-decoration: none !important;
  transition: all var(--hs-transition);
}

.hs-pagination .page-numbers:hover {
  border-color: var(--hs-orange);
  color: var(--hs-orange) !important;
}

.hs-pagination .page-numbers.current {
  background: var(--hs-orange);
  border-color: var(--hs-orange);
  color: #fff !important;
}

.hs-pagination .page-numbers.prev,
.hs-pagination .page-numbers.next {
  font-size: 0.8125rem;
}

/* Footer newsletter section anchor */
#newsletter-section {
  scroll-margin-top: 80px;
}

/* Mobile Menu */
@media (max-width: 768px) {
  .hs-header__main-inner {
    justify-content: space-between;
  }
  .hs-header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--hs-bg-white);
    border-bottom: 1px solid var(--hs-border);
    padding: 16px 24px;
    z-index: 999;
  }

  .hs-header__nav.active {
    display: block;
  }

  .hs-nav-menu {
    flex-direction: column;
    gap: 0;
  }

  .hs-nav-menu li {
    border-bottom: 1px solid var(--hs-border);
  }

  .hs-nav-menu li:last-child {
    border-bottom: none;
  }

  .hs-nav-menu a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
  }

  .hs-header__menu-toggle {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .hs-header__menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--hs-text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .hs-header__menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hs-header__menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .hs-header__menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hs-header__actions .hs-btn {
    display: none;
  }
}

/* ============================================
   MOBILE RESPONSIVE - SMALL SCREENS
   ============================================ */

@media (max-width: 480px) {
  .hs-hero__featured {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hs-hero__featured-title {
    font-size: 1.25rem;
  }

  .hs-highlights__grid {
    grid-template-columns: 1fr;
  }

  .hs-section-title {
    font-size: 1.25rem;
  }

  .hs-card__title {
    font-size: 1rem;
  }

  .hs-colunistas-grid {
    grid-template-columns: 1fr;
  }

  .hs-header__topbar-inner {
    font-size: 0.6875rem;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
    padding: 6px 0;
  }

  .hs-header__topbar-inner span {
    display: none;
  }

  .hs-header__locale {
    font-size: 0.6875rem;
  }

  .hs-footer__columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hs-footer__newsletter-options {
    flex-direction: column;
    gap: 8px;
  }

  .hs-footer__newsletter-form {
    flex-direction: column;
  }

  .hs-footer__newsletter-form input[type="email"] {
    width: 100%;
  }

  .hs-footer__newsletter-form button {
    width: 100%;
  }

  .hs-single__title {
    font-size: 1.5rem;
  }

  .hs-single__meta {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.8125rem;
  }

  .hs-single__content {
    font-size: 1rem;
  }

  .hs-single-colunista__name {
    font-size: 1.5rem;
  }

  .hs-single-colunista__role {
    font-size: 1rem;
  }

  .hs-single-colunista__bio {
    font-size: 1rem;
  }

  .hs-archive-page__desc {
    font-size: 1rem;
  }

  .hs-pagination {
    gap: 4px;
  }

  .hs-pagination a, 
  .hs-pagination span {
    min-width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }

  .hs-section-link {
    font-size: 0.8125rem;
  }
}

@media (max-width: 380px) {
  .hs-header__topbar-inner {
    flex-direction: column;
    height: auto;
    padding: 4px 0;
    gap: 2px;
  }

  .hs-hero__featured-title {
    font-size: 1.125rem;
  }

  .hs-colunistas-grid {
    grid-template-columns: 1fr;
  }
}

/* Share Buttons */
.hs-share {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 0;
  border-top: 1px solid var(--hs-border);
  margin-top: 32px;
  flex-wrap: wrap;
}

.hs-share__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--hs-text-secondary);
  margin-right: 4px;
}

.hs-share__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--hs-transition);
}

.hs-share__link svg {
  flex-shrink: 0;
}

.hs-share__link--whatsapp {
  background: #25D366;
  color: #fff;
}

.hs-share__link--whatsapp:hover {
  background: #1da851;
  color: #fff;
}

.hs-share__link--instagram {
  background: #E4405F;
  color: #fff;
}

.hs-share__link--instagram:hover {
  background: #c9324f;
  color: #fff;
}


/* ============================================
   PREMIUM ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hs-animate-in {
  animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hs-hero__featured-content {
  animation: fadeInUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both;
}

.hs-hero__featured-image {
  animation: fadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

/* ============================================
   HIGHLIGHTS SECTION
   ============================================ */
.hs-highlights {
  padding: 0 0 64px;
}

/* ============================================
   PREMIUM NEWSLETTER
   ============================================ */
.hs-footer__newsletter {
  padding: 48px 40px;
  background: linear-gradient(135deg, rgba(255,93,42,0.2), rgba(37,99,235,0.12));
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  margin-bottom: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hs-footer__newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37,99,235,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hs-footer__newsletter-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  position: relative;
  color: #fff;
}

.hs-footer__newsletter-desc {
  color: var(--hs-text-secondary);
  margin-bottom: 28px;
  font-size: 1rem;
  position: relative;
}

.hs-footer__newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}

.hs-footer__newsletter-form input[type="email"] {
  flex: 1;
  height: 52px;
  padding: 0 20px;
  border: 2px solid var(--hs-border);
  border-radius: 12px;
  font-size: 0.9375rem;
  background: var(--hs-bg-white);
  outline: none;
  transition: border-color var(--hs-transition);
}

.hs-footer__newsletter-form input[type="email"]:focus {
  border-color: var(--hs-orange);
}

.hs-footer__newsletter-form button {
  height: 52px;
  padding: 0 28px;
  border: none;
  border-radius: 12px;
  background: var(--hs-orange);
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: background var(--hs-transition);
  white-space: nowrap;
}

.hs-footer__newsletter-form button:hover {
  background: var(--hs-orange-hover);
}

/* ============================================
   FOOTER REFINED
   ============================================ */
.hs-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.hs-footer__col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.7);
}

.hs-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hs-footer__col li {
  margin-bottom: 10px;
}

.hs-footer__col a {
  color: rgba(255,255,255,0.85) !important;
  text-decoration: none !important;
  font-size: 0.9375rem;
  transition: color var(--hs-transition);
}

.hs-footer__col a:hover {
  color: #fff !important;
}

.hs-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
}

.hs-footer__bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}



/* Newsletter Messages */
.hs-newsletter-msg {
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 16px;
  text-align: center;
}
.hs-newsletter-msg--success {
  background: rgba(5, 150, 105, 0.15);
  color: #34D399;
  border: 1px solid rgba(5, 150, 105, 0.3);
}
.hs-newsletter-msg--info {
  background: rgba(37, 99, 235, 0.15);
  color: #60A5FA;
  border: 1px solid rgba(37, 99, 235, 0.3);
}
.hs-newsletter-msg--error {
  background: rgba(220, 38, 38, 0.15);
  color: #F87171;
  border: 1px solid rgba(220, 38, 38, 0.3);
}

/* ============================================
   PREMIUM COLUNISTA CARDS
   ============================================ */
.hs-colunista-card {
  background: var(--hs-bg-white);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--hs-shadow-card);
  transition: all var(--hs-transition);
}

.hs-colunista-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hs-shadow-card-hover);
}

.hs-colunista-card__avatar {
  width: 88px;
  height: 88px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--hs-bg-primary);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* ============================================
   SECTION TITLES REFINED
   ============================================ */
.hs-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

.hs-section-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--hs-text-secondary) !important;
  text-decoration: none !important;
  transition: color var(--hs-transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hs-section-link::after {
  content: '→';
  transition: transform var(--hs-transition);
}

.hs-section-link:hover {
  color: var(--hs-text-primary) !important;
}

.hs-section-link:hover::after {
  transform: translateX(4px);
}

/* ============================================
   SINGLE POST REFINED
   ============================================ */
.hs-single__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 16px 0;
}

.hs-single__content {
  max-width: 680px;
  font-size: 1.125rem;
  line-height: 1.85;
  color: var(--hs-text-primary);
}

/* ============================================
   BUTTONS REFINED
   ============================================ */
.hs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 24px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none !important;
  cursor: pointer;
  transition: all var(--hs-transition);
}

.hs-btn--primary {
  background: var(--hs-orange);
  color: #fff !important;
  border: none;
}

.hs-btn--primary:hover {
  background: var(--hs-orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,93,42,0.3);
}

/* ============================================
   CATEGORY BADGE
   ============================================ */
.hs-category-badge {
  display: inline-block;
  padding: 5px 14px;
  background: var(--hs-accent-blue);
  color: #fff !important;
  border-radius: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================
   PAGINATION REFINED
   ============================================ */
.hs-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 48px 0;
}

.hs-pagination a,
.hs-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 4px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--hs-transition);
}

.hs-pagination a {
  color: var(--hs-text-primary);
  background: var(--hs-bg-white);
  box-shadow: var(--hs-shadow-card);
}

.hs-pagination a:hover {
  background: var(--hs-orange);
  color: #fff;
}

.hs-pagination span.current {
  background: var(--hs-orange);
  color: #fff;
}
