﻿:root {
  --red: #a6101f;
  --red-dark: #6b0a14;
  --blue: #0e2a4a;
  --green: #15633d;
  --gold: #c98a1b;
  --paper: #f2f8ef;
  --ink: #171717;
  --muted: #66635f;
  --line: #dbe8d5;
  --white: #fff;
  --shadow: 0 18px 45px rgba(23, 23, 23, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246,251,242,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  transition: background .24s ease, box-shadow .24s ease, border-color .24s ease;
  will-change: transform;
}
.header-inner {
  min-height: 96px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: min-height .24s ease, padding .24s ease;
}
.brand { display: inline-flex; align-items: center; gap: 14px; }
.site-header .brand-mark {
  height: 122px;
  width: auto;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
  transition: height .24s ease;
}
.brand-mark {
  height: 122px;
  width: auto;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}
.site-footer .brand-mark { height: 52px; }
.brand-copy strong, .brand-copy small { display: block; }
.brand-copy strong { font-weight: 800; transition: font-size .24s ease; }
.brand-copy small { color: var(--muted); font-size: 12px; margin-top: 2px; transition: opacity .2s ease, max-height .24s ease, margin .24s ease; }
.desktop-nav { display: none; align-items: center; gap: 22px; font-weight: 700; font-size: 14px; transition: gap .24s ease; }
.desktop-nav a { color: var(--blue); }
.nav-cta, .btn-primary, .btn-secondary {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
}
.nav-cta, .btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white !important;
}
.nav-cta.soft, .btn-secondary {
  background: white;
  color: var(--blue) !important;
  border: 1px solid var(--line);
}
.site-header.is-compact {
  background: rgba(246,251,242,.985);
  border-bottom-color: rgba(21,99,61,.18);
  box-shadow: 0 12px 32px rgba(14,42,74,.08);
}
.site-header.is-compact .header-inner {
  min-height: 64px;
  padding-block: 6px;
}
.site-header.is-compact .brand {
  gap: 10px;
}
.site-header.is-compact .brand-mark {
  height: 54px;
}
.site-header.is-compact .brand-copy strong {
  font-size: 14px;
}
.site-header.is-compact .brand-copy small {
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
}
.site-header.is-compact .desktop-nav {
  gap: 16px;
}
.site-header.is-compact .nav-cta,
.site-header.is-compact .menu-btn {
  min-height: 36px;
  padding-inline: 14px;
}
.menu-btn, .menu-close {
  min-width: 76px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--blue);
  font-weight: 800;
}
.mobile-menu { position: fixed; inset: 0; display: none; z-index: 40; background: rgba(0,0,0,.35); }
.mobile-menu.open { display: block; }
.mobile-menu-panel {
  margin-left: auto;
  min-height: 100%;
  width: min(330px, 88vw);
  background: white;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mobile-menu-panel a { padding: 14px 0; border-bottom: 1px solid var(--line); font-weight: 800; }

.hero {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  background: #14110e;
  color: white;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(20,17,14,.92) 0%, rgba(20,17,14,.7) 36%, rgba(20,17,14,.24) 66%, rgba(20,17,14,.06) 100%);
}
.hero-slides, .hero-slide {
  position: absolute;
  inset: 0;
}
.hero-slide {
  opacity: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 900ms ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0;
  margin-left: max(16px, calc((100vw - 1180px) / 2));
  padding: 72px 16px 54px 0;
  box-sizing: border-box;
  text-align: left;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.hero h1, .reader-hero h1, .track-hero h1, .certificate-card h1 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.02;
  max-width: 720px;
}
.hero p:not(.eyebrow) { max-width: 620px; color: rgba(255,255,255,.88); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; max-width: 720px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; max-width: 720px; }
.hero-stats span {
  min-width: 142px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255,255,255,.12);
}
.hero-stats strong { display: block; font-size: 24px; }

.section { max-width: 1180px; margin: 0 auto; padding: 54px 16px; }
.section.compact { padding-top: 30px; }
.soft-band { max-width: none; padding-left: max(16px, calc((100vw - 1180px) / 2)); padding-right: max(16px, calc((100vw - 1180px) / 2)); background: #fff; border-block: 1px solid var(--line); }
.section-head { margin-bottom: 22px; }
.section-head.row { display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.section-head h2 { margin: 0; font-family: Fraunces, Georgia, serif; font-size: 30px; }
.section-head p { margin: 8px 0 0; color: var(--muted); line-height: 1.55; }

.channel-grid, .cards-grid, .article-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.channel-card, .study-card, .article-card, .auth-card, .certificate-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 8px 22px rgba(23,23,23,.05);
}
.channels-showcase .section-head { align-items: center; }
.channel-card {
  min-height: 210px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: space-between;
  transition: transform .2s ease, box-shadow .2s ease;
}
.channel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(23,23,23,.10);
}
.channel-card strong { font-size: 21px; line-height: 1.22; }
.channel-card p { margin: 0; color: var(--muted); line-height: 1.55; }
.channel-card em { color: var(--red); font-style: normal; font-weight: 800; }
.channel-tag {
  width: max-content;
  border-radius: 999px;
  padding: 6px 10px;
  background: #f4ece3;
  color: var(--blue);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 800;
}
.channel-card.site { border-top: 4px solid var(--blue); }
.channel-card.instagram { border-top: 4px solid var(--red); }
.channel-card.youtube { border-top: 4px solid var(--green); }
.channel-card.blogger { border-top: 4px solid var(--gold); }

