:root {
  --ink: #18332f;
  --ink-2: #3d4c49;
  --muted: #687874;
  --paper: #fbf6f4;
  --panel: #ffffff;
  --line: #eddeda;
  --red: #b24a66;
  --red-strong: #93364f;
  --red-soft: #fdf1f5;
  --deep: #112823;
  --soft: #f9eff1;
  --gold: #c8a06a;
  --shadow: 0 24px 60px rgba(17, 40, 35, 0.12);
  --radius: 18px;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top, rgba(200, 160, 106, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(253, 241, 245, 0.9), rgba(251, 246, 244, 0) 620px),
    var(--paper);
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.field-hidden {
  position: absolute;
  left: -9999px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 26px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 60px);
  border-bottom: 1px solid rgba(24, 51, 47, 0.06);
  background: rgba(248, 244, 239, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 24px rgba(17, 40, 35, 0.04);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 230px;
  max-height: 58px;
  object-fit: contain;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--ink-2);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav a,
.header-cta,
.btn,
.inline-cta,
.solution-card a,
.footer-links a,
.whatsapp-float {
  text-decoration: none;
}

.nav a:hover,
.inline-cta:hover,
.solution-card a:hover,
.footer-links a:hover {
  color: var(--red);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.header-cta,
.btn.primary {
  background: linear-gradient(135deg, #b24a66, #93364f);
  color: white;
  box-shadow: 0 16px 34px rgba(178, 74, 102, 0.24);
}

.header-cta:hover,
.btn.primary:hover {
  transform: translateY(-1px);
  background: var(--red-strong);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  border-color: var(--line);
  backdrop-filter: blur(10px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

main {
  overflow: hidden;
}

.hero,
.pain-section,
.consequence-section,
.method-section,
.solutions-section,
.cases-section,
.differentials-section,
.founder-section,
.diagnostic-section,
.site-footer {
  padding-inline: clamp(18px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding-top: 62px;
  padding-bottom: 66px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p,
a,
span,
article {
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.45rem, 5.05vw, 4.85rem);
  line-height: 1.03;
}

h2 {
  max-width: 920px;
  font-size: clamp(2rem, 4.3vw, 4rem);
  line-height: 1.03;
}

h3 {
  font-size: 1.3rem;
  line-height: 1.18;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy p {
  max-width: 760px;
  font-size: 1.08rem;
}

.hero-lead {
  margin-top: 24px;
  color: var(--ink);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid rgba(178, 74, 102, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink-2);
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-media {
  position: relative;
  min-height: 610px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--deep);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 45, 40, 0), rgba(18, 45, 40, 0.72));
}

.hero-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  width: min(370px, calc(100% - 44px));
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
}

.hero-note strong,
.hero-note span {
  display: block;
}

.hero-note strong {
  color: var(--red);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-note span {
  margin-top: 8px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.pain-section,
.method-section,
.solutions-section,
.cases-section,
.blog-section,
.differentials-section,
.founder-section,
.diagnostic-section {
  padding-top: 92px;
  padding-bottom: 92px;
}

.pain-section,
.consequence-section,
.method-section,
.differentials-section {
  background: linear-gradient(180deg, rgba(253, 241, 245, 0.72), rgba(255, 255, 255, 0.58));
}

.section-head {
  margin-bottom: 34px;
}

.section-support {
  max-width: 850px;
  margin: 18px 0 0;
  font-size: 1.02rem;
}

.pain-grid,
.consequence-grid,
.differentials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pain-grid article,
.consequence-grid article,
.differentials-grid article,
.process article,
.solution-card,
.case-card,
.proof-strip span,
.lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.pain-grid article,
.differentials-grid article {
  min-height: 112px;
  padding: 22px;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.35;
}

.consequence-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.consequence-grid article {
  min-height: 205px;
  padding: 22px;
  box-shadow: 0 12px 34px rgba(28, 52, 48, 0.05);
}

.consequence-grid strong {
  display: block;
  min-height: 48px;
  color: var(--ink);
  font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.08rem;
  line-height: 1.2;
}

.consequence-grid strong::before {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--red);
}

.consequence-grid p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.pain-grid article::before,
.differentials-grid article::before {
  content: "✦";
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-weight: 950;
}

.support-text {
  max-width: 850px;
  margin: 28px 0 0;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 800;
}

.inline-cta {
  display: inline-flex;
  margin-top: 22px;
  color: var(--red);
  font-weight: 950;
}

.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process::before {
  content: "";
  position: absolute;
  top: 78px;
  left: 9%;
  right: 9%;
  height: 2px;
  background: linear-gradient(90deg, rgba(200, 160, 106, 0.18), rgba(178, 74, 102, 0.42), rgba(200, 160, 106, 0.18));
  z-index: 0;
}

.process article {
  position: relative;
  z-index: 1;
  min-height: 300px;
  padding: 26px;
  box-shadow: 0 14px 36px rgba(17, 40, 35, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.process article:hover {
  transform: translateY(-3px);
  border-color: rgba(178, 74, 102, 0.24);
  box-shadow: 0 18px 42px rgba(28, 52, 48, 0.1);
}

.process span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #b24a66, #93364f);
  color: white;
  font-size: 0.86rem;
  font-weight: 950;
}

.icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 32px 0 26px;
  border: 8px solid var(--panel);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fdf4f7, #fbf0f2);
  color: var(--red);
  box-shadow: 0 0 0 1px rgba(178, 74, 102, 0.12), 0 10px 22px rgba(178, 74, 102, 0.08);
}

.icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process h3 {
  margin-bottom: 8px;
}

.process strong {
  display: block;
  min-height: 42px;
  color: var(--red);
  line-height: 1.25;
}

.process p {
  margin-top: 16px;
  margin-bottom: 0;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.solution-card {
  display: flex;
  flex-direction: column;
  min-height: 565px;
  padding: 30px;
  box-shadow: 0 18px 42px rgba(17, 40, 35, 0.07);
}

.solution-card.featured {
  position: relative;
  border-color: rgba(200, 160, 106, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 248, 250, 0.98), rgba(255, 255, 255, 1)),
    var(--panel);
}

.solution-card.featured::before {
  content: "Destaque";
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(200, 160, 106, 0.14);
  color: #9a7340;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.solution-card p {
  margin-bottom: 0;
}

.solution-card ul {
  display: grid;
  gap: 11px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.solution-card li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-2);
  line-height: 1.45;
}

.solution-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.solution-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: auto;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #16342f, #112823);
  color: white;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.solution-card.featured a {
  background: var(--red);
}

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

.case-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: 28px;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 248, 245, 0.98)),
    var(--panel);
}

.case-label {
  margin: 0 0 12px;
  color: #9a7340;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.case-card h3 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.case-summary {
  margin: 0;
}

.case-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 20px;
  padding: 0 16px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #16342f, #112823);
  color: white;
  font-size: 0.82rem;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

.case-card .case-link {
  margin-top: auto;
}

.case-link:hover {
  background: var(--red);
}

.case-link.is-disabled {
  cursor: not-allowed;
  background: var(--red-soft);
  color: var(--red);
  border: 1px solid rgba(180, 5, 28, 0.22);
}

.case-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.case-points section {
  padding: 16px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fffafc, #fdf3f6);
  border: 1px solid rgba(200, 160, 106, 0.14);
}

.case-points h4 {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.case-points p {
  margin: 0;
  font-size: 0.94rem;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.proof-strip span {
  padding: 11px 18px;
  border: 1px solid rgba(200, 160, 106, 0.18);
  border-radius: 999px;
  background: rgba(255, 249, 251, 0.94);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 10px 24px rgba(17, 40, 35, 0.05);
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 20px;
  align-items: stretch;
}

.blog-stack {
  display: grid;
  gap: 18px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 16px 38px rgba(17, 40, 35, 0.07);
}

.blog-card-featured {
  padding: 36px;
  background:
    linear-gradient(180deg, rgba(255, 246, 249, 0.98), rgba(255, 255, 255, 0.96)),
    var(--panel);
  border-color: rgba(200, 160, 106, 0.22);
}

.blog-card-featured h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.08;
}

.blog-card-compact h3 {
  font-size: 1.28rem;
  line-height: 1.2;
}

.blog-label {
  margin: 0 0 12px;
  color: #9a7340;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-card h3 {
  margin-bottom: 14px;
}

.blog-card p {
  margin-top: 0;
}

.blog-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: auto;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #16342f, #112823);
  color: white;
  font-size: 0.82rem;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

.blog-card-featured a {
  width: fit-content;
  padding-inline: 18px;
}

.founder-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
}

.founder-photo {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius);
  background: var(--deep);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center 42%;
}

