/* =============================================
   BIOANÁLISE LABORATÓRIO — STYLESHEET
   Paleta: #283866 | #399da3 | #f2f2f2
   Fonte: Ubuntu
   ============================================= */

:root {
  --navy: #283866;
  --teal: #399da3;
  --teal-light: #4bb8bf;
  --teal-dark: #2d828a;
  --light: #f2f2f2;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #eef0f3;
  --gray-400: #9ba3b2;
  --gray-600: #5f6b7c;
  --gray-800: #2d3748;
  --text: #1e2a3a;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 2px 12px rgba(40,56,102,.07);
  --shadow-md: 0 8px 32px rgba(40,56,102,.12);
  --shadow-lg: 0 20px 60px rgba(40,56,102,.15);
  --max-w: 1140px;
  --transition: all .3s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Ubuntu', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  /* prevent animation translateY from creating scrollbar or gap above header */
  position: relative;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 96px 0; }
.bg-light { background: var(--gray-100); }

/* =============================================
   SECTION HEADER
   ============================================= */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(57,157,163,.1);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 17px;
  color: var(--gray-600);
  font-weight: 300;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: white;
  font-family: 'Ubuntu', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(57,157,163,.3); }
.btn-primary.large { padding: 16px 36px; font-size: 16px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-family: 'Ubuntu', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid rgba(40,56,102,.2);
  cursor: pointer;
  transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--navy); background: rgba(40,56,102,.04); }
.btn-ghost.light { color: white; border-color: rgba(255,255,255,.4); }
.btn-ghost.light:hover { border-color: white; background: rgba(255,255,255,.1); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--teal);
  font-family: 'Ubuntu', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--teal);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover { background: var(--teal); color: white; }

/* =============================================
   HEADER
   ============================================= */
#header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(40,56,102,.06);
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .3s ease;
}
#header.scrolled {
  box-shadow: var(--shadow-sm);
}
#header.hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark {
  width: 44px;
  height: 44px;
}
.logo-mark svg { width: 100%; height: 100%; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.logo-sub {
  font-size: 10px;
  font-weight: 400;
  color: var(--gray-400);
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* Nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-600);
  padding: 8px 14px;
  border-radius: 50px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--navy); background: var(--gray-100); }

.header-actions { display: flex; align-items: center; gap: 12px; margin-left: 16px; }