.study-card, .article-card { padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.study-card h3, .article-card h3 { margin: 0; font-size: 22px; line-height: 1.2; }
.study-card p, .article-card p { margin: 0; color: var(--muted); line-height: 1.55; }
.study-card.has-cover, .article-card.has-cover {
  min-height: 280px;
  color: white;
  background-size: cover;
  background-position: center;
  border-color: transparent;
}
.study-card.has-cover p, .article-card.has-cover p,
.study-card.has-cover .card-meta, .article-card.has-cover time { color: rgba(255,255,255,.82); }
.study-card.has-cover .card-link, .article-card.has-cover .card-link { color: white; }
.article-card time {
  color: var(--muted);
  font-size: 12px;
  font-family: "JetBrains Mono", monospace;
  font-weight: 800;
}
.pill, .article-kicker span, .source-badge {
  width: max-content;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-family: "JetBrains Mono", monospace;
  font-weight: 800;
}
.article-kicker { display: flex; flex-wrap: wrap; gap: 8px; }
.pill, .article-kicker span:first-child, .source-badge.academy { background: #f7e7e9; color: var(--red); }
.source-badge.blogger { background: #fff1d7; color: #f57d00; }
.has-cover .pill, .has-cover .article-kicker span { background: rgba(255,255,255,.92); color: var(--blue); }
.has-cover .source-badge.academy { color: #a6101f; }
.has-cover .source-badge.blogger { color: #f57d00; }
.card-meta { margin-top: auto; display: flex; justify-content: space-between; color: var(--muted); font-size: 13px; }
.article-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #a86f12);
  color: #fff !important;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(201, 138, 27, .35);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.article-card-cta::after {
  content: "→";
  font-size: 1.05em;
  line-height: 1;
}
.article-card-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 18px 34px rgba(201, 138, 27, .42);
}
.article-card.has-cover .article-card-cta {
  background: #fff;
  color: #b8740f !important;
  box-shadow: 0 16px 32px rgba(20, 17, 14, .34);
}
.article-card.has-cover .article-card-cta:hover {
  box-shadow: 0 20px 38px rgba(20, 17, 14, .4);
}
.card-link, .article-card a:not(.article-card-cta) { color: var(--red); font-weight: 800; margin-top: 4px; }
.red { border-top: 4px solid var(--red); }
.blue { border-top: 4px solid var(--blue); }
.green { border-top: 4px solid var(--green); }
.gold { border-top: 4px solid var(--gold); }
.feed-status { color: var(--muted); margin-bottom: 16px; }
.partner-section {
  padding-top: 46px;
}
.partner-carousel {
  position: relative;
  min-height: clamp(180px, 26vw, 320px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0f3f29;
  box-shadow: 0 18px 44px rgba(21,99,61,.14);
}
.partner-banner-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  padding: clamp(24px, 5vw, 54px);
  color: #fff;
  background-size: cover;
  background-position: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.015);
  transition: opacity .75s ease, transform 1.2s ease;
}
.partner-banner-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.partner-banner-slide span {
  max-width: 620px;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255,255,255,.92);
  color: var(--green);
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(23,23,23,.16);
}
.case-study-section {
  padding-top: 32px;
}
.case-study-grid {
  display: grid;
  gap: 16px;
}
.case-study-card {
  position: relative;
  min-height: 240px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(21,99,61,.18);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(247,253,248,.98)),
    radial-gradient(circle at 92% 14%, rgba(201,138,27,.14), transparent 34%);
  box-shadow: 0 18px 44px rgba(21,99,61,.10);
  overflow: hidden;
}
.case-study-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--green), var(--gold));
}
.case-study-card h2 {
  margin: 0 0 14px;
  max-width: 760px;
  color: #111;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.04;
}
.case-study-card p {
  max-width: 780px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.case-study-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--green);
  color: #fff !important;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(21,99,61,.18);
}
.case-study-card a::after {
  content: "→";
  margin-left: 10px;
}

.reader-hero, .track-hero {
  padding: 64px 16px 42px;
  color: white;
  background: linear-gradient(135deg, #2f8b57, var(--green) 58%, #0f3f29);
}
.lesson-progress-shell {
  position: sticky;
  top: 72px;
  z-index: 18;
  padding: 10px 16px 12px;
  background: rgba(242,248,239,.94);
  border-bottom: 1px solid rgba(219,232,213,.82);
  backdrop-filter: blur(12px);
}
.lesson-progress-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 10px 28px rgba(23,23,23,.08);
  display: grid;
  gap: 10px;
}
.lesson-progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.lesson-progress-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}
.lesson-progress-label {
  color: var(--blue);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.lesson-progress-percent {
  min-width: 66px;
  border-radius: 8px;
  padding: 8px 11px;
  background: var(--red);
  color: white;
  text-align: center;
  font-size: 18px;
  line-height: 1;
}
.lesson-progress-bar {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #efe6dc;
}
.lesson-progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
}
.lesson-step-counter {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.reader-hero {
  min-height: clamp(440px, 58vw, 620px);
  padding: 0 16px;
  border-top: 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.16);
}
.reader-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14,42,74,.72), rgba(14,42,74,.26) 52%, rgba(20,17,14,.42)),
    linear-gradient(180deg, rgba(20,17,14,.12), rgba(20,17,14,.62));
  pointer-events: none;
}
.reader-hero.has-cover, .track-hero.has-cover {
  background-size: cover;
  background-position: center;
}
.reader-hero.red, .track-hero.red { background: linear-gradient(135deg, var(--red), var(--red-dark)); }
.reader-hero.blue, .track-hero.blue { background: linear-gradient(135deg, var(--blue), #174b7a); }
.reader-hero.green, .track-hero.green { background: linear-gradient(135deg, #4ba66b, var(--green) 54%, #0f3f29); }
.reader-hero.gold, .track-hero.gold { background: linear-gradient(135deg, var(--gold), #8a5a09); }
.reader-hero-content {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) 0;
  position: relative;
  z-index: 1;
}
.track-hero > * { max-width: 900px; margin-left: auto; margin-right: auto; }
.reader-hero p, .track-hero p { line-height: 1.65; color: rgba(255,255,255,.88); }
.reader-hero h1 {
  max-width: 930px;
  font-size: clamp(42px, 6vw, 82px);
  text-wrap: balance;
  overflow-wrap: anywhere;
}
.reader-summary {
  max-width: 780px;
  margin: 18px 0 0;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.68;
}
.track-hero > p:not(.eyebrow) {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 8px;
  padding: 9px 12px;
  background: rgba(255,255,255,.12);
  color: white;
  font-weight: 800;
}
.back-link::before {
  content: "←";
  font-size: 18px;
  line-height: 1;
}
.reader-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.reader-meta span {
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 8px;
  padding: 9px 13px;
  background: rgba(255,255,255,.12);
  font-weight: 700;
}
.article-video { max-width: 860px; margin: 0 auto; padding: 34px 16px 0; }
.article-video-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: #14110e;
  box-shadow: var(--shadow);
}
.article-video-frame video, .article-video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.article-video-frame video { object-fit: cover; }
.content-audio { max-width: 860px; margin: 0 auto; padding: 26px 16px 0; }
.content-audio-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 16px;
  box-shadow: 0 8px 22px rgba(23,23,23,.05);
}
.content-audio-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.content-audio-card audio { width: 100%; display: block; }
.reader-body { max-width: 860px; margin: 0 auto; padding: 48px 16px; font-size: 18px; line-height: 1.8; background: var(--paper); }
.reader-body img, .reader-body iframe, .reader-body video,
.article-step-text img, .article-step-text iframe, .article-step-text video {
  max-width: 100%;
}
.article-steps {
  max-width: 900px;
  margin: 0 auto;
  padding: 18px 16px 54px;
}
.article-step {
  display: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 20px;
  margin-bottom: 18px;
  box-shadow: 0 8px 22px rgba(23,23,23,.05);
}
.article-step[hidden],
.article-completion[hidden] {
  display: none !important;
}
.article-step.is-active { display: block; }
.article-step-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--blue);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.article-step-kicker span {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: white;
}
.article-step h2 {
  margin: 0 0 16px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(26px, 5vw, 40px);
  line-height: 1.08;
}
.article-step-image {
  min-height: 240px;
  border-radius: 8px;
  margin-bottom: 18px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
}
.article-step-video { margin-bottom: 18px; box-shadow: none; }
.article-step-audio { margin-bottom: 18px; box-shadow: none; }
.article-step-text {
  font-size: 17px;
  line-height: 1.78;
  color: var(--ink);
}
.article-step-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}
.article-step-nav .btn-primary,
.article-step-nav .btn-secondary {
  flex: 1 1 190px;
}
.article-step-nav button:disabled {
  opacity: .55;
  cursor: not-allowed;
}
.article-completion {
  max-width: 860px;
  margin: 0 auto 54px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 8px 22px rgba(23,23,23,.05);
}
.article-completion h2 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: 30px;
}
.article-completion p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}
.article-completion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.article-completion-actions[hidden] {
  display: none !important;
}
.article-completion-actions .btn-primary,
.article-completion-actions .btn-secondary {
  min-width: 190px;
  text-align: center;
}
.certificate-ready-actions .btn-primary {
  background: var(--green);
}
.comments-panel { max-width: 860px; margin: 0 auto 60px; padding: 0 16px; }
.comment-form { display: grid; gap: 12px; margin-bottom: 24px; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: white;
}
.comment, .module-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 16px;
  margin-bottom: 12px;
}
.comment time { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.link-button { border: 0; background: transparent; color: var(--red); padding: 0; cursor: pointer; font-weight: 800; }
.progress-shell { margin-top: 24px; max-width: 760px; }
.progress-info { display: flex; justify-content: space-between; gap: 18px; margin-bottom: 8px; }
.progress-bar { height: 12px; border-radius: 999px; overflow: hidden; background: rgba(255,255,255,.22); }
.progress-bar span { display: block; height: 100%; background: white; }
.module-list { display: grid; gap: 12px; }
.module-row { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.module-actions {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
}
.module-actions .btn-secondary,
.module-certificate-link {
  width: 100%;
}
.module-order {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: white;
  font-family: "JetBrains Mono", monospace;
  font-weight: 800;
}
.module-row.done .module-order { background: var(--green); }
.module-row h3 { margin: 0 0 6px; }
.module-row p { margin: 0 0 8px; color: var(--muted); }
.module-open-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border-radius: 8px;
  padding: 10px 14px;
  background: var(--blue);
  color: white;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(14,42,74,.16);
}
.module-open-link::after {
  content: "→";
  font-size: 18px;
  line-height: 1;
}
.module-open-link:hover {
  background: #14375f;
}
.module-certificate-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  padding: 10px 14px;
  background: var(--red);
  color: white;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(166,16,31,.18);
}
.module-certificate-link[hidden] {
  display: none !important;
}
.professor-public-section {
  padding-top: 0;
}
.professor-public-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(21, 99, 61, .10);
}
.professor-public-banner {
  min-height: 160px;
  background:
    linear-gradient(135deg, rgba(21,99,61,.92), rgba(15,63,41,.82)),
    radial-gradient(circle at 18% 24%, rgba(255,255,255,.20), transparent 32%);
  background-size: cover;
  background-position: center;
}
.professor-public-banner.has-banner {
  min-height: clamp(180px, 28vw, 280px);
}
.professor-public-body {
  display: grid;
  gap: 18px;
  padding: 0 22px 24px;
}
.professor-public-photo {
  width: 104px;
  height: 104px;
  margin-top: -52px;
  border: 5px solid #fff;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  box-shadow: 0 16px 32px rgba(23,23,23,.16);
}
.professor-public-photo.has-photo {
  background-size: cover;
  background-position: center;
}
.professor-public-copy h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.04;
}
.professor-public-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}
.professor-public-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  padding: 11px 16px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(21,99,61,.18);
}
.professor-public-link:hover {
  background: #0f4e31;
}

