/* =========================================================
   JL Telecom — Design System
   ========================================================= */
:root {
  --orange: #FF6700;
  --orange-hover: #e05a00;
  --black-soft: #1d1d1f;
  --gray-mid: #6e6e73;
  --gray-light: #aeaeb2;
  --bg-white: #fff;
  --bg-gray: #f5f5f7;
  --border: #e8e8ed;
  --green-wa: #25D366;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  background: var(--bg-white);
  color: var(--black-soft);
}

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

a { color: var(--orange); }
a:hover { color: var(--orange-hover); }

.text-orange { color: var(--orange); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 6vw, 40px);
}

.section-title {
  font-size: clamp(30px, 6vw, 44px);
  font-weight: 800;
  color: var(--black-soft);
  text-align: center;
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 17px;
  font-weight: 400;
  color: var(--gray-mid);
  text-align: center;
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}

/* ---- reveal on scroll ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 980px;
  font-family: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-solid {
  background: var(--orange);
  color: #fff;
  padding: 14px 30px;
  font-size: 14px;
}
.btn-solid:hover { background: var(--orange-hover); color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  padding: 12px 28px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.btn-outline:hover { background: var(--orange); color: #fff; }

/* =========================================================
   Nav
   ========================================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  height: 60px;
  display: flex;
  align-items: center;
  transform: translateZ(0);
}
.navbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 clamp(20px, 6vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__logo {
  display: inline-block;
  width: 159px;
  height: 45px;
  overflow: hidden;
}
.navbar__logo img { width: 100%; height: 100%; object-fit: contain; }
.navbar__cta {
  background: var(--orange);
  color: #fff;
  padding: 9px 22px;
  border-radius: 980px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
  text-decoration: none;
  display: inline-block;
}
.navbar__cta:hover { background: var(--orange-hover); color: #fff; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #fff;
  text-align: center;
}
.hero__bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  top: -14%;
  bottom: auto;
  height: 114%;
}
.hero__bg-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.5) 45%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}
.hero__glow-line {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  z-index: 4;
  background: linear-gradient(90deg, transparent 0%, rgba(255,103,0,0.9) 20%, rgba(255,150,80,0.95) 50%, rgba(255,103,0,0.9) 80%, transparent 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 0 24px 2px rgba(255,103,0,0.5);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 6vw, 40px);
  display: flex;
  justify-content: center;
  transform: translateY(10%);
}
.hero__inner {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__title {
  font-size: clamp(34px, 7.5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: #fff;
  margin: 0 0 18px;
  animation: heroFadeUp .8s cubic-bezier(.22,.61,.36,1) .15s both;
}
.hero__subtitle {
  font-size: clamp(13px, 3.4vw, 18px);
  font-weight: 600;
  color: var(--orange);
  line-height: 1.5;
  margin: 0 0 36px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: clamp(9px, 2.5vw, 12px) clamp(16px, 5vw, 28px);
  border-radius: 980px;
  border: 1px solid rgba(255,255,255,0.7);
  white-space: nowrap;
  display: inline-block;
  animation: heroFadeUp .8s cubic-bezier(.22,.61,.36,1) .35s both;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  animation: heroFadeUp .8s cubic-bezier(.22,.61,.36,1) .55s both;
}
.hero__cta {
  background: var(--orange);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  cursor: pointer;
  padding: 12px 28px;
  border-radius: 980px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .2px;
  text-decoration: none;
  display: inline-block;
}
.hero__cta:hover { background: var(--orange-hover); color: #fff; outline-color: var(--orange-hover); }

.hero__scroll {
  position: relative;
  z-index: 5;
  margin-top: 24px;
  animation: heroFadeUpScroll .8s cubic-bezier(.22,.61,.36,1) .75s both;
}
.hero__scroll-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,103,0,0.3);
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
  text-decoration: none;
  animation: arrowPulse 2.8s cubic-bezier(0.45,0,0.55,1) infinite;
}
.hero__scroll-btn svg {
  width: 20px; height: 20px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes arrowPulse {
  0% { transform: translateY(0); opacity: 0.9; }
  50% { transform: translateY(9px); opacity: 0.4; }
  100% { transform: translateY(0); opacity: 0.9; }
}

/* ---- entrada do texto do hero ---- */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeUpScroll {
  from { opacity: 0; transform: translateY(calc(30% + 16px)); }
  to { opacity: 1; transform: translateY(30%); }
}

