:root {
  --navy: #07142a;
  --navy-2: #0b2143;
  --blue: #0f74df;
  --blue-light: #28b9f3;
  --cyan: #b8ebff;
  --ink: #0d1728;
  --muted: #64748b;
  --line: #dce5ef;
  --surface: #f4f8fc;
  --white: #ffffff;
  --green: #20b966;
  --radius-lg: 34px;
  --radius-md: 22px;
  --shadow: 0 28px 70px rgba(7, 20, 42, .13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 12px 8px 20px;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 22px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 12px 45px rgba(7, 20, 42, .08);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

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

.brand-logo {
  height: 92px;
  width: auto;
  display: block;
  object-fit: contain;
}

nav { display: flex; align-items: center; gap: 30px; color: #334155; font-size: 14px; font-weight: 650; }
nav a { transition: color .2s ease; }
nav a:hover { color: var(--blue); }

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 750;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--blue); box-shadow: 0 12px 28px rgba(15, 116, 223, .25); }
.button-primary:hover { background: #0867c8; box-shadow: 0 16px 34px rgba(15, 116, 223, .34); }
.button-small { min-height: 48px; padding: 0 20px; font-size: 14px; }
.button-white { color: var(--navy); background: var(--white); box-shadow: 0 12px 34px rgba(0, 0, 0, .18); }

.hero {
  position: relative;
  min-height: 790px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: clamp(36px, 6vw, 88px);
  max-width: 1240px;
  margin: 0 auto;
  padding: 150px 32px 82px;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  top: -130px;
  left: -310px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40, 185, 243, .18), rgba(40, 185, 243, 0) 68%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 23px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow span { width: 26px; height: 2px; background: var(--blue); }

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(48px, 6.2vw, 83px);
  line-height: .98;
  letter-spacing: -.055em;
}

h1 em, .contact h2 em { color: var(--blue); font-style: normal; }

.hero-copy {
  max-width: 590px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.65;
}

.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }
.text-link { color: var(--navy); font-size: 14px; font-weight: 750; }
.text-link span { display: inline-block; margin-left: 5px; color: var(--blue); transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, 3px); }

