/* ============================================================
   TRANSMEDIC BRASIL — CSS Premium V3
   Design System: Dark Navy + Blue + Glass + Animações
   ============================================================ */

/* ---- RESET & VARS ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #1E6FDE;
  --blue-light: #4A9EFF;
  --blue-glow:  #2D7AFF;
  --cyan:       #00C8FF;
  --navy:       #040B1A;
  --navy-mid:   #071428;
  --navy-card:  #0C1D38;
  --navy-border:#142850;
  --white:      #FFFFFF;
  --off-white:  #E8F0FE;
  --text-muted: #8CA5C8;
  --green:      #25D366;
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --shadow-card: 0 4px 32px rgba(0,0,0,.35);
  --shadow-glow: 0 0 40px rgba(30,111,222,.3);
  --transition:  .3s cubic-bezier(.4,0,.2,1);
  --font:        'Inter', system-ui, sans-serif;
  --font-alt:    'Space Grotesk', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
select, input, textarea { font-family: inherit; font-size: inherit; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--navy-border); border-radius: 999px; }

/* ================================================
   PAGE LOADER
   ================================================ */
.page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo {
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
  margin-bottom: 2rem;
}
.loader-logo span {
  font-family: var(--font-alt);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--text-muted);
}
.loader-logo svg { animation: pulse-scale 1.4s ease-in-out infinite; }
@keyframes pulse-scale {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.1); opacity: .7; }
}
.loader-bar-wrap {
  width: 200px; height: 2px;
  background: var(--navy-border);
  border-radius: 999px;
  overflow: hidden;
  margin: 0 auto 1rem;
}
.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 999px;
  width: 0%;
  transition: width .1s linear;
}
.loader-msg { font-size: .75rem; color: var(--text-muted); letter-spacing: .05em; }

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 1.5rem;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(4, 11, 26, .9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 8px 32px rgba(0,0,0,.3);
  padding: 0 1.5rem;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem;
  height: 72px;
}

/* Logo */
.nav-logo {
  display: flex; align-items: center; gap: .75rem;
  flex-shrink: 0;
}
.logo-cross {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 16px rgba(30,111,222,.5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.nav-logo:hover .logo-cross {
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 0 24px rgba(30,111,222,.7);
}
.logo-cross svg circle { stroke: rgba(255,255,255,.25); }
.logo-cross svg path { stroke: #fff; }
.logo-words {
  display: flex; flex-direction: column; line-height: 1;
}
.logo-main {
  font-family: var(--font-alt);
  font-size: 1.1rem; font-weight: 700;
  color: var(--white);
  letter-spacing: -.03em;
}
.logo-sub {
  font-size: .65rem; font-weight: 500;
  color: var(--text-muted); letter-spacing: .05em;
}

/* Links */
.nav-links {
  display: flex; gap: .25rem; align-items: center;
  list-style: none; margin-left: auto;
}
.nav-link {
  font-size: .82rem; font-weight: 500;
  color: var(--text-muted);
  padding: .5rem .85rem;
  border-radius: 999px;
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--blue-light);
  border-radius: 999px;
  transition: width var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 20px; }
.nav-link.active { color: var(--white); }
.nav-link.active::after { width: 20px; }

/* CTA Nav */
.nav-cta {
  display: flex; align-items: center; gap: .5rem;
  background: var(--green);
  color: #fff;
  font-size: .8rem; font-weight: 700;
  padding: .55rem 1.2rem;
  border-radius: 999px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.nav-cta:hover {
  background: #1db954;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  width: 32px; padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block; height: 2px; border-radius: 2px;
  background: var(--white);
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================
   MOBILE DRAWER
   ================================================ */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 1100;
  pointer-events: none; visibility: hidden;
}
.mobile-drawer.open { pointer-events: all; visibility: visible; }
.drawer-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(4px);
  opacity: 0; transition: opacity .35s ease;
}
.mobile-drawer.open .drawer-overlay { opacity: 1; }
.drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw);
  background: rgba(7, 20, 40, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem 1.5rem;
  display: flex; flex-direction: column; gap: .5rem;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.mobile-drawer.open .drawer-panel { transform: translateX(0); }
.drawer-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy-card);
  color: var(--text-muted);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
.drawer-logo {
  font-family: var(--font-alt);
  font-size: 1.2rem; font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem; margin-top: .5rem;
}
.drawer-link {
  font-size: .95rem; font-weight: 500;
  color: var(--text-muted);
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.drawer-link:hover { background: var(--navy-card); color: var(--white); }
.drawer-cta {
  margin-top: 1rem;
  background: var(--green);
  color: #fff; font-weight: 700;
  padding: .85rem 1rem;
  border-radius: var(--radius-md);
  text-align: center;
}

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  overflow: hidden;
}

/* Canvas partículas */
.hero-canvas {
  position: absolute; inset: 0;
  z-index: 1; pointer-events: none;
}

/* Media (vídeo / imagem) */
.hero-media {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .35;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(4,11,26,.97) 0%,
    rgba(7,20,40,.8) 50%,
    rgba(4,11,26,.7) 100%
  );
}

/* Grid mesh decorativo */
.hero-grid-deco {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(30,111,222,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,111,222,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 60% 40%, black 40%, transparent 100%);
}

/* Orbs */
.orb {
  position: absolute; z-index: 1;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orb-drift 8s ease-in-out infinite alternate;
}
.orb-blue {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(30,111,222,.35) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.orb-cyan {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,200,255,.15) 0%, transparent 70%);
  top: 30%; left: 40%;
  animation-delay: -3s;
}
.orb-white {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 70%);
  bottom: 20%; left: -100px;
  animation-delay: -5s;
}
@keyframes orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, -20px) scale(1.05); }
}

/* Hero layout */
.hero-wrap {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  flex: 1;
  padding-top: 8rem;
  padding-bottom: 6rem;
}

