.elementor-kit-10{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-10 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS */:root {
  --ink: #0b1115;
  --muted: #5b646b;
  --paper: #ffffff;
  --soft: #f4f7f7;
  --line: #dbe3e4;
  --teal: #083c4e;
  --teal-2: #0e5b70;
  --orange: #f27a1a;
  --charcoal: #111111;
  --shadow: 0 18px 44px rgba(12, 25, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 5vw;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(219, 227, 228, 0.72);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, height 180ms ease;
}

.site-header.is-scrolled {
  height: 66px;
  box-shadow: 0 12px 36px rgba(5, 30, 38, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 150px;
}

.brand img {
  width: 150px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--teal);
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--teal);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 126px 5vw 70px;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 12, 16, 0.98), rgba(2, 12, 16, 0.9) 54%, rgba(2, 12, 16, 0.5)),
    url("assets/hero-clean-lentes.png") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  width: min(780px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-size: 3.35rem;
  line-height: 1.05;
  font-weight: 800;
}

.hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  background: var(--orange);
}

.button.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.46);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  min-height: 126px;
  padding: 26px 5vw;
  background: var(--paper);
}

.trust-strip strong {
  display: block;
  color: var(--teal);
  font-size: 1.08rem;
}

.trust-strip span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.96rem;
}

.section {
  padding: 88px 5vw;
}

.section.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 52px;
  align-items: center;
}

.section.split.reverse {
  grid-template-columns: minmax(420px, 1.08fr) minmax(0, 0.92fr);
}

.section-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.feature-list span {
  padding: 8px 12px;
  color: var(--teal);
  background: #e9f2f4;
  border: 1px solid #cfe0e4;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.media-frame {
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.dark-band {
  color: #fff;
  background: var(--charcoal);
}

.dark-band .section-heading p:not(.eyebrow),
.dark-band .differentials-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  width: min(900px, 100%);
  margin-bottom: 38px;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.differentials-grid article {
  padding: 28px;
  background: #1c1c1c;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.differentials-grid .number {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
}

.differentials-grid h3,
.lens-card h3,
.process-steps h3,
.partner-grid h3 {
  margin: 10px 0 8px;
  font-size: 1.23rem;
  line-height: 1.2;
}

.differentials-grid p,
.lens-card p,
.process-steps p,
.partner-grid p {
  margin: 0;
  color: var(--muted);
}

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

.lens-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(12, 25, 31, 0.08);
}

.lens-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.lens-card-body {
  padding: 24px;
}

.tag {
  display: inline-flex;
  margin: 0 0 6px;
  padding: 5px 9px;
  color: var(--teal);
  background: #eaf3f5;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.lens-card ul {
  display: grid;
  gap: 6px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--teal);
  font-size: 0.94rem;
  font-weight: 700;
}

.lens-card li::before {
  color: var(--orange);
  content: "• ";
}

.technology-table {
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.table-head {
  color: #fff;
  background: var(--teal);
  font-weight: 800;
}

.table-head span,
.table-row span {
  padding: 16px 18px;
}

.table-row {
  background: #fff;
  border-top: 1px solid var(--line);
}

.table-row span + span,
.table-head span + span {
  border-left: 1px solid var(--line);
}

.process-section {
  background: var(--soft);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 42px;
  align-items: stretch;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.process-steps article {
  min-height: 210px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-steps strong {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
}

.process-media {
  overflow: hidden;
  min-height: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.media-stack {
  display: grid;
  gap: 16px;
}

.media-stack img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(12, 25, 31, 0.08);
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--teal);
  font-weight: 900;
  border-bottom: 2px solid var(--orange);
}

.partners-section {
  background: var(--teal);
  color: #fff;
}

.partners-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
}

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

.partner-grid article {
  min-height: 240px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.partner-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.client-meta {
  display: inline-flex;
  margin-top: 18px;
  padding: 7px 10px;
  color: #fff;
  border: 1px dashed rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
}

.partner-logo {
  display: grid;
  place-items: center;
  min-height: 62px;
  padding: 12px;
  color: var(--teal);
  background: #fff;
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
}

.location-section {
  padding-top: 0;
  background: linear-gradient(180deg, var(--teal) 0 32%, #fff 32% 100%);
}

.location-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

address {
  margin-top: 22px;
  color: var(--teal);
  font-style: normal;
  font-weight: 800;
}

.map-preview {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, transparent 24px, rgba(8, 60, 78, 0.1) 25px, transparent 26px),
    linear-gradient(0deg, transparent 24px, rgba(8, 60, 78, 0.1) 25px, transparent 26px),
    #edf4f5;
  background-size: 64px 64px;
  border: 1px solid #c9d9dc;
  border-radius: 8px;
}

.map-preview::before {
  position: absolute;
  width: 44px;
  height: 44px;
  background: var(--orange);
  border: 8px solid #fff;
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 12px 26px rgba(6, 47, 63, 0.24);
  content: "";
  transform: rotate(-45deg);
}

.map-preview span {
  position: relative;
  margin-top: 102px;
  padding: 8px 12px;
  color: #fff;
  background: var(--teal);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 50px;
  align-items: start;
  background:
    linear-gradient(rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.97)),
    url("assets/contato-laboratorio.png") center / cover no-repeat;
}

.contact-intro p:not(.eyebrow) {
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  color: var(--teal);
  font-weight: 800;
}

.contact-list a {
  width: fit-content;
  border-bottom: 1px solid rgba(8, 60, 78, 0.28);
}

.contact-slot {
  width: fit-content;
  padding: 7px 10px;
  color: var(--muted);
  border: 1px dashed #b9c9cc;
  border-radius: 8px;
  font-size: 0.94rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--teal);
  font-size: 0.92rem;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  color: var(--ink);
  background: #f9fbfb;
  border: 1px solid #cbdadd;
  border-radius: 8px;
  outline: 0;
  padding: 10px 12px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 122, 26, 0.16);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 5vw;
  color: #fff;
  background: var(--charcoal);
}

.site-footer img {
  width: 128px;
  height: 48px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 18px;
    font-size: 0.88rem;
  }

  .hero h1,
  .section h2 {
    font-size: 2.55rem;
  }

  .section.split,
  .section.split.reverse,
  .process-layout,
  .location-card,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .lens-grid,
  .differentials-grid,
  .partner-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 68px;
    padding: 0 18px;
  }

  .brand img {
    width: 132px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 16px 18px 22px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(5, 30, 38, 0.14);
    transform: translateY(-130%);
    transition: transform 200ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 78vh;
    padding: 110px 18px 54px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(2, 12, 16, 0.88), rgba(2, 12, 16, 0.58)),
      url("assets/hero-clean-lentes.png") center / cover no-repeat;
  }

  .hero h1,
  .section h2 {
    font-size: 2.08rem;
  }

  .hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .section {
    padding: 64px 18px;
  }

  .trust-strip,
  .lens-grid,
  .differentials-grid,
  .partner-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    min-height: auto;
    padding: 20px 18px;
  }

  .table-head {
    display: none;
  }

  .table-row {
    display: grid;
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .table-row span {
    padding: 8px 0;
  }

  .table-row span + span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .process-media img {
    min-height: 260px;
  }

  .location-card {
    padding: 22px;
  }

  .map-preview {
    min-height: 260px;
  }

  .contact-form {
    padding: 22px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}/* End custom CSS */