/* ==========================================================================
   CROMA — Método Croma
   ========================================================================== */

:root {
  --bg: #071510;
  --bg-alt: #0c2016;
  --bg-card: #0f2a1c;
  --bg-card-2: #112f20;
  --line: rgba(212, 179, 106, 0.16);
  --gold: #d8ac5c;
  --gold-soft: #e8cc98;
  --green: #4fae7a;
  --green-soft: #7fd1a2;
  --text: #f4f1ea;
  --text-muted: #b9c2ba;
  --text-dim: #8a988e;
  --gradient: linear-gradient(120deg, var(--gold) 0%, #c9b25f 35%, var(--green) 100%);
  --radius: 18px;
  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  background-image:
    radial-gradient(68% 68% at 100% 100%, transparent 34%, var(--bg) 88%),
    linear-gradient(200deg, rgba(216, 172, 92, 0.05), transparent 45%),
    url("../img/chameleon-tail-bg.png");
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: right bottom, left top, right bottom;
  background-size: cover, cover, min(560px, 62vw) auto;
  background-attachment: fixed, fixed, fixed;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

@media (max-width: 720px) {
  body { background-size: cover, cover, min(380px, 88vw) auto; }
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gradient);
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

section { position: relative; padding: 108px 0; }
section.tight { padding: 84px 0; }

.section-head {
  max-width: 680px;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: var(--text);
}

.section-head p {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
}

.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center p { margin-left: auto; margin-right: auto; }

a { color: inherit; text-decoration: none; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  background: var(--gradient);
  color: #0a1a10;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(216, 172, 92, 0.55); }

.btn-ghost {
  border-color: rgba(244, 241, 234, 0.28);
  color: var(--text);
}

.btn-ghost:hover { border-color: var(--gold-soft); color: var(--gold-soft); }

/* ---------- nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(7, 21, 16, 0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.brand img { width: 34px; height: 34px; border-radius: 8px; object-fit: cover; }

.brand span.sub {
  font-family: "Manrope", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  font-weight: 700;
  display: block;
}

.brand-logo {
  width: auto;
  height: 58px;
  border-radius: 0;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.nav-links a:hover { color: var(--gold-soft); }

.nav-cta { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

@media (max-width: 880px) {
  .nav-links { position: fixed; top: 78px; left: 0; right: 0; background: var(--bg-alt); flex-direction: column; align-items: flex-start; padding: 24px 28px 32px; gap: 20px; border-bottom: 1px solid var(--line); transform: translateY(-130%); transition: transform 0.3s ease; }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: block; }
}

/* ---------- hero ---------- */

.hero {
  padding: 168px 0 120px;
  position: relative;
  background:
    radial-gradient(60% 55% at 78% 18%, rgba(216, 172, 92, 0.14), transparent 60%),
    radial-gradient(55% 60% at 15% 85%, rgba(79, 174, 122, 0.16), transparent 60%),
    var(--bg);
  overflow: hidden;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.7rem);
  color: var(--text);
}

.hero h1 em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .lede {
  margin-top: 22px;
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
}

.hero .cta-row { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; }

.hero-art {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6);
  border: 1px solid var(--line);
}

.hero-art img { width: 100%; height: 100%; object-fit: cover; }

.hero-tag {
  position: absolute;
  bottom: 22px; left: 22px;
  background: rgba(7, 21, 16, 0.72);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 0.82rem;
  color: var(--gold-soft);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.scroll-cue {
  margin-top: 70px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-dim);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-art { max-width: 420px; margin: 0 auto; }
}

/* ---------- cenario / compare ---------- */

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.compare-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
}

.compare-card.negative { opacity: 0.78; }

.compare-card.positive { border-color: rgba(216, 172, 92, 0.4); box-shadow: 0 20px 50px -30px rgba(216,172,92,0.35); }

.compare-card h3 { font-size: 1.25rem; margin-bottom: 12px; }