/* Copy */
.hero-copy { display: flex; flex-direction: column; gap: 0; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(30,111,222,.15);
  border: 1px solid rgba(30,111,222,.3);
  color: var(--blue-light);
  font-size: .75rem; font-weight: 600;
  padding: .45rem 1rem;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
  opacity: 0; transform: translateY(-10px);
  animation: fade-in-up .6s .5s forwards;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }

/* H1 */
.hero-h1 {
  display: flex; flex-direction: column;
  font-family: var(--font);
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -.04em;
  margin-bottom: 1.5rem;
}
.h1-line {
  display: block;
  color: var(--white);
  opacity: 0; transform: translateX(-24px);
}
.h1-line.visible { opacity: 1; transform: translateX(0); transition: opacity .5s ease, transform .5s ease; }
.h1-accent { color: var(--off-white); }
.h1-glow {
  background: linear-gradient(90deg, var(--blue-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.h1-always { font-size: .65em; color: var(--text-muted); }

.hero-p {
  font-size: 1.1rem;
  color: rgba(232,240,254,.7);
  line-height: 1.75;
  max-width: 34rem;
  margin-bottom: 2rem;
  opacity: 0; transform: translateY(12px);
  animation: fade-in-up .6s 1.2s forwards;
}
.hero-p strong { color: var(--white); font-weight: 700; }

@keyframes fade-in-up {
  to { opacity: 1; transform: translate(0); }
}

/* Botões hero */
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
  opacity: 0; transform: translateY(12px);
  animation: fade-in-up .6s 1.5s forwards;
}

.btn-primary-hero {
  display: flex; align-items: center; gap: .6rem;
  background: linear-gradient(135deg, var(--blue), var(--blue-glow));
  color: #fff; font-weight: 700; font-size: .9rem;
  padding: .9rem 2rem;
  border-radius: 999px;
  box-shadow: 0 4px 24px rgba(30,111,222,.5), inset 0 1px 0 rgba(255,255,255,.15);
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.btn-primary-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.1), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.btn-primary-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(30,111,222,.65), inset 0 1px 0 rgba(255,255,255,.15);
}
.btn-primary-hero:hover::before { opacity: 1; }
.btn-primary-hero svg { flex-shrink: 0; }

.btn-ghost-hero {
  display: flex; align-items: center; gap: .75rem;
  color: var(--off-white); font-size: .9rem; font-weight: 600;
  padding: .9rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.btn-ghost-hero:hover {
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.05);
  transform: translateY(-1px);
}
.ghost-play {
  width: 30px; height: 30px;
  background: rgba(30,111,222,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Trust pills */
.hero-trust {
  display: flex; align-items: center; gap: .75rem; flex-wrap: wrap;
  opacity: 0; transform: translateY(8px);
  animation: fade-in-up .6s 1.8s forwards;
}
.trust-pill {
  display: flex; align-items: center; gap: .4rem;
  font-size: .78rem; color: var(--text-muted); font-weight: 500;
}
.trust-sep {
  width: 1px; height: 14px;
  background: rgba(255,255,255,.15);
}

/* ---- VISUAL (card 3D) ---- */
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateX(30px);
  animation: fade-in-left .7s 1s forwards;
}
@keyframes fade-in-left { to { opacity: 1; transform: translateX(0); } }

.card3d { position: relative; width: 100%; max-width: 580px; transition: transform .1s ease; will-change: transform; }
.card3d-img { position: relative; overflow: visible; border: none; background: transparent; }
.card3d-img img { width: 100%; height: auto; object-fit: contain; display: block; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5)); mix-blend-mode: normal; }

/* Gradient overlay sobre a imagem */


/* Badge "live" no topo da imagem */
.card3d-top-badge {
  position: absolute; top: 1rem; left: 1rem;
  display: flex; align-items: center; gap: .5rem;
  background: rgba(4,11,26,.8);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  color: var(--white); font-size: .75rem; font-weight: 600;
  padding: .4rem .9rem;
  border-radius: 999px;
  z-index: 2;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: blink 1.5s ease-in-out infinite;
}

/* Float cards */
.float-card {
  position: absolute;
  background: rgba(7,20,40,.85);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: .75rem 1.1rem;
  display: flex; align-items: center; gap: .75rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  white-space: nowrap;
  animation: float-bob 4s ease-in-out infinite;
}
.fc-temp { bottom: -1.5rem; left: -2rem; animation-delay: 0s; }
.fc-delivery { top: 40%; right: -2rem; animation-delay: -2s; }
.fc-stars {
  bottom: 3rem; right: -1.5rem;
  flex-direction: column; align-items: flex-start; gap: .2rem;
  animation-delay: -4s;
}
@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.fc-emoji { font-size: 1.4rem; }
.fc-info { display: flex; flex-direction: column; }
.fc-info b { font-size: .85rem; font-weight: 700; color: var(--white); }
.fc-info span { font-size: .7rem; color: var(--text-muted); }
.star-row { color: #FFD700; font-size: .9rem; }
.fc-stars span { font-size: .7rem; color: var(--text-muted); }

/* Geo decorações */
.geo-ring {
  position: absolute; top: -3rem; right: -3rem;
  width: 200px; height: 200px; border-radius: 50%;
  border: 1px solid rgba(30,111,222,.2);
  animation: spin-slow 20s linear infinite;
  pointer-events: none; z-index: -1;
}
.geo-dots {
  position: absolute; bottom: -2rem; left: -2rem;
  width: 80px; height: 80px;
  background-image: radial-gradient(circle, rgba(30,111,222,.4) 1px, transparent 1px);
  background-size: 12px 12px;
  pointer-events: none; z-index: -1;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  z-index: 2;
  opacity: 0; animation: fade-in-up .6s 2.5s forwards;
}
.scroll-line-anim {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--blue-light));
  animation: scroll-anim 1.5s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.scroll-cue span { font-size: .68rem; color: var(--text-muted); letter-spacing: .08em; }

