/* =========================================================
   MT Ar-Condicionado — Style
   Premium glassmorphism / Apple-like
   ========================================================= */

:root {
  --c-navy-950: #031B34;
  --c-navy-800: #072a4d;
  --c-navy-700: #0B4F8C;
  --c-cyan-500: #00B8FF;
  --c-cyan-300: #57D9FF;
  --c-ice:     #EAF9FF;
  --c-white:   #FFFFFF;
  --c-ink:     #111827;

  --grad-primary: linear-gradient(135deg, #00B8FF 0%, #0B4F8C 100%);
  --grad-hero: radial-gradient(1200px 800px at 15% 10%, rgba(0,184,255,.35), transparent 60%),
               radial-gradient(1000px 700px at 90% 20%, rgba(87,217,255,.25), transparent 60%),
               linear-gradient(180deg, #031B34 0%, #072a4d 60%, #031B34 100%);

  --glass-bg: rgba(255,255,255,.06);
  --glass-brd: rgba(255,255,255,.14);
  --glass-hi:  rgba(255,255,255,.22);

  --radius: 18px;
  --radius-lg: 26px;
  --shadow-soft: 0 10px 40px rgba(0,0,0,.35);
  --shadow-glow: 0 0 40px rgba(0,184,255,.35);

  --container: 1240px;

  --font: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* =========================================================
   MODO CLARO (CORRIGIDO)
   ========================================================= */
body.light {
  --c-navy-950: #eef6fd;
  --grad-hero: radial-gradient(1200px 800px at 15% 10%, rgba(0,184,255,.35), transparent 60%),
               radial-gradient(1000px 700px at 90% 20%, rgba(11,79,140,.15), transparent 60%),
               linear-gradient(180deg, #eaf4fb 0%, #ffffff 60%, #eaf4fb 100%);
  --glass-bg: rgba(255,255,255,.75);
  --glass-brd: rgba(11,79,140,.18);
  --glass-hi:  rgba(11,79,140,.35);
  color-scheme: light;
  color: #0b1220;
}

body.light,
body.light main,
body.light .nav__logo-text,
body.light .hero__title,
body.light .hero__subtitle,
body.light .section__title,
body.light .section__lead,
body.light p, body.light li, body.light span,
body.light h1, body.light h2, body.light h3, body.light h4, body.light h5, body.light h6,
body.light a, body.light b, body.light strong,
body.light label, body.light summary,
body.light figcaption, body.light em,
body.light .feature h3, body.light .feature p,
body.light .service h3, body.light .service p,
body.light .timeline li h4, body.light .timeline li p,
body.light .review p, body.light .review b, body.light .review span,
body.light .calc h3, body.light .calc p,
body.light .field label,
body.light .faq summary, body.light .faq p,
body.light .footer, body.light .footer ul, body.light .footer__bottom,
body.light .footer h5, body.light .footer a, body.light .footer p, body.light .footer span, body.light .footer li,
body.light .hero__stats span,
body.light .about-card__grid b, body.light .about-card__grid span,
body.light .check-list, body.light .check-list a,
body.light .gallery__item figcaption,
body.light .loader__text,
body.light .contact-card h3, body.light .contact-card p,
body.light .diploma-area h3, body.light .diploma-area p,
body.light .nav__links a,
body.light .nav__mobile a,
body.light .hero__cta a,
body.light .btn--ghost,
body.light .chip,
body.light .contact-info li,
body.light .contact-info a,
body.light .gallery-block__title,
body.light .partner-card h3, body.light .partner-card p,
body.light .team-card h3, body.light .team-card p, body.light .team-card__desc {
  color: #0b1220;
}

body.light .muted { color: rgba(11,18,32,.7); }
body.light .hero__stats b { color: #0B4F8C; }
body.light .result b { color: #0B4F8C; }
body.light .result span { color: rgba(11,18,32,.7); }
body.light .footer h5 { color: #0B4F8C; }
body.light .eyebrow { color: #0B4F8C; background: rgba(11,79,140,.1); border-color: rgba(11,79,140,.25); }
body.light .hero__eyebrow { color: #0b1220; }

body.light .field input,
body.light .field select,
body.light .field textarea {
  background: rgba(255,255,255,.9);
  color: #0b1220;
  border-color: rgba(11,79,140,.2);
}
body.light .field select option { background: #fff; color: #0b1220; }

body.light .btn--primary, body.light .btn--primary *,
body.light .nav__logo-mark,
body.light .review__avatar,
body.light .fab, body.light .fab *,
body.light .chip.is-active, body.light .chip.is-active *,
body.light .timeline li b { color: #fff; }

body.light .btn--ghost { color: #0B4F8C; border-color: rgba(11,79,140,.35); }
body.light .btn--ghost:hover { background: rgba(11,79,140,.08); }

body.light .map iframe { filter: none; }

/* =========================================================
   BASE
   ========================================================= */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: #eaf3ff;
  background: var(--c-navy-950);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.muted { color: rgba(234,249,255,.65); }
.grad-text {
  background: linear-gradient(90deg, #57D9FF, #00B8FF);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* =========================================================
   GLASS
   ========================================================= */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-brd);
  backdrop-filter: blur(18px) saturate(140%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

/* =========================================================
   BACKGROUND FX
   ========================================================= */
.bg-fx { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.bg-fx__gradient { position: absolute; inset: -20%; background: var(--grad-hero); animation: floatBg 22s ease-in-out infinite alternate; }
@keyframes floatBg { from { transform: translate3d(0,0,0) } to { transform: translate3d(-2%, -1%, 0) } }

.bg-fx__glow { position: absolute; width: 500px; height: 500px; border-radius: 50%; filter: blur(120px); opacity: .55; }
.bg-fx__glow--1 { background: #00B8FF; top: -100px; left: -100px; animation: drift 18s ease-in-out infinite alternate; }
.bg-fx__glow--2 { background: #0B4F8C; bottom: -150px; right: -100px; animation: drift 22s ease-in-out infinite alternate-reverse; }
.bg-fx__glow--3 { background: #57D9FF; top: 40%; left: 60%; opacity: .3; animation: drift 26s ease-in-out infinite alternate; }
@keyframes drift { to { transform: translate3d(60px, 40px, 0) scale(1.1); } }

.bg-fx__lines { position: absolute; inset: 0; opacity: .12; }
.bg-fx__lines span {
  position: absolute; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, transparent, #57D9FF, transparent);
  animation: sweep 8s linear infinite;
}
.bg-fx__lines span:nth-child(1){ left: 15%; animation-delay: 0s; }
.bg-fx__lines span:nth-child(2){ left: 40%; animation-delay: -2s; }
.bg-fx__lines span:nth-child(3){ left: 65%; animation-delay: -4s; }
.bg-fx__lines span:nth-child(4){ left: 85%; animation-delay: -6s; }
@keyframes sweep { from { transform: translateY(-100%); } to { transform: translateY(100%);} }

#snowCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }

/* =========================================================
   LOADER
   ========================================================= */
.loader {
  position: fixed; inset: 0; background: #031B34; z-index: 10000;
  display: grid; place-items: center; align-content: center; gap: 18px;
  transition: opacity .6s ease, visibility .6s;
}
.loader.is-hidden { opacity: 0; visibility: hidden; }
.loader__logo {
  width: 120px; height: 120px; border-radius: 26px;
  background: var(--grad-primary); display: grid; place-items: center;
  font-weight: 900; font-size: 28px; color: white;
  box-shadow: var(--shadow-glow);
  padding: 10px;
}
.loader__logo img { width: 100%; height: 100%; object-fit: contain; }
.loader__spinner {
  width: 44px; height: 44px; border-radius: 50%;
  border: 3px solid rgba(87,217,255,.2); border-top-color: #57D9FF;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loader__bar { width: 220px; height: 4px; background: rgba(255,255,255,.1); border-radius: 4px; overflow: hidden; }
.loader__bar span { display: block; height: 100%; width: 0; background: var(--grad-primary); animation: bar 1.4s ease-in-out forwards; }
@keyframes bar { to { width: 100%; } }
.loader__text { color: rgba(234,249,255,.7); font-size: 14px; }

/* =========================================================
   SCROLL PROGRESS
   ========================================================= */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--grad-primary); z-index: 9998;
  box-shadow: 0 0 12px rgba(0,184,255,.6);
}

/* =========================================================
   NAVBAR
   ========================================================= */
.nav { position: fixed; top: 16px; left: 0; right: 0; z-index: 100; transition: top .3s; }
.nav.is-scrolled { top: 8px; }
.nav__inner {
  display: flex; align-items: center; gap: 20px;
  padding: 12px 18px; margin: 0 auto;
  width: min(100% - 40px, 1280px);
  transition: padding .3s, box-shadow .3s;
}
.nav.is-scrolled .nav__inner { padding: 8px 16px; box-shadow: 0 10px 30px rgba(0,0,0,.45); }
.nav__logo { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.nav__logo-mark {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px;
  background: var(--grad-primary); color: #fff; font-weight: 900;
  box-shadow: var(--shadow-glow);
}
.nav__logo-text { letter-spacing: .2px; }
.nav__links { display: flex; gap: 22px; margin-inline: auto; }
.nav__links a { font-weight: 500; opacity: .85; position: relative; padding: 8px 4px; }
.nav__links a:hover { opacity: 1; color: #57D9FF; }
.nav__links a::after { content:""; position:absolute; left:50%; bottom:2px; width:0; height:2px; background: var(--grad-primary); transition: width .3s, left .3s; }
.nav__links a:hover::after { width: 100%; left: 0; }
.nav__actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle {
  width: 40px; height: 40px; border-radius: 12px;
  background: transparent; border: 1px solid var(--glass-brd);
  color: inherit; cursor: pointer; transition: .3s;
}
.theme-toggle:hover { background: rgba(87,217,255,.15); color: #57D9FF; }
.nav__burger { display: none; width: 42px; height: 42px; border-radius: 12px; background: transparent; border: 1px solid var(--glass-brd); flex-direction: column; gap: 5px; align-items: center; justify-content: center; cursor: pointer; }
.nav__burger span { display: block; width: 20px; height: 2px; background: currentColor; transition: .3s; }

.nav__mobile { display: none; position: absolute; top: calc(100% + 8px); left: 20px; right: 20px; padding: 16px; flex-direction: column; gap: 12px; }
.nav__mobile.is-open { display: flex; }

@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: 14px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .25s ease, box-shadow .3s ease, background .3s ease;
  white-space: nowrap;
}
.btn--sm { padding: 10px 16px; font-size: 13px; }
.btn--lg { padding: 15px 28px; font-size: 15px; }
.btn--block { width: 100%; }
.btn--primary { background: var(--grad-primary); color: #fff; box-shadow: 0 12px 30px rgba(0,184,255,.35); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(0,184,255,.5); }
.btn--ghost { background: transparent; color: #fff; border-color: var(--glass-hi); backdrop-filter: blur(10px); }
.btn--ghost:hover { background: rgba(255,255,255,.08); }

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding: 120px 0; position: relative; }
.section--tight { padding: 70px 0; }
.section__head { max-width: 780px; margin: 0 auto 60px; text-align: center; }
.eyebrow {
  display: inline-block; font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 14px;
  background: rgba(0,184,255,.12); color: #57D9FF; border: 1px solid rgba(87,217,255,.3);
}
.section__title {
  font-size: clamp(28px, 4vw, 46px); line-height: 1.1; margin: 0 0 16px;
  font-weight: 800; letter-spacing: -.02em;
}
.section__lead { font-size: 17px; line-height: 1.6; color: rgba(234,249,255,.75); margin: 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.gap-sm { gap: 16px; }
@media (max-width: 900px) { .grid-2 { grid-template-columns: 1fr; } }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100vh; display: grid; place-items: center; position: relative; padding: 160px 20px 100px;
}
.hero__inner { max-width: 1000px; text-align: center; }

.hero__logo {
  margin-bottom: 30px;
  display: inline-block;
}
.hero__logo-img {
  width: 140px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0,184,255,.4);
  transition: transform .3s ease;
}
.hero__logo-img:hover { transform: scale(1.05); }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px;
  font-size: 13px; color: #eaf9ff;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #00B8FF;
  box-shadow: 0 0 0 rgba(0,184,255,.7); animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,184,255,.7); }
  70% { box-shadow: 0 0 0 12px rgba(0,184,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,184,255,0); }
}
.hero__title {
  font-size: clamp(38px, 6.5vw, 78px); line-height: 1.05; font-weight: 800;
  letter-spacing: -.03em; margin: 28px 0 20px;
}
.hero__subtitle {
  font-size: clamp(15px, 1.6vw, 19px); line-height: 1.6; max-width: 720px;
  margin: 0 auto; color: rgba(234,249,255,.8);
}
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.hero__stats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 14px;
  margin-top: 60px;
}
.hero__stats .stat { padding: 18px; text-align: center; }
.hero__stats b { display: block; font-size: 28px; color: #57D9FF; font-weight: 800; }
.hero__stats span { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: rgba(234,249,255,.7); }
@media (max-width: 720px) { .hero__stats { grid-template-columns: repeat(2,1fr); } }

.hero__scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(87,217,255,.5); border-radius: 999px;
}
.hero__scroll span {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 8px; background: #57D9FF; border-radius: 3px;
  animation: scroll 1.8s ease-in-out infinite;
}
@keyframes scroll { 0%{opacity:1;top:8px} 60%{opacity:0;top:24px} 100%{opacity:0;top:8px} }

/* =========================================================
   ABOUT
   ========================================================= */
.about-card { padding: 34px; position: relative; overflow: hidden; }
.about-card__ring {
  position: absolute; width: 320px; height: 320px; border-radius: 50%;
  border: 1px dashed rgba(87,217,255,.35);
  top: -80px; right: -80px; animation: spin 30s linear infinite;
}
.about-card__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; position: relative; }
.about-card__grid > div { padding: 18px; border-radius: 14px; background: rgba(255,255,255,.04); border: 1px solid var(--glass-brd); }
.about-card__grid i { color: #57D9FF; font-size: 22px; margin-bottom: 10px; display: block; }
.about-card__grid b { display: block; margin-bottom: 4px; }
.about-card__grid span { color: rgba(234,249,255,.65); font-size: 13px; }

.check-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 10px; }
.check-list i { color: #00B8FF; margin-right: 10px; }

/* =========================================================
   FEATURE GRID
   ========================================================= */
.feature-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.feature { padding: 28px; text-align: center; transition: transform .4s, box-shadow .4s; }
.feature:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,184,255,.25); }
.icon-glow { font-size: 32px; color: #57D9FF; text-shadow: 0 0 20px rgba(87,217,255,.7); margin-bottom: 14px; display: inline-block; transition: transform .3s; }
.feature:hover .icon-glow { transform: scale(1.15) rotate(-6deg); }
.feature h3 { margin: 8px 0; font-size: 18px; }
.feature p { color: rgba(234,249,255,.75); font-size: 14px; margin: 0; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px) { .feature-grid { grid-template-columns: 1fr; } }

/* =========================================================
   SERVICES
   ========================================================= */
.service-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.service { padding: 30px; transition: transform .35s, box-shadow .35s; position: relative; overflow: hidden; }
.service::before {
  content:""; position: absolute; inset: 0; background: radial-gradient(400px 200px at var(--x,50%) var(--y,20%), rgba(87,217,255,.18), transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.service:hover::before { opacity: 1; }
.service:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,184,255,.25); }
.service__icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(0,184,255,.25), rgba(11,79,140,.4));
  color: #57D9FF; font-size: 22px;
  box-shadow: inset 0 0 20px rgba(87,217,255,.2);
}
.service h3 { margin: 4px 0 10px; font-size: 18px; }
.service p { color: rgba(234,249,255,.75); font-size: 14px; margin: 0; }

@media (max-width: 1200px) { .service-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px)  { .service-grid { grid-template-columns: 1fr; } }

/* =========================================================
   GALERIA DE FOTOS (CARROSSÉIS COM LIGHTBOX)
   ========================================================= */
.gallery-block {
  margin-bottom: 60px;
}
.gallery-block__title {
  font-size: 24px;
  font-weight: 700;
  color: #57D9FF;
  margin-bottom: 20px;
  padding-left: 10px;
  border-left: 4px solid #57D9FF;
}

.gallery-swiper {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-swiper .swiper-slide {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.2);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform .3s ease;
}
.gallery-img:hover {
  transform: scale(1.03);
}

.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next {
  color: #fff;
  background: rgba(0,0,0,.4);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  transition: background .3s;
}
.gallery-swiper .swiper-button-prev:hover,
.gallery-swiper .swiper-button-next:hover {
  background: rgba(0,184,255,.6);
}
.gallery-swiper .swiper-button-prev::after,
.gallery-swiper .swiper-button-next::after {
  font-size: 18px;
  font-weight: bold;
}

.gallery-swiper .swiper-pagination-bullet {
  background: #57D9FF;
  opacity: .5;
}
.gallery-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(3, 27, 52, .95);
  backdrop-filter: blur(20px);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  cursor: zoom-out;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  cursor: default;
}
.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .3s;
  z-index: 2;
}
.lightbox__close:hover {
  background: rgba(255,255,255,.25);
}

/* =========================================================
   DIPLOMA AREA
   ========================================================= */
.diploma-area {
  padding: 50px 30px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  transition: transform .3s ease;
}
.diploma-area:hover { transform: translateY(-5px); }
.diploma-area__icon {
  font-size: 60px;
  color: #57D9FF;
  margin-bottom: 20px;
  display: block;
  text-shadow: 0 0 30px rgba(87,217,255,.5);
}
.diploma-area h3 { font-size: 24px; margin-bottom: 10px; }
.diploma-area p { color: rgba(234,249,255,.75); margin-bottom: 25px; }

/* =========================================================
   QUADRO DE COLABORADORES (EQUIPE)
   Layout responsivo com cards destacando a quantidade
   de profissionais por função.
   ========================================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-card {
  padding: 30px 20px;
  text-align: center;
  transition: transform .35s, box-shadow .35s;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,184,255,.25);
}

/* Ícone do card de colaborador */
.team-card__icon {
  font-size: 40px;
  color: #57D9FF;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(87,217,255,.5);
}

/* Número grande com a quantidade de profissionais */
.team-card__qty {
  font-size: 48px;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}

/* Nome do cargo */
.team-card__role {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #eaf3ff;
}

/* Descrição curta do cargo */
.team-card__desc {
  font-size: 13px;
  color: rgba(234,249,255,.65);
  margin: 0;
  line-height: 1.5;
}

/* Ajuste para garantir que a quantidade fique visível no modo claro */
body.light .team-card__qty {
  -webkit-text-fill-color: #0B4F8C;
}

/* =========================================================
   TIMELINE
   ========================================================= */
.timeline { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; counter-reset: step; }
.timeline li { padding: 26px; text-align: center; position: relative; }
.timeline li b { color: #57D9FF; font-size: 12px; letter-spacing: 3px; }
.timeline li h4 { margin: 8px 0; font-size: 17px; }
.timeline li p { color: rgba(234,249,255,.7); font-size: 13px; margin: 0; }
@media (max-width: 1000px) { .timeline { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px)  { .timeline { grid-template-columns: 1fr; } }

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews { padding-bottom: 50px !important; }
.review { padding: 30px; height: 100%; }
.review__avatar {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 800; background: var(--grad-primary); color: #fff; margin-bottom: 14px;
}
.stars { color: #FFD166; margin-bottom: 10px; font-size: 14px; }
.review p { font-size: 15px; line-height: 1.6; color: rgba(234,249,255,.85); margin: 0 0 14px; }
.review b { display: block; }
.review span { font-size: 13px; color: rgba(234,249,255,.6); }
.swiper-pagination-bullet { background: #57D9FF; }

/* =========================================================
   EMPRESAS PARCEIRAS
   ========================================================= */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
.partner-card {
  padding: 40px 30px;
  text-align: center;
  transition: transform .35s, box-shadow .35s;
}
.partner-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,184,255,.25); }
.partner-card__logo {
  width: 140px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 24px;
  border-radius: 8px;
}
.partner-card__phone {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* =========================================================
   CONTATO
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-card {
  padding: 40px 24px;
  text-align: center;
  transition: transform .35s, box-shadow .35s;
}
.contact-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,184,255,.25); }
.contact-card__icon {
  font-size: 48px;
  color: #57D9FF;
  margin-bottom: 18px;
  display: block;
  text-shadow: 0 0 25px rgba(87,217,255,.6);
}
.contact-card h3 { font-size: 22px; margin-bottom: 8px; }
.contact-card p { color: rgba(234,249,255,.75); margin-bottom: 20px; font-size: 14px; }
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-info li { font-size: 15px; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; max-width: 400px; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq { display: grid; gap: 14px; max-width: 820px; margin: 0 auto; }
.faq details { padding: 18px 22px; cursor: pointer; }
.faq summary { list-style: none; font-weight: 600; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-size: 22px; color: #57D9FF; transition: transform .3s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin: 12px 0 0; color: rgba(234,249,255,.75); }

/* =========================================================
   MAP
   ========================================================= */
.map { overflow: hidden; padding: 6px; }
.map iframe { width: 100%; height: 420px; border: 0; border-radius: calc(var(--radius) - 6px); filter: hue-rotate(180deg) invert(.92); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { padding: 70px 0 30px; border-top: 1px solid var(--glass-brd); background: rgba(3,27,52,.4); backdrop-filter: blur(10px); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer h5 { margin: 0 0 14px; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: #57D9FF; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; color: rgba(234,249,255,.75); font-size: 14px; }
.footer ul i { color: #57D9FF; width: 18px; }
.footer a:hover { color: #57D9FF; }
.footer__bottom {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--glass-brd);
  color: rgba(234,249,255,.55); font-size: 13px;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer__grid { grid-template-columns: 1fr; } }

/* =========================================================
   FLOATING BUTTONS
   ========================================================= */
.fab {
  position: fixed; right: 22px; width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center; font-size: 22px;
  border: none; cursor: pointer; z-index: 90; color: #fff;
  transition: transform .3s, box-shadow .3s, opacity .3s;
}
.fab--wa {
  bottom: 22px; background: #25D366;
  box-shadow: 0 10px 30px rgba(37,211,102,.5);
  animation: pulseWa 2.4s infinite;
}
.fab--wa:hover { transform: scale(1.08); }
@keyframes pulseWa {
  0%,100% { box-shadow: 0 10px 30px rgba(37,211,102,.5); }
  50%     { box-shadow: 0 10px 40px rgba(37,211,102,.85), 0 0 0 12px rgba(37,211,102,.15); }
}
.fab--top {
  bottom: 90px; background: var(--grad-primary);
  box-shadow: var(--shadow-glow);
  opacity: 0; visibility: hidden;
}
.fab--top.is-visible { opacity: 1; visibility: visible; }
.fab--top:hover { transform: translateY(-4px); }

/* =========================================================
   LOGO (IMAGEM)
   ========================================================= */
.nav__logo-img {
  height: 56px;
  width: auto;
  border-radius: 14px;
  object-fit: contain;
}