/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: light only; font-size: 16px; -webkit-text-size-adjust: 100%; overflow-y: scroll; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

:root {
  --bg:          #eef2f7;
  --bg-alt:      #ffffff;
  --ink:         #101826;
  --ink-soft:    #5b6472;
  --cyan:        #0091ac;
  --cyan-bright: #00b8d9;
  --cyan-tint:   rgba(0,145,172,0.08);
  --orange:      #ff6b2b;
  --border:      rgba(16,24,38,0.09);
  --shadow-sm:   0 6px 18px rgba(16,24,38,0.06);
  --shadow-md:   0 16px 34px rgba(16,24,38,0.10);
  --nav-h:       64px;
  --radius:      14px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--cyan-bright); outline-offset: 3px; }
::selection { background: var(--cyan-bright); color: #fff; }

/* =============================================
   UTILITÁRIOS
   ============================================= */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 5%; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--cyan);
  margin-bottom: .6rem; display: block;
  padding-left: 22px; position: relative;
}
.section-label::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%); width: 14px; height: 1px;
  background: var(--cyan);
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 1rem; color: var(--ink);
}
.section-sub {
  color: var(--ink-soft); font-size: .95rem;
  line-height: 1.75; max-width: 500px;
}

/* =============================================
   SCROLL REVEAL — só esconde quando o JS confirma que está rodando
   (html.js, setado por um script inline no <head>). Sem JS
   (ex: pré-visualização do iOS que não executa scripts), o
   conteúdo já nasce visível.
   ============================================= */
.js .reveal, .js .reveal-left, .js .reveal-right, .js .reveal-scale {
  opacity: 0; transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
}
.js .reveal       { transform: translateY(28px); }
.js .reveal-left  { transform: translateX(-32px); }
.js .reveal-right { transform: translateX(32px); }
.js .reveal-scale { transform: scale(.92); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1); }
.reveal.in-view, .reveal-left.in-view, .reveal-right.in-view, .reveal-scale.in-view {
  opacity: 1; transform: none;
}
.reveal-stagger .reveal:nth-child(1)  { transition-delay: 0s; }
.reveal-stagger .reveal:nth-child(2)  { transition-delay: .08s; }
.reveal-stagger .reveal:nth-child(3)  { transition-delay: .16s; }
.reveal-stagger .reveal:nth-child(4)  { transition-delay: .24s; }
.reveal-stagger .reveal-scale:nth-child(1) { transition-delay: 0s; }
.reveal-stagger .reveal-scale:nth-child(2) { transition-delay: .08s; }
.reveal-stagger .reveal-scale:nth-child(3) { transition-delay: .16s; }
.reveal-stagger .reveal-scale:nth-child(4) { transition-delay: .24s; }
.reveal-stagger .reveal-scale:nth-child(5) { transition-delay: .32s; }
.reveal-stagger .reveal-scale:nth-child(6) { transition-delay: .40s; }
.reveal-stagger .reveal-scale:nth-child(7) { transition-delay: .48s; }
.reveal-stagger .reveal-scale:nth-child(8) { transition-delay: .56s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; transition: none; }
  .hero-bg, .hero-grid { transform: none !important; }
}

/* =============================================
   NAV
   nav-links fica FORA do <nav> no HTML para escapar
   do stacking context criado pelo backdrop-filter,
   que prendia filhos position:fixed dentro do elemento pai.
   ============================================= */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h); padding: 0 5%;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); /* efeito vidro fosco */
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 54px; width: 54px; border-radius: 8px; object-fit: cover; object-position: center; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 800;
  color: var(--ink); letter-spacing: .5px; text-transform: uppercase;
}
.nav-logo-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .7rem; font-weight: 700;
  color: var(--cyan); letter-spacing: 2.5px; text-transform: uppercase;
}