/* =========================================================
   Serviços
   ========================================================= */
.section-servicos { padding: clamp(56px, 10vw, 96px) 0; background: #fff; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 12px;
  margin-top: clamp(32px, 6vw, 64px);
}

.service-card {
  background: #fff;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color .3s ease, transform .3s ease;
}
.service-card__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 0;
}
.service-card__body { position: relative; z-index: 1; }
.service-card__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff3ec;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card__icon svg {
  width: 22px; height: 22px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card__title { font-size: 16px; font-weight: 700; color: var(--black-soft); margin: 0 0 8px; }
.service-card__desc { font-size: 13px; color: var(--gray-mid); line-height: 1.65; margin: 0; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  margin-top: 14px;
  text-decoration: none;
  text-transform: uppercase;
}

/* =========================================================
   Planos
   ========================================================= */
.section-planos { padding: clamp(56px, 10vw, 96px) 0; background: var(--bg-gray); }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: clamp(32px, 6vw, 64px);
}

.plan-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: border-color .3s ease, transform .3s ease;
}
.plan-card--featured {
  border: 2px solid var(--orange);
  box-shadow: 0 8px 32px rgba(255,103,0,0.15);
  transform: scale(1.03);
  transition: transform .3s ease;
}
.plan-card__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 0;
  border-radius: 18px;
}
.plan-card__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 980px;
  white-space: nowrap;
  z-index: 2;
}
.plan-card__body { display: flex; flex-direction: column; flex: 1; position: relative; z-index: 1; }
.plan-card__tier {
  font-size: 11px; font-weight: 700; color: var(--orange);
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px;
}
.plan-card__speed {
  font-size: clamp(48px, 11vw, 68px);
  font-weight: 900;
  color: var(--black-soft);
  line-height: 1;
  letter-spacing: -2px;
}
.plan-card__speed sub { font-size: 18px; font-weight: 600; color: var(--gray-light); letter-spacing: 0; }
.plan-card__divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.plan-card__from { font-size: 11px; color: var(--gray-light); display: block; margin-bottom: 4px; }
.plan-card__price { font-size: clamp(26px, 6.5vw, 28px); font-weight: 800; color: var(--orange); letter-spacing: -.5px; }
.plan-card__price sup { font-size: 15px; font-weight: 600; }
.plan-card__price sub { font-size: 12px; font-weight: 400; color: var(--gray-light); letter-spacing: 0; }
.plan-card__features {
  list-style: none;
  text-align: left;
  margin: 20px 0;
  padding: 0;
}
.plan-card__features li {
  font-size: 12px;
  color: var(--gray-mid);
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--bg-gray);
}
.plan-card__features li:last-child { border-bottom: none; }
.plan-card__features li span { color: var(--orange); font-weight: 800; }
.plan-card__cta {
  width: 100%;
  box-sizing: border-box;
  padding: 12px;
  border-radius: 980px;
  border: 1.5px solid var(--orange);
  background: transparent;
  color: var(--orange);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .3px;
  text-transform: uppercase;
  margin-top: auto;
  display: block;
  text-decoration: none;
  text-align: center;
}
.plan-card__cta:hover { background: var(--orange); color: #fff; }
.plan-card__cta--solid { background: var(--orange); color: #fff; }
.plan-card__cta--solid:hover { background: var(--orange); color: #fff; }

/* =========================================================
   Produtos / Carrossel
   ========================================================= */
.section-produtos { background: var(--bg-gray); padding: clamp(56px, 10vw, 96px) 0; }

.produtos-sub {
  font-size: clamp(13px, 3.4vw, 17px);
  font-weight: 400;
  color: var(--gray-mid);
  text-align: center;
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto;
}
@media (min-width: 641px) {
  .produtos-sub { white-space: nowrap; }
}

.carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 64px;
}
.carousel__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--black-soft);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.carousel__btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.carousel__btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

.carousel__viewport { flex: 1; overflow: hidden; border-radius: 24px; min-width: 0; }
.carousel__track { display: flex; will-change: transform; }

.carousel__slide {
  min-width: 100%;
  width: 100%;
  min-height: 420px;
  position: relative;
  flex-shrink: 0;
  box-sizing: border-box;
}
.carousel__slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.carousel__slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.35) 70%, rgba(0,0,0,0.2) 100%);
}
.carousel__slide-content {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 6vw, 56px) clamp(20px, 6vw, 60px);
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 580px;
}
.carousel__eyebrow { font-size: 11px; font-weight: 700; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.carousel__title { font-size: clamp(24px, 5.5vw, 42px); font-weight: 900; color: #fff; line-height: 1.1; margin: 0 0 16px; letter-spacing: -.8px; }
.carousel__desc { font-size: clamp(13px, 3vw, 15px); color: rgba(255,255,255,0.7); line-height: 1.7; margin: 0 0 24px; max-width: 100%; }
.carousel__list { list-style: none; display: flex; flex-direction: column; gap: 6px; margin: 0 0 32px; padding: 0; }
.carousel__list li { font-size: 13px; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 8px; }
.carousel__list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--orange); flex-shrink: 0; display: inline-block; }
.carousel__cta {
  display: inline-flex;
  align-items: center;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 980px;
  font-size: 13px;
  font-weight: 700;
  width: fit-content;
}

