/* ============================================
   JP Tech — Design tokens
   Palette: royal blue (cold air) + amber (heat/sun) + white/gray
   Display: Barlow Condensed · Body: Inter
   ============================================ */
:root{
  --navy: #102059;
  --royal: #1c3791;
  --royal-light: #2a49b8;
  --cyan: #38bdf8;
  --amber: #f5a524;
  --amber-dark: #d9860f;
  --amber-light: #ffcf7d;
  --amber-ink: #b45309;
  --white: #ffffff;
  --gray-50: #f4f6f9;
  --gray-100: #e8ecf2;
  --gray-300: #cbd3e0;
  --gray-500: #6b7488;
  --gray-700: #3b4256;
  --ink: #16192b;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 10px;
  --shadow-sm: 0 2px 10px rgba(16, 32, 89, 0.08);
  --shadow-md: 0 12px 32px rgba(16, 32, 89, 0.14);
  --header-h: 86px;
}

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

html{ font-size: 118.75%; scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3{ font-family: var(--font-display); font-weight: 700; margin: 0 0 0.5em; color: var(--navy); line-height: 1.12; letter-spacing: 0.2px; }

.container{ max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.skip-link{
  position: absolute; left: -999px; top: 0; background: var(--royal); color: var(--white);
  padding: 12px 20px; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus{ left: 0; }

:focus-visible{ outline: 3px solid var(--cyan); outline-offset: 2px; }

/* ---------- Scroll reveal ---------- */
.reveal{ opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; will-change: opacity, transform; }
.reveal.in-view{ opacity: 1; transform: none; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 600; font-size: 0.98rem;
  padding: 13px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); }

.btn-cta{ background: var(--cyan); color: var(--navy); border-color: var(--cyan); }
.btn-cta:hover{ background: #1fa7e6; border-color: #1fa7e6; color: var(--white); }

.btn-outline{ background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover{ background: var(--white); color: var(--royal); border-color: var(--white); }

/* ---------- Header ---------- */
.site-header{
  position: fixed; top: 0; left: 0; right: 0; height: var(--header-h);
  background: var(--navy); z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  animation: headerDrop .7s cubic-bezier(.22,.68,.33,1) both;
}
@keyframes headerDrop{
  from{ transform: translateY(-100%); opacity: 0; }
  to{ transform: translateY(0); opacity: 1; }
}
.header-inner{ height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand{ display: flex; align-items: center; flex-shrink: 0; }
.brand-logo{ height: 60px; width: auto; }

.main-nav{ flex: 1; display: flex; justify-content: center; }
.nav-menu{ list-style: none; display: flex; gap: 32px; margin: 0; padding: 0; }
.nav-menu a{
  color: var(--gray-100); font-weight: 600; font-size: 0.98rem; padding: 8px 2px;
  border-bottom: 2px solid transparent; transition: color .2s ease, border-color .2s ease;
}
.nav-menu a:hover, .nav-menu a:focus-visible{ color: var(--cyan); border-color: var(--cyan); }

.header-cta{ flex-shrink: 0; padding: 10px 22px; font-size: 0.9rem; }

.nav-toggle{
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: transparent; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span{ display: block; height: 2px; width: 100%; background: var(--white); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero{
  position: relative; overflow: hidden;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 56px) 0 64px;
  background:
    linear-gradient(100deg, rgba(10,12,20,0.78) 0%, rgba(10,12,20,0.62) 45%, rgba(10,12,20,0.48) 75%, rgba(10,12,20,0.34) 100%),
    url("../img/photos/hero-bg.jpg") center 40% / cover no-repeat;
  color: var(--white);
}
.hero::after{
  content: ""; position: absolute; top: -10%; right: -10%; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(245,165,36,0.35) 0%, rgba(245,165,36,0) 70%);
  pointer-events: none; z-index: 1;
}

.hero-inner{ position: relative; z-index: 2; width: 100%; }
.hero-text{ max-width: 700px; }
.hero-text h1{
  color: var(--white); font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: 0.3em;
  animation: heroFadeUp .8s ease both;
}
.hero-text h2{
  font-family: var(--font-body); font-weight: 500; color: var(--gray-100);
  font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 620px; margin-bottom: 1.1em;
  animation: heroFadeUp .8s ease .12s both;
}
.hero-slogan{
  font-family: var(--font-display); font-size: 1.3rem; font-style: normal; color: var(--cyan);
  letter-spacing: 0.3px; margin-bottom: 2em;
  animation: heroFadeUp .8s ease .22s both;
}
.hero-actions{
  display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 3em;
  animation: heroFadeUp .8s ease .32s both;
}

.hero-stats{
  list-style: none; display: flex; gap: 40px; padding: 28px 0 0; margin: 0;
  border-top: 1px solid rgba(255,255,255,0.15); flex-wrap: wrap;
  animation: heroFadeUp .8s ease .42s both;
}
.hero-stats li{ display: flex; flex-direction: column; }
.stat-num{ font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--cyan); }
.stat-label{ font-size: 0.88rem; color: var(--gray-300); }
.hero-stats li:nth-child(2) .stat-num{ color: var(--amber-light); }

@keyframes heroFadeUp{ from{ opacity: 0; transform: translateY(28px); } to{ opacity: 1; transform: none; } }

/* ---------- Sections ---------- */
.section{ padding: 88px 0; }
.section-alt{ background: var(--gray-50); }

.section#servicos{
  position: relative;
  overflow: hidden;
}

.section#servicos .container{
  position: relative;
  z-index: 1;
}

.section-bg{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 15, 28, 0.76) 0%, rgba(7, 15, 28, 0.62) 100%),
    url("../img/photos/servicos-bg.jpg") center / cover no-repeat;
  background-attachment: scroll, fixed;
  transform: scale(1.02);
  pointer-events: none;
}