.nav-links {
  position: fixed; top: 0; right: 5%; height: var(--nav-h);
  display: flex; align-items: center; gap: 2rem;
  z-index: 101;
}
.nav-links a {
  color: var(--ink); font-size: .92rem; font-weight: 500;
  letter-spacing: .2px; padding: .3rem 0; opacity: .8;
  transition: opacity .2s; position: relative;
}
.nav-links a svg { display: none; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan-bright), var(--cyan));
  transition: width .25s ease;
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 0; z-index: 102;
  color: var(--ink);
}
.nav-toggle .icon-x   { display: none; }
.nav-toggle .icon-menu { display: block; }
.nav-toggle.open .icon-x   { display: block; }
.nav-toggle.open .icon-menu { display: none; }

.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(16,24,38,0.45); backdrop-filter: blur(2px);
  z-index: 100; opacity: 0; transition: opacity .3s ease; pointer-events: none;
}
.nav-overlay.open { display: block; opacity: 1; pointer-events: auto; }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100svh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: calc(var(--nav-h) + 40px) 5% 60px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: -10% -5% -5% -5%;
  background: url('../images/loja_fachada.jpeg') center/cover no-repeat;
  will-change: transform;
}
.hero-grid {
  position: absolute; inset: -10% -5% -5% -5%;
  background: linear-gradient(160deg, rgba(10,20,35,0.72) 0%, rgba(0,80,100,0.55) 60%, rgba(10,20,35,0.65) 100%);
  will-change: transform;
}
.hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 20px; margin-bottom: 1.5rem;
}
.hero-badge span { width: 6px; height: 6px; background: var(--cyan-bright); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.3;} }

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800; line-height: 1.05; margin-bottom: 1.2rem; color: #fff;
}
.hero h1 em { color: var(--cyan-bright); font-style: normal; }
.hero p { font-size: 1.05rem; color: rgba(255,255,255,0.8); line-height: 1.75; max-width: 480px; margin: 0 auto 2rem; }

.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-chips {
  display: flex; flex-wrap: wrap; gap: .5rem;
  justify-content: center; margin-bottom: 2rem;
}
.chip {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85); font-size: .78rem; font-weight: 500;
  padding: 5px 14px; border-radius: 20px;
  backdrop-filter: blur(6px);
  white-space: nowrap; width: 160px;
}
.chip svg { color: var(--cyan-bright); flex-shrink: 0; }
.btn-primary, .btn-secondary {
  width: 200px; justify-content: center; white-space: nowrap;
}
.btn-primary {
  background: var(--orange); color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem; letter-spacing: .5px;
  padding: .6rem 2rem; border-radius: 8px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform .2s, opacity .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-2px); opacity: .92; box-shadow: 0 10px 24px rgba(255,107,43,0.25); }
.btn-secondary {
  background: rgba(255,255,255,0.12); color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 1rem;
  padding: .6rem 2rem; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.3);
  display: inline-flex; align-items: center;
  transition: border .2s, background .2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.2); }

.hero-stats {
  display: flex; gap: 2.5rem; justify-content: center;
  margin-top: 3.5rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.stat strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--cyan-bright); }
.stat span   { font-size: 12px; color: rgba(255,255,255,0.65); letter-spacing: .5px; text-transform: uppercase; }

/* =============================================
   SERVIÇOS
   ============================================= */
.services { padding: 80px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem; margin-top: 3rem;
}
.service-card {
  background: var(--bg-alt); padding: 1.75rem;
  border: 1px solid var(--border); border-radius: 18px;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex; flex-direction: column;
}
.service-card::before {
  content: ''; position: absolute; left: 0; top: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--cyan-bright), var(--cyan));
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--cyan-bright); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--cyan-tint); display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.25rem;
  color: var(--cyan);
  transition: transform .3s, background .3s, color .3s;
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-4deg); background: var(--cyan-bright); color: #fff; }
.service-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.15rem; font-weight: 700; margin-bottom: .4rem; }
.service-tag {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: .5px; color: var(--cyan); background: var(--cyan-tint);
  border: 1px solid var(--border); padding: 3px 10px; border-radius: 4px;
  margin-bottom: .7rem; height: 22px; line-height: 16px;
}
.service-card p { font-size: .83rem; color: var(--ink-soft); line-height: 1.65; flex: 1; }
.service-link { display: inline-block; margin-top: .9rem; font-size: .82rem; font-weight: 600; color: var(--cyan); text-decoration: none; transition: color .2s, transform .2s; }
.service-link:hover { color: var(--cyan-bright); transform: translateX(3px); }
.service-metric {
  display: flex; align-items: baseline; gap: 6px;
  margin-top: 1.2rem; padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.metric-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem; font-weight: 800; color: var(--cyan);
  line-height: 1;
}
.metric-label {
  font-size: .75rem; color: var(--ink-soft); line-height: 1.3;
}