.whatsapp-dot { width: 10px; height: 10px; border-radius: 50%; background: #83f4b7; box-shadow: 0 0 0 5px rgba(131, 244, 183, .14); }

.hero-proof {
  display: flex;
  gap: clamp(24px, 3vw, 44px);
  margin: 48px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-proof li { display: flex; align-items: center; gap: 9px; }
.hero-proof strong { color: var(--navy); font-size: 27px; letter-spacing: -.04em; }
.hero-proof span { color: var(--muted); font-size: 11px; font-weight: 700; line-height: 1.2; text-transform: uppercase; letter-spacing: .06em; }
.hero-proof .brands-proof { align-items: flex-start; flex-direction: column; gap: 5px; }
.hero-proof .brands-proof strong { font-size: 17px; text-transform: uppercase; letter-spacing: .03em; }
.hero-proof .brands-proof span { line-height: 1.45; white-space: nowrap; }

.hero-visual {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: 38px;
  background-color: #ddecf8;
  background-image: linear-gradient(0deg, rgba(7, 20, 42, .16), transparent 45%), url("assets/manutencao-bioxprinter-1-poster.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  box-shadow: var(--shadow);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: inherit;
  box-shadow: inset 0 -120px 100px rgba(4, 25, 54, .25);
  pointer-events: none;
}

.visual-glow {
  position: absolute;
  z-index: -1;
  width: 260px;
  height: 260px;
  top: -80px;
  right: -80px;
  border-radius: 50%;
  background: var(--cyan);
  filter: blur(10px);
}

.experience-card {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  color: white;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 18px;
  background: rgba(7, 20, 42, .78);
  box-shadow: 0 16px 38px rgba(0,0,0,.18);
  backdrop-filter: blur(15px);
}

.experience-number { font-size: 34px; font-weight: 850; letter-spacing: -.06em; }
.experience-text { font-size: 11px; font-weight: 700; line-height: 1.35; letter-spacing: .04em; text-transform: uppercase; }

.status-pill {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: 999px;
  color: #173252;
  background: rgba(255,255,255,.89);
  box-shadow: 0 10px 28px rgba(7,20,42,.12);
  font-size: 11px;
  font-weight: 750;
  backdrop-filter: blur(12px);
}

.status-pill span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(32,185,102,.13); }

.services {
  position: relative;
  padding: 112px max(32px, calc((100vw - 1180px) / 2));
  background: var(--surface);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: end;
  gap: 44px;
  margin-bottom: 52px;
}

.section-kicker { display: block; margin-bottom: 15px; color: var(--blue); font-size: 12px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.section-heading h2, .contact h2 { margin-bottom: 0; font-size: clamp(38px, 4.5vw, 61px); line-height: 1.04; letter-spacing: -.045em; }
.section-heading p { max-width: 420px; margin-bottom: 2px; color: var(--muted); font-size: 17px; line-height: 1.65; }

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

.service-card {
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  padding: 31px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover { transform: translateY(-7px); border-color: #c2d7ed; box-shadow: 0 24px 55px rgba(7,20,42,.09); }
.service-card-featured { color: white; border-color: var(--navy); background: var(--navy); }
.service-card-featured::after { content: ""; position: absolute; width: 230px; height: 230px; right: -105px; bottom: -115px; border-radius: 50%; border: 44px solid rgba(40,185,243,.11); }
.card-number { align-self: flex-end; color: #a9b5c3; font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.service-card-featured .card-number { color: #7e95b2; }

.service-icon { position: relative; width: 48px; height: 48px; margin: 30px 0 33px; border-radius: 14px; background: #e9f4ff; }
.service-card-featured .service-icon { background: rgba(40,185,243,.14); }
.tool-icon::before { content: ""; position: absolute; width: 21px; height: 7px; left: 14px; top: 20px; border: 3px solid var(--blue-light); border-radius: 6px; transform: rotate(-43deg); }
.tool-icon::after { content: ""; position: absolute; width: 9px; height: 9px; left: 9px; top: 8px; border: 3px solid var(--blue-light); border-left-color: transparent; border-bottom-color: transparent; border-radius: 50%; transform: rotate(-45deg); }
.ink-icon::before { content: ""; position: absolute; width: 17px; height: 23px; left: 15px; top: 11px; border: 3px solid var(--blue); border-radius: 60% 40% 55% 45% / 65% 45% 55% 35%; transform: rotate(45deg); }
.shield-icon::before { content: ""; position: absolute; width: 21px; height: 25px; left: 13px; top: 10px; border: 3px solid var(--blue); border-radius: 12px 12px 15px 15px; clip-path: polygon(50% 0, 100% 18%, 90% 78%, 50% 100%, 10% 78%, 0 18%); }

.service-card h3 { margin-bottom: 16px; font-size: 24px; line-height: 1.2; letter-spacing: -.025em; }
.service-card p { margin-bottom: 28px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.service-card-featured p { color: #aab9cc; }
.service-card a { position: relative; z-index: 1; margin-top: auto; color: var(--blue); font-size: 14px; font-weight: 800; }
.service-card-featured a { color: #71d7ff; }
.service-card a span { display: inline-block; margin-left: 5px; transition: transform .2s ease; }
.service-card a:hover span { transform: translateX(5px); }

.brand-highlight {
  padding: 108px max(32px, calc((100vw - 1180px) / 2));
  background: var(--navy);
}

.brand-highlight-inner {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.brand-highlight-copy { color: var(--white); }
.brand-highlight-copy h2 {
  max-width: 620px;
  margin-bottom: 25px;
  font-size: clamp(40px, 4.8vw, 66px);
  line-height: 1.03;
  letter-spacing: -.048em;
}
.brand-highlight-copy p {
  max-width: 560px;
  margin-bottom: 32px;
  color: #afbed1;
  font-size: 17px;
  line-height: 1.7;
}

.brand-poster {
  position: relative;
  width: min(100%, 520px);
  margin: 0;
  justify-self: end;
}

.brand-poster::before {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 1px solid rgba(101, 211, 255, .35);
  border-radius: 30px;
}

.brand-poster img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 26px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, .34);
}

.work-showcase {
  padding: 108px max(32px, calc((100vw - 1180px) / 2));
  background: var(--white);
}

.work-showcase-inner {
  display: grid;
  grid-template-columns: minmax(270px, 390px) 1fr;
  align-items: center;
  gap: clamp(54px, 8vw, 112px);
}

.showcase-video-shell {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 9 / 16;
  justify-self: center;
  overflow: hidden;
  border-radius: 32px;
  background: var(--navy);
  box-shadow: 0 30px 70px rgba(7, 20, 42, .2);
}

.showcase-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  color: var(--navy);
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 10px 30px rgba(7, 20, 42, .15);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 800;
}

.showcase-copy { max-width: 650px; }
.showcase-copy h2 { margin-bottom: 24px; color: var(--navy); font-size: clamp(42px, 5vw, 68px); line-height: 1.02; letter-spacing: -.05em; }
.showcase-copy p { max-width: 610px; margin-bottom: 32px; color: var(--muted); font-size: 17px; line-height: 1.7; }

.contact { padding: 92px 32px 28px; background: white; }
.contact-panel {
  position: relative;
  max-width: 1180px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 60px;
  margin: 0 auto;
  padding: clamp(42px, 6vw, 78px);
  overflow: hidden;
  color: white;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 0%, rgba(40,185,243,.25), transparent 34%),
    linear-gradient(130deg, #07142a 0%, #0b2246 100%);
  box-shadow: var(--shadow);
}

.contact-panel::after { content: ""; position: absolute; width: 380px; height: 380px; right: -250px; bottom: -265px; border: 52px solid rgba(40,185,243,.12); border-radius: 50%; }
.section-kicker-light { color: #65d3ff; }
.contact h2 { margin-bottom: 24px; }
.contact h2 em { color: #65d3ff; }
.contact-copy > p { max-width: 640px; margin-bottom: 32px; color: #aebcd0; font-size: 17px; line-height: 1.65; }
.contact-details { position: relative; z-index: 1; align-self: center; padding-left: 44px; border-left: 1px solid rgba(255,255,255,.16); }
.detail-item { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.detail-label { display: block; margin-bottom: 6px; color: #7f93ae; font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.detail-item a { color: white; font-size: 16px; font-weight: 680; line-height: 1.5; }
.detail-item a:hover { color: #65d3ff; }
.coverage { margin: 20px 0 0; color: #8fa1b8; font-size: 12px; line-height: 1.5; }

footer { max-width: 1180px; display: flex; justify-content: space-between; gap: 18px; margin: 0 auto; padding: 27px 4px 0; color: #8090a4; font-size: 12px; }

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--green);
  box-shadow: 0 15px 34px rgba(32,185,102,.34);
  transition: transform .2s ease, box-shadow .2s ease;
}

.floating-whatsapp:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 19px 40px rgba(32,185,102,.42); }
.floating-whatsapp svg { width: 30px; fill: white; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding-top: 132px; }
  .hero-content { max-width: 720px; }
  .hero-visual { min-height: 560px; background-size: auto 145%; background-position: 76% 9%; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 310px; }
  .brand-highlight-inner { grid-template-columns: .8fr 1.2fr; gap: 42px; }
  .work-showcase-inner { grid-template-columns: minmax(250px, 330px) 1fr; gap: 48px; }
  .contact-panel { grid-template-columns: 1fr; }
  .contact-details { padding: 0; border: 0; }
}

@media (max-width: 680px) {
  .site-header { top: 10px; width: calc(100% - 20px); min-height: 84px; padding: 8px 10px 8px 15px; border-radius: 18px; }
  nav { display: none; }
  .brand-logo {
    height: 67px;
  }
  .header-cta { min-height: 43px; padding: 0 14px; font-size: 12px; }
  .hero { min-height: auto; gap: 48px; padding: 120px 20px 66px; }
  h1 { font-size: clamp(45px, 14vw, 62px); }
  .hero-copy { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .text-link { text-align: center; }
  .hero-proof { justify-content: space-between; gap: 10px; }
  .hero-proof li { align-items: flex-start; flex-direction: column; gap: 2px; }
  .hero-proof strong { font-size: 22px; }
  .hero-proof span { font-size: 9px; }
  .hero-proof .brands-proof strong { font-size: 14px; }
  .hero-proof .brands-proof span { white-space: normal; }
  .hero-visual { min-height: 470px; border-radius: 28px; background-size: auto 137%; background-position: 74% 7%; }
  .status-pill { right: 12px; top: 12px; font-size: 9px; }
  .experience-card { left: 13px; right: 13px; bottom: 13px; justify-content: center; }
  .services { padding: 78px 20px; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2, .contact h2 { font-size: 39px; }
  .service-card { padding: 26px; }
  .brand-highlight { padding: 78px 20px; }
  .brand-highlight-inner { grid-template-columns: 1fr; gap: 50px; }
  .brand-highlight-copy { text-align: center; }
  .brand-highlight-copy h2 { font-size: 40px; }
  .brand-highlight-copy p { font-size: 16px; }
  .brand-highlight-copy .button { width: 100%; }
  .brand-poster { width: min(91vw, 520px); justify-self: center; }
  .brand-poster::before { inset: -10px 10px 10px -10px; border-radius: 25px; }
  .brand-poster img { border-radius: 22px; }
  .work-showcase { padding: 78px 20px; }
  .work-showcase-inner { grid-template-columns: 1fr; gap: 44px; }
  .showcase-video-shell { width: min(86vw, 330px); border-radius: 27px; }
  .showcase-copy { text-align: center; }
  .showcase-copy h2 { font-size: 40px; }
  .showcase-copy p { font-size: 16px; }
  .showcase-copy .button { width: 100%; }
  .contact { padding: 65px 14px 22px; }
  .contact-panel { gap: 42px; padding: 38px 25px; border-radius: 27px; }
  .button-white { width: 100%; }
  footer { flex-direction: column; text-align: center; }
  .floating-whatsapp { width: 54px; height: 54px; right: 15px; bottom: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