/* ================================================
   METRICS STRIP
   ================================================ */
.metrics-strip {
  background: linear-gradient(90deg, rgba(12,29,56,.95) 0%, rgba(20,40,80,.95) 50%, rgba(12,29,56,.95) 100%);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
  padding: 3rem 1.5rem;
}
.metrics-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.metric {
  flex: 1; min-width: 160px;
  text-align: center; padding: 1rem 2rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity .5s ease var(--d), transform .5s ease var(--d);
}
.metric.visible { opacity: 1; transform: translateY(0); }
.metric-sep {
  width: 1px; height: 60px;
  background: var(--navy-border);
  flex-shrink: 0;
}
.metric-num {
  font-family: var(--font-alt);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--white), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.metric-lbl {
  font-size: .8rem; color: var(--text-muted);
  font-weight: 500; margin-top: .25rem;
}
.metric-bar {
  height: 2px; background: var(--navy-border);
  border-radius: 999px; overflow: hidden;
  margin-top: .75rem;
}
.metric-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 999px;
  width: 0%;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}
.metric-fill.animated { width: var(--w); }

/* ================================================
   REVEAL ANIMATIONS (IntersectionObserver)
   ================================================ */
.reveal-fade {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease var(--d, 0s), transform .6s ease var(--d, 0s);
}
.reveal-fade.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ================================================
   TYPOGRAPHY HELPERS
   ================================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  display: block; width: 24px; height: 2px;
  background: var(--blue-light); border-radius: 999px;
}

.sec-title {
  font-family: var(--font);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 1rem;
}
.grad-text {
  background: linear-gradient(90deg, var(--blue-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sec-subtitle, .sec-body {
  color: var(--text-muted); line-height: 1.75; font-size: .95rem;
}
.sec-subtitle { max-width: 38rem; margin: 0 auto .5rem; }
.sec-body { margin-bottom: .75rem; }
.sec-body strong { color: var(--off-white); }
.sec-header { text-align: center; margin-bottom: 3.5rem; }

/* ================================================
   ABOUT SECTION
   ================================================ */
.about-section { background: var(--navy); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Imagens empilhadas */
.about-imgs { position: relative; }
.img-stack { position: relative; }
.img-main-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
}
.img-main-wrap img, .img-main-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-sec-wrap {
  position: absolute;
  bottom: -3rem; right: -3rem;
  width: 55%; border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--navy);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
}
.img-sec-wrap img { width: 100%; height: 100%; object-fit: cover; }
.img-badge-float {
  position: absolute;
  top: 1.5rem; left: -1.5rem;
  background: linear-gradient(135deg, var(--blue), var(--blue-glow));
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(30,111,222,.5);
}
.badge-big-num {
  display: block;
  font-family: var(--font-alt);
  font-size: 1.75rem; font-weight: 700;
  color: #fff;
}
.badge-big-txt {
  font-size: .7rem; color: rgba(255,255,255,.8);
  font-weight: 500; line-height: 1.3;
}

/* Feature list */
.feat-list {
  margin-top: 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.feat-list li {
  display: flex; gap: 1rem; align-items: flex-start;
}
.feat-ico {
  width: 42px; height: 42px;
  background: rgba(30,111,222,.15);
  border: 1px solid rgba(30,111,222,.25);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--blue-light);
  transition: background var(--transition), transform var(--transition);
}
.feat-list li:hover .feat-ico {
  background: rgba(30,111,222,.25);
  transform: scale(1.05);
}
.feat-list li div strong { display: block; font-size: .92rem; color: var(--white); font-weight: 700; margin-bottom: .2rem; }
.feat-list li div p { font-size: .82rem; color: var(--text-muted); }

/* ================================================
   SERVICES SECTION
   ================================================ */
.services-section {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.svc-featured { grid-column: 1 / -1; }

.svc-card {
  position: relative;
  background: rgba(12, 29, 56, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: .9rem;
  opacity: 0; transform: translateY(24px);
  transition: opacity .5s ease var(--d), transform .5s ease var(--d),
              border-color .3s ease, box-shadow .3s ease, transform .3s ease;
  overflow: hidden;
}
.svc-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 60% at 100% 0%, rgba(30,111,222,.18), transparent 60%);
}
.svc-card.visible { opacity: 1; transform: translateY(0); }
.svc-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue-light);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(74, 158, 255, 0.15);
}
.svc-card > * { position: relative; z-index: 1; }

/* Featured (split horizontal) */
.svc-featured {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 2rem;
  padding: 2.25rem;
}
.svc-featured-left { display: flex; flex-direction: column; gap: .85rem; padding-right: 1.5rem; border-right: 1px solid rgba(255,255,255,.07); }
.svc-featured-right { display: flex; flex-direction: column; gap: 1rem; }
.svc-featured-left h3 { font-size: 1.5rem; }

/* Typography pieces */
.svc-eyebrow {
  font-size: .68rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase;
  color: var(--blue-light);
}
.svc-card h3 {
  font-size: 1.2rem; font-weight: 800;
  color: var(--white); letter-spacing: -.01em;
  line-height: 1.25;
}
.svc-hook {
  font-size: .92rem; line-height: 1.55; color: var(--white);
  font-weight: 500;
}
.svc-card p, .svc-featured-right > p {
  font-size: .85rem; color: var(--text-muted); line-height: 1.7;
}

