/*
  styles.css — StartMyShop Landing Page
  Mobile-first · Clean · Premium SaaS aesthetic
  Paleta inspirada no universo Shopify (independente)
*/

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background-color: #fff;
  color: #1a1a2e;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }


/* ═══════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════ */
:root {
  /* Brand */
  --green:        #008060;
  --green-dark:   #004C3F;
  --green-hover:  #006e52;
  --green-light:  #e3f5ee;
  --green-ultra:  #f0fdf7;

  /* Neutrals */
  --white:        #ffffff;
  --bg-alt:       #f7f9fc;
  --border:       #e3e8ef;
  --border-light: #f0f2f5;

  /* Text */
  --text:         #1a1a2e;
  --text-sec:     #4a5568;
  --text-muted:   #718096;

  /* Accent */
  --star:         #f59e0b;
  --red-bg:       #fef2f2;
  --red-text:     #dc2626;

  /* Shadows */
  --shadow-xs:  0 1px 2px rgba(0,0,0,.05);
  --shadow-sm:  0 1px 4px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.10);
  --shadow-xl:  0 20px 56px rgba(0,0,0,.12);

  /* Radius */
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-full: 9999px;

  /* Transitions */
  --t: .2s ease;

  /* Layout */
  --container: 1140px;
  --gap: 20px;
}


/* ═══════════════════════════════════════════
   LAYOUT UTILITIES
═══════════════════════════════════════════ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
}

.section {
  padding: 64px 0;
}

.section-alt {
  background-color: var(--bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 44px;
}

.section-header h2 {
  font-size: clamp(22px, 5.5vw, 34px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-sec);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.65;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}


/* ═══════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════ */
h1, h2, h3, h4 {
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--text);
}


/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all var(--t);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -.01em;
}

.btn-primary {
  background-color: var(--green);
  color: #fff;
  padding: 15px 28px;
  border-radius: var(--r-md);
  box-shadow: 0 4px 14px rgba(0, 128, 96, .28);
}

.btn-primary:hover {
  background-color: var(--green-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 128, 96, .36);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 128, 96, .28);
}

.btn-header {
  background-color: var(--green);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 600;
}

.btn-header:hover {
  background-color: var(--green-hover);
}

.btn-hero {
  width: 100%;
  max-width: 420px;
  padding: 18px 32px;
  font-size: 17px;
  border-radius: var(--r-lg);
  margin-top: 4px;
}

.btn-cta-final {
  background-color: #fff !important;
  color: var(--green-dark) !important;
  box-shadow: 0 4px 14px rgba(0,0,0,.15) !important;
  padding: 18px 40px;
  font-size: 17px;
  border-radius: var(--r-lg);
  margin: 0 auto;
  display: flex;
  max-width: 360px;
}

.btn-cta-final:hover {
  background-color: #f7f9fc !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,.20) !important;
}

.btn-sticky {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  border-radius: var(--r-md);
}

.microcopy {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
  line-height: 1.5;
}

.microcopy-light {
  color: rgba(255,255,255,.65);
}


/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 17px;
  color: var(--green-dark);
}

.logo-mark {
  color: var(--green);
  font-size: 18px;
}

.logo-text {
  font-size: 15px;
  font-weight: 600;
  color: #555;
  letter-spacing: -0.01em;
}

/* Shopify badge — below store card (v2) */
.shopify-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  justify-content: center;
}
.shopify-badge-label {
  font-size: 12px;
  color: #999;
  letter-spacing: 0.02em;
}
.shopify-logo-img {
  height: 30px;
  width: auto;
}

.logo-img {
  height: 30px;
  width: auto;
  display: block;
}

.footer-logo .logo-img {
  height: 26px;
  filter: brightness(0) invert(1);
  margin: 0 auto 14px;
}

.footer-logo .logo-name {
  color: #fff;
}