.founder-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 45, 40, 0), rgba(18, 45, 40, 0.24));
}

.founder-copy h3 {
  margin-top: 22px;
  color: var(--red);
}

.founder-copy p {
  font-size: 1.08rem;
}

.diagnostic-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: linear-gradient(180deg, rgba(253, 241, 245, 0.88), rgba(255, 255, 255, 0.74));
}

.hero h1,
.section-head h2,
.case-card h3,
.blog-card h3 {
  letter-spacing: -0.035em;
}

.diagnostic-copy p {
  max-width: 650px;
  font-size: 1.08rem;
}

.seo-page .hero,
.seo-page .pain-section,
.seo-page .method-section,
.seo-page .solutions-section,
.seo-page .cases-section,
.seo-page .diagnostic-section {
  padding-top: 78px;
  padding-bottom: 78px;
}

.seo-callout {
  align-content: start;
}

.seo-callout p {
  margin: 0;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 248, 245, 0.98)),
    var(--panel);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.lead-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.lead-form input:focus {
  outline: 2px solid rgba(180, 5, 28, 0.22);
  border-color: var(--red);
}

.lead-form button {
  width: 100%;
  cursor: pointer;
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
}

.form-feedback {
  min-height: 1.4em;
  margin: 0;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(220px, 0.6fr) minmax(280px, 1fr);
  gap: 30px;
  padding-top: 52px;
  padding-bottom: 52px;
  background: var(--deep);
  color: white;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
}