.carousel__dots { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 24px; }
.carousel__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  padding: 0;
  background: #d2d2d7;
  transition: background .2s, width .3s;
}
.carousel__dot.is-active {
  background: var(--orange);
  width: 22px;
  border-radius: 4px;
}

@media (max-width: 640px) {
  .carousel__btn { display: none; }
}

/* =========================================================
   Sobre nós
   ========================================================= */
.section-sobre {
  padding: clamp(56px, 10vw, 96px) clamp(20px, 6vw, 40px);
  background: #fff;
  position: relative;
  overflow: hidden;
}
.sobre__bg {
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: min(900px, 90vw);
  height: 100%;
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  filter: blur(1px);
}
.sobre__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.sobre__title {
  font-size: clamp(30px, 6vw, 44px);
  font-weight: 800;
  color: var(--black-soft);
  line-height: 1.15;
  letter-spacing: -.8px;
  margin-bottom: 24px;
}
.sobre__text {
  font-size: 17px;
  font-weight: 400;
  color: var(--gray-mid);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}
.hero-break { display: none; }

/* =========================================================
   FAQ
   ========================================================= */
.section-faq { padding: clamp(56px, 10vw, 96px) clamp(20px, 6vw, 40px); background: #fff; }
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-title { font-size: clamp(30px, 6vw, 44px); font-weight: 800; color: var(--black-soft); text-align: center; line-height: 1.15; letter-spacing: -.8px; margin-bottom: 48px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; position: relative; }
.faq-item__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 0;
}
.faq-item__q {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--black-soft);
  -webkit-tap-highlight-color: rgba(255,103,0,0.15);
  outline: none;
}
.faq-item__icon {
  transition: transform .25s ease;
  color: var(--orange);
  font-weight: 400;
  font-size: 18px;
  transform: rotate(0deg);
}
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }
.faq-item__a {
  position: relative;
  z-index: 1;
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.22,1,.36,1);
}
.faq-item.is-open .faq-item__a { max-height: 240px; }
.faq-item__a p { margin: 0; padding: 0 24px 20px; font-size: 14px; color: var(--gray-mid); line-height: 1.65; min-height: 0; overflow: hidden; }

/* =========================================================
   Contato
   ========================================================= */