.compare-card.positive h3 {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.compare-card p { color: var(--text-muted); }

.pull-quote {
  margin-top: 56px;
  font-family: "Fraunces", serif;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 500;
  color: var(--gold-soft);
  max-width: 760px;
  line-height: 1.4;
}

@media (max-width: 720px) { .compare { grid-template-columns: 1fr; } }

/* ---------- philosophy split ---------- */

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.split-visual {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
}

.venn-row { display: flex; flex-direction: column; gap: 18px; }

.venn-item {
  background: var(--bg-card-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.venn-item span { display: block; font-weight: 500; color: var(--text-muted); font-size: 0.85rem; margin-top: 6px; }

.split h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 18px; }

.split p.lead { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 22px; }

@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

/* ---------- antifragil cards ---------- */

.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.trio-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
}

.trio-card .tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.tag.fragil { background: rgba(220, 90, 90, 0.15); color: #e2938f; }
.tag.robusto { background: rgba(160, 160, 160, 0.15); color: #c4c9c5; }
.tag.antifragil { background: rgba(79, 174, 122, 0.18); color: var(--green-soft); }

.trio-card.antifragil { border-color: rgba(79, 174, 122, 0.45); box-shadow: 0 20px 50px -30px rgba(79,174,122,0.35); }

.trio-card ul { color: var(--text-muted); padding-left: 18px; font-size: 0.95rem; }
.trio-card ul li { margin-bottom: 6px; }

@media (max-width: 820px) { .trio { grid-template-columns: 1fr; } }

/* ---------- metaphor banner ---------- */

.metaphor {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metaphor .wrap { text-align: center; max-width: 820px; }

.metaphor h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  margin-bottom: 26px;
}

.metaphor h2 em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.metaphor p { color: var(--text-muted); font-size: 1.08rem; margin: 0 auto 10px; max-width: 620px; }

.metaphor .final-line {
  margin-top: 26px;
  font-weight: 700;
  color: var(--gold-soft);
  letter-spacing: 0.03em;
}

/* ---------- mapa / steps ---------- */

.steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.step:last-child { border-bottom: 1px solid var(--line); }

.step-num {
  font-family: "Fraunces", serif;
  font-size: 2.4rem;
  font-weight: 600;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.step h3 { font-size: 1.25rem; margin-bottom: 10px; }
.step p.desc { color: var(--text-muted); margin-bottom: 16px; max-width: 620px; }

.step ul.questions {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
}

.step ul.questions li {
  color: var(--text-muted);
  font-size: 0.94rem;
  padding-left: 18px;
  position: relative;
}

.step ul.questions li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gradient);
}

.step-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 8px; }

.step-col { background: var(--bg-card); border: 1px solid var(--line); border-radius: 14px; padding: 20px; }

.step-col h4 { font-size: 0.95rem; color: var(--gold-soft); margin-bottom: 10px; }

.step-col ul { list-style: none; color: var(--text-muted); font-size: 0.88rem; }
.step-col ul li { padding: 4px 0; border-top: 1px dashed rgba(244,241,234,0.08); }
.step-col ul li:first-child { border-top: none; }

.content-strategy-note {
  margin-top: 20px;
  color: var(--text-dim);
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .step { grid-template-columns: 1fr; }
  .step ul.questions { grid-template-columns: 1fr; }
  .step-columns { grid-template-columns: 1fr; }
}

/* ---------- phases timeline ---------- */

.phase-lead { max-width: 640px; color: var(--text-muted); margin-bottom: 50px; font-size: 1.05rem; }

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

.phase-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
}

.phase-index {
  font-family: "Fraunces", serif;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.phase-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.phase-card p.goal { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 18px; }

.phase-card ul { list-style: none; }
.phase-card ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 8px 0;
  border-top: 1px solid var(--line);
}
.phase-card ul li:first-child { border-top: none; }

@media (max-width: 900px) { .phases { grid-template-columns: 1fr; } }