.site-footer img {
  width: 210px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.site-footer p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-cta h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  color: white;
}

.footer-cta .btn {
  margin-top: 22px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius);
  background: #1f8f55;
  color: white;
  font-weight: 950;
  box-shadow: 0 16px 30px rgba(31, 143, 85, 0.28);
}

@media (max-width: 1080px) {
  .hero,
  .founder-section,
  .diagnostic-section,
  .case-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media,
  .hero-media img {
    min-height: 460px;
  }

  .pain-grid,
  .consequence-grid,
  .differentials-grid,
  .solutions-grid,
  .process,
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 156px;
    max-height: 42px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 65px 12px auto 12px;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: var(--shadow);
  }

  .nav a {
    min-height: 44px;
    padding: 12px;
    border-radius: var(--radius);
  }

  body.nav-open .nav {
    display: flex;
  }

  .hero,
  .pain-section,
  .method-section,
  .solutions-section,
  .cases-section,
  .differentials-section,
  .founder-section,
  .diagnostic-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  h1 {
    font-size: clamp(2.4rem, 13vw, 3.65rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn,
  .header-cta {
    width: 100%;
  }

  .pain-grid,
  .consequence-grid,
  .differentials-grid,
  .solutions-grid,
  .process,
  .case-grid,
  .case-points {
    grid-template-columns: 1fr;
  }

  .solution-card,
  .process article {
    min-height: auto;
  }

  .blog-card-featured {
    padding: 26px;
  }

  .founder-photo {
    min-height: 320px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.86rem;
  }
}