.account-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 70px;
}
.account-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 26px;
  border: 1px solid rgba(21,99,61,.18);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(232,246,237,.96), rgba(255,253,249,.98)),
    radial-gradient(circle at 92% 18%, rgba(201,138,27,.14), transparent 32%);
  box-shadow: 0 20px 52px rgba(21,99,61,.10);
}
.account-avatar {
  width: 108px;
  height: 108px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: white;
  font-size: 34px;
  font-weight: 900;
  border: 5px solid white;
  box-shadow: 0 18px 38px rgba(21,99,61,.18);
}
.account-avatar.has-photo {
  background-size: cover;
  background-position: center;
}
.account-hero-copy h1 {
  margin: 0 0 8px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1;
}
.account-hero-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.account-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.account-stats span {
  padding: 14px;
  border: 1px solid rgba(21,99,61,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.76);
  color: var(--muted);
  font-weight: 700;
}
.account-stats strong {
  display: block;
  color: var(--green);
  font-size: 30px;
}
.account-grid {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}
.account-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  box-shadow: 0 16px 42px rgba(23,23,23,.06);
}
.account-card-head h2 {
  margin: 0 0 16px;
  font-size: 24px;
}
.account-form {
  display: grid;
  gap: 14px;
}
.account-form label {
  display: grid;
  gap: 7px;
  color: var(--blue);
  font-weight: 800;
}
.account-form small {
  color: var(--muted);
  font-weight: 600;
}
.account-form button {
  min-height: 46px;
}
.account-feedback {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 800;
}
.account-feedback.is-success {
  color: var(--green);
  background: rgba(21,99,61,.09);
  border: 1px solid rgba(21,99,61,.18);
}
.account-feedback.is-error {
  color: var(--red);
  background: rgba(166,16,31,.08);
  border: 1px solid rgba(166,16,31,.18);
}
.account-courses {
  margin-top: 34px;
}
.account-empty {
  padding: 28px;
  border: 1px dashed rgba(21,99,61,.24);
  border-radius: 10px;
  background: rgba(255,255,255,.62);
}
.account-empty h3 {
  margin: 0 0 8px;
  font-size: 24px;
}
.account-empty p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
}
.account-course-block {
  margin-top: 22px;
}
.account-course-block > h3 {
  margin: 0 0 12px;
  font-size: 22px;
}
.account-course-list {
  display: grid;
  gap: 12px;
}
.account-course-card {
  display: grid;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  box-shadow: 0 14px 36px rgba(23,23,23,.055);
}
.account-course-card.is-complete {
  border-color: rgba(21,99,61,.22);
  background: linear-gradient(180deg, #fff, #f6fbf4);
}
.account-course-cover {
  min-height: 150px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(21,99,61,.92), rgba(14,42,74,.82)),
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.18), transparent 34%);
  background-size: cover;
  background-position: center;
}
.account-course-cover.has-cover {
  min-height: 180px;
}
.account-course-main h4 {
  margin: 4px 0 8px;
  font-size: 22px;
}
.account-course-main p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.55;
}
.account-course-kicker,
.account-cert-code {
  color: var(--blue);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.account-progress {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 8px;
}
.account-progress strong {
  color: var(--green);
}
.account-progress-bar {
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: #e8eee4;
}
.account-progress-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--green), #4b9a63);
}
.account-cert-code {
  display: block;
  margin-top: 10px;
  color: var(--green);
}
.account-course-actions {
  display: grid;
  gap: 8px;
  align-content: center;
}
.account-course-actions a {
  width: 100%;
}