.btn-results {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-results:hover { background: #1e2f5c; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--gray-200);
  gap: 4px;
}
.nav-mobile .nav-link { padding: 12px 16px; border-radius: var(--radius-sm); }
.nav-mobile .btn-results.mobile {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
}
.nav-mobile.open { display: flex; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: calc(100vh - 72px);
  min-height: 600px;
  max-height: 860px;
  overflow: hidden;
  margin-top: 72px;
  user-select: none;
  cursor: grab;
}
.hero:active { cursor: grabbing; }

/* Backgrounds — absolute stack, transition via class */
.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
  z-index: 0;
}
.hero-bg.active-bg { opacity: 1; }
.hero-bg-0 { background: linear-gradient(135deg, #eef6f7 0%, #f8fcfd 50%, #e8f4f5 100%); }
.hero-bg-1 { background: linear-gradient(135deg, #edf1f8 0%, #f5f7fc 50%, #e2eff5 100%); }
.hero-bg-2 { background: linear-gradient(135deg, #283866 0%, #1e2d5c 100%); }

/* Container: centered, full height, flex row */
.hero-container {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 80px;
  height: 100%;
  display: flex;
  align-items: center;
}

/* Slides absolutely stacked inside the container */
.slide {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .8s ease;
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Text — left side */
.slide-text {
  flex: 1;
  min-width: 0;
}
.slide.active .slide-text {
  animation: slideIn .7s ease;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.slide-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(57,157,163,.12);
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.slide-badge-light {
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.15);
}

.slide-text h1 {
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 20px;
}
.slide-text p {
  font-size: 17px;
  color: var(--gray-600);
  font-weight: 300;
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.slide-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Visual — right side */
.slide-visual {
  flex-shrink: 0;
  width: 380px;
  height: 380px;
  position: relative;
  pointer-events: none;
}
.visual-circle {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}
.v1 {
  width: 210px; height: 210px;
  background: rgba(57,157,163,.08);
  border: 2px solid rgba(57,157,163,.14);
  top: 20px; right: 40px;
  animation: float1 6s ease-in-out infinite;
}
.v2 {
  width: 130px; height: 130px;
  background: rgba(40,56,102,.06);
  border: 2px solid rgba(40,56,102,.1);
  bottom: 50px; right: 180px;
  animation: float2 7s ease-in-out infinite;
}
.v3 {
  width: 85px; height: 85px;
  background: rgba(57,157,163,.08);
  border: 2px solid rgba(57,157,163,.14);
  top: 180px; right: 10px;
  animation: float3 5s ease-in-out infinite;
}
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(10px)} }
@keyframes float3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* Hero Controls */
/* Dots — base, centralizados */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(40,56,102,.2);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.dot.active { background: var(--navy); width: 24px; border-radius: 4px; }

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--navy);
  padding: 0;
}
.stats-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 24px;
  gap: 6px;
}
.stat-num {
  font-size: 36px;
  font-weight: 700;
  color: var(--teal-light);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,.6);
  text-align: center;
  letter-spacing: .04em;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,.1);
  margin: 24px 0;
}

/* =============================================
   WHY SECTION
   ============================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
}
.why-card:hover {
  border-color: rgba(57,157,163,.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.why-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-icon.teal { background: rgba(57,157,163,.1); color: var(--teal); }
.why-icon.blue { background: rgba(40,56,102,.08); color: var(--navy); }
.why-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.65;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: rgba(57,157,163,.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card.large {
  grid-row: span 2;
  background: var(--navy);
  border-color: var(--navy);
  justify-content: flex-end;
  padding: 48px 40px;
  min-height: 320px;
}
.service-card.large::before { background: var(--teal); }
.service-card.large h3 { color: white; font-size: 22px; }
.service-card.large p { color: rgba(255,255,255,.7); }
.service-card.large .service-link { color: var(--teal-light); }
.service-card.large .service-icon { font-size: 48px; }

.service-icon { font-size: 32px; line-height: 1; }
.service-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
}
.service-card p {
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 300;
  flex: 1;
}
.service-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--teal);
  margin-top: 4px;
}
.section-cta { text-align: center; margin-top: 48px; }

/* =============================================
   UNITS SECTION
   ============================================= */
.units-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.unit-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  position: relative;
  transition: var(--transition);
}
.unit-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.unit-card.flagship {
  border-color: rgba(57,157,163,.3);
  background: linear-gradient(145deg, #fff 0%, rgba(57,157,163,.03) 100%);
}
.unit-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(57,157,163,.1);
  padding: 5px 14px;
  border-radius: 50px;
}
.unit-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(57,157,163,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  margin-bottom: 20px;
}
.unit-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}
.unit-info { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.unit-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-600);
}
.unit-row svg { flex-shrink: 0; color: var(--gray-400); margin-top: 2px; }
.unit-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--teal-dark);
  background: rgba(57,157,163,.08);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
}
.unit-highlight svg { color: var(--teal); flex-shrink: 0; }
.unit-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  border: 2px solid var(--gray-200);
  padding: 10px 22px;
  border-radius: 50px;
  transition: var(--transition);
}
.unit-map-btn:hover { border-color: var(--navy); background: var(--gray-100); }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 96px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.cta-text h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 12px;
}
.cta-text p {
  font-size: 17px;
  color: rgba(255,255,255,.8);
  font-weight: 300;
}
.cta-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.cta-actions .btn-primary { background: white; color: var(--teal-dark); }
.cta-actions .btn-primary:hover { background: var(--light); box-shadow: 0 8px 24px rgba(0,0,0,.15); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy);
  padding-top: 80px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 64px;
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
  font-weight: 300;
}
.social-links { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.social-btn:hover { border-color: var(--teal); color: var(--teal); background: rgba(57,157,163,.1); }

.footer-nav h4, .footer-contact h4 {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.footer-nav { display: flex; flex-direction: column; gap: 2px; }
.footer-nav a {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  padding: 7px 0;
  transition: var(--transition);
  font-weight: 300;
}
.footer-nav a:hover { color: white; }

.footer-contact { display: flex; flex-direction: column; gap: 0; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  padding: 7px 0;
  font-weight: 300;
  line-height: 1.5;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--teal); }
.footer-results-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--teal-light);
  border: 1px solid rgba(57,157,163,.4);
  padding: 10px 18px;
  border-radius: 50px;
  margin-top: 16px;
  transition: var(--transition);
  width: fit-content;
}
.footer-results-btn:hover { background: rgba(57,157,163,.1); border-color: var(--teal); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,.35);
}
.footer-bottom-inner a { color: rgba(255,255,255,.5); }
.footer-bottom-inner a:hover { color: var(--teal); }

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
/* =============================================
   FLOATING BUTTONS (WhatsApp + Back to Top)
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9998;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
}
.whatsapp-tooltip {
  position: absolute;
  right: 64px;
  background: var(--navy);
  color: white;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

/* Back to top */
#back-to-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 9998;
  width: 56px; height: 56px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
#back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#back-to-top:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
  transform: translateY(-2px);
}