.section-contato { background: var(--bg-gray); padding: clamp(56px, 10vw, 96px) clamp(20px, 6vw, 40px); }
.contato-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
}
.contato-col { text-align: left; }
.contato-heading {
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 800;
  color: var(--black-soft);
  letter-spacing: -.8px;
  line-height: 1.15;
  margin: 0 0 14px;
}
.contato-sub { font-size: 17px; color: var(--gray-mid); margin: 0 0 32px; line-height: 1.6; max-width: 420px; }
.contato-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 980px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 36px;
}
.contato-wa-btn:hover { background: var(--orange-hover); color: #fff; }
.contato-wa-btn svg { width: 22px; height: 22px; fill: #fff; flex-shrink: 0; }

.contato-links { display: flex; flex-direction: column; gap: 4px; }
.contato-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  margin: 0 -10px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s;
}
.contato-link:hover { background: #fff; }
.contato-link svg { width: 16px; height: 16px; stroke: var(--orange); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.contato-link span { font-size: 14px; color: var(--black-soft); font-weight: 500; }

.contato-hours { display: flex; align-items: flex-start; gap: 10px; padding: 8px 10px; margin: 0 -10px; }
.contato-hours svg { width: 16px; height: 16px; stroke: var(--orange); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 2px; }
.hours-text { font-size: 14px; color: var(--black-soft); font-weight: 500; text-align: left; }
.hours-break { display: none; }

.contato-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.contato-form__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 0;
}
.contato-form__label,
.contato-form__sub,
.contato-form__fields {
  position: relative;
  z-index: 1;
}
.contato-form__label { font-size: 12px; font-weight: 700; color: var(--gray-mid); letter-spacing: 1px; text-transform: uppercase; display: block; margin-bottom: 6px; }
.contato-form__sub { font-size: 14px; color: var(--gray-mid); margin: 0 0 20px; line-height: 1.5; }
.contato-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.contato-form input,
.contato-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 18px;
  border: 1px solid #d2d2d7;
  border-radius: 12px;
  outline: none;
  font-size: 14px;
  font-family: inherit;
  color: var(--black-soft);
  background: var(--bg-gray);
  transition: border-color .2s, background .2s;
}
.contato-form textarea { resize: vertical; min-height: 100px; margin-bottom: 14px; display: block; }
.contato-form input:focus,
.contato-form textarea:focus { border-color: var(--orange); background: #fff; }
.contato-form__submit {
  width: 100%;
  padding: 13px;
  border-radius: 980px;
  border: 1.5px solid var(--orange);
  background: transparent;
  color: var(--orange);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
}
.contato-form__submit:hover { background: var(--orange); color: #fff; }
.contato-form__submit:disabled { opacity: .6; cursor: not-allowed; }

.contato-form__honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.contato-form__status {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  min-height: 0;
}
.contato-form__status.is-success { color: #1a8f4c; }
.contato-form__status.is-error { color: #d92d20; }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: var(--black-soft); border-top: 1px solid var(--black-soft); }
.footer__inner { max-width: 1200px; margin: 0 auto; }
.footer__cols {
  padding: clamp(40px, 8vw, 56px) clamp(20px, 6vw, 40px) clamp(32px, 6vw, 48px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(48px, 10vw, 96px);
  align-items: start;
  text-align: center;
}
.footer__heading { font-size: 12px; font-weight: 700; color: #fff; letter-spacing: .5px; margin: 0 0 16px; text-transform: uppercase; text-align: center; }
.footer__list { list-style: none; margin: 0; padding: 0; }
.footer__li { margin-bottom: 10px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.footer__li:last-child { margin-bottom: 0; }
.footer__li a { font-size: 13px; color: var(--gray-light); text-decoration: none; }
.footer__social { display: flex; gap: 10px; margin-top: 4px; justify-content: center; }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid #3a3a3c;
  background: #2c2c2e;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.footer__social a:hover { border-color: var(--orange); background: rgba(255,103,0,0.15); }
.footer__social a svg { width: 16px; height: 16px; fill: var(--gray-light); }

.footer__bottom {
  border-top: 1px solid #333;
  padding: 20px clamp(20px, 6vw, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__logo-wrap { display: flex; align-items: center; gap: 20px; justify-content: center; flex-wrap: wrap; }
.footer__logo { width: 106px; height: 30px; opacity: 0.85; filter: brightness(0) invert(1); }
.footer__logo img { width: 100%; height: 100%; object-fit: contain; }
.footer__copy { font-size: 11px; color: var(--gray-light); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; text-align: center; }
.footer__copy a { color: var(--gray-light); text-decoration: underline; }

/* =========================================================
   WhatsApp flutuante
   ========================================================= */
.wa-float {
  position: fixed;
  bottom: clamp(14px, 4vw, 24px);
  right: clamp(14px, 4vw, 24px);
  z-index: 999;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex-direction: row-reverse;
  animation: waAppear .6s cubic-bezier(.22,.61,.36,1) 3.2s both;
}
.wa-float__btn {
  width: 54px; height: 54px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(255,103,0,0.4);
  text-decoration: none;
  flex-shrink: 0;
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float__btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(255,103,0,0.55); }
.wa-float__btn svg { width: 28px; height: 28px; fill: #fff; display: block; }
.wa-float__balloon {
  background: #fff;
  border-radius: 16px 16px 4px 16px;
  padding: 10px 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  font-size: 13px;
  font-weight: 700;
  color: var(--black-soft);
  white-space: nowrap;
  position: relative;
  animation: balloonShow .45s cubic-bezier(.22,.61,.36,1) 3.2s both;
  pointer-events: none;
}

@keyframes waAppear {
  0% { opacity: 0; transform: translateY(30px) scale(0.8); }
  60% { transform: translateY(-4px) scale(1.05); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes balloonShow {
  0% { opacity: 0; transform: translateX(12px) scale(0.9); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}

/* =========================================================
   Toast (confirmação de envio do formulário)
   ========================================================= */
.toast {
  position: fixed;
  top: 76px;
  left: 50%;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 14px 22px;
  border-radius: 980px;
  box-shadow: 0 10px 34px rgba(0,0,0,0.18);
  font-size: 14px;
  font-weight: 600;
  color: var(--black-soft);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-14px);
  transition: opacity .35s cubic-bezier(.22,.61,.36,1), transform .35s cubic-bezier(.22,.61,.36,1), visibility 0s linear .35s;
}
.toast.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity .35s cubic-bezier(.22,.61,.36,1), transform .35s cubic-bezier(.22,.61,.36,1), visibility 0s;
}
.toast__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.toast__icon svg {
  width: 13px;
  height: 13px;
  stroke: #fff;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 640px) {
  .toast { left: 20px; right: 20px; transform: translateY(-14px); white-space: normal; }
  .toast.is-visible { transform: translateY(0); }
}

/* =========================================================
   Responsivo ≤640px
   ========================================================= */
@media (max-width: 640px) {
  .hero-break { display: block; }
  .service-card { text-align: center; }
  .service-card__icon { margin-left: auto; margin-right: auto; }
  .service-card__link { justify-content: center; }
  .contato-col { text-align: center !important; }
  .contato-sub { margin-left: auto; margin-right: auto; }
  .contato-wa-btn { margin-left: auto; margin-right: auto; }
  .contato-form__row { grid-template-columns: 1fr; }
  .hero { min-height: 78vh !important; }
  .hours-text { text-align: left !important; }
  .hours-break { display: block; }
  .footer__col { flex: 1 1 100%; border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; }
  .footer__col:first-child { border-top: none; padding-top: 0; }
  .footer__heading { text-align: left !important; }
  .footer__li { justify-content: flex-start !important; }
  .footer__social { justify-content: flex-start !important; }
  .footer__social a { width: 44px !important; height: 44px !important; }
  .hero__bg-wrap { top: -8% !important; bottom: auto !important; height: 108% !important; }
  .wa-float__balloon { display: none; }
  .navbar__logo { width: 141px; height: 40px; }
}

/* Menu fixo sem blur em telas menores — o blur ao vivo num elemento sticky
   é pesado pra GPU e causa engasgo no scroll, principalmente em celular. */
@media (max-width: 768px) {
  .navbar {
    background: rgba(255,255,255,0.97);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* =========================================================
   Página de Política de Privacidade
   ========================================================= */
.section-policy { padding: clamp(48px, 8vw, 80px) 0 clamp(64px, 10vw, 96px); background: #fff; }
.policy-content { max-width: 720px; margin: 0 auto; }
.policy-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-mid);
  text-decoration: none;
  margin-bottom: 28px;
}
.policy-back:hover { color: var(--orange); }
.policy-title {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 800;
  color: var(--black-soft);
  letter-spacing: -.6px;
  line-height: 1.15;
  margin: 0 0 8px;
}
.policy-updated { font-size: 13px; color: var(--gray-light); margin: 0 0 40px; }
.policy-content h2 {
  font-size: 19px;
  font-weight: 700;
  color: var(--black-soft);
  margin: 40px 0 12px;
}
.policy-content h2:first-of-type { margin-top: 0; }
.policy-content p { font-size: 15px; color: var(--gray-mid); line-height: 1.75; margin: 0 0 14px; }
.policy-content ul { margin: 0 0 14px; padding-left: 20px; }
.policy-content li { font-size: 15px; color: var(--gray-mid); line-height: 1.75; margin-bottom: 6px; }
.policy-content a { color: var(--orange); text-decoration: underline; }
.policy-note {
  margin-top: 40px;
  padding: 16px 20px;
  background: var(--bg-gray);
  border-radius: 12px;
  font-size: 13px;
  color: var(--gray-mid);
  line-height: 1.6;
}