.auth-page {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 48px 16px 64px;
  background:
    radial-gradient(circle at 12% 18%, rgba(166, 16, 31, .07), transparent 34%),
    radial-gradient(circle at 88% 82%, rgba(14, 42, 74, .08), transparent 36%),
    var(--paper);
}
.auth-card, .certificate-unavailable-card {
  width: min(440px, 100%);
  padding: 32px 28px 28px;
  border-radius: 16px;
  box-shadow: 0 22px 55px rgba(23, 23, 23, .10);
}
.auth-card-head { margin-bottom: 24px; }
.auth-card h1 {
  font-size: clamp(28px, 5vw, 36px);
  line-height: 1.08;
  margin: 0 0 10px;
}
.auth-lead {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.auth-form { display: grid; gap: 14px; }
.auth-form .field { display: grid; gap: 6px; }
.auth-form label {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
}
.auth-form input {
  min-height: 46px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.auth-form input:focus {
  outline: none;
  border-color: rgba(14, 42, 74, .45);
  box-shadow: 0 0 0 3px rgba(14, 42, 74, .08);
}
.auth-submit { min-height: 46px; margin-top: 4px; }
.auth-alert {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(166, 16, 31, .08);
  border: 1px solid rgba(166, 16, 31, .18);
}
.auth-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 8px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.auth-footer-text { color: var(--muted); font-size: 14px; }
.auth-link-btn {
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--red);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.auth-link-btn:hover { color: var(--red-dark); }
.auth-register {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  animation: authSlideIn .28s ease;
}
.auth-register[hidden] { display: none !important; }
.auth-register-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.auth-card h2 {
  margin: 0 0 6px;
  font-family: Fraunces, Georgia, serif;
  font-size: 22px;
  line-height: 1.15;
}
.auth-register-lead {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.auth-register-close {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}
.auth-register-close:hover {
  background: var(--paper);
  color: var(--ink);
}
@keyframes authSlideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.full { width: 100%; }
.alert, .form-feedback { color: var(--red); font-weight: 700; font-size: 14px; }
.form-feedback.is-success { color: var(--green); }
.certificate-unavailable-card { text-align: center; }
.certificate-unavailable-card p { color: var(--muted); line-height: 1.7; }
.certificate-page {
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 40px 16px 64px;
  background: #eef7eb;
}
.academy-certificate {
  width: min(1000px, 100%);
  background: #fffdf9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 70px -34px rgba(27, 19, 15, .5);
  display: grid;
  grid-template-columns: 300px 1fr;
  position: relative;
}
.cert-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 7px;
  z-index: 5;
  background: linear-gradient(90deg, var(--red) 0 36%, var(--green) 36% 100%);
}
.academy-certificate-sidebar {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 46px 28px 40px 60px;
  background: linear-gradient(168deg, #1c6e47, var(--green) 46%, #0f3f29);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 560px;
}
.cert-eco-motif {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.academy-certificate-sidebar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 96px;
  z-index: 0;
  background: var(--red);
  clip-path: polygon(0 36%, 100% 0, 100% 100%, 0 100%);
  opacity: .96;
}
.certificate-brand-block,
.certificate-vertical-mark,
.certificate-sidebar-footer {
  position: relative;
  z-index: 3;
}
.certificate-vertical-mark {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 42px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  border-right: 1px solid rgba(255, 255, 255, .16);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}
.certificate-brand-block {
  display: grid;
  gap: 9px;
}
.certificate-brand-logo {
  width: 172px;
  max-width: 100%;
  height: auto;
  display: block;
  padding: 12px;
  background: #fff !important;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 12px 26px rgba(0,0,0,.16);
  object-fit: contain;
}
.certificate-brand-logo--header {
  width: 118px;
  flex-shrink: 0;
  align-self: flex-start;
  padding: 0;
  background: none !important;
  border-radius: 0;
  box-shadow: none;
}
.certificate-seal--sidebar {
  width: 128px;
  height: 128px;
  margin: 0 0 14px 0;
  border-width: 2px;
  border-style: dashed;
  border-color: rgba(255, 255, 255, .55);
  color: #fff;
  background: radial-gradient(circle at 32% 25%, #d81732, #a6101f 72%);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .24);
}
.certificate-seal--sidebar b,
.certificate-seal--sidebar small {
  color: #fff;
  opacity: 1;
}
.certificate-seal--sidebar b {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.certificate-seal--sidebar small {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.8px;
  line-height: 1.1;
  margin-top: 8px;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
}
.certificate-brand-org {
  margin-top: 10px;
  color: rgba(255, 255, 255, .82);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.cert-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.cert-head-copy {
  flex: 1;
  min-width: 0;
}
.certificate-brand-block strong {
  display: grid;
  color: #fff;
  font-family: Fraunces, Georgia, serif;
  font-weight: 900;
  font-size: 34px;
  line-height: .92;
  letter-spacing: -.5px;
}
.certificate-brand-block > small {
  max-width: 200px;
  font-size: 14.5px;
  line-height: 1.42;
  color: rgba(255, 255, 255, .9);
  margin-top: 2px;
}
.brand-rule {
  height: 1px;
  background: rgba(255, 255, 255, .18);
  margin: 24px 0 0;
  max-width: 150px;
}
.certificate-sidebar-footer {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
  line-height: 1.6;
}
.certificate-sidebar-footer strong {
  display: block;
  color: #fff;
  font-size: 18px;
  margin-bottom: 6px;
  letter-spacing: 0;
  font-family: Inter, Arial, sans-serif;
  text-transform: none;
  font-weight: 700;
}
.academy-certificate-content {
  position: relative;
  padding: 46px 50px 40px;
  display: flex;
  flex-direction: column;
  min-height: 560px;
}
.cert-watermark {
  position: absolute;
  top: 46px;
  right: 0;
  width: 320px;
  height: 250px;
  pointer-events: none;
  background: linear-gradient(150deg, rgba(166, 16, 31, .10), rgba(21, 99, 61, .10));
  -webkit-mask: radial-gradient(120% 120% at 100% 0, #000 40%, transparent 72%);
  mask: radial-gradient(120% 120% at 100% 0, #000 40%, transparent 72%);
}
.academy-certificate-content > *:not(.cert-watermark) {
  position: relative;
  z-index: 1;
}
.certificate-kicker {
  margin: 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
}
.cert-title {
  font-family: Fraunces, Georgia, serif;
  font-weight: 900;
  font-size: 25px;
  letter-spacing: .5px;
  margin: 6px 0 0;
  text-transform: uppercase;
}
.cert-divider {
  display: flex;
  gap: 0;
  height: 2px;
  margin: 22px 0 30px;
  max-width: 660px;
}
.cert-divider span:first-child {
  flex: 0 0 58px;
  background: var(--green);
}
.cert-divider span:last-child {
  flex: 1;
  background: var(--red);
}
.certificate-preamble {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 17px;
}
.cert-name {
  font-family: Fraunces, Georgia, serif;
  font-weight: 900;
  font-size: clamp(44px, 7vw, 70px);
  line-height: .98;
  letter-spacing: -1.5px;
  margin: 2px 0 16px;
  color: var(--ink);
}
.certificate-description {
  font-size: 17px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 0 26px;
  color: #2a201b;
}
.certificate-description strong {
  color: var(--red);
  font-weight: 700;
}
.certificate-professor {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  margin: -10px 0 24px;
  padding: 10px 14px;
  border: 1px solid rgba(21, 99, 61, .18);
  border-radius: 8px;
  background: rgba(242, 248, 239, .86);
  color: var(--ink);
}
.certificate-professor span {
  color: var(--green);
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.certificate-professor strong {
  font-size: 15px;
}
.certificate-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.certificate-tags .badge {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 11px 16px;
  border-radius: 8px;
}
.certificate-tags .badge.red {
  background: var(--red);
  color: #fff;
}
.certificate-tags .badge.green {
  background: var(--green);
  color: #fff;
}
.certificate-tags .badge.out {
  background: transparent;
  border: 1.5px solid var(--red);
  color: var(--red);
}
.certificate-seal {
  position: static;
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 3px solid var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--red);
  background: rgba(255, 253, 249, .92);
  box-shadow: 0 10px 24px -12px rgba(166, 16, 31, .5);
}
.certificate-seal b {
  font-family: Fraunces, Georgia, serif;
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
}
.certificate-seal small {
  font-family: "JetBrains Mono", monospace;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-top: 3px;
  text-transform: uppercase;
}
.academy-certificate-footer {
  margin-top: auto;
  padding-top: 34px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 28px;
  align-items: end;
  border-top: 0;
}
.certificate-signature .scriptmark {
  font-family: Fraunces, Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 26px;
  color: var(--red);
  text-align: center;
  margin-bottom: 4px;
}
.certificate-signature .sign-line {
  height: 1px;
  background: var(--ink);
  opacity: .7;
  margin-bottom: 8px;
}
.certificate-signature .sign-role {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink);
}
.certificate-signature .sign-org {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
}
.certificate-meta .meta-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}
.certificate-meta .meta-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.certificate-meta .meta-val.code {
  font-family: "JetBrains Mono", monospace;
  font-weight: 800;
  letter-spacing: .5px;
}
.certificate-actions {
  width: min(1000px, 100%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 0;
}
.cert-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.cert-btn.pdf {
  background: var(--red);
  color: #fff !important;
}
.cert-btn.back {
  background: #fff;
  color: var(--ink) !important;
  border-color: rgba(27, 19, 15, .12);
}

.workshop-page {
  --workshop-vermelho: #a6101f;
  --workshop-vermelho-esc: #6b0a14;
  --workshop-azul: #0e2a4a;
  --workshop-verde: #15633d;
  --workshop-dourado: #c98a1b;
  --workshop-papel: #faf7f2;
  --workshop-tinta: #241a17;
  --workshop-tinta-suave: #6a5d57;
  --workshop-linha: rgba(36,26,23,.12);
  --workshop-branco: #fffdf9;
  --workshop-raio: 14px;
  --workshop-sombra: 0 18px 40px -22px rgba(36,26,23,.45);
  color: var(--workshop-tinta);
  background: var(--workshop-papel);
  line-height: 1.6;
}
.workshop-page * { box-sizing: border-box; }
.workshop-page a { color: inherit; text-decoration: none; }
.workshop-wrap { width: min(1140px, 92%); margin-inline: auto; }
.workshop-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--workshop-dourado);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.workshop-eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--workshop-dourado);
  transform: rotate(45deg);
}
.workshop-page h1,
.workshop-page h2,
.workshop-page h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.08;
  margin: 0;
  font-weight: 700;
}
.workshop-hero {
  position: relative;
  overflow: hidden;
  color: var(--workshop-papel);
  background: linear-gradient(135deg, var(--workshop-vermelho-esc), var(--workshop-vermelho) 78%);
  background-size: cover;
  background-position: center;
}
.workshop-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.workshop-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(107,10,20,.72), rgba(166,16,31,.58));
  pointer-events: none;
}
.workshop-hero-pattern { position: absolute; inset: 0; z-index: 1; opacity: .16; pointer-events: none; }
.workshop-hero-in {
  position: relative;
  z-index: 2;
  padding: 5rem 0 4.6rem;
  max-width: 780px;
  margin-left: max(4%, calc((100% - 1140px) / 2));
}
.workshop-pill-data {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,253,249,.14);
  border: 1px solid rgba(255,253,249,.28);
  padding: .4rem .9rem;
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: .74rem;
  letter-spacing: .06em;
  margin-bottom: 1.1rem;
}
.workshop-pill-data::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--workshop-dourado);
}
.workshop-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  margin: .4rem 0 1.1rem;
  white-space: pre-line;
}
.workshop-hero-subtitle {
  font-size: clamp(1.37rem, 3vw, 1.63rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .01em;
  color: #fff4c9;
  max-width: 58ch;
  white-space: pre-line;
  margin: 0 0 1.4rem;
  padding: 1rem 1.15rem 1rem 1.25rem;
  border-left: 4px solid #ffd45a;
  border-radius: 0 12px 12px 0;
  background: linear-gradient(90deg, rgba(20, 17, 14, .52), rgba(20, 17, 14, .18));
  box-shadow: 0 12px 28px rgba(20, 17, 14, .22);
  text-shadow: 0 1px 3px rgba(20, 17, 14, .45);
}
.workshop-hero p:not(.workshop-hero-subtitle) {
  font-size: clamp(1.05rem, 2.3vw, 1.25rem);
  color: rgba(255,253,249,.9);
  max-width: 56ch;
  white-space: pre-line;
}
.workshop-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.8rem;
  background: var(--workshop-dourado);
  color: #231605;
  font-weight: 800;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-size: 1rem;
  box-shadow: 0 14px 30px -14px rgba(0,0,0,.6);
  transition: transform .2s;
}
.workshop-cta:hover { transform: translateY(-2px); }
.workshop-cta::after { content: "↓"; }
.workshop-section,
.workshop-intro,
.workshop-videos { padding: 4.5rem 0; }
.workshop-sec-head { max-width: 640px; margin-bottom: 2.4rem; }
.workshop-sec-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: .8rem 0 .6rem;
}
.workshop-sec-head p {
  color: var(--workshop-tinta-suave);
  font-size: 1.05rem;
  margin: 0;
}
.workshop-intro {
  background: var(--workshop-branco);
  border-top: 1px solid var(--workshop-linha);
  border-bottom: 1px solid var(--workshop-linha);
}
.workshop-intro-shell {
  display: block;
}
.workshop-intro-shell.has-video {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: 2.6rem;
  align-items: start;
}
.workshop-intro-video {
  position: sticky;
  top: 92px;
  border-radius: calc(var(--workshop-raio) + 2px);
  overflow: hidden;
  box-shadow: var(--workshop-sombra);
  background: var(--workshop-papel);
  border: 1px solid var(--workshop-linha);
}
.workshop-intro-video video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  vertical-align: top;
}
.workshop-intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}
.workshop-intro-corpo {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.workshop-intro-corpo p {
  margin: 0 0 1.1rem;
  font-size: 1.08rem;
  line-height: 1.72;
  text-wrap: pretty;
}
.workshop-intro-corpo p:last-child { margin-bottom: 0; }
.workshop-intro-corpo p:first-child::first-letter {
  font-family: "Fraunces", serif;
  font-size: 3.3rem;
  font-weight: 900;
  color: var(--workshop-vermelho);
  float: left;
  line-height: .8;
  margin: .15rem .6rem 0 0;
}
.workshop-ficha {
  background: linear-gradient(165deg, #fffdf9 0%, var(--workshop-papel) 100%);
  border: 1px solid rgba(36,26,23,.1);
  border-left: 4px solid var(--workshop-vermelho);
  border-radius: calc(var(--workshop-raio) + 2px);
  padding: 1.75rem 1.55rem 1.55rem;
  box-shadow: 0 18px 38px -26px rgba(36,26,23,.42);
}
.workshop-ficha h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.28rem;
  margin: 0 0 1.1rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid rgba(36,26,23,.1);
  color: var(--workshop-tinta);
}
.workshop-ficha dl { margin: 0; display: grid; gap: 0; }
.workshop-ficha .row {
  display: grid;
  gap: .3rem;
  padding: .95rem 0;
  border-bottom: 1px solid rgba(36,26,23,.08);
}
.workshop-ficha .row:last-child { border-bottom: 0; padding-bottom: 0; }
.workshop-ficha dt {
  font-family: "JetBrains Mono", monospace;
  font-size: .68rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--workshop-vermelho);
  font-weight: 700;
}
.workshop-ficha dd {
  margin: 0;
  font-weight: 600;
  font-size: .98rem;
  line-height: 1.5;
  text-align: left;
  color: var(--workshop-tinta);
}
.workshop-carrossel-vp { position: relative; }
.workshop-trilho {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: .4rem .2rem 1.4rem;
  scrollbar-width: none;
}
.workshop-trilho::-webkit-scrollbar { display: none; }
.workshop-foto {
  margin: 0;
  scroll-snap-align: start;
  flex: 0 0 320px;
  height: 230px;
  border-radius: var(--workshop-raio);
  overflow: hidden;
  position: relative;
  box-shadow: var(--workshop-sombra);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.workshop-photo-fallback.red { background: linear-gradient(135deg,#6b0a14,#a6101f); }
.workshop-photo-fallback.blue { background: linear-gradient(135deg,#0e2a4a,#1b4a7a); }
.workshop-photo-fallback.green { background: linear-gradient(135deg,#15633d,#1f8a55); }
.workshop-foto .legenda {
  font-size: .85rem;
  font-weight: 700;
  background: rgba(0,0,0,.32);
  padding: .35rem .7rem;
  border-radius: 8px;
  backdrop-filter: blur(4px);
}
.workshop-car-nav { display: flex; gap: .6rem; justify-content: flex-end; margin-top: .4rem; }
.workshop-car-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--workshop-linha);
  background: var(--workshop-branco);
  font-size: 1.2rem;
  color: var(--workshop-vermelho);
  cursor: pointer;
  transition: .2s;
}
.workshop-car-nav button:hover {
  background: var(--workshop-vermelho);
  color: #fff;
  border-color: var(--workshop-vermelho);
}
.workshop-videos { background: var(--workshop-azul); color: var(--workshop-papel); }
.workshop-videos .workshop-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.workshop-videos .workshop-sec-head {
  text-align: center;
  max-width: 760px;
  margin-bottom: 2.8rem;
}
.workshop-videos .workshop-sec-head h2 {
  color: var(--workshop-papel);
  font-size: clamp(2rem, 4.8vw, 3rem);
  line-height: 1.08;
}
.workshop-videos .workshop-sec-head p {
  color: rgba(255,253,249,.82);
  font-size: 1.12rem;
}
.workshop-yt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1.6rem;
  justify-content: center;
  width: 100%;
  max-width: 980px;
  margin: 0 auto 2.8rem;
}
.workshop-video-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: calc(var(--workshop-raio) + 4px);
  overflow: hidden;
  width: 100%;
  max-width: 980px;
  justify-self: center;
  box-shadow: 0 24px 50px rgba(0, 0, 0, .28);
}
.workshop-video-thumb {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,#0a1f38,#13335a);
  border: 0;
  width: 100%;
}
iframe.workshop-video-thumb {
  height: auto;
  min-height: clamp(260px, 44vw, 540px);
}
.workshop-play {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(166,16,31,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -10px #000;
}
.workshop-play::before {
  content: "";
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}
.workshop-video-card .legenda {
  padding: 1rem 1.2rem 1.15rem;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}
.workshop-video-card .legenda small {
  display: block;
  color: rgba(255,253,249,.6);
  font-family: "JetBrains Mono", monospace;
  font-size: .66rem;
  letter-spacing: .08em;
  margin-top: .2rem;
}
.workshop-destaque-video {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(240px, .9fr);
  gap: 1.8rem;
  align-items: center;
  text-align: left;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: calc(var(--workshop-raio) + 4px);
  padding: 1.4rem;
  box-shadow: 0 24px 50px rgba(0, 0, 0, .28);
}
.workshop-destaque-video .player {
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #0e2a4a;
  display: flex;
}
.workshop-destaque-video .player iframe,
.workshop-destaque-video .player video {
  width: 100%;
  height: 100%;
  min-height: clamp(260px, 44vw, 540px);
}
.workshop-destaque-video h3 { font-size: clamp(1.35rem, 3vw, 1.75rem); margin-bottom: .6rem; }
.workshop-destaque-video p { color: rgba(255,253,249,.85); margin: 0; max-width: 62ch; }
.workshop-insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.workshop-insta-card {
  aspect-ratio: 9 / 14;
  border-radius: var(--workshop-raio);
  overflow: hidden;
  position: relative;
  background: linear-gradient(160deg,#3a1e4d,#a6101f 55%,#c98a1b);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.1rem;
  color: #fff;
}
.workshop-insta-card .ig-top { display: flex; align-items: center; gap: .5rem; font-size: .8rem; font-weight: 700; }
.workshop-insta-card .ig-glyph {
  width: 26px;
  height: 26px;
  border: 2px solid #fff;
  border-radius: 8px;
  position: relative;
}
.workshop-insta-card .ig-glyph::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 2px solid #fff;
  border-radius: 50%;
}
.workshop-insta-card .ig-glyph::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 4px;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
}
.workshop-insta-card .ig-play {
  align-self: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: flex;
  align-items: center;
  justify-content: center;
}
.workshop-insta-card .ig-play::before {
  content: "";
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent var(--workshop-vermelho);
  margin-left: 3px;
}
.workshop-insta-card .ig-base {
  font-size: .78rem;
  opacity: .92;
  font-family: "JetBrains Mono", monospace;
  letter-spacing: .04em;
}

.workshop-treinamentos-cta {
  background: linear-gradient(135deg, #1a7a45 0%, var(--workshop-verde) 48%, #0f5f35 100%);
  color: #fff;
  padding: 4rem 0 4.2rem;
}
.workshop-treinamentos-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 2.4rem;
  align-items: center;
}
.workshop-treinamento-leaf {
  width: min(100%, 520px);
  aspect-ratio: 1.05;
  margin-inline: auto;
  background-size: cover;
  background-position: center;
  clip-path: polygon(18% 0%, 100% 8%, 88% 100%, 0% 88%);
  border-radius: 28% 72% 34% 66% / 42% 30% 70% 58%;
  box-shadow: 0 28px 50px rgba(10, 40, 24, .35);
  border: 4px solid rgba(255, 255, 255, .22);
}
.workshop-treinamento-copy {
  text-align: right;
  display: grid;
  gap: 1rem;
  justify-items: end;
}
.workshop-treinamento-icon {
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, .75);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
}
.workshop-treinamento-icon svg {
  width: 28px;
  height: 28px;
}
.workshop-treinamento-lead {
  margin: 0;
  max-width: 34ch;
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, .95);
  font-weight: 600;
}
.workshop-treinamento-title {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.02;
  color: #fff;
}
.workshop-treinamento-rule {
  width: min(280px, 100%);
  border: 0;
  border-top: 2px solid rgba(255, 255, 255, .55);
  margin: .2rem 0;
}
.workshop-treinamento-foot {
  margin: 0;
  max-width: 36ch;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, .95);
}
.workshop-treinamento-highlight {
  display: inline;
  box-shadow: inset 0 -0.55em 0 rgba(166, 16, 31, .92);
}
.workshop-page a.workshop-treinamento-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .75rem 1.4rem;
  border-radius: 999px;
  background: #fff;
  color: var(--workshop-verde);
  font-weight: 800;
  margin-top: .4rem;
  box-shadow: 0 14px 28px rgba(10, 40, 24, .28);
  transition: transform .2s ease;
}
.workshop-page a.workshop-treinamento-btn:hover {
  color: var(--workshop-verde);
  transform: translateY(-2px);
}
.workshop-pilares {
  background: #fff;
  padding: 4.2rem 0 4.6rem;
  border-top: 1px solid var(--workshop-linha);
}
.workshop-pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}
.workshop-pilar-card {
  text-align: center;
  display: grid;
  gap: 1rem;
  justify-items: center;
}
.workshop-pilar-icon {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: linear-gradient(145deg, #1d8a4f, var(--workshop-verde));
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 34px rgba(21, 99, 61, .22);
}
.workshop-pilar-icon svg {
  width: 52px;
  height: 52px;
}
.workshop-pilar-card h3 {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8f847c;
}
.workshop-pilar-card p {
  margin: 0;
  max-width: 34ch;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--workshop-tinta-suave);
}
.workshop-pilar-card strong {
  color: var(--workshop-tinta);
}

