:root {
  --green: #3f4d42;
  --green-deep: #303b33;
  --sage: #8fa28e;
  --sage-soft: #dce3da;
  --rose: #d7a89e;
  --quartz: #f2d9cf;
  --ivory: #f2efe7;
  --ivory-light: #fbf8f2;
  --gold: #c7b48a;
  --ink: #263129;
  --muted: #657068;
  --white: #fffdf8;
  --danger: #8a3b3b;
  --warning: #8b6d1f;
  --shadow: 0 22px 70px rgba(39, 49, 41, 0.12);
  --shadow-soft: 0 10px 35px rgba(39, 49, 41, 0.07);
  --radius: 28px;
  --radius-sm: 14px;
  --max: 1180px;
  --sans: "Montserrat", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(242, 217, 207, 0.48), transparent 28rem),
    radial-gradient(circle at 93% 18%, rgba(143, 162, 142, 0.19), transparent 25rem),
    var(--ivory);
  line-height: 1.67;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    repeating-linear-gradient(91deg, rgba(63, 77, 66, 0.018) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(2deg, rgba(199, 180, 138, 0.018) 0 1px, transparent 1px 9px);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--green);
  color: #fff;
  padding: 10px 16px;
  z-index: 100000;
}
.skip-link:focus { left: 10px; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container { width: min(calc(100% - 36px), var(--max)); margin-inline: auto; }
.section { padding: 94px 0; position: relative; }
.section-sm { padding: 58px 0; position: relative; }
.section-intro { max-width: 780px; margin-bottom: 38px; }

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--green);
}
h1, h2, h3 {
  font-family: var(--serif);
  color: var(--green);
  line-height: 1.04;
  margin: 0 0 20px;
  letter-spacing: -0.018em;
}
h1 { font-size: clamp(2.7rem, 6vw, 5.8rem); font-weight: 500; }
h2 { font-size: clamp(2.15rem, 4vw, 4rem); font-weight: 500; }
h3 { font-size: 1.58rem; font-weight: 600; }
p { margin-top: 0; }
.lead { font-size: clamp(1.04rem, 1.8vw, 1.28rem); color: var(--muted); max-width: 740px; }
.muted { color: var(--muted); }
.small { font-size: 0.84rem; }
.quote {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--green);
}
.signature {
  display: inline-block;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-style: italic;
  color: var(--rose);
  transform: rotate(-2deg);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid rgba(63, 77, 66, 0.08);
  border-radius: 999px;
  background: rgba(143, 162, 142, 0.16);
  color: var(--green);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
}
.status-draft { background: #fff4cf; color: #72570d; }
.status-ok { background: #daf0de; color: #285c33; }
.status-blocked { background: #f3d8d5; color: #7c302b; }

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible,
.nav a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.answer-option:focus-within,
.admin-nav button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 12px 30px rgba(63, 77, 66, 0.23); }
.btn-primary:hover { background: var(--green-deep); }
.btn-secondary { background: transparent; border: 1px solid rgba(63, 77, 66, 0.3); color: var(--green); }
.band .btn-secondary, .site-footer .btn-secondary, .admin-sidebar .btn-secondary { border-color: rgba(255, 255, 255, 0.36); color: #fff; }
.btn-rose { background: var(--rose); color: #332624; box-shadow: 0 12px 30px rgba(215, 168, 158, 0.2); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-sm { min-height: 42px; padding: 10px 17px; font-size: 0.82rem; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242, 239, 231, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(63, 77, 66, 0.09);
}
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; flex-shrink: 0; position: relative; padding-left: 6px; }
.brand--compact { gap:8px; padding-left:0; }
.brand--compact .brand-crown { position:static; width:44px; height:32px; object-fit:contain; flex:0 0 auto; }
.brand-copy--compact { display:grid; align-content:center; justify-items:center; gap:4px; padding-left:0; line-height:1; text-align:center; }
.site-header .brand-copy--compact > strong { margin:0; font-size:1.08rem; letter-spacing:.09em; line-height:1; text-transform:uppercase; white-space:nowrap; }
.site-header .brand-copy--compact > span { display:block; margin:0; font-family:var(--serif); font-size:.62rem; font-weight:500; letter-spacing:.12em; line-height:1.15; text-align:center; text-transform:uppercase; color:var(--rose); white-space:nowrap; }
.brand-crown { position: absolute; top: -16px; left: 10px; width: 28px; height: 20px; object-fit: contain; object-position: center bottom; z-index: 1; }
.brand-copy { display: block; line-height: 1; padding-left: 8px; }
.brand-copy strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.105em;
  color: var(--green);
  white-space: nowrap;
}
.brand-copy span {
  display: block;
  margin-top: 5px;
  font-size: 0.61rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.site-footer .brand-copy strong, .site-footer .brand-copy span, .admin-sidebar .brand-copy strong, .admin-sidebar .brand-copy span { color: #fff; }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a { text-decoration: none; font-size: 0.84rem; font-weight: 600; }
.nav a:not(.btn):hover { color: var(--rose); }
.menu-toggle { display: none; background: none; border: 0; color: var(--green); font-size: 1.5rem; }

.hero { padding: 78px 0 76px; overflow: hidden; position: relative; }
.hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(199, 180, 138, 0.38);
  border-radius: 46% 54% 63% 37% / 42% 37% 63% 58%;
  right: -180px;
  top: 45px;
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 62px; align-items: center; }
.hero h1 { font-size: clamp(2.7rem, 5.2vw, 5rem); }
.hero h1 em { font-style: italic; color: var(--rose); font-weight: 500; }
.hero-media { position: relative; isolation: isolate; }
.hero-media > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 80% 0%;
  border-radius: 26px;
  box-shadow: var(--shadow);
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: -21px 18% auto -28px;
  height: 190px;
  border: 1px solid rgba(199, 180, 138, 0.78);
  border-radius: 50%;
  z-index: -1;
}
.floating-card {
  position: absolute;
  right: -18px;
  bottom: 38px;
  background: rgba(255, 253, 248, 0.95);
  border: 1px solid rgba(199, 180, 138, 0.28);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  max-width: 240px;
}
.floating-card strong { font-family: var(--serif); color: var(--green); font-size: 1.25rem; }

.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 30px; }
.trust-item {
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 14px 14px 14px 39px;
  border: 1px solid rgba(63, 77, 66, 0.08);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.63);
  font-size: 0.78rem;
  font-weight: 650;
}
.trust-item::before {
  content: "";
  position: absolute;
  left: 16px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(199, 180, 138, 0.13);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.card {
  position: relative;
  background: rgba(255, 253, 248, 0.93);
  border: 1px solid rgba(63, 77, 66, 0.09);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-soft);
}
.card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 17px;
  width: 34px;
  height: 22px;
  border-right: 1px solid rgba(199, 180, 138, 0.3);
  border-bottom: 1px solid rgba(199, 180, 138, 0.3);
  border-radius: 0 0 16px 0;
  pointer-events: none;
}
.card-soft { background: rgba(242, 217, 207, 0.45); }
.card-sage { background: rgba(220, 227, 218, 0.72); }
.raiox-checklist { list-style: none; margin: 16px 0; padding: 0; display: grid; gap: 10px; }
.raiox-checklist li { position: relative; padding-left: 28px; color: var(--ink); }
.raiox-checklist li::before { content: "·"; position: absolute; left: 0; top: -4px; color: var(--rose); font-size: 1.6rem; font-family: var(--serif); }
.number {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 18px;
  box-shadow: 0 0 0 7px rgba(143, 162, 142, 0.12);
}
.split { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 54px; align-items: center; }
.split > img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.band {
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(215, 168, 158, 0.2), transparent 24rem),
    linear-gradient(135deg, var(--green-deep), var(--green));
}
.band h1, .band h2, .band h3, .band .quote { color: #fff; }
.band .muted, .band .lead, .band .eyebrow { color: rgba(255, 255, 255, 0.76); }
.band .card { color: var(--ink); }
.band .card h3 { color: var(--green); }

.brand-icon {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-orb {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(199, 180, 138, 0.55);
  border-radius: 50%;
  color: var(--green);
  background: rgba(255, 253, 248, 0.72);
  margin-bottom: 18px;
}
.promise-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.promise-item { text-align: center; padding: 22px 12px; }
.promise-item .icon-orb { margin-inline: auto; }
.icon-orb img { width: 26px; height: auto; object-fit: contain; }
.promise-item strong { display: block; font-family: var(--serif); font-size: 1.3rem; color: var(--green); }

.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.product-card {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--white);
}
.product-card::after { display: none; }
.product-cover {
  position: relative;
  min-height: 310px;
  padding: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--green);
  background:
    radial-gradient(circle at 86% 8%, rgba(255, 255, 255, 0.74), transparent 12rem),
    linear-gradient(145deg, var(--quartz), var(--ivory-light));
}
.product-cover::before,
.product-cover::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(199, 180, 138, 0.5);
  border-radius: 50%;
  pointer-events: none;
}
.product-cover::before { width: 210px; height: 210px; right: -78px; top: -78px; }
.product-cover::after { width: 120px; height: 210px; left: -70px; bottom: -110px; transform: rotate(20deg); }
.product-card--sage .product-cover { background: linear-gradient(145deg, var(--sage-soft), var(--ivory-light)); }
.product-card--rose .product-cover { background: linear-gradient(145deg, var(--quartz), var(--ivory-light)); }
.product-card--gold .product-cover { background: linear-gradient(145deg, #eee5d2, var(--ivory-light)); }
.product-card--green .product-cover { color: #fff; background: linear-gradient(145deg, var(--green), var(--green-deep)); }
.product-cover__brand { position: relative; z-index: 1; display: flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.61rem; font-weight: 700; }
.product-cover__brand img { width: 28px; height: 21px; object-fit: contain; }
.product-card--green .product-cover__brand img { filter: brightness(0) invert(1); opacity: 0.92; }
.product-cover__icon {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.9;
}
.product-cover__icon .brand-icon { width: 38px; height: 38px; }
.product-cover__copy { position: relative; z-index: 1; }
.product-cover__copy h3 { margin-bottom: 6px; font-size: clamp(2rem, 4vw, 2.7rem); color: currentColor; }
.product-cover__copy p { margin-bottom: 16px; max-width: 28ch; font-size: 0.83rem; font-weight: 550; }
.product-markers { display: flex; flex-wrap: wrap; gap: 8px; }
.product-marker { padding: 6px 9px; border: 1px solid currentColor; border-radius: 999px; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.04em; opacity: 0.78; }
.product-body { padding: 25px; display: flex; flex: 1; flex-direction: column; align-items: flex-start; }
.product-body h3 { margin-top: 15px; }
.product-body .btn { margin-top: auto; }
.price { font-family: var(--serif); font-size: 2.15rem; color: var(--green); }
.price small { font-family: var(--sans); font-size: 0.73rem; color: var(--muted); }

.experience-visual {
  min-height: 560px;
  border-radius: 50% 50% 26px 26px;
  box-shadow: var(--shadow);
}
.experience-visual .product-cover { min-height: 560px; border-radius: inherit; padding: 38px; }
.experience-visual .product-cover__icon { width: 104px; height: 104px; }
.experience-visual .product-cover__icon .brand-icon { width: 52px; height: 52px; }
.experience-visual .product-cover__copy h3 { font-size: clamp(3.2rem, 7vw, 5.5rem); }

.notice {
  padding: 15px 17px;
  border-radius: 13px;
  border-left: 3px solid var(--gold);
  background: #fff8df;
  color: #5f4a11;
}
.notice-danger { border-color: var(--danger); background: #fbeceb; color: #662d2a; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-weight: 700; font-size: 0.86rem; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid rgba(63, 77, 66, 0.22);
  border-radius: 13px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
}
.field textarea { min-height: 120px; resize: vertical; }
.checkbox { display: flex; align-items: flex-start; gap: 10px; }
.checkbox input { margin-top: 5px; }

.quiz-shell { width: min(calc(100% - 28px), 880px); margin: 42px auto 80px; }
.quiz-top { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 20px; }
.progress-track, .quiz-progress {
  width: 100%;
  height: 10px;
  border: 0;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(63, 77, 66, 0.12);
}
.quiz-progress::-webkit-progress-bar { background: rgba(63, 77, 66, 0.12); border-radius: 999px; }
.quiz-progress::-webkit-progress-value { background: linear-gradient(90deg, var(--sage), var(--rose)); border-radius: 999px; }
.quiz-progress::-moz-progress-bar { background: var(--sage); border-radius: 999px; }
.quiz-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.95);
  border: 1px solid rgba(63, 77, 66, 0.08);
  border-radius: 32px;
  padding: clamp(25px, 5vw, 50px);
  box-shadow: var(--shadow);
  margin-top: 20px;
}
.quiz-card::before { content: ""; position: absolute; width: 180px; height: 180px; right: -90px; top: -100px; border: 1px solid rgba(199, 180, 138, 0.4); border-radius: 50%; }
.quiz-card__intro-title { font-size: clamp(1.5rem, 2.6vw, 2.05rem); line-height: 1.28; }
.question-meta { display: flex; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 0.82rem; }
.question-area-wrap { display: flex; align-items: center; gap: 10px; }
.question-area-wrap .brand-icon { color: var(--sage); }
.answer-list { display: grid; gap: 8px; margin: 22px 0; border: 0; padding: 0; }
.answer-option {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(63, 77, 66, 0.16);
  border-radius: 15px;
  padding: 11px 16px;
  background: #fff;
  cursor: pointer;
  transition: 0.18s ease;
}
.answer-option:hover { border-color: var(--sage); background: rgba(143, 162, 142, 0.08); }
.answer-option:has(input:checked) { border-color: var(--green); background: rgba(143, 162, 142, 0.18); box-shadow: inset 0 0 0 1px var(--green); }
.answer-option input { width: 20px; height: 20px; accent-color: var(--green); }
.quiz-nav { display: flex; justify-content: space-between; gap: 12px; }

.result-hero { text-align: center; padding: 66px 0 36px; }
.result-hero .lead { margin-inline: auto; }
.result-score { font-family: var(--serif); font-size: clamp(4.4rem, 10vw, 7.4rem); line-height: 0.9; color: var(--green); }
.result-image { width: min(100%, 780px); margin: 28px auto; border-radius: 24px; box-shadow: var(--shadow-soft); }
.bars { display: grid; gap: 17px; }
.bar-row { display: grid; grid-template-columns: 34px minmax(105px, 0.8fr) 1.7fr 50px; gap: 11px; align-items: center; }
.bar-row .area-icon { color: var(--green); display: grid; place-items: center; }
.bar-row strong { font-size: 0.82rem; }
.bar-progress { width: 100%; height: 14px; border: 0; border-radius: 999px; overflow: hidden; background: rgba(63, 77, 66, 0.11); }
.bar-progress::-webkit-progress-bar { background: rgba(63, 77, 66, 0.11); border-radius: 999px; }
.bar-progress::-webkit-progress-value { background: var(--sage); border-radius: 999px; }
.bar-progress::-moz-progress-bar { background: var(--sage); border-radius: 999px; }
.bar-row.area-eu .bar-progress::-webkit-progress-value { background: var(--rose); }
.bar-row.area-casa .bar-progress::-webkit-progress-value { background: var(--sage); }
.bar-row.area-parceiro .bar-progress::-webkit-progress-value { background: var(--gold); }
.bar-row.area-filhos .bar-progress::-webkit-progress-value { background: #b8aaa2; }
.bar-row.area-trabalho .bar-progress::-webkit-progress-value { background: var(--green); }
.bar-row.area-eu .bar-progress::-moz-progress-bar { background: var(--rose); }
.bar-row.area-casa .bar-progress::-moz-progress-bar { background: var(--sage); }
.bar-row.area-parceiro .bar-progress::-moz-progress-bar { background: var(--gold); }
.bar-row.area-filhos .bar-progress::-moz-progress-bar { background: #b8aaa2; }
.bar-row.area-trabalho .bar-progress::-moz-progress-bar { background: var(--green); }
.result-legend { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.result-legend span { display: inline-flex; align-items: center; gap: 6px; font-size: 0.7rem; color: var(--muted); }
.result-legend i { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); }
.steps { counter-reset: steps; }
.step { position: relative; padding-left: 63px; }
.step::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 17px;
  top: 26px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  background: var(--ivory-light);
}

.brand-promise-panel {
  padding: 38px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 253, 248, 0.8), rgba(220, 227, 218, 0.78));
  border: 1px solid rgba(63, 77, 66, 0.08);
  box-shadow: var(--shadow-soft);
}
.brand-promise-panel .promise-grid { grid-template-columns: repeat(3, 1fr); }
.brand-promise-panel .promise-item:last-child:nth-child(3n + 2) { grid-column: 2; }