/* Icon wrap with color variants */
.svc-icon-wrap {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(30,111,222,.25), rgba(30,111,222,.08));
  border: 1px solid rgba(30,111,222,.28);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-light);
  transition: transform var(--transition), background var(--transition);
}
.svc-card:hover .svc-icon-wrap { transform: rotate(-6deg) scale(1.05); }
.svc-icon-onc { color: #ff7a8a; background: linear-gradient(135deg, rgba(255,122,138,.22), rgba(255,122,138,.05)); border-color: rgba(255,122,138,.3); }
.svc-icon-np  { color: #6ee7b7; background: linear-gradient(135deg, rgba(110,231,183,.22), rgba(110,231,183,.05)); border-color: rgba(110,231,183,.3); }
.svc-icon-bio { color: var(--cyan); background: linear-gradient(135deg, rgba(0,200,255,.22), rgba(0,200,255,.05)); border-color: rgba(0,200,255,.3); }
.svc-icon-sos { color: #fbbf24; background: linear-gradient(135deg, rgba(251,191,36,.22), rgba(251,191,36,.05)); border-color: rgba(251,191,36,.3); }

/* Specs list (definition list grid) */
.svc-specs-list {
  display: grid; gap: .55rem;
  margin: 0;
  padding: .75rem 0;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.svc-specs-list > div {
  display: grid; grid-template-columns: 38% 1fr; gap: .75rem;
  align-items: baseline;
}
.svc-specs-list dt {
  font-size: .68rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-muted);
}
.svc-specs-list dd {
  font-size: .82rem; color: var(--white); font-weight: 600; margin: 0;
  line-height: 1.4;
}

/* Indicado para */
.svc-indicado { display: flex; flex-direction: column; gap: .4rem; }
.svc-indicado-label {
  font-size: .68rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-muted);
}
.svc-indicado ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: .5rem .8rem;
}
.svc-indicado li {
  position: relative; padding-left: 1rem;
  font-size: .8rem; color: var(--white);
  flex: 0 0 calc(50% - .4rem);
}
.svc-indicado li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--blue-light); font-weight: 800; font-size: .85rem;
}

/* Tags */
.svc-tags { display: flex; gap: .5rem; flex-wrap: wrap; }
.svc-tags span {
  font-size: .7rem; font-weight: 700;
  background: rgba(30,111,222,.15);
  border: 1px solid rgba(30,111,222,.28);
  color: var(--blue-light);
  padding: .25rem .7rem;
  border-radius: 999px;
}

/* Link */
.svc-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .82rem; font-weight: 700; color: var(--blue-light);
  margin-top: auto; padding-top: .25rem;
  transition: gap var(--transition);
}
.svc-link:hover { gap: .7rem; }

/* Specs strip (Soluções e Logística) */
.svc-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 0 0 2.25rem;
  padding: 1.25rem 1.5rem;
  background: rgba(12, 29, 56, .55);
  border: 1px solid rgba(30, 111, 222, .25);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.svc-spec {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 0 .5rem;
  border-right: 1px solid rgba(255, 255, 255, .06);
}
.svc-spec:last-child { border-right: 0; }
.svc-spec-num {
  font-size: 1.85rem; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--cyan), var(--blue-light));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: .35rem;
}
.svc-spec-txt {
  font-size: .78rem; color: var(--text-muted);
  letter-spacing: .02em; line-height: 1.4;
}
@media (max-width: 1024px) {
  .svc-specs { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .svc-spec:nth-child(2) { border-right: 0; }
}
@media (max-width: 480px) {
  .svc-specs { grid-template-columns: 1fr; padding: 1rem; }
  .svc-spec { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.06); padding-bottom: .85rem; }
  .svc-spec:last-child { border-bottom: 0; padding-bottom: 0; }
}

/* ================================================
   PROCESS SECTION
   ================================================ */
.process-section { background: var(--navy); }
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: .75rem;
}
.step-num {
  font-family: var(--font-alt);
  font-size: .75rem; font-weight: 700;
  color: var(--blue-light);
  letter-spacing: .15em;
}
.step-line {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, var(--blue), transparent);
  position: absolute;
  top: 72px;
  left: 50%;
  width: 100%;
  z-index: 0;
}
.step-line.last { display: none; }
.step-card {
  background: rgba(12, 29, 56, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  width: 100%;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.process-step:hover .step-card {
  border-color: var(--blue-light);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,.4), 0 0 20px rgba(74, 158, 255, 0.15);
}
.step-ico {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blue), var(--blue-glow));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: #fff; margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(30,111,222,.4);
}
.step-card h3 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.step-card p { font-size: .8rem; color: var(--text-muted); line-height: 1.6; }

/* ================================================
   DIFERENCIAIS SECTION
   ================================================ */