.workshop-whatsapp-wrap {
  padding: 2.8rem 0 3.2rem;
  background: var(--workshop-papel);
  display: flex;
  justify-content: center;
}
.workshop-page a.workshop-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
  padding: 1rem 1.8rem 1rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(18, 140, 126, .35);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.workshop-page a.workshop-whatsapp-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 20px 42px rgba(18, 140, 126, .42);
}
.workshop-page a.workshop-whatsapp-btn:focus-visible {
  outline: 3px solid #128c7e;
  outline-offset: 4px;
}
.workshop-whatsapp-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .18);
  border-radius: 50%;
}
.workshop-whatsapp-icon svg {
  width: 26px;
  height: 26px;
}
.workshop-whatsapp-copy {
  display: grid;
  gap: .15rem;
  text-align: left;
}
.workshop-whatsapp-copy strong {
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  font-weight: 800;
  letter-spacing: .01em;
}
.workshop-whatsapp-copy small {
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(.92rem, 2vw, 1.05rem);
  font-weight: 700;
  letter-spacing: .04em;
  opacity: .95;
}

.workshop-footer {
  background: var(--workshop-vermelho-esc);
  color: var(--workshop-papel);
  padding: 3.5rem 0 2rem;
}
.workshop-foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.4rem;
  margin-bottom: 2.4rem;
}
.workshop-foot-grid h4 { font-family: "Fraunces", serif; font-size: 1.1rem; margin: 0 0 1rem; }
.workshop-foot-grid a,
.workshop-foot-grid p {
  color: rgba(255,253,249,.78);
  font-size: .92rem;
  margin: .4rem 0;
  display: block;
}
.workshop-foot-grid a:hover { color: var(--workshop-dourado); }
.workshop-foot-cta {
  display: inline-flex !important;
  align-items: center;
  gap: .5rem;
  background: var(--workshop-dourado);
  color: #231605 !important;
  font-weight: 800;
  padding: .7rem 1.3rem;
  border-radius: 999px;
  margin-top: .6rem;
}
.workshop-foot-cta::after { content: "↗"; }
.workshop-foot-base {
  border-top: 1px solid rgba(255,255,255,.16);
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .6rem;
  font-size: .82rem;
  color: rgba(255,253,249,.6);
}
.workshop-logo-strip {
  background: var(--workshop-papel);
  padding: 2.8rem 0 3.2rem;
  text-align: center;
}
.workshop-brand-logo {
  width: min(210px, 52vw);
  height: auto;
  display: inline-block;
}
.workshop-empty { padding: 80px 0; background: var(--paper); }
.workshop-empty h1 { margin: 8px 0 0; font-size: clamp(34px, 7vw, 62px); }