/* =============================================
   CADEIRAS — PHOTO CAROUSEL
   ============================================= */
.chairs { padding: 80px 0; background: var(--bg-alt); }
.photo-carousel {
  position: relative; margin-top: 3rem;
}
.photo-viewport {
  overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}
.js .photo-viewport { overflow: hidden; }
.photo-track {
  display: flex; gap: 1rem;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.photo-slide {
  flex: 0 0 calc((100% - 2rem) / 3);
  border-radius: 14px; overflow: hidden;
  aspect-ratio: 3/4;
  scroll-snap-align: start;
}
.photo-slide img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.photo-prev, .photo-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.9); border: 1px solid var(--border);
  color: var(--ink); cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background .2s, color .2s, border-color .2s;
  padding: 0;
}
.photo-prev { left: -20px; }
.photo-next { right: -20px; }
.photo-prev:hover, .photo-next:hover { background: var(--cyan-bright); color: #fff; border-color: var(--cyan-bright); }
.photo-dots {
  display: flex; gap: 8px; justify-content: center;
  margin-top: 1rem;
}
.photo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer;
  padding: 0; transition: background .2s, transform .2s;
}
.photo-dot.active { background: var(--cyan-bright); transform: scale(1.3); }
.chairs-cta {
  margin-top: 1.5rem; font-size: .88rem;
  color: var(--ink-soft); text-align: center; display: block;
}
.chairs-cta a {
  color: var(--cyan); font-weight: 600;
  border-bottom: 1px solid var(--cyan-tint);
  transition: border-color .2s;
}
.chairs-cta a:hover { border-color: var(--cyan); }

/* =============================================
   PLANOS
   ============================================= */
.plans { padding: 80px 0; }
.plans-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin: 3rem auto 0;
}
.plan-card {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem; position: relative;
  box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.plan-card.featured {
  border-color: var(--cyan-bright);
  background: linear-gradient(160deg, #f0fbff 0%, #ffffff 60%);
  transform: translateY(-8px);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--cyan-bright);
}
.plan-card.featured:hover { transform: translateY(-14px); }
.plan-pill {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--cyan-bright); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 14px;
  border-radius: 20px; white-space: nowrap;
}
.plan-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--cyan-tint); display: flex;
  align-items: center; justify-content: center;
  color: var(--cyan); margin-bottom: 1rem;
}
.plan-icon.featured-icon { background: var(--cyan-bright); color: #fff; }
.plan-name { font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 800; margin-bottom: .3rem; }
.plan-desc { font-size: .82rem; color: var(--ink-soft); margin-bottom: 1.5rem; line-height: 1.5; }
.plan-items { list-style: none; flex: 1; }
.plan-items li {
  font-size: .85rem; padding: .35rem 0;
  border-bottom: 1px solid rgba(16,24,38,0.06);
  display: flex; gap: 8px; align-items: baseline;
}
.plan-items li:last-child { border-bottom: none; }
.check { color: var(--cyan); flex-shrink: 0; font-size: .7rem; }
.check.muted { color: var(--border); }
.muted { color: var(--ink-soft); opacity: .45; }
.plan-cta {
  display: block; text-align: center; margin-top: 1.5rem;
  padding: .8rem; border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem; letter-spacing: .3px;
  transition: opacity .2s, transform .2s;
}
.plan-cta.light { background: rgba(16,24,38,0.05); color: var(--ink); border: 1px solid var(--border); }
.plan-cta.dark  { background: var(--orange); color: #fff; }
.plan-cta:hover { opacity: .88; transform: translateY(-2px); }
.plans-note {
  text-align: center; margin-top: 1.5rem;
  font-size: .78rem; color: var(--ink-soft);
}

/* =============================================
   EMPRESA
   ============================================= */
.empresa { padding: 80px 0; background: var(--bg-alt); }
.empresa-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 3rem; align-items: start; margin-top: 3rem;
}
.empresa-text p {
  color: var(--ink-soft); line-height: 1.85;
  font-size: 1rem; margin-bottom: 1rem;
}
.empresa-stats {
  display: flex; flex-direction: column; gap: 1rem;
  padding: 1.5rem 0; margin-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.empresa-stat strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem; font-weight: 800; color: var(--cyan);
  line-height: 1;
}
.empresa-stat span {
  font-size: .75rem; color: var(--ink-soft);
  text-transform: uppercase; letter-spacing: .5px;
}
.mvv-grid { margin-top: 0; }
.mvv-placa {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0,145,172,0.15);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  box-shadow: 0 8px 32px rgba(16,24,38,0.08);
  text-align: center;
}
.mvv-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--cyan-bright); margin-bottom: .6rem;
}
.mvv-item p {
  font-size: .88rem; color: var(--ink);
  line-height: 1.7; font-weight: 500; margin: 0;
}
.mvv-divider {
  width: 40px; height: 2px;
  background: var(--cyan-bright); opacity: .25;
  margin: 1.25rem auto;
  border-radius: 2px;
}
.mvv-valores {
  list-style: none;
  display: flex; flex-direction: column; gap: .3rem;
}
.mvv-valores li {
  font-size: .9rem; font-weight: 600; color: var(--ink);
}