/* ═══════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════ */
.hero {
  padding: 40px 0 56px;
  background: linear-gradient(160deg, #fff 0%, var(--green-ultra) 100%);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Social proof pill */
/* NOTE: Replace numbers with real data before publishing */
.hero-proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 7px 14px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}

.proof-stars {
  display: flex;
  gap: 1px;
}

.proof-stars span {
  color: var(--star);
  font-size: 13px;
  line-height: 1;
}

.proof-rating {
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
}

.proof-sep {
  color: var(--border);
  font-size: 13px;
}

.proof-text {
  font-size: 12.5px;
  color: var(--text-sec);
  font-weight: 500;
}

/* Hero headline */
.hero-headline {
  font-size: clamp(34px, 9vw, 54px);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 16px;
}

.headline-accent {
  color: var(--green);
}

/* Hero subheadline */
.hero-sub {
  font-size: clamp(15px, 3.5vw, 17px);
  color: var(--text-sec);
  line-height: 1.65;
  margin-bottom: 26px;
  max-width: 480px;
}

/* Offer box */
.offer-box {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.offer-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 3px 0;
}

.offer-icon-wrap {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.offer-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.offer-text span {
  display: block;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 1px;
}

.offer-divider {
  height: 1px;
  background: var(--border-light);
  margin: 11px 0;
}

.offer-row-bonus {
  background: var(--green-light);
  border-radius: var(--r-sm);
  padding: 9px 10px;
  margin: -3px -2px -3px;
}

.offer-row-bonus .offer-text strong {
  color: var(--green-dark);
}

.offer-row-bonus .offer-text span {
  color: #397a60;
}

.offer-row-extras {
  background: #fef9ec;
  border-radius: var(--r-sm);
  padding: 9px 10px;
  margin: -3px -2px -3px;
}

.offer-row-extras .offer-text strong {
  color: #92400e;
}

.offer-row-extras .offer-text span {
  color: #a16207;
}


/* ═══════════════════════════════════════════
   HERO VISUAL — Store Dashboard Mockup
═══════════════════════════════════════════ */
.hero-visual {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.store-card {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  padding: 20px;
  width: 100%;
  max-width: 380px;
  border: 1px solid var(--border-light);
}

/* Titlebar */
.store-card-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.titlebar-dots {
  display: flex;
  gap: 5px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red    { background: #ff5f57; }
.dot-yellow { background: #ffbd2e; }
.dot-green  { background: #28c840; }

.titlebar-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  flex: 1;
  text-align: center;
}

.titlebar-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 2px 10px;
  border-radius: var(--r-full);
}

/* Metrics row */
.store-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.metric-item {
  text-align: center;
  padding: 11px 6px;
  background: var(--bg-alt);
  border-radius: var(--r-md);
}

.metric-val {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.metric-lbl {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
}

.metric-trend {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  margin-top: 3px;
}

/* Mini bar chart */
.store-chart-wrap {
  background: var(--bg-alt);
  border-radius: var(--r-md);
  padding: 12px 12px 8px;
  margin-bottom: 14px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 52px;
}

.bar {
  flex: 1;
  height: var(--h);
  background: var(--green-light);
  border-radius: 3px 3px 0 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.55s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.bar-active {
  background: var(--green);
}

.dashboard-ready .bar {
  transform: scaleY(1);
}

.store-card {
  animation: cardIn 0.5s ease both;
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.metric-trend {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.dashboard-ready .metric-trend {
  opacity: 1;
}

/* Product rows */
.store-products {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 13px;
}

.product-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: var(--bg-alt);
  border-radius: var(--r-sm);
}

.product-thumb {
  width: 34px;
  height: 34px;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  object-fit: cover;
  display: block;
}

.product-meta {
  flex: 1;
  min-width: 0;
}

.product-name {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-count {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
}

.product-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
}

/* Status bar */
.store-status-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--green-light);
  border-radius: var(--r-sm);
}

.status-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(.85); }
}

.status-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--green-dark);
}


/* ═══════════════════════════════════════════
   O QUE VOCÊ RECEBE
═══════════════════════════════════════════ */
.receive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}

.card-bonus {
  border-color: var(--green);
  background: linear-gradient(160deg, var(--white) 0%, var(--green-ultra) 100%);
}

.card-tag {
  display: inline-block;
  background: var(--bg-alt);
  color: var(--text-muted);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 12px;
  border-radius: var(--r-full);
  margin-bottom: 14px;
  border: 1px solid var(--border);
}

.card-tag-bonus {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 18px;
}

/* Price block */
.price-block {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-alt);
  border-radius: var(--r-lg);
  padding: 18px 16px;
  margin-bottom: 20px;
}