.section-head{ max-width: 680px; margin: 0 auto 48px; text-align: center; }
.eyebrow{
  display: inline-block; font-family: var(--font-display); font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--royal); font-size: 0.85rem; margin-bottom: 10px;
}
.section-alt .eyebrow{ color: var(--amber-ink); }
.section#servicos .eyebrow,
.section#servicos .section-head h2,
.section#servicos .section-head p,
.section#servicos .service-card h3,
.section#servicos .service-card p,
.section#servicos .services-extra{
  color: var(--white);
}
.section#servicos .service-card{
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}
.section#servicos .service-card p{
  color: rgba(255, 255, 255, 0.82);
}
.section#servicos .service-icon{
  background: var(--amber);
  color: var(--navy);
}
.section#servicos .service-card:nth-child(even) .service-icon{
  background: var(--cyan);
  color: var(--navy);
}
.section#servicos .services-extra{
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}
.section#servicos .services-extra strong{
  color: var(--amber-light);
}
.section-head h2{ font-size: clamp(1.7rem, 3.4vw, 2.3rem); }
.section-head p{ color: var(--gray-700); font-size: 1.05rem; margin: 12px auto 0; max-width: 560px; }

/* ---------- Sobre ---------- */
.about-grid{ display: grid; grid-template-columns: 1.15fr 1fr; gap: 40px 56px; align-items: start; margin-bottom: 56px; }
.about-media{
  grid-column: 1; grid-row: 1;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md);
  aspect-ratio: 3 / 2;
}
.about-media img{ width: 100%; height: 100%; object-fit: cover; }
.about-text{
  grid-column: 1 / -1; grid-row: 2;
  column-width: 420px; column-gap: 56px;
}
.about-text p{ color: var(--gray-700); margin: 0 0 1.2em; break-inside: avoid; }

.mv-cards{ display: flex; flex-direction: column; gap: 20px; }
.mv-card{
  background: var(--white); border: 1px solid var(--gray-100); border-left: 4px solid var(--cyan);
  border-radius: var(--radius); padding: 26px 28px; box-shadow: var(--shadow-sm);
}
.mv-card:nth-child(2){ border-left-color: var(--amber); }
.mv-card h3{ font-size: 1.25rem; margin-bottom: 0.4em; }
.mv-card p{ color: var(--gray-700); margin: 0; font-size: 0.96rem; }

.values-strip{
  background: var(--navy); border-radius: var(--radius); padding: 36px 40px;
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
}
.values-title{ color: var(--white); font-size: 1.3rem; margin: 0; flex-shrink: 0; }
.values-list{
  list-style: none; display: flex; flex-wrap: wrap; gap: 12px 16px; margin: 0; padding: 0; flex: 1;
}
.values-list li{
  color: var(--gray-100); font-size: 0.92rem; font-weight: 500; padding: 8px 16px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 999px;
  transition: border-color .2s ease, background-color .2s ease;
}
.values-list li:hover{ border-color: var(--amber); background: rgba(245,165,36,0.14); }