/* ---------- formats grid ---------- */

.formats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.format-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.format-card:hover { transform: translateY(-6px); border-color: rgba(216,172,92,0.4); }

.format-card .fnum {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--gradient);
  color: #0a1a10;
  margin-bottom: 18px;
}

.format-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.format-card p { color: var(--text-muted); font-size: 0.9rem; }

@media (max-width: 980px) { .formats { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .formats { grid-template-columns: 1fr; } }

/* ---------- about / duda ---------- */

.about {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about .wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.about-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(160deg, #0d2417, #071510 60%);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
}

.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.about-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(7,21,16,0.55), transparent 40%);
  pointer-events: none;
}

.about-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gradient);
  color: #0a1a10;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  border-radius: 999px;
}

.about-copy h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 6px; }
.about-copy .role { color: var(--gold-soft); font-weight: 700; font-size: 0.95rem; margin-bottom: 26px; }

.about-copy p { color: var(--text-muted); margin-bottom: 16px; font-size: 1.02rem; }

.about-stats {
  display: flex;
  gap: 34px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.about-stats div strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.7rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-stats div span { color: var(--text-dim); font-size: 0.82rem; }

@media (max-width: 900px) {
  .about .wrap { grid-template-columns: 1fr; }
  .about-photo { max-width: 360px; margin: 0 auto; }
}

/* ---------- final cta ---------- */

.final-cta {
  text-align: center;
  padding: 130px 0;
  background:
    radial-gradient(60% 70% at 50% 0%, rgba(216, 172, 92, 0.12), transparent 60%),
    var(--bg);
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 820px;
  margin: 0 auto 22px;
}

.final-cta p {
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 40px;
  font-size: 1.08rem;
}

.final-cta .cta-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---------- footer ---------- */

footer {
  border-top: 1px solid var(--line);
  padding: 48px 0;
}

footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

footer .brand { font-size: 1.05rem; }

footer .foot-links { display: flex; gap: 26px; font-size: 0.88rem; color: var(--text-muted); flex-wrap: wrap; }

footer .foot-links a:hover { color: var(--gold-soft); }

.copyright { color: var(--text-dim); font-size: 0.78rem; margin-top: 24px; text-align: center; }

/* ---------- reveal animation ---------- */

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- back link / breadcrumb ---------- */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 22px;
}

.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--gold-soft); }
.breadcrumb span.sep { opacity: 0.5; }
.breadcrumb span.current { color: var(--gold-soft); font-weight: 700; }

/* ---------- products grid (home) ---------- */

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 42px 38px;
  display: flex;
  flex-direction: column;
}

.product-card.featured {
  border-color: rgba(216, 172, 92, 0.45);
  box-shadow: 0 24px 60px -30px rgba(216, 172, 92, 0.32);
}

.product-card .ptag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
  margin-bottom: 20px;
  background: rgba(244, 241, 234, 0.08);
  color: var(--text-muted);
}

.product-card.featured .ptag {
  background: var(--gradient);
  color: #0a1a10;
}

.product-card h3 { font-size: 1.55rem; margin-bottom: 12px; }
.product-card p.pdesc { color: var(--text-muted); margin-bottom: 24px; font-size: 1rem; }

.product-card ul.plist {
  list-style: none;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-card ul.plist li {
  color: var(--text-muted);
  font-size: 0.92rem;
  padding-left: 20px;
  position: relative;
}

.product-card ul.plist li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gradient);
}

.product-card .pactions {
  margin-top: auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 860px) { .products-grid { grid-template-columns: 1fr; } }

/* ---------- product page hero ---------- */

.product-hero {
  padding: 172px 0 90px;
  background:
    radial-gradient(55% 55% at 82% 10%, rgba(216, 172, 92, 0.14), transparent 60%),
    var(--bg);
}

.product-hero h1 { font-size: clamp(2.2rem, 4.2vw, 3.2rem); margin-bottom: 18px; }