.price-col {
  text-align: center;
  flex: 1;
}

.price-big {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1.1;
  letter-spacing: -.02em;
}

.price-big small {
  font-size: 13px;
  font-weight: 600;
}

.price-green {
  color: var(--green);
}

.price-sub-lbl {
  display: block;
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 4px;
}

.price-arrow {
  font-size: 16px;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* Checklist */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 16px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 14px;
  color: var(--text-sec);
  border-bottom: 1px solid var(--border-light);
}

.check-list li:last-child {
  border-bottom: none;
}

.check-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.card-footnote {
  font-size: 12px;
  color: var(--text-muted);
  padding: 10px 13px;
  background: var(--bg-alt);
  border-radius: var(--r-sm);
  border-left: 2.5px solid var(--border);
  line-height: 1.55;
}

/* Bonus items */
.bonus-intro {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.65;
  margin-bottom: 18px;
}

.bonus-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.bonus-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sec);
}

.bonus-item span:first-child {
  font-size: 16px;
  flex-shrink: 0;
}

.bonus-stamp {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 10px 14px;
  border-radius: var(--r-md);
}


/* ═══════════════════════════════════════════
   POR QUE ISSO AJUDA
═══════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}

.why-text h2 {
  font-size: clamp(22px, 5.5vw, 34px);
  font-weight: 800;
  margin-bottom: 10px;
}

.why-intro {
  font-size: 16px;
  color: var(--text-sec);
  margin-bottom: 22px;
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.pain-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-sec);
}

.pain-x {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red-bg);
  color: var(--red-text);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.solution-note {
  font-size: 14.5px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.65;
  padding: 14px 16px;
  background: var(--green-ultra);
  border-radius: var(--r-md);
  border-left: 3px solid var(--green);
}

/* Comparison card */
.compare-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.compare-col {
  padding: 22px 18px;
}

.compare-col-bad  { background: #fef2f2; }
.compare-col-good { background: var(--green-ultra); }

.compare-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
}

.compare-head h4 {
  font-size: 13.5px;
  font-weight: 700;
}

.compare-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.compare-icon-bad  { background: var(--red-bg); color: var(--red-text); }
.compare-icon-good { background: var(--green-light); color: var(--green-dark); }

.compare-col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.compare-col li {
  font-size: 12.5px;
  color: var(--text-sec);
  line-height: 1.45;
}


/* ═══════════════════════════════════════════
   BENEFÍCIOS
═══════════════════════════════════════════ */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.benefit-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--t), border-color var(--t), transform var(--t);
}

.benefit-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
  transform: translateY(-2px);
}

.benefit-emoji {
  font-size: 26px;
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}

.benefit-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}

.benefit-card p {
  font-size: 13px;
  color: var(--text-sec);
  line-height: 1.55;
}


/* ═══════════════════════════════════════════
   MÓDULOS DO TREINAMENTO
═══════════════════════════════════════════ */
.modules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-bottom: 28px;
}

.module-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--t), border-color var(--t);
}

.module-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}

.module-num {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  color: var(--green);
  background: var(--green-light);
  padding: 2px 9px;
  border-radius: var(--r-full);
  letter-spacing: .04em;
  margin-bottom: 8px;
}

.module-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}

.module-card p {
  font-size: 12.5px;
  color: var(--text-sec);
  line-height: 1.55;
}

.training-callout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--green-light);
  border: 1.5px solid var(--green);
  border-radius: var(--r-lg);
  padding: 16px 22px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.training-callout .callout-icon {
  font-size: 22px;
}

.training-callout strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--green-dark);
}

.training-callout span {
  font-size: 13px;
  color: #397a60;
}


