:root {
  --ink: #101418;
  --muted: #667085;
  --line: rgba(16, 20, 24, 0.12);
  --paper: #f7f8f6;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 22px 70px rgba(16, 20, 24, 0.12);
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
}
html[data-site="suportiva"] {
  --brand: #0b2b4c;
  --brand-2: #1d6f94;
  --accent: #59c3d6;
  --paper: #f4f7fb;
  --dark: #071727;
}
html[data-site="nutriclinic"] {
  --brand: #173d33;
  --brand-2: #8b6f3d;
  --accent: #c8a96a;
  --paper: #faf9f5;
  --dark: #121611;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 176px;
  min-height: 44px;
}
.brand img {
  width: min(198px, 48vw);
  height: auto;
}
.brand-mark {
  font-family:
    Playfair Display,
    Georgia,
    serif;
  color: var(--brand);
  font-size: 1.58rem;
  font-weight: 700;
  line-height: 1;
}
.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.84rem;
  font-weight: 800;
  color: color-mix(in srgb, var(--ink) 70%, transparent);
}
nav a,
.header-cta {
  transition:
    color 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}
nav a:hover,
.header-cta:hover {
  color: var(--brand-2);
  transform: translateY(-1px);
}
.header-cta {
  border: 1px solid color-mix(in srgb, var(--brand) 22%, transparent);
  padding: 10px 16px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(310px, 0.88fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  min-height: calc(100svh - 77px);
  padding: clamp(40px, 7vw, 92px) clamp(20px, 6vw, 86px);
}
.suportiva-hero {
  color: #fff;
  background:
    linear-gradient(135deg, #071727fa, #0b2b4cf0 54%, #1d6f94db),
    url(/assets/logo-suportiva-transparent.png);
  background-size: cover, min(520px, 80vw);
  background-repeat: no-repeat;
  background-position:
    center,
    right 6vw bottom 4vw;
}
.nutriclinic-hero {
  background:
    linear-gradient(90deg, #faf9f5fa, #faf9f5e6 54%, #173d3314),
    linear-gradient(180deg, rgba(200, 169, 106, 0.14), transparent);
}
.hero-logo {
  width: min(230px, 58vw);
  margin-bottom: 28px;
  filter: brightness(0) invert(1);
}
.hero-copy {
  min-width: 0;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--brand-2);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.suportiva-hero .eyebrow {
  color: var(--accent);
}
h1,
h2 {
  margin: 0;
  color: var(--brand);
  font-family:
    Playfair Display,
    Georgia,
    serif;
  line-height: 1.02;
  letter-spacing: 0;
}
.suportiva-hero h1,
.suportiva-hero p {
  color: #fff;
}
h1 {
  max-width: 940px;
  font-size: clamp(2.45rem, 5vw, 5rem);
}
h2 {
  max-width: 900px;
  font-size: clamp(2rem, 4vw, 4.1rem);
}
h3 {
  margin: 0;
  color: var(--brand);
  line-height: 1.22;
}
p {
  line-height: 1.72;
}
.lead {
  max-width: 760px;
  color: color-mix(in srgb, var(--ink) 78%, transparent);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
}
.hero-copy > p:not(.eyebrow):not(.lead) {
  max-width: 760px;
  color: color-mix(in srgb, var(--ink) 72%, transparent);
}
.suportiva-hero .hero-copy > p {
  color: #ffffffd1;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 26px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.button i {
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
}
.button:hover {
  transform: translateY(-2px);
}
.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow);
}
.secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--brand);
}
.suportiva-hero .primary {
  background: #fff;
  color: var(--brand);
}
.suportiva-hero .secondary {
  background: #ffffff14;
  border-color: #ffffff47;
  color: #fff;
}
.tech-visual {
  min-width: 0;
}
.dashboard-shell {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 30px);
  background: #ffffff1a;
  box-shadow: 0 30px 90px #00000047;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.dash-top {
  display: flex;
  gap: 8px;
  margin-bottom: 34px;
}
.dash-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ffffff6b;
}
.metric-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
}
.metric-row strong {
  font-size: 1.15rem;
}
.metric-row b {
  font-family:
    Playfair Display,
    Georgia,
    serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.85;
}
.chart-bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 12px;
  height: 180px;
  margin: 30px 0;
}
.chart-bars i {
  display: block;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--accent), rgba(255, 255, 255, 0.18));
}
.chart-bars i:nth-child(1) {
  height: 44%;
}
.chart-bars i:nth-child(2) {
  height: 68%;
}
.chart-bars i:nth-child(3) {
  height: 52%;
}
.chart-bars i:nth-child(4) {
  height: 84%;
}
.chart-bars i:nth-child(5) {
  height: 72%;
}
.system-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.system-grid span {
  padding: 12px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffffd1;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
}
.hero-photo {
  align-self: stretch;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 24%;
  object-position: 50% 24%;
}
.section {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 6vw, 86px);
}
.section-title {
  max-width: 980px;
  margin-bottom: 36px;
}
.section-title > p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}
.cards {
  display: grid;
  gap: 18px;
}
.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.service-card,
.mini-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--white) 86%, transparent);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 16px 44px #1014180f;
}
.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--brand) 10%, transparent);
  color: var(--brand);
  font-weight: 900;
  font-size: 0.76rem;
}
.service-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--muted);
  line-height: 1.45;
}
.service-card li:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--accent);
  vertical-align: 1px;
}
.mini-card {
  min-height: 130px;
  display: flex;
  align-items: end;
}
.mini-card h3 {
  font-size: 1.1rem;
}
.split {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}
.dark-panel {
  background: var(--dark);
  color: #ffffffc2;
}
.dark-panel h2,
.dark-panel h3 {
  color: #fff;
}
.dark-panel .section-title {
  margin-bottom: 0;
}
.solution-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.solution-list span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 16px;
  color: #fff;
  background: #ffffff0f;
  font-weight: 800;
}
.ecosystem {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  align-items: start;
  gap: clamp(40px, 7vw, 100px);
  background: #fff;
}
.ecosystem-copy {
  max-width: 780px;
}
.ecosystem-links {
  display: grid;
  gap: 10px;
}
.ecosystem-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 62px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--brand);
  background: #fff;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.ecosystem-links a:hover,