/* ---------- Serviços ---------- */
.cards-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card{
  background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-icon{
  width: 56px; height: 56px; border-radius: 50%; background: var(--royal); color: var(--cyan);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.service-icon svg{ width: 28px; height: 28px; }
.service-card:nth-child(even) .service-icon{ background: var(--amber); color: var(--navy); }
.service-card h3{ font-size: 1.2rem; margin-bottom: 0.35em; }
.service-card p{ color: var(--gray-700); margin: 0; font-size: 0.95rem; }

.services-extra{
  text-align: center; margin: 48px auto 0; max-width: 720px; color: var(--gray-700); font-size: 1.1rem;
  background: var(--white); border-radius: var(--radius); padding: 22px 32px; box-shadow: var(--shadow-sm);
}
.services-extra strong{ color: var(--navy); }

/* ---------- Atuação ---------- */
.fleet-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.fleet-item{
  position: relative; height: 400px; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.fleet-item img{
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.fleet-item::after{
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,32,89,0) 35%, rgba(16,32,89,0.88) 100%);
}
.fleet-item:hover img{ transform: scale(1.08); }
.fleet-content{
  position: relative; z-index: 2; height: 100%; display: flex; align-items: flex-end; gap: 14px; padding: 26px;
}
.fleet-icon-badge{
  width: 50px; height: 50px; border-radius: 50%; background: var(--cyan); color: var(--navy);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fleet-item:nth-child(even) .fleet-icon-badge{ background: var(--amber); }
.fleet-icon-badge svg{ width: 26px; height: 24px; }
.fleet-item h3{ color: var(--white); font-size: 1.3rem; margin: 0; }

/* ---------- Galeria ---------- */
.gallery-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gallery-item{
  position: relative; margin: 0; height: 320px; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery-item img{
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item::after{
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,32,89,0) 55%, rgba(16,32,89,0.86) 100%);
}
.gallery-item:hover img{ transform: scale(1.08); }
.gallery-item figcaption{
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 18px 20px;
  color: var(--white); font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; letter-spacing: 0.2px;
}
.gallery-item{ cursor: zoom-in; }
.gallery-item:focus-visible{ outline-color: var(--cyan); }
.gallery-zoom{
  position: absolute; top: 14px; right: 14px; z-index: 3; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.92); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.8);
  transition: opacity .25s ease, transform .25s ease;
  box-shadow: var(--shadow-sm);
}
.gallery-item:hover .gallery-zoom, .gallery-item:focus-visible .gallery-zoom{ opacity: 1; transform: scale(1); }
.gallery-zoom svg{ width: 20px; height: 20px; }

/* ---------- Lightbox ---------- */
.lightbox{ position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 24px; }
.lightbox[hidden]{ display: none; }
.lightbox-backdrop{ position: absolute; inset: 0; background: rgba(8, 12, 26, 0.9); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); animation: lightboxFade .25s ease; }
.lightbox-stage{
  position: relative; z-index: 2; margin: 0; max-width: calc(100vw - 48px); max-height: 90vh;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  animation: lightboxPop .3s cubic-bezier(.22, .68, .33, 1);
}
.lightbox-img{ max-width: 100%; max-height: calc(90vh - 90px); object-fit: contain; border-radius: 10px; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55); }
.lightbox-caption{ font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; letter-spacing: 0.3px; color: var(--white); text-align: center; padding: 0 12px; }