.diff-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.diff-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%,
    rgba(30,111,222,.12) 0%,
    rgba(4,11,26,.98) 70%);
  z-index: 0;
}
.diff-section .container { position: relative; z-index: 1; }

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.diff-card {
  position: relative;
  background: rgba(12, 29, 56, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  overflow: hidden;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.diff-card:hover {
  border-color: var(--blue-light);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(74, 158, 255, 0.2);
}
.diff-glow {
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(30,111,222,.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: opacity var(--transition);
}
.diff-card:hover .diff-glow { opacity: 1.5; }
.diff-ico {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(30,111,222,.25), rgba(30,111,222,.1));
  border: 1px solid rgba(30,111,222,.3);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-light);
  margin-bottom: 1.25rem;
  transition: background var(--transition);
}
.diff-card:hover .diff-ico { background: linear-gradient(135deg, rgba(30,111,222,.4), rgba(30,111,222,.2)); }
.diff-card h3 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.diff-card p { font-size: .82rem; color: var(--text-muted); line-height: 1.65; }

/* Cert pills (marquee) */
.cert-row-wrap {
  overflow: hidden;
  margin-top: .5rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.cert-row {
  display: flex; gap: .75rem; flex-wrap: nowrap;
  width: max-content;
  animation: cert-marquee 26s linear infinite;
}
.cert-row-wrap:hover .cert-row { animation-play-state: paused; }
@keyframes cert-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.cert-pill {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em;
  color: var(--blue-light);
  border: 1px solid rgba(30,111,222,.35);
  background: rgba(30,111,222,.1);
  padding: .4rem 1.1rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: background var(--transition);
}
.cert-pill:hover { background: rgba(30,111,222,.2); }
@media (prefers-reduced-motion: reduce) {
  .cert-row { animation: none; }
}

/* ================================================
   GALLERY / INFORMATIVO
   ================================================ */
.gallery-section { background: var(--navy-mid); }

/* Explicativo Nutrição Parenteral (pergunta-guia + cards de resposta) */
.info-explainer {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 1.5rem;
  align-items: stretch;
}
.info-lead {
  position: relative;
  background: linear-gradient(150deg, var(--navy-card) 0%, rgba(20,40,80,.6) 100%);
  border: 1px solid rgba(30,111,222,.25);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: center; gap: 1rem;
}
.info-lead::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
}
.info-lead-eyebrow {
  font-size: .68rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase;
  color: var(--blue-light);
}
.info-lead-q {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 800; line-height: 1.3; letter-spacing: -.01em;
  color: var(--white);
}
.info-lead-q em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cyan), var(--blue-light));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.info-lead-sub {
  font-size: .9rem; color: var(--text-muted); line-height: 1.65;
}
.info-cards { display: grid; gap: 1rem; }
.info-card {
  display: flex; align-items: flex-start; gap: 1.1rem;
  background: rgba(12, 29, 56, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}
.info-card:hover {
  border-color: rgba(30,111,222,.45);
  transform: translateY(-3px);
  background: rgba(12, 29, 56, 0.9);
}
.info-card-ico {
  flex-shrink: 0;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(30,111,222,.25), rgba(30,111,222,.08));
  border: 1px solid rgba(30,111,222,.28);
  border-radius: var(--radius-md);
  color: var(--blue-light);
  transition: transform var(--transition);
}
.info-card:hover .info-card-ico { transform: scale(1.06); }
.info-card-body { display: flex; flex-direction: column; gap: .35rem; min-width: 0; }
.info-card-body h5 {
  font-size: 1.02rem; font-weight: 700; color: var(--white); letter-spacing: -.01em;
}
.info-card-body p {
  font-size: .87rem; color: var(--text-muted); line-height: 1.65;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testi-section { background: var(--navy); }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.testi-card {
  background: rgba(12, 29, 56, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute; top: .75rem; right: 1.25rem;
  font-size: 4rem; line-height: 1;
  color: rgba(30,111,222,.15);
  font-family: Georgia, serif;
}
.testi-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-light);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}
.testi-stars { color: #FFD700; font-size: 1rem; margin-bottom: 1rem; letter-spacing: .1em; }
.testi-card p {
  font-size: .88rem; line-height: 1.75;
  color: var(--text-muted); margin-bottom: 1.5rem; font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-ava {
  width: 40px; height: 40px;
  background: rgba(30,111,222,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .85rem; color: var(--white); }
.testi-author span { font-size: .75rem; color: var(--text-muted); }

/* ================================================
   FAQ SECTION
   ================================================ */
.faq-section { background: var(--navy-mid); }
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
.faq-left p { font-size: .9rem; color: var(--text-muted); line-height: 1.7; margin: 1rem 0 1.5rem; }
.faq-cta-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .85rem; font-weight: 700; color: var(--blue-light);
  transition: gap var(--transition);
}
.faq-cta-link:hover { gap: .7rem; }

.faq-item {
  border-bottom: 1px solid var(--navy-border);
  overflow: hidden;
}
.faq-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 0;
  text-align: left;
  color: var(--white); font-size: .92rem; font-weight: 600;
  background: none; border: none; cursor: pointer;
  transition: color var(--transition);
}
.faq-btn:hover { color: var(--blue-light); }
.faq-ico {
  flex-shrink: 0; color: var(--text-muted);
  transition: transform var(--transition), color var(--transition);
}
.faq-item.open .faq-ico { transform: rotate(180deg); color: var(--blue-light); }
.faq-item.open .faq-btn { color: var(--blue-light); }
.faq-ans {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .4s ease;
  padding: 0 0 0;
}
.faq-item.open .faq-ans {
  max-height: 300px;
  padding: 0 0 1.25rem;
}
.faq-ans p { font-size: .87rem; color: var(--text-muted); line-height: 1.75; }

/* ================================================
   FOOTER / CONTACT
   ================================================ */
.footer { background: var(--navy-mid); }
.contact-band {
  padding: 6rem 0 4rem;
  border-bottom: 1px solid var(--navy-border);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 5rem; align-items: start;
}
.contact-h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800; letter-spacing: -.03em;
  color: var(--white); margin: .75rem 0 1rem;
  line-height: 1.15;
}
.contact-info p { font-size: .9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 2rem; }
.ch-list { display: flex; flex-direction: column; gap: 1rem; }
.ch-item {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .88rem;
}
.ch-ico {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.2rem;
}
.ch-ico.wa { background: rgba(37,211,102,.15); color: var(--green); }
.ch-ico.loc { background: rgba(30,111,222,.1); }
.ch-item div { display: flex; flex-direction: column; gap: .15rem; }
.ch-item strong { color: var(--white); font-size: .9rem; }
.ch-item span { color: var(--text-muted); font-size: .8rem; }
a.ch-item:hover .ch-item strong { color: var(--green); }