.product-hero .plede { color: var(--text-muted); font-size: 1.12rem; max-width: 680px; margin-bottom: 32px; }

.product-hero .for-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.85rem;
  color: var(--gold-soft);
  font-weight: 700;
  margin-bottom: 28px;
}

/* ---------- included list ---------- */

.included {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.included-item {
  display: flex;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}

.included-item .iicon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  color: #0a1a10;
  font-weight: 800;
}

.included-item h4 { font-size: 1rem; margin-bottom: 6px; }
.included-item p { color: var(--text-muted); font-size: 0.88rem; }

@media (max-width: 720px) { .included { grid-template-columns: 1fr; } }

/* ---------- platform badges ---------- */

.platform-row { display: flex; gap: 16px; flex-wrap: wrap; }

.platform-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 22px 10px 10px;
}

.platform-badge .picon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  color: #0a1a10;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: -0.02em;
}

.platform-badge span.pname { font-weight: 700; font-size: 0.92rem; }

/* ---------- app mockup (content calendar) ---------- */

.app-mock-wrap { display: flex; justify-content: center; }

.app-mock {
  width: 100%;
  max-width: 400px;
  background: linear-gradient(165deg, #0d2417, #071510 75%);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.65);
}

.app-mock-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.app-mock-top .app-title { font-family: "Fraunces", serif; font-size: 1.05rem; font-weight: 600; }
.app-mock-top .app-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--gradient);
}

.app-mock-sub { color: var(--text-dim); font-size: 0.78rem; margin-bottom: 16px; letter-spacing: 0.04em; text-transform: uppercase; }

.app-mock-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 20px;
}

.app-mock-dow { text-align: center; font-size: 0.62rem; color: var(--text-dim); padding-bottom: 4px; }

.app-mock-day {
  aspect-ratio: 1;
  border-radius: 8px;
  background: var(--bg-card-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  position: relative;
}

.app-mock-day.empty { background: transparent; }

.app-mock-day.has-post::after {
  content: "";
  position: absolute;
  bottom: 5px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gradient);
}

.app-mock-day.active {
  background: var(--gradient);
  color: #0a1a10;
  font-weight: 800;
}

.app-mock-list { display: flex; flex-direction: column; gap: 10px; }

.app-mock-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card-2);
  border-radius: 12px;
  padding: 10px 12px;
}

.app-mock-thumb {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--gradient);
  flex-shrink: 0;
}

.app-mock-meta { flex-grow: 1; min-width: 0; }
.app-mock-meta strong { display: block; font-size: 0.82rem; }
.app-mock-meta span { font-size: 0.72rem; color: var(--text-dim); }

.status-pill {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

.status-pill.agendado { background: rgba(216, 172, 92, 0.18); color: var(--gold-soft); }
.status-pill.producao { background: rgba(79, 174, 122, 0.2); color: var(--green-soft); }
.status-pill.publicado { background: rgba(160, 160, 160, 0.15); color: #c4c9c5; }

.app-caption {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-top: 18px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- compare box (método vs social) ---------- */

.compare-note {
  margin-top: 40px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.compare-note p { color: var(--text-muted); font-size: 0.95rem; max-width: 560px; }
.compare-note a { flex-shrink: 0; }

/* ---------- orçamento / budget request ---------- */

.orcamento {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.orcamento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.orcamento-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  text-align: center;
}

.orcamento-card .oicon {
  width: 54px; height: 54px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}

.orcamento-card.whats .oicon { background: linear-gradient(135deg, var(--green), var(--green-soft)); }
.orcamento-card.mail .oicon { background: var(--gradient); }

.orcamento-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.orcamento-card p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 22px; }

.btn-whats {
  background: linear-gradient(135deg, var(--green), var(--green-soft));
  color: #08170f;
}

.btn-whats:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(79, 174, 122, 0.5); }

@media (max-width: 720px) { .orcamento-grid { grid-template-columns: 1fr; } }