/* ═══════════════════════════════════════════
   CARD CREDITS — dentro do card-offer
═══════════════════════════════════════════ */
.card-credits {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 14px;
  padding: 13px 15px;
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border: 1.5px solid #fcd34d;
  border-radius: var(--r-md);
}

.credits-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.card-credits strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #92400e;
  line-height: 1.3;
}

.card-credits span {
  display: block;
  font-size: 12px;
  color: #a16207;
  margin-top: 2px;
}


/* ═══════════════════════════════════════════
   BÔNUS EXTRAS
═══════════════════════════════════════════ */
.extras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.extra-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: box-shadow var(--t), border-color var(--t), transform var(--t);
}

.extra-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
  transform: translateY(-2px);
}

.extra-badge {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: var(--r-full);
}

.extra-icon {
  font-size: 26px;
  line-height: 1;
  margin-top: 2px;
}

.extra-card h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.extra-card p {
  font-size: 12.5px;
  color: var(--text-sec);
  line-height: 1.55;
  flex: 1;
}

.btn-extra {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dark);
  background: var(--green-light);
  border-radius: var(--r-md);
  border: 1.5px solid var(--green);
  transition: all var(--t);
  white-space: nowrap;
}

.btn-extra:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 128, 96, .25);
}


/* ═══════════════════════════════════════════
   DEPOIMENTOS
═══════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.testi-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: var(--shadow-xs);
}

.testi-stars {
  color: var(--star);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.testi-card p {
  font-size: 13.5px;
  color: var(--text-sec);
  line-height: 1.7;
  margin-bottom: 14px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 11px;
}

.testi-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--green-dark);
  flex-shrink: 0;
}

.testi-avatar-img {
  object-fit: cover;
  display: block;
}

.testi-author strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.testi-author span {
  font-size: 12px;
  color: var(--text-muted);
}


/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: border-color var(--t);
}

.faq-item[data-open] {
  border-color: var(--green);
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 18px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background var(--t);
}

.faq-btn:hover {
  background: var(--bg-alt);
}

.faq-chevron {
  color: var(--green);
  font-size: 15px;
  flex-shrink: 0;
  transition: transform .25s ease;
  font-weight: 700;
}

.faq-item[data-open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-body {
  overflow: hidden;
}

.faq-body p {
  padding: 0 18px 16px;
  font-size: 13.5px;
  color: var(--text-sec);
  line-height: 1.7;
}

.faq-body a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
}


/* ═══════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════ */
.cta-final-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-final-inner {
  max-width: 580px;
  margin: 0 auto;
}

.cta-final-tag {
  display: inline-block;
  background: rgba(255,255,255,.18);
  color: rgba(255,255,255,.9);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,.25);
}

.cta-final-inner h2 {
  font-size: clamp(26px, 6vw, 40px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.15;
  letter-spacing: -.025em;
}

.cta-final-inner > p {
  font-size: 16px;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
  margin-bottom: 26px;
}

.cta-final-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.cta-final-pills span {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,.14);
  padding: 6px 14px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,.22);
}

.pill-sep {
  background: transparent !important;
  border: none !important;
  color: rgba(255,255,255,.5) !important;
  font-size: 18px !important;
  padding: 0 !important;
}


/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: #111827;
  padding: 40px 0;
}

.footer-inner {
  text-align: center;
}

.footer-logo {
  justify-content: center;
  color: #fff;
}

.footer-logo .logo-mark {
  color: var(--green);
}

.footer-disclaimer {
  font-size: 11.5px;
  color: rgba(255,255,255,.4);
  line-height: 1.65;
  max-width: 540px;
  margin: 0 auto 10px;
}

.footer-langs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
  margin: 0 auto 28px;
}

.footer-langs a {
  font-size: 11.5px;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .15s;
}

.footer-langs a:hover {
  color: #fff;
}

.footer-langs a.lang-active {
  color: var(--green);
  font-weight: 600;
  pointer-events: none;
}

.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,.25);
}