/* =============================================
   CTA FINAL
   ============================================= */
.cta-section {
  padding: 100px 5%; text-align: center;
  position: relative; overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(0,145,172,0.08) 0%, transparent 70%), var(--bg);
}
.cta-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800; margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.cta-section p { font-size: 1rem; color: var(--ink-soft); margin-bottom: 2.5rem; position: relative; z-index: 1; }
.wpp-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.1rem;
  padding: 1rem 2.5rem; border-radius: 10px;
  transition: transform .2s, opacity .2s, box-shadow .2s;
  position: relative; z-index: 1;
}
.wpp-btn:hover { transform: translateY(-2px); opacity: .92; box-shadow: 0 12px 28px rgba(37,211,102,0.28); }

/* =============================================
   FAQ
   ============================================= */
.faq { padding: 80px 0; }
.faq-list { margin-top: 2.5rem; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 0; cursor: pointer;
  font-weight: 600; font-size: .98rem; color: var(--ink);
  list-style: none; gap: 1rem;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%230091ac' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform .3s ease;
}
.faq-item[open] summary { color: var(--cyan); }
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item p {
  padding: 0 0 1.2rem;
  color: var(--ink-soft); font-size: .92rem; line-height: 1.75;
  margin: 0;
}

/* =============================================
   WHATSAPP FLUTUANTE
   ============================================= */
.wpp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  display: flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: .88rem;
  padding: 12px 20px 12px 16px; border-radius: 50px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  transition: transform .2s, box-shadow .2s, opacity .3s;
  white-space: nowrap;
}
.wpp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.45);
}
.wpp-float span { display: block; }
@media (max-width: 600px) {
  .wpp-float { padding: 14px; border-radius: 50%; }
  .wpp-float span { display: none; }
}

/* =============================================
   FOOTER
   ============================================= */
footer { background: var(--ink); padding: 1.15rem 5%; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo { height: 48px; width: 48px; border-radius: 6px; object-fit: cover; object-position: center; }
.footer-contact {
  display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap;
}
.footer-contact a, .footer-contact span {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.55); font-size: .88rem;
  transition: color .2s;
}
.footer-contact a:hover { color: var(--cyan-bright); }
.footer-contact svg { color: var(--cyan-bright); flex-shrink: 0; }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.25); white-space: nowrap; }
@media (max-width: 1100px) {
  footer { padding: 1.5rem 8%; }
  .footer-inner { flex-direction: column; align-items: center; gap: .75rem; }
  .footer-logo { margin: 0 auto; }
  .footer-contact { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: .5rem 1.5rem; width: 100%; }
  .footer-contact a, .footer-contact span { justify-content: center; text-align: center; font-size: .78rem; }
  .footer-copy { text-align: center; }
}