/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1e2d5c 100%);
  padding: 96px 0 80px;
  margin-top: 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 2px solid rgba(57,157,163,.12);
}
.page-hero::before {
  content: '';
  position: absolute;
  right: 80px;
  bottom: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 2px solid rgba(57,157,163,.08);
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero .page-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-light);
  background: rgba(57,157,163,.15);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: white;
  max-width: 680px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  font-weight: 300;
  max-width: 540px;
  line-height: 1.65;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.about-text p {
  font-size: 16px;
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-blob {
  width: 380px;
  height: 380px;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  background: linear-gradient(135deg, rgba(57,157,163,.12) 0%, rgba(40,56,102,.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  animation: morphBlob 8s ease-in-out infinite;
}
@keyframes morphBlob {
  0%,100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
  50% { border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%; }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  text-align: center;
  padding: 48px 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.value-num {
  font-size: 48px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 12px;
}
.value-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.value-card p {
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.65;
}

/* =============================================
   SERVICES PAGE
   ============================================= */
.services-list { display: flex; flex-direction: column; gap: 28px; }
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 32px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition);
}
.service-row:hover { box-shadow: var(--shadow-md); border-color: rgba(57,157,163,.2); }
.service-row-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(57,157,163,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
}
.service-row-body h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-row-body p {
  font-size: 15px;
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.7;
  max-width: 600px;
}
.service-row-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--teal-dark);
  background: rgba(57,157,163,.1);
  padding: 4px 14px;
  border-radius: 50px;
}
.service-row-action { flex-shrink: 0; padding-top: 4px; }

/* =============================================
   CHECKUPS PAGE
   ============================================= */
.checkups-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.checkup-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.checkup-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.checkup-header {
  padding: 40px 36px 28px;
  background: linear-gradient(135deg, var(--navy) 0%, #1e2d5c 100%);
  position: relative;
  overflow: hidden;
}
.checkup-header::after {
  content: '';
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(57,157,163,.15);
}
.checkup-emoji { font-size: 40px; line-height: 1; margin-bottom: 16px; position: relative; z-index: 1; }
.checkup-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: white;
  position: relative;
  z-index: 1;
  margin-bottom: 6px;
}
.checkup-header .checkup-sub {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  font-weight: 300;
  position: relative;
  z-index: 1;
}
.checkup-body { padding: 32px 36px; flex: 1; display: flex; flex-direction: column; gap: 16px; }
.checkup-includes h4 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 12px;
}
.checkup-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 300;
}
.checkup-item::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.checkup-footer {
  padding: 0 36px 32px;
}
.checkup-footer .btn-primary { width: 100%; justify-content: center; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.contact-info p {
  font-size: 15px;
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(57,157,163,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.contact-item-body label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.contact-item-body span, .contact-item-body a {
  font-size: 15px;
  color: var(--navy);
  font-weight: 400;
}
.contact-item-body a:hover { color: var(--teal); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-form-wrap > p {
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 300;
  margin-bottom: 32px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: 'Ubuntu', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--text);
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: white;
  box-shadow: 0 0 0 3px rgba(57,157,163,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit .btn-primary { width: 100%; justify-content: center; padding: 16px; font-size: 16px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card.large { grid-row: span 1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-intro { gap: 48px; }
  .checkups-grid { grid-template-columns: repeat(2, 1fr); }
  .slide-visual { width: 300px; height: 300px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
  .nav-desktop, .btn-results:not(.mobile) { display: none; }
  .nav-toggle { display: flex; }
  .stats-inner { flex-wrap: wrap; justify-content: center; }
  .stat-divider { display: none; }
  .stat-item { width: 45%; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .units-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
  .hero { max-height: none; height: auto; min-height: 100vh; }
  .hero-container { height: 100vh; min-height: 600px; padding-top: 40px; padding-bottom: 80px; }
  .slide { flex-direction: column; align-items: flex-start; gap: 0; }
  .slide-text { max-width: 100%; }
  .slide-visual { display: none; }
  .hero-slides { height: auto; }
  .about-intro { grid-template-columns: 1fr; }
  .about-blob { width: 260px; height: 260px; font-size: 72px; }
  .values-grid { grid-template-columns: 1fr; }
  .checkups-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 36px 28px; }
  .service-row { grid-template-columns: 60px 1fr; }
  .service-row-action { grid-column: 1/-1; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .slide-actions { flex-direction: column; }
  .slide-actions .btn-primary, .slide-actions .btn-ghost { width: 100%; justify-content: center; }
  .unit-card { padding: 36px 28px; }
  .hero-controls { bottom: 20px; }
}

/* =============================================
   CLIP-SLIDE — Palavras sobem do corte
   ============================================= */
.clip-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1.1;
}
.clip-word-inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform .65s cubic-bezier(.16,1,.3,1), opacity .3s ease;
}
.clip-word-inner.visible {
  transform: translateY(0);
  opacity: 1;
}