/* Formulário */
.contact-form {
  display: flex; flex-direction: column; gap: 1rem;
  background: rgba(12, 29, 56, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.form-grp { display: flex; flex-direction: column; gap: .35rem; }
.form-grp label { font-size: .75rem; font-weight: 700; color: var(--off-white); letter-spacing: .04em; }
.form-grp input,
.form-grp select,
.form-grp textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  color: var(--white); font-size: .88rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}
.form-grp input::placeholder, .form-grp textarea::placeholder { color: rgba(140,165,200,.5); }
.form-grp input:focus,
.form-grp select:focus,
.form-grp textarea:focus {
  border-color: var(--blue);
  background: rgba(30,111,222,.05);
}
.form-grp select option { background: var(--navy-card); color: var(--white); }
.form-grp textarea { resize: vertical; min-height: 80px; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  background: linear-gradient(135deg, var(--blue), var(--blue-glow));
  color: #fff; font-size: .9rem; font-weight: 700;
  padding: .9rem 2rem; border-radius: var(--radius-sm);
  cursor: pointer; border: none;
  box-shadow: 0 4px 24px rgba(30,111,222,.4);
  transition: all var(--transition);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(30,111,222,.55); }
.form-success {
  display: none; text-align: center;
  background: rgba(37,211,102,.1);
  border: 1px solid rgba(37,211,102,.3);
  color: var(--green);
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .87rem; font-weight: 600;
}
.form-success.show { display: block; }

/* Footer links */
.footer-links { padding: 4rem 0 2rem; }
.footer-cols {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-logo {
  font-family: var(--font-alt);
  font-size: 1.4rem; font-weight: 800;
  color: var(--white); margin-bottom: .75rem;
}
.footer-logo span { color: var(--blue-light); }
.footer-brand p { font-size: .82rem; color: var(--text-muted); line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--white);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li a {
  font-size: .82rem; color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--blue-light); }
.footer-col ul li { font-size: .82rem; color: var(--text-muted); }
.footer-copy {
  border-top: 1px solid var(--navy-border);
  padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .78rem; color: rgba(140,165,200,.6);
  flex-wrap: wrap; gap: .5rem;
}

/* ================================================
   WHATSAPP FAB
   ================================================ */
.wa-fab {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  width: 58px; height: 58px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 24px rgba(37,211,102,.5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,.65);
}
.fab-ring {
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: fab-pulse 2.5s ease-in-out infinite;
}
@keyframes fab-pulse {
  0%, 100% { transform: scale(1); opacity: .6; }
  50%       { transform: scale(1.2); opacity: 0; }
}
.fab-tooltip {
  position: absolute; right: calc(100% + .75rem); bottom: 50%;
  transform: translateY(50%);
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  color: var(--off-white); font-size: .78rem; font-weight: 600;
  padding: .45rem .9rem; border-radius: 999px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0; transition: opacity var(--transition);
}
.wa-fab:hover .fab-tooltip { opacity: 1; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-featured { grid-column: 1 / -1; grid-template-columns: 1fr; gap: 1.25rem; }
  .svc-featured-left { padding-right: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.07); padding-bottom: 1rem; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-wrap { grid-template-columns: 1fr; gap: 3rem; padding-top: 7rem; }
  .hero-visual { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-h1 { font-size: 2.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-imgs {
    padding-bottom: 2rem;
    padding-right: 2rem;
    padding-left: 1rem;
  }
  .img-sec-wrap {
    display: block;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 50%;
    border-width: 2px;
  }
  .img-badge-float {
    display: block;
    top: 1rem;
    left: -0.75rem;
    padding: 0.6rem 0.8rem;
  }
  .badge-big-num {
    font-size: 1.25rem;
  }
  .badge-big-txt {
    font-size: 0.6rem;
  }
  .services-grid { grid-template-columns: 1fr; }
  .svc-featured { grid-column: 1 / -1; padding: 1.5rem; }
  .svc-indicado li { flex: 0 0 100%; }
  .svc-specs-list > div { grid-template-columns: 1fr; gap: 0; }
  .svc-specs-list dt { margin-bottom: .15rem; }
  .process-row { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .diff-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .faq-inner { grid-template-columns: 1fr; gap: 2rem; }
  .info-explainer { grid-template-columns: 1fr; }
  .metrics-inner { gap: 1rem; }
  .metric { padding: .75rem 1rem; min-width: 120px; }
  .metric-sep { height: 40px; }
  .contact-band { padding: 4rem 0 2rem; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn-primary-hero, .btn-ghost-hero { width: 100%; justify-content: center; }
  .process-row { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-copy { flex-direction: column; text-align: center; }
  .hero-trust { flex-direction: column; gap: .5rem; align-items: flex-start; }
  .trust-sep { display: none; }
  .form-row2 { grid-template-columns: 1fr; }
}



/* ================================================
   FROTA E ESTRUTURA
   ================================================ */
.fleet-section { background: var(--navy-mid); border-top: 1px solid var(--navy-border); }
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.fleet-card {
  background: rgba(12, 29, 56, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.fleet-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue-light);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(74, 158, 255, 0.15);
}
.fleet-img { width: 100%; aspect-ratio: 1/1; overflow: hidden; background: var(--navy); position: relative; }
.fleet-img img,
.fleet-img video { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
.fleet-card:hover .fleet-img img,
.fleet-card:hover .fleet-img video { transform: scale(1.05); }
.fleet-img.has-video::after {
  content: "▶  Vídeo";
  position: absolute; left: .75rem; bottom: .75rem;
  font-size: .65rem; font-weight: 700; letter-spacing: .12em;
  color: #fff;
  background: rgba(4, 11, 26, .7);
  padding: .25rem .55rem;
  border-radius: 999px;
  pointer-events: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.fleet-info { padding: 1.5rem; display: flex; flex-direction: column; gap: .65rem; }
.fleet-info h3 { font-size: 1.1rem; color: var(--white); margin-bottom: .25rem; font-weight: 700; }
.fleet-info p { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }
.fleet-tags {
  display: flex; flex-wrap: wrap; gap: .4rem;
  margin-top: .25rem;
}
.fleet-tags span {
  font-size: .7rem; font-weight: 600;
  background: rgba(30,111,222,.12);
  border: 1px solid rgba(30,111,222,.22);
  color: var(--blue-light);
  padding: .2rem .6rem;
  border-radius: 999px;
  letter-spacing: .01em;
}

/* Hub operacional */
.hub-block {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: rgba(12, 29, 56, .65);
  border: 1px solid rgba(30, 111, 222, .25);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hub-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--navy);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .45);
}
.hub-photo img, .hub-photo video { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.hub-block:hover .hub-photo img, .hub-block:hover .hub-photo video { transform: scale(1.03); }
.hub-content { display: flex; flex-direction: column; gap: 1rem; }
.hub-eyebrow {
  font-size: .72rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue-light);
}
.hub-content h3 {
  font-size: 1.45rem; line-height: 1.25; font-weight: 800; color: var(--white);
  letter-spacing: -.01em;
}
.hub-content p { font-size: .92rem; line-height: 1.7; color: var(--text-muted); }
.hub-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem;
  padding-top: .5rem;
}
.hub-stat {
  display: flex; flex-direction: column; gap: .15rem;
  padding: .75rem .85rem;
  background: rgba(30, 111, 222, .08);
  border: 1px solid rgba(30, 111, 222, .2);
  border-radius: var(--radius-md);
}
.hub-stat-num {
  font-size: 1.1rem; font-weight: 800; color: var(--white); line-height: 1.1;
}
.hub-stat-txt {
  font-size: .68rem; color: var(--text-muted); line-height: 1.3;
}
.hub-tags {
  display: flex; flex-wrap: wrap; gap: .45rem;
  padding-top: .25rem;
}
.hub-tags span {
  font-size: .72rem; font-weight: 600;
  background: rgba(30, 111, 222, .15);
  border: 1px solid rgba(30, 111, 222, .3);
  color: var(--blue-light);
  padding: .3rem .8rem;
  border-radius: 999px;
}

@media (max-width: 1024px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .hub-block { grid-template-columns: 1fr; }
  .hub-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .fleet-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hub-content h3 { font-size: 1.2rem; }
  .hub-block { padding: 1rem; gap: 1.25rem; }
}

/* ================================================
   PILARES (Flip 3D)
   ================================================ */
.pillars-section { background: var(--navy-mid); border-top: 1px solid var(--navy-border); }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.pillar-card { perspective: 1600px; height: 300px; }
.pillar-flip {
  position: relative; width: 100%; height: 100%;
  transition: transform .8s cubic-bezier(.4, .2, .2, 1);
  transform-style: preserve-3d;
}
.pillar-card:hover .pillar-flip,
.pillar-card:focus-within .pillar-flip { transform: rotateY(180deg); }
.pillar-face {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column;
}
.pillar-front {
  background: rgba(12, 29, 56, .65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.pillar-num {
  font-size: 2.5rem; font-weight: 800; line-height: 1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--cyan), var(--blue-light));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pillar-front h3 { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: .75rem; }
.pillar-front p { font-size: .9rem; color: var(--text-muted); line-height: 1.7; }
.pillar-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, var(--blue), var(--navy));
  align-items: center; justify-content: center; text-align: center;
  color: var(--white);
}
.pillar-back svg { color: var(--cyan); margin-bottom: 1rem; }
.pillar-back-num {
  font-size: 2.25rem; font-weight: 800; margin-bottom: .5rem;
  background: linear-gradient(135deg, #fff, var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pillar-back-txt { font-size: .9rem; color: rgba(255,255,255,.85); max-width: 220px; line-height: 1.6; }

@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .pillar-card { height: 260px; }
}





/* ================================================
   COBERTURA NACIONAL (Mapa do Brasil)
   ================================================ */
.coverage-section { background: var(--navy); border-top: 1px solid var(--navy-border); }
.coverage-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.coverage-map-wrap {
  position: relative;
  padding: 1.5rem;
  background: rgba(12, 29, 56, .55);
  border: 1px solid rgba(30, 111, 222, .25);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.brazil-map {
  width: 100%; height: auto;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .35));
}
.brazil-map .uf path {
  fill: rgba(30, 111, 222, .55);
  stroke: var(--navy);
  stroke-width: 1;
  transition: fill .25s ease, filter .25s ease;
  cursor: pointer;
}
.brazil-map .uf:hover path {
  fill: var(--blue-light);
  filter: drop-shadow(0 0 6px rgba(74, 158, 255, .6));
}
.brazil-map .uf.is-hub path {
  fill: var(--cyan);
}
.brazil-map .uf text {
  fill: #fff;
  font: 700 11px/1 'Inter', sans-serif;
  pointer-events: none;
  letter-spacing: .02em;
}
.brazil-map .markers .unit-dot {
  fill: #fff;
  stroke: var(--cyan);
  stroke-width: 2;
  cursor: pointer;
}
.brazil-map .markers .unit-pulse {
  fill: var(--cyan);
  opacity: .35;
  transform-origin: center;
  transform-box: fill-box;
  animation: unit-pulse 2.2s ease-out infinite;
}
@keyframes unit-pulse {
  0% { transform: scale(.6); opacity: .7; }
  100% { transform: scale(2.2); opacity: 0; }
}
.brazil-map .unit-marker.is-active .unit-dot {
  fill: var(--cyan); stroke: #fff;
}
.map-tooltip {
  position: absolute;
  pointer-events: none;
  background: rgba(4, 11, 26, .92);
  color: #fff;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .04em;
  padding: .35rem .7rem;
  border-radius: 6px;
  border: 1px solid rgba(74, 158, 255, .35);
  opacity: 0;
  transform: translate(-50%, -120%);
  transition: opacity .15s ease;
  z-index: 5;
  white-space: nowrap;
}
.map-tooltip.show { opacity: 1; }

/* Painel direito */
.coverage-panel {
  display: flex; flex-direction: column; gap: 1rem;
}
.cov-eyebrow {
  font-size: .72rem; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: var(--blue-light);
}
.cov-title {
  font-size: 1.5rem; font-weight: 800; line-height: 1.2;
  color: var(--white); letter-spacing: -.01em;
}
.cov-title span {
  background: linear-gradient(135deg, var(--cyan), var(--blue-light));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cov-hint {
  font-size: .85rem; line-height: 1.6; color: var(--text-muted);
}
.unit-list {
  display: flex; flex-direction: column; gap: .65rem;
  margin: .25rem 0;
}
.unit-item {
  display: flex; align-items: center; gap: .9rem;
  padding: .85rem 1rem;
  background: rgba(12, 29, 56, .6);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease, transform .2s ease;
}
.unit-item:hover { border-color: var(--blue-light); transform: translateX(3px); }
.unit-item.is-active {
  border-color: var(--cyan);
  background: rgba(0, 200, 255, .08);
}
.unit-bullet {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--blue-light);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(74, 158, 255, .15);
}
.unit-item.is-active .unit-bullet { background: var(--cyan); box-shadow: 0 0 0 4px rgba(0, 200, 255, .22); }
.unit-item div { display: flex; flex-direction: column; gap: .1rem; min-width: 0; }
.unit-item strong { font-size: .92rem; color: var(--white); font-weight: 700; }
.unit-item span { font-size: .76rem; color: var(--text-muted); }
.cov-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem;
  margin-top: .5rem;
}
.cov-stat {
  display: flex; flex-direction: column; gap: .15rem;
  padding: .75rem .65rem;
  background: rgba(30, 111, 222, .08);
  border: 1px solid rgba(30, 111, 222, .2);
  border-radius: var(--radius-md);
  text-align: center;
}
.cov-stat strong { font-size: 1rem; font-weight: 800; color: var(--white); }
.cov-stat span { font-size: .65rem; color: var(--text-muted); line-height: 1.3; }
.cov-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .85rem; font-weight: 700;
  color: var(--blue-light);
  padding-top: .5rem;
  transition: gap var(--transition);
}
.cov-cta:hover { gap: .8rem; }

@media (max-width: 1024px) {
  .coverage-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .coverage-map-wrap { padding: 1rem; }
}
@media (max-width: 480px) {
  .cov-stats { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .brazil-map .markers .unit-pulse { animation: none; opacity: .35; }
}


/* ================================================
   SUB-DIVISOR (unifica sub-blocos dentro de uma seção)
   ================================================ */
.sub-divider {
  display: flex; flex-direction: column; gap: .35rem; align-items: center;
  text-align: center;
  margin: 3.5rem auto 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  max-width: 720px;
}
.sub-divider-eyebrow {
  font-size: .72rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue-light);
}
.sub-divider-title {
  font-size: 1.5rem; font-weight: 800; line-height: 1.25; letter-spacing: -.01em;
  color: var(--white);
}
.sub-divider-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cyan), var(--blue-light));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ================================================
   PARCEIROS (Hospitais que confiam)
   ================================================ */