/* ═══════════════════════════════════════════
   STICKY BAR — Mobile only
═══════════════════════════════════════════ */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px var(--gap);
  box-shadow: 0 -4px 20px rgba(0,0,0,.10);
  border-top: 1px solid var(--border-light);
  transform: translateY(100%);
  transition: transform .3s ease;
  display: none;
}

.sticky-bar.is-visible {
  transform: translateY(0);
}


/* ═══════════════════════════════════════════
   RESPONSIVE — Tablet 640px+
═══════════════════════════════════════════ */
@media (min-width: 640px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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


/* ═══════════════════════════════════════════
   RESPONSIVE — Desktop 768px+
═══════════════════════════════════════════ */
@media (min-width: 768px) {
  .hero {
    padding: 60px 0 72px;
  }

  .hero-inner {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
  }

  .btn-hero {
    width: auto;
    max-width: none;
  }

  .receive-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .modules-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Hide sticky bar on desktop */
  .sticky-bar {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Mobile show sticky bar
═══════════════════════════════════════════ */
@media (max-width: 767px) {
  .sticky-bar {
    display: block;
  }
}


/* ═══════════════════════════════════════════
   SMALL MOBILE — 375px and below
═══════════════════════════════════════════ */
@media (max-width: 420px) {
  :root {
    --gap: 16px;
  }

  .hero-proof-pill {
    font-size: 11px;
  }

  .proof-text {
    display: none;
  }

  .bonus-items {
    grid-template-columns: 1fr;
  }

  .extras-grid {
    grid-template-columns: 1fr;
  }

  .compare-col {
    padding: 16px 13px;
  }

  .compare-col li {
    font-size: 11.5px;
  }

  .cta-final-pills span {
    font-size: 12px;
    padding: 5px 11px;
  }
}


/* ═══════════════════════════════════════════
   FOOTER BLOG LINKS
═══════════════════════════════════════════ */
.footer-blog-links {
  margin-bottom: 20px;
}

.footer-blog-sep {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,.3);
  margin-bottom: 8px;
}


/* ═══════════════════════════════════════════
   BLOG — Breadcrumb strip
═══════════════════════════════════════════ */
.breadcrumb-wrap {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-light);
}

.breadcrumb {
  padding: 12px 0;
  font-size: 12.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
  white-space: nowrap;
  overflow: hidden;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--t);
  flex-shrink: 0;
}

.breadcrumb a:hover {
  color: var(--green);
}

.breadcrumb-sep {
  margin: 0 5px;
  opacity: .4;
  flex-shrink: 0;
}

.breadcrumb-current {
  color: var(--text-sec);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


/* ═══════════════════════════════════════════
   BLOG — Post hero header
═══════════════════════════════════════════ */
.blog-post-hero {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-light);
  padding: 44px 0 40px;
  margin-bottom: 52px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.post-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 4px 11px;
}

.post-meta-pill svg {
  width: 13px;
  height: 13px;
  opacity: .6;
}

.post-title {
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 800;
  line-height: 1.18;
  color: var(--text);
  max-width: 720px;
  letter-spacing: -.02em;
}


/* ═══════════════════════════════════════════
   BLOG — Hero image
═══════════════════════════════════════════ */
.post-hero-image {
  padding: 0 0 48px;
}

.post-hero-figure {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  position: relative;
}

.post-hero-figure img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.post-hero-figure figcaption {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 10.5px;
  color: rgba(255,255,255,.8);
  background: rgba(0,0,0,.35);
  padding: 4px 10px;
  border-top-left-radius: 6px;
}

.post-hero-figure figcaption a {
  color: rgba(255,255,255,.8);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .post-hero-figure img {
    height: 220px;
  }
}


/* ═══════════════════════════════════════════
   BLOG — Post content typography
═══════════════════════════════════════════ */
.blog-post {
  padding-bottom: 96px;
}

.blog-post-content {
  max-width: 680px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-sec);
}

.blog-post-content > *:first-child {
  margin-top: 0;
}