.ecosystem-links a:focus-visible {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.ecosystem-links i {
  flex: 0 0 auto;
  font-style: normal;
  color: var(--accent);
}
.ecosystem p:not(.eyebrow),
.prose p,
.about-nutri p {
  color: var(--muted);
}
.prose p {
  max-width: 820px;
  margin-top: 0;
}
.process {
  background: #fff;
}
.about-nutri {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}
.about-photo {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 28%;
  object-position: 50% 28%;
}
.credential {
  color: var(--brand);
  font-weight: 900;
}
.final-cta {
  padding: clamp(78px, 12vw, 140px) clamp(20px, 6vw, 86px);
  background: var(--brand);
  color: #fff;
  text-align: center;
}
.final-cta .eyebrow {
  color: var(--accent);
}
.final-cta h2 {
  margin: 0 auto;
  color: #fff;
}
.final-cta p:not(.eyebrow) {
  max-width: 740px;
  margin: 20px auto 28px;
  color: #ffffffc7;
}
.final-cta .primary {
  background: #fff;
  color: var(--brand);
}
footer {
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr 1fr;
  gap: 32px;
  padding: 52px clamp(20px, 6vw, 86px);
  background: #070a0d;
  color: #ffffffb8;
}
footer img {
  width: 210px;
}
footer h2 {
  color: #fff;
  font-size: 1.4rem;
}
footer a {
  color: #fff;
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}
.footer-wordmark {
  color: #fff;
  font-family:
    Playfair Display,
    Georgia,
    serif;
  font-size: 2rem;
  font-weight: 700;
}
.float-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1fb45a;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 40px #1fb45a57;
}
@media (max-width: 980px) {
  nav {
    display: none;
  }
  .hero,
  .split,
  .about-nutri {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
  }
  .hero-photo {
    min-height: 500px;
  }
  .three,
  .two {
    grid-template-columns: 1fr 1fr;
  }
  .ecosystem {
    grid-template-columns: 1fr;
  }
  footer {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .site-header {
    padding: 13px 16px;
  }
  .brand {
    min-width: 138px;
  }
  .brand img {
    width: 154px;
  }
  .brand-mark {
    font-size: 1.34rem;
  }
  .header-cta {
    padding: 9px 11px;
    font-size: 0.7rem;
  }
  .hero {
    padding-top: 36px;
  }
  .hero-photo {
    min-height: 430px;
  }
  .three,
  .two,
  .solution-list,
  .system-grid {
    grid-template-columns: 1fr;
  }
  .actions {
    flex-direction: column;
  }
  .button {
    width: 100%;
  }
  h1 {
    font-size: clamp(2.45rem, 13.5vw, 4rem);
  }
  .chart-bars {
    height: 130px;
  }
  .float-whatsapp {
    right: 16px;
    bottom: 16px;
  }
}