.partners-section { background: var(--navy-mid); border-top: 1px solid var(--navy-border); }
.partners-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 1.25rem;
}
.partner-card {
  display: flex; align-items: center; gap: .9rem;
  padding: 1.1rem 1.15rem;
  background: rgba(12, 29, 56, .65);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius-md);
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}
.partner-card:hover {
  border-color: var(--blue-light);
  background: rgba(30, 111, 222, .12);
  transform: translateY(-3px);
}
.partner-ico {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(30,111,222,.25), rgba(30,111,222,.08));
  border: 1px solid rgba(30,111,222,.28);
  border-radius: var(--radius-sm);
  color: var(--blue-light);
}
.partner-card > div { display: flex; flex-direction: column; gap: .15rem; min-width: 0; }
.partner-card strong {
  font-size: .9rem; font-weight: 700; color: var(--white);
  line-height: 1.25;
}
.partner-card span { font-size: .72rem; color: var(--text-muted); }

.partner-cta {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: 1fr auto; gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(135deg, rgba(0, 200, 255, .12), rgba(30, 111, 222, .12));
  border: 1px solid rgba(0, 200, 255, .3);
  border-radius: var(--radius-lg);
  margin-top: .5rem;
}
.partner-cta > div { display: flex; flex-direction: column; gap: .35rem; max-width: 700px; }
.partner-cta-eyebrow {
  font-size: .72rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase;
  color: var(--cyan);
}
.partner-cta strong {
  font-size: 1.25rem; font-weight: 800; color: var(--white); line-height: 1.2;
}
.partner-cta p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }
.partner-cta-btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .75rem 1.25rem;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff; font-size: .88rem; font-weight: 700;
  border-radius: 999px;
  white-space: nowrap;
  transition: gap .2s ease, transform .2s ease, box-shadow .25s ease;
}
.partner-cta-btn:hover {
  gap: .8rem; transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(30, 111, 222, .35);
}

@media (max-width: 1024px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .partners-grid { grid-template-columns: 1fr; }
  .partner-cta { grid-template-columns: 1fr; gap: 1rem; }
  .partner-cta-btn { width: 100%; justify-content: center; }
}

/* ================================================
   HUB PHOTO — esconde watermark "HIGGSFIELD AI" + badge
   ================================================ */
.hub-photo { position: relative; }
.hub-photo::after {
  content: "Hub Central · Transmedic Brasil";
  position: absolute; left: .75rem; bottom: .75rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(4, 11, 26, .82);
  padding: .35rem .7rem;
  border-radius: 999px;
  border: 1px solid rgba(74, 158, 255, .35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hub-photo::before {
  /* máscara navy para cobrir watermark "HIGGSFIELD AI" no canto inferior direito */
  content: "";
  position: absolute; right: 0; bottom: 0;
  width: 28%; height: 18%;
  background: linear-gradient(135deg, transparent 0%, rgba(7, 20, 40, .65) 35%, var(--navy) 100%);
  pointer-events: none;
  z-index: 1;
}