.blog-post-content h2 {
  font-size: clamp(20px, 3vw, 25px);
  font-weight: 700;
  color: var(--text);
  margin: 52px 0 14px;
  line-height: 1.25;
  letter-spacing: -.01em;
  padding-left: 14px;
  border-left: 3px solid var(--green);
}

.blog-post-content h3 {
  font-size: clamp(16px, 2.5vw, 19px);
  font-weight: 600;
  color: var(--text);
  margin: 36px 0 10px;
  line-height: 1.35;
}

.blog-post-content p {
  margin-bottom: 22px;
}

.blog-post-content ul,
.blog-post-content ol {
  margin: 4px 0 24px 0;
  padding-left: 0;
  list-style: none;
}

.blog-post-content ul li,
.blog-post-content ol li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  line-height: 1.65;
}

.blog-post-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.blog-post-content ol {
  counter-reset: ol-counter;
}

.blog-post-content ol li {
  counter-increment: ol-counter;
}

.blog-post-content ol li::before {
  content: counter(ol-counter) '.';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
}

.blog-post-content strong {
  color: var(--text);
  font-weight: 600;
}

.blog-post-content a {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: rgba(0,128,96,.3);
  transition: text-decoration-color var(--t);
}

.blog-post-content a:hover {
  text-decoration-color: var(--green);
}


/* ═══════════════════════════════════════════
   BLOG — CTA block inside post
═══════════════════════════════════════════ */
.post-cta-block {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  margin: 56px 0;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.post-cta-block p {
  font-size: 16.5px;
  color: rgba(255,255,255,.92);
  font-weight: 500;
  margin-bottom: 22px;
  line-height: 1.55;
}

.post-cta-block .btn {
  display: inline-block;
  background: #fff !important;
  color: var(--green-dark) !important;
  font-weight: 700;
  margin-bottom: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

.post-cta-block .btn:hover {
  background: #f0fdf7 !important;
  transform: translateY(-1px);
}

.post-cta-microcopy {
  font-size: 12px !important;
  color: rgba(255,255,255,.55) !important;
  margin-bottom: 0 !important;
}


/* ═══════════════════════════════════════════
   BLOG — Index page
═══════════════════════════════════════════ */
.blog-index {
  padding-bottom: 96px;
}

.blog-index-hero {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-light);
  padding: 52px 0 44px;
  margin-bottom: 52px;
}

.blog-index-tag {
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  padding: 5px 13px;
  border-radius: var(--r-full);
  margin-bottom: 18px;
}

.blog-index-title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -.02em;
}

.blog-index-sub {
  font-size: 17px;
  color: var(--text-sec);
  max-width: 520px;
  line-height: 1.65;
}

.post-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.post-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: box-shadow var(--t), transform var(--t);
}

.post-card:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,.09);
  transform: translateY(-2px);
}

.post-card-img-wrap {
  display: block;
  overflow: hidden;
}

.post-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.post-card:hover .post-card-img-wrap img {
  transform: scale(1.05);
}

.post-card-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

  .post-card-img-wrap {
    height: 180px;
  }
}

.post-card-date {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.post-card-title {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.post-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t);
}

.post-card-title a:hover {
  color: var(--green);
}

.post-card-desc {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.6;
  margin-bottom: 16px;
}

.post-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  transition: gap var(--t), color var(--t);
}

.post-card-link:hover {
  color: var(--green-dark);
  gap: 8px;
}


/* ═══════════════════════════════════════════
   BLOG — Two-column layout with sidebar
═══════════════════════════════════════════ */
.blog-layout {
  display: block;
}

.post-sidebar {
  display: none;
}

@media (min-width: 1024px) {
  .blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 56px;
    align-items: start;
  }

  .post-sidebar {
    display: block;
    position: sticky;
    top: 84px;
  }
}


/* ═══════════════════════════════════════════
   BLOG — Sidebar cards
═══════════════════════════════════════════ */
.sidebar-offer-card {
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green) 100%);
  border-radius: var(--r-xl);
  padding: 24px 20px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-md);
}

.sidebar-offer-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  padding: 3px 10px;
  border-radius: var(--r-full);
  margin-bottom: 12px;
  color: #fff;
}