.lightbox-btn{
  position: absolute; z-index: 3; width: 46px; height: 46px; border-radius: 50%;
  border: none; background: var(--white); color: var(--navy); font-size: 1.7rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.lightbox-btn:hover{ background: var(--royal); color: var(--white); transform: scale(1.06); }
.lightbox-close{ top: 16px; right: 16px; }
.lightbox-prev{ left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover{ transform: translateY(-50%) scale(1.06); }
.lightbox-next{ right: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-next:hover{ transform: translateY(-50%) scale(1.06); }

@keyframes lightboxFade{ from{ opacity: 0; } to{ opacity: 1; } }
@keyframes lightboxPop{ from{ opacity: 0; transform: translateY(18px) scale(0.97); } to{ opacity: 1; transform: none; } }

body.no-scroll{ overflow: hidden; }

/* ---------- Depoimentos (carrossel) ---------- */
.testimonials-carousel{ position: relative; padding: 0 56px; }
.testimonials-viewport{ overflow: hidden; touch-action: pan-y; }
.testimonials-track{ display: flex; gap: 24px; will-change: transform; user-select: none; -webkit-user-select: none; }
.testimonials-track.animating{ transition: transform .55s cubic-bezier(.22,.68,.33,1); }
.testimonials-track.dragging{ transition: none; cursor: grabbing; }
.testimonials-track img{ pointer-events: none; -webkit-user-drag: none; user-drag: none; }

.testimonial-card{
  margin: 0; flex: 0 0 calc((100% - (var(--per-view, 3) - 1) * 24px) / var(--per-view, 3));
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
  border: 1px solid var(--gray-100); border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  outline-offset: 3px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.testimonial-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(28, 55, 145, 0.28); }
.testimonial-card:focus-visible{ outline-color: var(--cyan); }

.testimonial-stars{ color: var(--amber); font-size: 1.05rem; letter-spacing: 2px; }
.testimonial-card .testimonial-stars{ padding: 24px 26px 0; }
.testimonial-card blockquote{ margin: 0; padding: 0 26px; color: var(--gray-700); font-size: 0.96rem; line-height: 1.6; flex: 1; }
.testimonial-card figcaption{ display: flex; align-items: center; gap: 10px; padding: 0 26px 24px; font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: 1rem; }
.testimonial-avatar{
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--cyan), var(--royal-light));
  color: var(--white); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.5px;
}

.carousel-btn{
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--gray-100);
  background: var(--white); color: var(--navy); font-size: 1.7rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  box-shadow: var(--shadow-sm); transition: background-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.carousel-btn:hover{ background: var(--royal); color: var(--white); transform: translateY(-50%) scale(1.06); box-shadow: var(--shadow-md); }
.carousel-btn:disabled{ opacity: 0.35; cursor: default; pointer-events: none; }
.carousel-prev{ left: 0; }
.carousel-next{ right: 0; }

.carousel-dots{ display: flex; justify-content: center; gap: 10px; margin-top: 26px; }
.carousel-dot{
  width: 10px; height: 10px; border-radius: 999px; border: none; padding: 0;
  background: var(--gray-300); cursor: pointer; transition: width .25s ease, background-color .25s ease;
}
.carousel-dot:hover{ background: var(--gray-500); }
.carousel-dot.active{ width: 28px; background: var(--royal); }

@media (min-width: 1200px){
  #depoimentos > .container{ max-width: min(1680px, calc(100vw - 64px)); }
}

/* ---------- Bem-estar ---------- */
#bem-estar{
  position: relative;
  background:
    linear-gradient(160deg, rgba(10,12,20,0.82), rgba(10,12,20,0.62)),
    url("../img/photos/bem-estar-bg.jpg") center / cover no-repeat;
  background-attachment: fixed;
}
#bem-estar .eyebrow{ color: var(--amber-light); }
#bem-estar .section-head h2{ color: var(--white); }
#bem-estar .section-head p{ color: var(--gray-100); }
@media (max-width: 900px){ #bem-estar{ background-attachment: scroll; } }

#bem-estar .cards-grid{ gap: 28px; }

#bem-estar .service-card{
  position: relative; overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 36px 30px 30px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, border-color .25s ease;
}
#bem-estar .service-card::before{
  content: ""; position: absolute; top: -70px; right: -70px;
  width: 170px; height: 170px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,165,36,0.38) 0%, rgba(245,165,36,0) 70%);
  pointer-events: none; transition: transform .35s ease, opacity .35s ease;
}
#bem-estar .service-card:nth-child(even)::before{
  background: radial-gradient(circle, rgba(56,189,248,0.38) 0%, rgba(56,189,248,0) 70%);
}
#bem-estar .service-card:hover{
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
}
#bem-estar .service-card:hover::before{ transform: scale(1.4); }

#bem-estar .service-icon{
  position: relative;
  width: 66px; height: 66px;
  background: linear-gradient(135deg, var(--cyan), var(--royal-light));
  color: var(--white);
  box-shadow: 0 10px 26px rgba(56, 189, 248, 0.38);
  margin-bottom: 24px;
  transition: transform .3s ease, box-shadow .3s ease;
}
#bem-estar .service-card:nth-child(even) .service-icon{
  background: linear-gradient(135deg, var(--amber), #e07b12);
  box-shadow: 0 10px 26px rgba(245, 165, 36, 0.38);
}
#bem-estar .service-icon svg{ width: 32px; height: 32px; }
#bem-estar .service-card:hover .service-icon{
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 14px 36px rgba(56, 189, 248, 0.5);
}
#bem-estar .service-card:nth-child(even):hover .service-icon{
  box-shadow: 0 14px 36px rgba(245, 165, 36, 0.5);
}

#bem-estar .service-card h3{
  position: relative; color: var(--white);
  font-size: 1.35rem; letter-spacing: 0.3px;
  padding-bottom: 14px; margin-bottom: 12px;
}
#bem-estar .service-card h3::after{
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 44px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--amber));
}
#bem-estar .service-card p{ color: rgba(255, 255, 255, 0.82); font-size: 0.97rem; line-height: 1.65; }

#bem-estar .card-index{
  position: absolute; top: 16px; right: 20px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.32);
}