@media (max-width: 840px) {
  .academy-certificate {
    grid-template-columns: 1fr;
  }
  .academy-certificate-sidebar {
    min-height: auto;
    padding: 40px 26px 60px 56px;
  }
  .academy-certificate-content {
    padding: 36px 26px;
  }
  .cert-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .certificate-brand-logo--header {
    align-self: flex-end;
  }
  .academy-certificate-footer {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: left;
  }
  .certificate-signature .scriptmark,
  .certificate-signature .sign-line {
    text-align: left;
  }
  .cert-name {
    font-size: clamp(36px, 12vw, 52px);
  }
  .workshop-hero-in {
    margin-left: auto;
  }
  .workshop-intro-shell.has-video,
  .workshop-intro-grid,
  .workshop-destaque-video,
  .workshop-foot-grid {
    grid-template-columns: 1fr;
  }
  .workshop-yt-grid,
  .workshop-insta-grid {
    grid-template-columns: 1fr;
  }
  .workshop-insta-card {
    aspect-ratio: 16 / 10;
  }
  .workshop-treinamentos-cta-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .workshop-treinamento-copy {
    text-align: left;
    justify-items: start;
  }
  .workshop-treinamento-lead,
  .workshop-treinamento-foot {
    max-width: none;
  }
  .workshop-treinamento-rule {
    width: 100%;
  }
  .workshop-pilares-grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
}