.sidebar-offer-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.sidebar-offer-desc {
  font-size: 13px;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
  margin-bottom: 16px;
}

.sidebar-offer-btn {
  display: block;
  text-align: center;
  background: #fff !important;
  color: var(--green-dark) !important;
  font-size: 12.5px;
  font-weight: 700;
  padding: 11px 14px;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: background var(--t), transform var(--t);
  line-height: 1.35;
}

.sidebar-offer-btn:hover {
  background: #f0fdf7 !important;
  transform: translateY(-1px);
}

.sidebar-included-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin: 14px 0 8px;
  display: block;
}

.sidebar-training-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.sidebar-training-list li {
  font-size: 12.5px;
  color: rgba(255,255,255,.85);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 7px;
}

.sidebar-microcopy {
  font-size: 11px;
  color: rgba(255,255,255,.4);
  text-align: center;
  margin-top: 10px;
}

.sidebar-extras-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 18px 16px;
}

.sidebar-extras-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  display: block;
}

.sidebar-extra-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  padding: 9px 11px;
  margin-bottom: 6px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  background: #fafafa;
  transition: background var(--t), border-color var(--t), color var(--t);
}

.sidebar-extra-item:last-child {
  margin-bottom: 0;
}

.sidebar-extra-item:hover {
  background: var(--green-light);
  border-color: var(--green);
  color: var(--green);
}

.sidebar-extra-icon {
  font-size: 15px;
  flex-shrink: 0;
}

.sidebar-extra-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-light);
  padding: 2px 7px;
  border-radius: var(--r-full);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════
   BLOG — Pagination
═══════════════════════════════════════════ */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 40px 0 0;
  border-top: 1px solid var(--border-light);
  margin-top: 8px;
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  padding: 9px 18px;
  border: 1.5px solid var(--green-light);
  border-radius: var(--r-md);
  background: var(--green-ultra);
  transition: all var(--t);
}

.pagination-btn:hover {
  background: var(--green-light);
  border-color: var(--green);
}

.pagination-btn.disabled {
  opacity: 0;
  pointer-events: none;
}

.pagination-info {
  font-size: 13px;
  color: var(--text-muted);
}


/* ═══════════════════════════════════════════
   BLOG — More posts link (end of article)
═══════════════════════════════════════════ */
.post-faq {
  margin: 32px 0 36px;
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 28px 32px;
}

.post-faq-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 20px;
  border-left: none !important;
  padding-left: 0 !important;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--r-md, 8px);
  padding: 16px 20px;
}

.faq-item dt {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.faq-item dd {
  font-size: 14.5px;
  color: var(--text-sec);
  line-height: 1.65;
  margin: 0;
}

/* ── Author byline (below title) ── */
.post-author-byline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-sec);
}

.post-author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* ── Author box (end of post) ── */
.post-author-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 48px;
  padding: 24px;
  background: var(--bg-alt, #f8f9fa);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
}

.post-author-box-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.post-author-box-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.post-author-box-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-sec);
}

.post-author-box-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.post-author-box-bio {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.6;
  margin: 4px 0 8px;
}

.post-author-box-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.post-author-social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sec);
  text-decoration: none;
  transition: color var(--t);
}

.post-author-social-link:hover {
  color: var(--green);
}

@media (max-width: 600px) {
  .post-author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .post-author-box-links {
    justify-content: center;
  }
}

.post-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-sec);
  text-decoration: none;
  padding: 14px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  margin-top: 32px;
  transition: all var(--t);
}

.post-more-link:hover {
  color: var(--green);
  border-color: var(--green-light);
  background: var(--green-ultra);
}


/* ═══════════════════════════════════════════
   BLOG — Responsive
═══════════════════════════════════════════ */
@media (min-width: 768px) {
  .blog-post-hero {
    padding: 60px 0 52px;
  }

  .post-title {
    font-size: clamp(32px, 4.5vw, 44px);
  }

  .blog-post-content {
    font-size: 17.5px;
  }

  .blog-index-hero {
    padding: 64px 0 56px;
  }
}