/* ---------- CTA banner ---------- */
.section-cta{
  position: relative; padding: 110px 0; text-align: center; color: var(--white); overflow: hidden;
  background:
    linear-gradient(160deg, rgba(16,32,89,0.90), rgba(28,55,145,0.82)),
    url("../img/photos/cta-bg.jpg") center / cover no-repeat;
  background-attachment: fixed;
}
@media (max-width: 900px){ .section-cta{ background-attachment: scroll; } }
@media (max-width: 900px){
  .section-bg{ background-attachment: scroll, scroll; }
}
.cta-inner{ max-width: 640px; margin: 0 auto; }
.section-cta h2{ color: var(--white); font-size: clamp(1.8rem, 3.6vw, 2.5rem); }
.section-cta p{ color: var(--gray-100); font-size: 1.08rem; margin-bottom: 1.8em; }

/* ---------- Contato ---------- */
.contact-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.contact-info{ display: flex; flex-direction: column; justify-content: space-between; }
.contact-list{ list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-direction: column; gap: 20px; }
.contact-list li{ display: flex; flex-direction: column; gap: 4px; }
.contact-label{ font-family: var(--font-display); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; font-size: 0.78rem; color: var(--royal); }
.contact-list a{ color: var(--ink); font-weight: 500; transition: color .2s ease; }
.contact-list a:hover{ color: var(--royal-light); }
.contact-info .btn{ align-self: flex-start; }

.contact-map{
  min-height: 340px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}
.contact-map iframe{ width: 100%; height: 100%; min-height: 340px; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--navy); color: var(--gray-300); padding-top: 64px; }
.footer-inner{ display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .brand-logo{ height: 54px; margin-bottom: 14px; }
.footer-brand p{ font-size: 0.9rem; max-width: 320px; }
.footer-nav h3, .footer-contact h3{ color: var(--white); font-size: 1.05rem; margin-bottom: 16px; }
.footer-nav ul{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-nav a, .footer-contact a{ font-size: 0.92rem; transition: color .2s ease; }
.footer-nav a:hover, .footer-contact a:hover{ color: var(--cyan); }
.footer-contact p{ margin: 0 0 10px; font-size: 0.92rem; }

.footer-bottom{ padding: 22px 0; font-size: 0.82rem; color: var(--gray-500); text-align: center; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float{
  position: fixed; right: 24px; bottom: 24px; width: 48px; height: 48px; border-radius: 50%;
  background: var(--white); box-shadow: 0 4px 16px rgba(0,0,0,0.25); display: flex; align-items: center; justify-content: center;
  z-index: 150; transition: transform .2s ease;
}
.whatsapp-float:hover{ transform: scale(1.08); }
.whatsapp-float svg{ width: 40px; height: 40px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px){
  .about-grid{ grid-template-columns: 1fr; }
  .cards-grid{ grid-template-columns: repeat(2, 1fr); }
  .fleet-grid{ grid-template-columns: repeat(2, 1fr); }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr 1fr; }
  .footer-brand{ grid-column: 1 / -1; }
}

@media (max-width: 760px){
  .header-cta{ display: none; }
  .nav-toggle{ display: flex; }
  .main-nav{ justify-content: flex-end; }
  .nav-menu{
    position: fixed; top: var(--header-h); left: 0; right: 0; flex-direction: column; gap: 0;
    background: var(--navy); max-height: 0; overflow: hidden; transition: max-height .25s ease;
  }
  .nav-menu.open{ max-height: 400px; }
  .nav-menu li{ border-top: 1px solid rgba(255,255,255,0.08); }
  .nav-menu a{ display: block; padding: 16px 24px; border-bottom: none; }

  .hero{ padding-top: calc(var(--header-h) + 56px); padding-bottom: 64px; }
  .hero-stats{ gap: 28px; }

  .section{ padding: 64px 0; }
  .cards-grid{ grid-template-columns: 1fr; }
  .fleet-grid{ grid-template-columns: 1fr 1fr; }
  .fleet-item{ height: 280px; }
  .gallery-grid{ grid-template-columns: 1fr; }
  .gallery-item{ height: 260px; }
  .testimonials-carousel{ padding: 0 40px; }
  .carousel-btn{ width: 38px; height: 38px; font-size: 1.4rem; }
  .carousel-prev{ left: 0; }
  .carousel-next{ right: 0; }
  .lightbox-btn{ width: 40px; height: 40px; font-size: 1.4rem; }
  .lightbox-close{ top: 8px; right: 8px; }
  .lightbox-prev{ left: 8px; }
  .lightbox-next{ right: 8px; }
  .values-strip{ flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-inner{ grid-template-columns: 1fr; }
}