.site-footer { background: #14110e; color: rgba(255,255,255,.72); padding: 42px 16px 26px; }

/* Ecossistema CETES — banner carousel */
.eco-canais-section { padding-top: 30px; }
.eco-canais { width: min(1160px, 100%); margin-inline: auto; }
.eco-canais .canais-head { margin-bottom: 28px; max-width: 680px; }
.eco-canais .canais-head .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0;
}
.eco-canais .canais-head .eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--green);
  transform: rotate(45deg);
}
.eco-canais .canais-head h2 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 900;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  letter-spacing: -.5px;
  margin: .6rem 0 .5rem;
  line-height: 1.05;
}
.eco-canais .canais-head p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.55;
}
.eco-canais .banner-wrap {
  position: relative;
  padding-inline: 64px;
}
.eco-canais .banner-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  border-radius: 24px;
}
.eco-canais .banner-track::-webkit-scrollbar { display: none; }
.eco-canais .banner {
  --acc: var(--green);
  --acc2: #0f3f29;
  flex: 0 0 100%;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.45fr .9fr;
  gap: 24px;
  align-items: center;
  min-height: 360px;
  border-radius: 22px;
  padding: 50px 56px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, var(--acc), var(--acc2));
  box-shadow: 0 26px 54px -28px rgba(21, 99, 61, .55);
  transition: transform .3s;
}
.eco-canais .banner:hover { transform: translateY(-3px); }
.eco-canais .banner-eco {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  opacity: .10;
  pointer-events: none;
  z-index: 0;
}
.eco-canais .b-count {
  position: absolute;
  top: 24px;
  right: 30px;
  z-index: 2;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: rgba(255,255,255,.65);
}
.eco-canais .b-text { position: relative; z-index: 2; }
.eco-canais .b-label {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255,255,255,.18);
  padding: 6px 13px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.eco-canais .b-title {
  font-family: Fraunces, Georgia, serif;
  font-weight: 900;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.04;
  letter-spacing: -.5px;
  margin: 0 0 14px;
  max-width: 22ch;
  color: #fff;
}
.eco-canais .b-desc {
  font-size: 1.12rem;
  line-height: 1.55;
  color: rgba(255,255,255,.92);
  max-width: 46ch;
  margin: 0 0 26px;
}
.eco-canais .b-cta {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: #fff;
  color: var(--acc);
  font-weight: 800;
  font-size: 1rem;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  box-shadow: 0 16px 30px -16px rgba(0,0,0,.5);
}
.eco-canais .b-cta i { font-style: normal; transition: transform .3s; }
.eco-canais .banner:hover .b-cta i { transform: translateX(5px); }
.eco-canais .b-art {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eco-canais .b-ring {
  width: 188px;
  height: 188px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 60px rgba(255,255,255,.12);
}
.eco-canais .b-ring svg { width: 84px; height: 84px; color: #fff; }
.eco-canais .b-site { --acc: #15633D; --acc2: #0f3f29; }
.eco-canais .b-insta { --acc: #C13584; --acc2: #7b2ff7; }
.eco-canais .b-youtube { --acc: #A6101F; --acc2: #6B0A14; box-shadow: 0 26px 54px -28px rgba(166,16,31,.55); }
.eco-canais .b-blog { --acc: #C98A1B; --acc2: #8a5e12; box-shadow: 0 26px 54px -28px rgba(201,138,27,.45); }
.eco-canais .b-linkedin { --acc: #0E2A4A; --acc2: #081b30; box-shadow: 0 26px 54px -28px rgba(14,42,74,.55); }
.eco-canais .b-gmn { --acc: #1a73e8; --acc2: #0b4ea2; box-shadow: 0 26px 54px -28px rgba(26,115,232,.45); }
.eco-canais .b-insta {
  background: linear-gradient(120deg, #7b2ff7, #C13584 38%, #E1306C 64%, #F5A623);
}
.eco-canais .b-insta .b-cta { color: #C13584; }
.eco-canais .nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px -10px rgba(0,0,0,.4);
  transition: .2s;
}
.eco-canais .nav-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.06);
}
.eco-canais .nav-arrow.prev { left: 4px; }
.eco-canais .nav-arrow.next { right: 4px; }
.eco-canais .nav-arrow:disabled { opacity: 0; pointer-events: none; }
.eco-canais .banner-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
}
.eco-canais .banner-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(27,19,15,.18);
  cursor: pointer;
  padding: 0;
  transition: .25s;
}
.eco-canais .banner-dots button.ativo {
  background: var(--green);
  width: 28px;
  border-radius: 6px;
}
@media (max-width: 760px) {
  .hero-copy {
    width: 100%;
    margin-left: 0;
    padding: 56px 16px 40px;
  }
  .site-header .brand-mark { height: 94px; }
  .eco-canais .banner-wrap { padding-inline: 0; }
  .eco-canais .banner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 38px 30px 36px;
  }
  .eco-canais .b-art { display: none; }
  .eco-canais .b-title { max-width: none; }
  .eco-canais .nav-arrow { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .eco-canais .banner,
  .eco-canais .b-cta i { transition: none; }
  .eco-canais .banner:hover { transform: none; }
}

.footer-inner, .footer-bottom { max-width: 1180px; margin: 0 auto; }
.footer-inner { display: grid; gap: 28px; }
.footer-brand p { max-width: 420px; line-height: 1.65; }
.footer-col h4 { color: white; margin: 0 0 14px; }
.footer-col a { display: block; margin-bottom: 10px; color: rgba(255,255,255,.75); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 28px; padding-top: 18px; display: flex; justify-content: space-between; gap: 18px; }

@media (min-width: 720px) {
  .desktop-nav { display: flex; }
  .menu-btn { display: none; }
  .channel-grid { grid-template-columns: repeat(4, 1fr); }
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .article-grid { grid-template-columns: repeat(3, 1fr); }
  .case-study-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .account-hero { grid-template-columns: auto 1fr auto; }
  .account-stats {
    grid-column: auto;
    width: 280px;
  }
  .account-grid { grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr); }
  .account-course-card { grid-template-columns: 210px 1fr 160px; align-items: center; }
  .account-course-cover,
  .account-course-cover.has-cover { min-height: 136px; }
  .module-row { grid-template-columns: 54px 1fr 150px; align-items: center; }
  .module-actions { grid-column: auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