@media (max-width: 480px) {
  /* FOOTER */
  .footer-inner { flex-direction: column; align-items: center; gap: .8rem; }
  .footer-contact { flex-direction: column; align-items: center; gap: .6rem; }
  .footer-copy { align-self: center; }
}

/* =============================================
   RESPONSIVO
   Breakpoints:
   - 1099px: services-grid 2 colunas
   - 768px:  menu mobile, planos em coluna, empresa em coluna
   - 480px:  tudo em coluna única, carousel 1 foto
   ============================================= */
@media (max-width: 1099px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .empresa-stats { flex-direction: row; justify-content: center; gap: 2rem; text-align: center; }
  .empresa-stat strong { font-size: 1.5rem; }
}

@media (max-width: 768px) {
  /* NAV */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: 0; height: 100vh;
    width: min(72vw, 280px);
    background: #1e2d3d;
    flex-direction: column;
    justify-content: flex-start; align-items: stretch;
    gap: 0; padding: .5rem 0 2rem;
    transform: translateX(100%); transition: transform .35s ease;
    box-shadow: -8px 0 40px rgba(16,24,38,0.35);
    overflow-y: auto; z-index: 101;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    font-size: .95rem; font-weight: 600;
    color: rgba(255,255,255,.7);
    padding: .9rem 1.75rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
    opacity: 1;
    display: flex; align-items: center; gap: .75rem;
    transition: background .2s, color .2s;
  }
  .nav-links a::after { display: none; }
  .nav-links a:hover { background: rgba(255,255,255,.06); color: var(--cyan-bright); }
  .nav-links a svg { display: flex; }
  .nav-links a:hover svg { opacity: 1; color: var(--cyan-bright); }

  /* HERO PARALLAX — desativado em mobile */
  .hero-bg, .hero-grid { transform: none !important; will-change: auto; }
  .chip { width: 160px; }
  .btn-primary, .btn-secondary { width: 180px; }
  .hero-stats { gap: 1.5rem; }

  /* SERVIÇOS */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* CAROUSEL */
  .photo-slide { flex: 0 0 calc((100% - 1rem) / 2); }
  .photo-prev { left: 4px; }
  .photo-next { right: 4px; }

  /* PLANOS */
  .plans-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .plan-card.featured { transform: none; }
  .plan-card.featured:hover { transform: translateY(-6px); }

  /* EMPRESA */
  .empresa-grid { grid-template-columns: 1fr; gap: 2rem; }
  .empresa-stats { flex-direction: row; justify-content: center; gap: 2rem; text-align: center; }
  .empresa-stat strong { font-size: 1.5rem; }
  .mvv-grid { display: flex; justify-content: center; }
  .mvv-placa { max-width: 100%; width: 100%; }
}

@media (max-width: 480px) {
  /* GERAL */
  .services, .chairs, .plans, .empresa, .faq { padding: 52px 0; }
  .section-title { font-size: 1.8rem; }

  /* NAV */
  .nav-logo img { height: 48px; width: 48px; }

  /* HERO */
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .stat { flex: 1 1 40%; }
  .hero-btns { flex-direction: column; align-items: center; }
  .chip { width: 160px; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 260px; }

  /* SERVIÇOS */
  .services-grid { grid-template-columns: 1fr; }

  /* CAROUSEL — 1 foto */
  .photo-slide { flex: 0 0 100%; }
  .photo-prev { left: 4px; }
  .photo-next { right: 4px; }

  /* EMPRESA */
  .empresa-stats { flex-direction: column; gap: .8rem; }
  .mvv-placa { padding: 1.5rem 1.25rem; }

  /* FOOTER */
  .footer-contact { flex-direction: column; align-items: center; gap: .4rem; }

  /* WHATSAPP FLUTUANTE */
  .wpp-float { padding: 14px; border-radius: 50%; }
  .wpp-float span { display: none; }
}