.program-identity-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: 50px;
  border-radius: 50% 50% 28px 28px;
  background: linear-gradient(150deg, #f9f5ed, var(--quartz));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.program-identity-card::before { content: ""; position: absolute; width: 310px; height: 310px; border: 1px solid rgba(199, 180, 138, 0.65); border-radius: 50%; }
.program-identity-card img { position: relative; z-index: 1; width: min(100%, 380px); height: auto; object-fit: contain; }
.program-identity-card .program-logo { width: min(100%, 330px); }
.program-diagram { padding: 20px; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.program-diagram img { width: 100%; border-radius: 18px; }
.chaos-scale { margin: 0; min-width: 0; }
.chaos-scale__viewport {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  scrollbar-gutter: stable;
}
.chaos-scale__viewport img { width: 100%; max-width: none; height: auto; }
.chaos-scale__details {
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(63, 77, 66, 0.12);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.9);
  color: var(--ink);
}
.chaos-scale__details summary { cursor: pointer; color: var(--green); font-weight: 700; }
.chaos-scale__legend { display: grid; gap: 8px; margin: 12px 0 0; padding-left: 22px; }
.chaos-scale__legend strong { color: var(--green); }
.farol-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 13px; }
.farol-item { padding: 23px 16px; text-align: center; }
.farol-letter { display: block; font-family: var(--serif); color: var(--rose); font-size: 3rem; line-height: 1; }
.farol-item strong { display: block; color: var(--green); margin: 8px 0; }
.farol-grid--editorial { gap: 18px; counter-reset: farol; }
.farol-grid--editorial .farol-item { --tone: var(--gold); position: relative; overflow: hidden; min-height: 268px; display: grid; align-content: center; justify-items: center; isolation: isolate; border: 1px solid color-mix(in srgb, var(--tone) 46%, transparent); background: linear-gradient(145deg, #fff 0%, color-mix(in srgb, var(--tone) 12%, #fff) 100%); box-shadow: 0 18px 38px rgba(63, 77, 66, .09); transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s; }
.farol-grid--editorial .farol-item::before { content: ''; position: absolute; width: 180px; aspect-ratio: 1; border: 1px solid color-mix(in srgb, var(--tone) 55%, transparent); border-radius: 50%; top: -82px; right: -74px; opacity: .6; z-index: -1; }
.farol-grid--editorial .farol-item::after { content: ''; position: absolute; height: 2px; width: 42px; right: -30px; top: 50%; background: var(--tone); opacity: .65; }
.farol-grid--editorial .farol-item:hover { transform: translateY(-10px) rotate(-.35deg); box-shadow: 0 28px 48px rgba(63, 77, 66, .17); }
.farol-grid--editorial .farol-letter { width: 64px; height: 64px; display:grid; place-items:center; border-radius:50%; background: var(--tone); color:#fff; font-size:2.45rem; box-shadow: 0 10px 20px color-mix(in srgb, var(--tone) 27%, transparent); }
.farol-grid--editorial .farol-outcome { margin-top: 14px; color: var(--tone); font-family: var(--serif); font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; }
.farol-item--f { --tone: #c89532 !important; }.farol-item--a { --tone: #61735d !important; }.farol-item--r { --tone: #9b626a !important; }.farol-item--o { --tone: #d47728 !important; }.farol-item--l { --tone: #bc645e !important; }
.program-diagram--immersive { position: relative; overflow: hidden; padding: 10px; background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(242,217,207,.6)); }
.program-diagram--immersive img { position: relative; z-index: 1; transition: transform 1.2s cubic-bezier(.2,.8,.2,1); }
.program-diagram--immersive:hover img { transform: scale(1.025); }
.diagram-glow { position:absolute; width:52%; aspect-ratio:1; left:24%; top:22%; border-radius:50%; background:radial-gradient(circle, rgba(218,170,83,.23), transparent 66%); filter:blur(9px); animation:diagramGlow 5s ease-in-out infinite; }
@keyframes diagramGlow { 50% { transform:scale(1.18); opacity:.54; } }
@media (max-width: 1040px) { .farol-grid--editorial .farol-item::after { display:none; } }

.site-footer { padding: 54px 0 0; background: var(--green-deep); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr; gap: 34px; padding-bottom: 40px; }
.footer-links a { display: block; color: rgba(255, 255, 255, 0.73); text-decoration: none; margin: 8px 0; }
.footer-links a:hover { color: #fff; }
.footer-personality {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  justify-content: center;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-bottom em { font-family: var(--serif); font-style: italic; color: rgba(255, 255, 255, 0.85); }
.footer-access { padding: 36px 0; background: var(--ivory-light); color: var(--ink); border-top: 1px solid rgba(63, 77, 66, 0.12); }
.footer-access__inner { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: 28px; align-items: center; }
.footer-access__inner h2 { margin: 4px 0 8px; font-size: clamp(2rem, 3vw, 3rem); }
.footer-access__inner p { margin-bottom: 0; }
.footer-access__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }
.footer-access__actions .btn { min-width: 220px; text-align: center; }
.site-footer .footer-access .btn-secondary { color: var(--green); border-color: rgba(63, 77, 66, .3); }
@media (max-width: 760px) { .footer-access__inner { grid-template-columns: minmax(0, 1fr); } .footer-access__actions { justify-content: stretch; } .footer-access__actions .btn { width: 100%; min-width: 0; } }

.admin-body { background: #eef0ec; }
.admin-layout { min-height: 100vh; display: grid; grid-template-columns: 260px 1fr; }
.admin-sidebar { background: var(--green-deep); color: #fff; padding: 27px 20px; position: sticky; top: 0; height: 100vh; }
.admin-sidebar .brand { color: #fff; margin-bottom: 34px; }
.admin-nav { display: grid; gap: 7px; }
.admin-nav button { border: 0; background: transparent; color: rgba(255, 255, 255, 0.74); text-align: left; padding: 12px 14px; border-radius: 11px; cursor: pointer; font-weight: 650; }
.admin-nav button:hover, .admin-nav button.active { background: rgba(255, 255, 255, 0.12); color: #fff; }
.admin-main { padding: 34px; min-width: 0; }
.admin-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.metric-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.metric { background: #fff; border-radius: 17px; padding: 20px; border: 1px solid rgba(63, 77, 66, 0.08); }
.metric strong { font-family: var(--serif); font-size: 2.25rem; color: var(--green); display: block; }
.table-wrap { overflow: auto; background: #fff; border-radius: 18px; }
.table { width: 100%; border-collapse: collapse; min-width: 740px; }
.table th, .table td { padding: 13px 16px; border-bottom: 1px solid #edf0ec; text-align: left; font-size: 0.82rem; }
.table th { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.admin-panel { display: none; }
.admin-panel.active { display: block; }
.editor { font-family: ui-monospace, SFMono-Regular, Consolas, monospace; min-height: 430px; }
.login-shell { min-height: 100vh; display: grid; place-items: center; padding: 24px; background: radial-gradient(circle at top left, var(--quartz), var(--ivory) 55%); }
.login-card { width: min(100%, 500px); background: #fff; border-radius: 26px; padding: 38px; box-shadow: var(--shadow); }
.toast { position: fixed; right: 22px; bottom: 22px; background: var(--green-deep); color: #fff; padding: 13px 18px; border-radius: 12px; box-shadow: var(--shadow); z-index: 100; opacity: 0; transform: translateY(14px); pointer-events: none; transition: 0.25s; }
.toast.show { opacity: 1; transform: none; }
.empty { padding: 32px; text-align: center; color: var(--muted); }

@media (max-width: 1040px) {
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero-media, .program-identity-card, .experience-visual { max-width: 680px; margin-inline: auto; width: 100%; }
  .trust-row, .grid-4, .metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3, .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .farol-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; height: auto; }
  .admin-nav { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 66px 0; }
  .section-sm { padding: 46px 0; }
  .header-inner { min-height: 74px; }
  .brand-crown { top: -14px; left: 8px; width: 25px; height: 18px; }
  .brand-copy strong { font-size: 1.05rem; }
  .brand-copy span { font-size: 0.53rem; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 74px; background: var(--ivory-light); padding: 20px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .nav.open { display: flex; }
  .menu-toggle { display: block; }
.hero { padding-top: 48px; }
  .hero::after { display: none; }
  .hero-grid { gap: 42px; }
  .trust-row, .grid-2, .grid-3, .grid-4, .product-grid, .form-grid, .footer-grid, .metric-grid, .promise-grid, .farol-grid { grid-template-columns: minmax(0, 1fr); }
  .brand-promise-panel .promise-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-promise-panel .promise-item:last-child { grid-column: 1 / -1; }
  .floating-card { position: relative; right: auto; bottom: auto; margin: -32px 18px 0; }
  .product-cover { min-height: 290px; }
  .experience-visual, .experience-visual .product-cover { min-height: 470px; }
  .quiz-card { border-radius: 23px; }
  .quiz-nav { flex-direction: column-reverse; }
  .quiz-nav .btn { width: 100%; }
  .bar-row { grid-template-columns: 28px 90px minmax(90px, 1fr) 42px; gap: 7px; }
  .bar-row strong { font-size: 0.72rem; }
  .program-identity-card { min-height: 430px; padding: 16px; }
  .program-identity-card .program-logo { width: min(100%, 330px); }
  .chaos-scale__viewport img { width: 720px; min-width: 720px; }
  .admin-main { padding: 16px; }
  .admin-nav { grid-template-columns: 1fr 1fr; }
  .admin-top { align-items: flex-start; flex-direction: column; }
  .actions .btn { width: 100%; }
}

@media (max-width: 430px) {
  h1 { font-size: clamp(2.5rem, 13vw, 3.8rem); }
  .brand-copy span { display: none; }
  .site-header .brand-copy span,
  .aluna-header .brand-copy span,
  .login-card .brand-copy span,
  .admin-sidebar .brand-copy span { display: block; }
  .brand-promise-panel { padding: 24px; }
  .brand-promise-panel .promise-grid { grid-template-columns: 1fr; }
  .brand-promise-panel .promise-item:last-child { grid-column: auto; }
  .bar-row { grid-template-columns: 25px 78px minmax(70px, 1fr) 38px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* Camada editorial, derivada da luz, dos contornos e das cores da prancha oficial. */
.hero-home .hero-media, .hero .experience-visual { isolation: isolate; }
.hero-home .hero-photo-frame, .hero .experience-visual { overflow: hidden; box-shadow: 0 28px 60px rgba(63,77,66,.2); }
.hero-home .hero-photo-frame::after, .hero .experience-visual::after { content:''; position:absolute; inset:0; pointer-events:none; background:linear-gradient(135deg, rgba(255,255,255,.16), transparent 38%, rgba(199,180,138,.18)); mix-blend-mode:screen; }
.hero-home .hero-photo-frame img { animation:heroReveal 1.1s cubic-bezier(.2,.8,.2,1) both; }
.hero-heading, .hero-copy { animation:heroReveal .8s .08s cubic-bezier(.2,.8,.2,1) both; }
.hero-support, .hero .actions { animation:heroReveal .8s .18s cubic-bezier(.2,.8,.2,1) both; }
.hero-home .hero-media::before { content:''; position:absolute; z-index:-1; width:72%; aspect-ratio:1; left:-10%; bottom:-15%; background:radial-gradient(circle, rgba(199,180,138,.42), transparent 65%); filter:blur(10px); }
.hero-home .floating-card, .hero .floating-card { border:1px solid rgba(199,180,138,.45); backdrop-filter:blur(10px); background:rgba(255,255,255,.87); box-shadow:0 20px 38px rgba(63,77,66,.15); }
.experience-visual { position:relative; border-radius:28px; background:linear-gradient(145deg, var(--ivory), var(--quartz)); }
.experience-visual:hover .product-cover { transform:scale(1.025); }
.experience-visual .product-cover { transition:transform .7s cubic-bezier(.2,.8,.2,1); }
.site-footer { position:relative; overflow:hidden; background:linear-gradient(120deg, #26342b, var(--green-deep) 50%, #46584a); }
.site-footer::before { content:''; position:absolute; width:620px; aspect-ratio:1; border:1px solid rgba(199,180,138,.23); border-radius:50%; right:-160px; top:-420px; box-shadow:0 0 0 65px rgba(199,180,138,.05),0 0 0 132px rgba(199,180,138,.03); }
.site-footer > * { position:relative; z-index:1; }
.footer-heritage { position:relative; isolation:isolate; overflow:hidden; margin-bottom:46px; padding:56px 0 48px; color:var(--green-deep); background:linear-gradient(90deg, rgba(250,247,240,.95), rgba(255,253,248,.9) 54%, rgba(251,246,237,.98)); border-top:1px solid rgba(199,180,138,.48); border-bottom:1px solid rgba(199,180,138,.35); }
.footer-heritage__scene { position:absolute; inset:0; z-index:-1; overflow:hidden; background:linear-gradient(90deg, rgba(250,247,240,.98) 0%, rgba(250,247,240,.93) 31%, rgba(250,247,240,.84) 58%, rgba(250,247,240,.96) 100%), url('/assets/footer-natureza-editorial.jpg') 72% 58% / cover no-repeat; filter:saturate(.72) sepia(.08); }
.footer-heritage__scene::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 4% 94%, rgba(52,76,58,.72) 0 9%, rgba(52,76,58,.38) 18%, transparent 43%), radial-gradient(ellipse at 97% 5%, rgba(220,177,167,.28), transparent 34%), linear-gradient(180deg, rgba(255,255,255,.34), transparent 44%); }
.footer-heritage__scene::after { content:''; position:absolute; inset:auto -6% -1px -6%; height:64%; background:linear-gradient(180deg, transparent, rgba(48,71,55,.17)); clip-path:polygon(0 83%, 8% 72%, 15% 81%, 24% 59%, 34% 76%, 44% 48%, 52% 70%, 62% 52%, 73% 78%, 82% 40%, 90% 66%, 100% 45%, 100% 100%, 0 100%); opacity:.52; }
.footer-heritage__mist { position:absolute; width:44%; height:32%; border-radius:50%; background:rgba(255,255,255,.57); filter:blur(19px); opacity:.8; animation:footerMist 11s ease-in-out infinite alternate; }
.footer-heritage__mist--one { left:-8%; bottom:7%; }.footer-heritage__mist--two { right:5%; top:8%; animation-delay:-5s; opacity:.58; }
.footer-heritage__botanical { position:absolute; bottom:-26px; right:-40px; width:min(54vw,720px); color:rgba(183,139,55,.62); stroke:currentColor; stroke-width:1.45; opacity:.8; }
.footer-heritage__botanical path:nth-child(n+2) { fill:rgba(183,139,55,.11); }
.footer-heritage__floral-chart { position:absolute; top:18px; right:5%; width:108px; color:rgba(165,91,90,.43); stroke:currentColor; stroke-width:1.1; opacity:.8; transform:rotate(-10deg); }
.footer-heritage__grid { position:relative; display:grid; grid-template-columns:1.1fr 1fr 1fr; align-items:center; gap:38px; }
.footer-heritage__brand { min-height:155px; display:grid; align-content:center; justify-items:center; text-align:center; border-right:1px solid rgba(199,180,138,.75); }
.footer-signature { display:grid; justify-items:center; width:min(100%, 460px); }
.footer-signature__crown { width:48px; height:34px; object-fit:contain; margin-bottom:6px; }
.footer-signature__name { margin:0; color:var(--green); font-family:var(--serif); font-size:clamp(1.6rem,3vw,3.1rem); font-weight:500; letter-spacing:.025em; line-height:1; text-align:center; text-transform:uppercase; white-space:nowrap; }
.footer-signature__descriptor { margin-top:3px; color:var(--green); font-size:.72rem; letter-spacing:.18em; text-transform:uppercase; }
.footer-signature__motto { margin-top:8px; color:var(--rose); font-family:var(--serif); font-size:.76rem; letter-spacing:.12em; line-height:1.2; text-align:center; text-transform:uppercase; }
.footer-heritage__statement h2 { margin:0; font-family:var(--serif); font-size:clamp(2rem,3vw,3.1rem); font-weight:500; letter-spacing:.035em; text-transform:uppercase; }
.footer-heritage__statement { min-height:110px; display:grid; align-content:center; padding-inline:4px 18px; border-right:1px solid rgba(199,180,138,.75); }
.footer-heritage__statement:last-child { border-right:0; }
.footer-heritage__statement h2 { font-size:1.3rem; margin-bottom:8px; }
.footer-heritage__statement p { max-width:35ch; margin:0; color:#3f4d42; font-family:var(--serif); font-size:1.02rem; line-height:1.48; }
.footer-bottom { gap:16px; }
.wg-buildtech-signature { --wg-green:#00ab26; --wg-cyan:#00b2f0; position:relative; margin-left:auto; color:rgba(255,255,255,.76); font-family:'Open Sauce','Roboto',system-ui,sans-serif; font-size:.72rem; font-weight:600; letter-spacing:.045em; text-decoration:none; transition:color .2s ease; }
.wg-buildtech-signature::after { content:''; position:absolute; right:0; bottom:-5px; width:100%; height:2px; background:linear-gradient(90deg,var(--wg-green),var(--wg-cyan)); transform:scaleX(.28); transform-origin:right; transition:transform .24s ease; }
.wg-buildtech-signature__wg { color:#f7f5ef; font-weight:800; }
.wg-buildtech-signature__build { color:var(--wg-green); font-weight:800; }
.wg-buildtech-signature__tech { color:var(--wg-cyan); font-weight:800; }
.wg-buildtech-signature:hover, .wg-buildtech-signature:focus-visible { color:#fff; }
.wg-buildtech-signature:hover::after, .wg-buildtech-signature:focus-visible::after { transform:scaleX(1); }
@keyframes footerMist { to { transform:translate3d(4%, -8%, 0) scale(1.08); opacity:.54; } }
@media (prefers-reduced-motion: reduce) { .footer-heritage__mist { animation:none; } }
@media (max-width: 760px) { .footer-heritage { margin-bottom:30px; padding-block:42px; }.footer-heritage__scene{background-position:63% 60%;}.footer-heritage__scene::before{background:linear-gradient(180deg, rgba(250,247,240,.9), rgba(250,247,240,.72)),radial-gradient(ellipse at 3% 98%,rgba(52,76,58,.6),transparent 50%)}.footer-heritage__floral-chart{width:78px;right:3%;top:10px}.footer-heritage__botanical{width:130%;right:-31%;bottom:-20px}.footer-heritage__grid{grid-template-columns:1fr;gap:22px}.footer-heritage__brand,.footer-heritage__statement{min-height:auto;padding:0 4px 22px;border-right:0;border-bottom:1px solid rgba(199,180,138,.55)}.footer-heritage__statement:last-child{padding-bottom:0;border-bottom:0}.footer-heritage__statement p{max-width:40ch;margin:auto;text-align:center}.footer-heritage__statement h2{text-align:center}.footer-signature{width:min(100%,285px)}.footer-signature__crown{width:31px;height:22px}.footer-bottom{align-items:flex-start}.wg-buildtech-signature{margin-left:0} }

.brand-kit-hero { display:grid; grid-template-columns:minmax(0,1.15fr) minmax(260px,.85fr); gap:26px; align-items:center; padding:30px; background:linear-gradient(135deg,rgba(255,253,248,.96),rgba(242,217,207,.55)); border:1px solid rgba(199,180,138,.5); border-radius:var(--radius); }
.brand-kit-lockup { width:min(100%,520px); height:auto; display:block; margin-inline:auto; }
.brand-kit-colors { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; }
.brand-kit-color { border:1px solid rgba(63,77,66,.12); border-radius:12px; overflow:hidden; background:#fffdfa; }
.brand-kit-color i { display:block; height:42px; }
.brand-kit-color--green i { background:#3F4D42; }
.brand-kit-color--sage i { background:#8FA28E; }
.brand-kit-color--tea i { background:#D7A89E; }
.brand-kit-color--quartz i { background:#F2D9CF; }
.brand-kit-color--ivory i { background:#F2EFE7; }
.brand-kit-color--champagne i { background:#C7B48A; }
.brand-kit-color span { display:block; padding:9px 10px 2px; font-size:.67rem; font-weight:800; letter-spacing:.07em; text-transform:uppercase; }
.brand-kit-color code { display:block; padding:0 10px 10px; color:var(--muted); font-size:.72rem; }
.brand-kit-moods { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; }
.brand-kit-moods figure { margin:0; overflow:hidden; border-radius:12px; background:#fff; border:1px solid rgba(63,77,66,.1); }
.brand-kit-moods img { display:block; width:100%; aspect-ratio:1 / 1; object-fit:cover; }
.brand-kit-moods figcaption { padding:9px 10px; font-size:.73rem; font-weight:700; color:var(--green); }
.brand-kit-rules { margin:0; padding-left:20px; display:grid; gap:9px; }
@media (max-width:760px) { .brand-kit-hero { grid-template-columns:1fr; padding:22px; }.brand-kit-colors,.brand-kit-moods { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@keyframes heroReveal { from { opacity:0; transform:translateY(22px) scale(.985); } to { opacity:1; transform:none; } }

.program-lockup { position: relative; z-index: 1; text-align: center; max-width: 430px; }
.program-lockup .program-crown { width: 118px; height: auto; object-fit: contain; margin: 0 auto 24px; }
.program-lockup h2 { font-size: clamp(3.7rem, 8vw, 6.4rem); margin-bottom: 12px; }
.program-lockup > p:last-child { font-family: var(--serif); font-size: 1.45rem; line-height: 1.25; color: var(--green); }

.lang-select { display: inline-flex; margin-left: 4px; }
.lang-select select {
  appearance: none;
  background: transparent;
  border: 1px solid rgba(63, 77, 66, 0.22);
  border-radius: 999px;
  color: var(--green);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 7px 26px 7px 14px;
  background-image: linear-gradient(45deg, transparent 50%, var(--green) 50%), linear-gradient(135deg, var(--green) 50%, transparent 50%);
  background-position: calc(100% - 15px) center, calc(100% - 10px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.lang-select select:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }

.faq-list { display: grid; gap: 12px; }
.faq-list details { border-bottom: 1px solid rgba(63, 77, 66, 0.14); padding: 4px 0 16px; }
.faq-list summary { display: flex; justify-content: space-between; gap: 16px; cursor: pointer; color: var(--green); font-family: var(--serif); font-size: 1.35rem; font-weight: 600; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--gold); font-family: var(--sans); font-weight: 500; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 12px 0 0; color: var(--muted); }

.dashboard-summary { display: grid; gap: 14px; }
.summary-row { display: grid; grid-template-columns: minmax(90px, 0.8fr) 1.6fr 34px; gap: 10px; align-items: center; }
.summary-row strong { font-size: 0.78rem; }
.summary-row span { font-weight: 700; text-align: right; color: var(--green); }
.login-card > .brand { margin-bottom: 6px; }
.login-card .brand-copy strong, .login-card .brand-copy span { color: var(--green); }

/* Ajustes editoriais aprovados: promessa, assinatura e cards de produto */
.site-header .brand--compact .brand-crown {
  width: 48px;
  height: 35px;
}
.footer-signature__crown {
  width: 53px;
  height: 38px;
}

.brand-promise-panel {
  padding: 30px 34px 32px;
}
.brand-promise-panel .section-intro {
  margin-bottom: 24px;
}
.brand-promise-panel .section-intro h2 {
  margin-bottom: 0;
  line-height: 1.02;
}
.brand-promise-panel .promise-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.brand-promise-panel .promise-item,
.brand-promise-panel .promise-item:last-child:nth-child(3n + 2) {
  grid-column: auto;
  min-width: 0;
  padding: 14px 8px 12px;
}
.brand-promise-panel .promise-item .icon-orb {
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
}
.brand-promise-panel .promise-item strong {
  margin-bottom: 4px;
  font-size: 1.18rem;
  line-height: 1.05;
}
.brand-promise-panel .promise-item .small {
  display: block;
  line-height: 1.35;
}

.product-cover {
  min-height: 330px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-content: stretch;
  gap: 16px;
  isolation: isolate;
}
.product-cover__image {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -2;
  width: 58%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.product-cover__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255,253,248,.98) 0%, rgba(255,253,248,.94) 43%, rgba(255,253,248,.48) 70%, rgba(255,253,248,.16) 100%);
}
.product-card--green .product-cover__veil {
  background: linear-gradient(90deg, rgba(48,59,51,.98) 0%, rgba(48,59,51,.92) 45%, rgba(48,59,51,.42) 75%, rgba(48,59,51,.16) 100%);
}
.product-cover__identity {
  position: relative;
  z-index: 1;
  width: min(66%, 360px);
  display: flex;
  align-items: center;
  gap: 16px;
  align-self: center;
}
.product-cover__identity .product-cover__icon {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
}
.product-cover__identity .product-cover__copy {
  min-width: 0;
}
.product-cover__copy h3 {
  margin: 0 0 2px;
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  line-height: .96;
}
.product-cover__copy p {
  margin: 0;
  max-width: 26ch;
  font-size: .78rem;
  line-height: 1.35;
}
.product-cover > .product-markers {
  position: relative;
  z-index: 1;
  width: min(66%, 360px);
}

@media (max-width: 760px) {
  .brand-promise-panel {
    padding: 24px 18px 26px;
  }
  .brand-promise-panel .section-intro {
    margin-bottom: 18px;
  }
  .brand-promise-panel .promise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 8px;
  }
  .brand-promise-panel .promise-item,
  .brand-promise-panel .promise-item:last-child:nth-child(3n + 2) {
    grid-column: auto;
    padding: 12px 5px;
  }
  .brand-promise-panel .promise-item:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 4px);
    justify-self: center;
  }
  .brand-promise-panel .promise-item .icon-orb {
    width: 46px;
    height: 46px;
    margin-bottom: 9px;
  }
  .brand-promise-panel .promise-item strong {
    font-size: 1.08rem;
  }
  .brand-promise-panel .promise-item .small {
    font-size: .72rem;
    line-height: 1.3;
  }
  .product-cover {
    min-height: 300px;
    padding: 20px;
  }
  .product-cover__image {
    width: 100%;
    opacity: .38;
  }
  .product-cover__veil,
  .product-card--green .product-cover__veil {
    background: linear-gradient(180deg, rgba(255,253,248,.94), rgba(255,253,248,.72));
  }
  .product-card--green .product-cover__veil {
    background: linear-gradient(180deg, rgba(48,59,51,.94), rgba(48,59,51,.76));
  }
  .product-cover__identity,
  .product-cover > .product-markers {
    width: 100%;
  }
  .product-cover__identity {
    gap: 12px;
  }
  .product-cover__identity .product-cover__icon {
    flex-basis: 56px;
    width: 56px;
    height: 56px;
  }
  .product-cover__copy h3 {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
  }
}

@media (max-width: 760px) {
  .program-lockup h2 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .summary-row { grid-template-columns: 82px minmax(90px, 1fr) 30px; }
}

/* Recursos: aplicação visual efetiva aprovada pelo owner */
.resources-hero__visual {
  min-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(33,49,40,.18), rgba(33,49,40,.72)),
    url('/assets/footer-natureza-editorial.jpg') 64% 52% / cover no-repeat;
}
.resources-hero__visual .product-cover {
  background: transparent;
}
.resources-hero__visual .product-cover::before,
.resources-hero__visual .product-cover::after {
  border-color: rgba(199,180,138,.72);
}
.resources-hero__visual .floating-card {
  right: 22px;
  bottom: 28px;
}
.resources-collection-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(39,54,45,.95), rgba(39,54,45,.82));
}
.resources-collection-band::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(36,52,43,.92) 0%, rgba(36,52,43,.76) 46%, rgba(36,52,43,.84) 100%),
    url('/assets/footer-natureza-editorial.jpg') 62% 54% / cover no-repeat;
  filter: saturate(.72) contrast(1.04);
}
.resources-collection-band::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(199,180,138,.18), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(0,0,0,.14));
}
.product-body {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  grid-template-areas:
    'badge price'
    'format price'
    'button price';
  gap: 12px 20px;
  align-items: start;
  min-height: 205px;
}
.product-body > .badge { grid-area: badge; justify-self: start; }
.product-body > .price {
  grid-area: price;
  align-self: center;
  justify-self: end;
  margin: 0;
  text-align: right;
  white-space: nowrap;
}
.product-body > .small { grid-area: format; margin: 0; align-self: end; }
.product-body > .btn { grid-area: button; margin-top: 0; justify-self: start; align-self: end; }

@media (max-width: 760px) {
  .resources-hero__visual { min-height: 470px; }
  .resources-collection-band::before { background-position: 58% 50%; }
  .product-body {
    grid-template-columns: minmax(0,1fr) auto;
    gap: 10px 14px;
    min-height: 190px;
  }
  .product-body > .price { font-size: 1.85rem; }
}


@media print { .site-header,.site-footer,.result-share,.actions { display:none !important; } body { background:#fff; } .section,.section-sm { break-inside:avoid; } }


/* Header brand refinement - 2026-08-07 */
.site-header .brand--compact { gap: 12px; padding-left: 0; }
.site-header .brand--compact .brand-crown { width: 48px; height: 35px; }
.site-header .brand-copy--compact { justify-items: center; text-align: center; }
.site-header .brand-copy--compact > strong { font-size: 1.15rem; letter-spacing: .10em; }
.site-header .brand-copy--compact > span { font-size: .61rem; letter-spacing: .14em; white-space: nowrap; }
@media (max-width: 760px) {
  .site-header .header-inner { position: relative; min-height: 86px; justify-content: center; }
  .site-header .brand--compact { max-width: calc(100% - 62px); margin-inline: auto; }
  .site-header .brand--compact .brand-crown { width: 50px; height: 36px; }
  .site-header .brand-copy--compact > strong { font-size: 1.16rem; }
  .site-header .brand-copy--compact > span { font-size: .62rem; }
  .site-header .menu-toggle { position: absolute; right: 0; top: 50%; transform: translateY(-50%); }
  .site-header .nav { top: 86px; }
}
@media (max-width: 390px) {
  .site-header .brand--compact { gap: 9px; }
  .site-header .brand--compact .brand-crown { width: 44px; height: 32px; }
  .site-header .brand-copy--compact > strong { font-size: 1.02rem; }
  .site-header .brand-copy--compact > span { font-size: .55rem; letter-spacing: .11em; }
}

/* Feedback cliente 12/08/2026 — ritmo, contraste e compactação mobile */
.resources-hero__photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 36%; border-radius: 28px; }
.resources-collection-visual { margin-top: 30px; }
.value-compare { display: grid; gap: 4px; padding: 12px 14px; border-left: 3px solid var(--champagne); background: rgba(255,255,255,.58); border-radius: 0 12px 12px 0; }
.product-diagnostic-link { margin-top: 14px; }
.product-diagnostic-link a { color: var(--green); font-weight: 700; }
.product-signal-card { min-height: 0; }
.product-flow-card { min-height: 0; }
.product-mid-cta .card { align-self: stretch; }
.result-about img { width: 100%; height: 100%; max-height: 620px; object-fit: cover; border-radius: 24px; }
#resultado section[id], #resultado .section-intro { scroll-margin-top: 110px; }

@media (max-width: 760px) {
  .section { padding: 50px 0; }
  .section-sm { padding: 34px 0; }
  .section-intro { margin-bottom: 24px; }
  .hero { padding: 34px 0 42px; }
  .hero-grid { gap: 26px; }
  .hero h1 { font-size: clamp(2.25rem, 11vw, 3.45rem); line-height: .98; }
  h2 { font-size: clamp(1.75rem, 8vw, 2.55rem); line-height: 1.04; }
  .lead { font-size: 1rem; line-height: 1.55; }
  .card { padding: 20px; border-radius: 20px; }
  .grid-2, .grid-3, .grid-4 { gap: 16px; }
  .btn { min-height: 48px; padding: 12px 18px; }
  .site-header .header-inner { min-height: 70px; }
  .site-header .nav { top: 70px; }
  .resources-hero__photo img { aspect-ratio: 16 / 12; max-height: 330px; object-position: 50% 30%; border-radius: 20px; }
  .resources-hero__photo .floating-card { margin-top: -22px; }
  .resources-collection-visual { min-height: 390px; margin-top: 22px; }
  .resources-collection-visual .product-cover { min-height: 390px; }
  .resources-collection-band .section-intro { margin-bottom: 18px; }
  .resources-collection-band .card { padding: 19px; }
  .resources-collection-band .price { margin-block: 12px; }
  .brand-promise-panel { padding: 20px 14px 22px; }
  .brand-promise-panel .promise-item { min-height: 0; }
  .product-grid { gap: 16px; }
  .product-body { min-height: 0; gap: 7px 10px; }
  .product-cover { min-height: 235px; padding: 16px; }
  .experience-visual, .experience-visual .product-cover { min-height: 360px; }
  .product-signal-card, .product-flow-card, .steps .card { padding: 18px; }
  .product-experience-flow { gap: 14px; }
  .product-mid-cta .split { gap: 18px; }
  .quiz-shell { width: min(calc(100% - 24px), 880px); margin: 18px auto 42px; }
  .quiz-top { margin-bottom: 10px; align-items: flex-end; }
  .quiz-card { padding: 22px 18px; }
  .quiz-card h2 { font-size: clamp(1.55rem, 7vw, 2.15rem); }
  .quiz-card .lead { margin-bottom: 12px; }
  .answer-option { padding: 13px 14px; }
  .question-meta { margin-bottom: 10px; }
  .chaos-scale__viewport { overflow: visible; }
  .chaos-scale__viewport img { width: 100%; min-width: 0; max-width: 100%; object-fit: contain; }
  .result-hero { padding: 42px 0 24px; }
  #resultado .section, #resultado .section-sm { padding-block: 38px; }
  #resultado .card { padding: 19px; }
  #resultado .brand-promise-panel { padding: 18px 14px; }
  #resultado .result-image { margin-block: 18px; }
  .result-about { gap: 22px; }
  .result-about img { max-height: 420px; }
}

@media (max-width: 430px) {
  .hero h1 { font-size: clamp(2.15rem, 10.5vw, 3rem); }
  .resources-collection-visual { min-height: 340px; }
  .resources-collection-visual .product-cover { min-height: 340px; }
  .quiz-card { padding: 20px 16px; }
}

/* Rodapé aprovado pela cliente — referência verde floresta + dourado */
.site-footer { background: #263b32; color: #ead9a8; padding: 0; }
.footer-luxury { padding: 56px 0 26px; }
.footer-luxury__brand { display: grid; justify-items: center; text-align: center; gap: 5px; padding-bottom: 30px; border-bottom: 1px solid rgba(234,217,168,.28); }
.footer-luxury__crown { width: 58px; height: auto; filter: sepia(.18) saturate(.75); }
.footer-luxury__name { margin: 0; font-family: var(--serif); font-size: clamp(2rem,4vw,3.2rem); color: #ead9a8; }
.footer-luxury__descriptor { text-transform: uppercase; font-size: .7rem; letter-spacing: .19em; }
.footer-luxury__motto { margin-top: 8px; text-transform: uppercase; font-size: .74rem; letter-spacing: .16em; color: #f6e9c2; }
.footer-luxury__nav, .footer-luxury__access, .footer-luxury__bottom { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 12px 26px; }
.footer-luxury__nav { padding-block: 28px 20px; text-transform: uppercase; font-size: .72rem; letter-spacing: .08em; }
.footer-luxury a { color: #ead9a8; text-decoration: none; }
.footer-luxury a:hover { color: #fff6dc; }
.footer-luxury__access { padding-bottom: 24px; font-size: .75rem; }
.footer-luxury__bottom { padding-top: 20px; border-top: 1px solid rgba(234,217,168,.22); font-size: .7rem; color: rgba(245,232,196,.78); }
.promise-item--liberty { grid-column: 1 / -1; width: min(100%, 240px); justify-self: center; border-color: rgba(199,180,138,.55); background: rgba(242,217,207,.28); }

@media (max-width: 760px) {
  .footer-luxury { padding: 42px 0 22px; }
  .footer-luxury__brand { padding-bottom: 24px; }
  .footer-luxury__nav { flex-direction: column; gap: 13px; padding-block: 24px 18px; }
  .footer-luxury__access { gap: 18px; }
  .footer-luxury__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .promise-item--liberty { width: calc(50% - 4px); grid-column: 1 / -1 !important; }
}

@media (max-width: 430px) {
  .promise-item--liberty { width: 100%; }
}
