:root {
  --laranja-claro: #fb923c;
  --laranja-base: #F97316;
  --laranja-escuro: #ea580c;
  --laranja-deep: #c2410c;
  --verde-whatsapp: #25D366;
  --fundo-escuro: #0a0a0a;
  --fundo-card-dark: #111111;
  --fundo-claro: #f9fafb;
  --cinza-borda: #1f2937;
  --cinza-texto: #9ca3af;
  --branco: #ffffff;
  --gradient-cta: linear-gradient(135deg, #F97316 0%, #c2410c 100%);
  --shadow-cta: 0 4px 14px rgba(249, 115, 22, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--fundo-escuro);
  color: var(--branco);
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.0;
  margin: 0;
}

h3 { font-size: 28px; }

p, span, a, li, button, input, label, div { font-family: 'Montserrat', sans-serif; }

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

/* Icon motion */
@keyframes icon-bounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  30% { transform: translateY(-6px) rotate(-8deg); }
  60% { transform: translateY(-3px) rotate(4deg); }
}
.icon-motion { display: inline-flex; transition: transform .2s ease; }
.icon-motion:hover { animation: icon-bounce 0.5s ease forwards; }

/* Buttons */
.btn-primary {
  background: var(--gradient-cta);
  box-shadow: var(--shadow-cta);
  color: #fff; font-weight: 700; font-size: 14px;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 8px; border: none;
  display: inline-flex; align-items: center; gap: 10px;
  cursor: pointer; transition: all .2s ease; text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(249,115,22,0.50); background: linear-gradient(135deg, #fb923c 0%, #ea580c 100%); }

.btn-ghost {
  background: transparent; border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff; font-weight: 600; font-size: 14px;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 8px;
  display: inline-flex; align-items: center; gap: 10px;
  cursor: pointer; transition: all .2s ease; text-decoration: none;
}
.btn-ghost:hover { border-color: var(--laranja-base); color: var(--laranja-base); transform: translateY(-2px); }

.btn-wpp {
  background: var(--verde-whatsapp);
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
  color: #fff; font-weight: 700; font-size: 14px;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 8px; border: none;
  display: inline-flex; align-items: center; gap: 10px;
  cursor: pointer; transition: all .2s ease; text-decoration: none;
}
.btn-wpp:hover { box-shadow: 0 6px 20px rgba(37,211,102,0.50); transform: translateY(-2px); }

/* Section ritmo */
.sec-dark { background: var(--fundo-escuro); color: var(--branco); }
.sec-light { background: var(--fundo-claro); color: #111827; }
.sec-card-dark { background: var(--fundo-card-dark); }
.clip-top { clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%); }

/* Eyebrow */
.eyebrow {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--laranja-base); font-weight: 600; font-family: 'Montserrat', sans-serif;
}

/* Navbar */
nav.navbar {
  position: fixed; top: 40px; left: 0; width: 100%; z-index: 1000;
  background: transparent; transition: all .3s ease;
}
nav.navbar.scrolled {
  top: 0;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cinza-borda);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  color: var(--cinza-texto); font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.1em; text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: #fff; }

/* Container */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* Animate in */
.animate-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* Marquee */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-wrap { overflow: hidden; }
.marquee-track {
  animation: marquee 30s linear infinite;
  display: flex; width: max-content; gap: 0; align-items: center;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: 'Bebas Neue', sans-serif; font-size: 18px; color: var(--cinza-texto);
  padding: 0 24px; border-right: 1px solid var(--cinza-borda);
  letter-spacing: 0.05em; white-space: nowrap;
}

/* WhatsApp float */
@keyframes pulse-whatsapp {
  0%   { transform: scale(1); box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%  { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.65); }
  100% { transform: scale(1); box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
}
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  width: 56px; height: 56px; background: var(--verde-whatsapp);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  animation: pulse-whatsapp 2.5s ease-in-out infinite;
}
.whatsapp-float:hover { animation-play-state: paused; transform: scale(1.12); }

/* Top info bar */
.top-bar {
  position: relative; z-index: 1001;
  background: var(--laranja-base); color: #fff; font-size: 12px;
  height: 40px; padding: 0 16px;
  display: flex; gap: 32px; justify-content: center;
  align-items: center; flex-wrap: nowrap;
  font-family: 'Montserrat', sans-serif; font-weight: 500;
}
.top-bar .item { display: inline-flex; align-items: center; gap: 6px; }

/* Whatsapp nav button */
.btn-whatsapp-nav {
  display: flex; align-items: center; gap: 8px;
  background: #25D366; box-shadow: 0 4px 14px rgba(37,211,102,0.35);
  color: #fff; font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; padding: 10px 20px; border-radius: 8px;
  border: none; text-decoration: none; transition: all .2s ease; white-space: nowrap;
}
.btn-whatsapp-nav:hover { box-shadow: 0 6px 20px rgba(37,211,102,0.50); transform: translateY(-2px); }
.btn-whatsapp-nav svg { display: block; }

/* HERO */
.hero { height: 100vh; max-height: 780px; min-height: 600px; display: grid; grid-template-columns: 55% 45%; padding-top: 68px; align-items: stretch; background: #0a0a0a; overflow: hidden; }
.hero-left { padding: 60px 32px 60px 64px; display: flex; flex-direction: column; justify-content: center; max-width: 720px; }
.hero h1 { font-size: 72px; color: #fff; }
.hero h1 .accent { color: var(--laranja-base); }
.hero-sub { font-size: 18px; color: var(--cinza-texto); line-height: 1.6; margin-top: 20px; max-width: 560px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--fundo-card-dark); border: 1px solid var(--cinza-borda);
  border-radius: 100px; padding: 6px 16px; color: var(--cinza-texto);
  font-size: 12px; align-self: flex-start; margin-bottom: 28px;
}
.hero-cta { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.mini-stats { display: flex; gap: 32px; margin-top: 48px; }
.mini-stats .stat { padding-right: 32px; border-right: 1px solid var(--cinza-borda); }
.mini-stats .stat:last-child { border-right: 0; }
.mini-stats .num { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--laranja-base); line-height: 1; }
.mini-stats .lbl { font-size: 11px; text-transform: uppercase; color: var(--cinza-texto); margin-top: 6px; letter-spacing: 0.08em; }

.hero-right { position: relative; height: 100%; overflow: hidden; clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%); }

/* Section base */
section.block { padding: 6rem 0; }
.section-head { text-align: left; margin-bottom: 48px; max-width: 720px; }
.section-head h2 { margin-top: 8px; font-size: 52px; }
.sec-dark .section-head h2 { color: #fff; }
.sec-light .section-head h2 { color: #111827; }

/* Bento services */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.bento .card {
  background: var(--fundo-card-dark); border-radius: 16px; padding: 28px;
  transition: transform .3s ease; color: #fff;
}
.bento .card:hover { transform: translateY(-4px); }
.bento .card h3 { font-size: 32px; margin: 16px 0 8px; color: #fff; }
.bento .card p { color: var(--cinza-texto); font-size: 14px; line-height: 1.6; }
.bento .main { grid-column: span 2; grid-row: span 2; background: #111111; display: flex; flex-direction: column; }
.bento .main h3 { font-size: 40px; }
.bento .main .spacer { flex: 1; min-height: 24px; }
.bento .alt-1 { background: #1a1a1a; }
.bento .alt-2 { background: #1a1a1a; border: none; color: #ffffff; }
.bento .alt-2 h3 { color: #ffffff; font-family: 'Bebas Neue', sans-serif; }
.bento .alt-2 p { color: #9ca3af; }
.bento .alt-3 { background: #1a1a1a; }
.bento .alt-4 { background: #111111; }

.chips-row {
  display: flex; overflow-x: auto; gap: 8px; padding-bottom: 8px; margin-top: 24px;
  scrollbar-width: none;
}
.chips-row::-webkit-scrollbar { display: none; }
.chip {
  background: #111111; border: 1px solid var(--cinza-borda); border-radius: 100px;
  padding: 8px 20px; font-size: 12px; color: var(--cinza-texto); white-space: nowrap;
  transition: all .2s; cursor: default;
}
.chip:hover { border-color: var(--laranja-base); color: var(--laranja-base); }

/* Diferenciais */
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.diff-list { display: flex; flex-direction: column; gap: 16px; margin-top: 36px; }
.diff-card {
  background: var(--fundo-card-dark); border-radius: 12px; padding: 20px 24px;
  display: flex; gap: 16px; align-items: flex-start;
}
.diff-card .ic { color: var(--laranja-base); flex-shrink: 0; }
.diff-card .ttl { font-size: 14px; font-weight: 600; color: #fff; }
.diff-card .sub { font-size: 13px; color: var(--cinza-texto); margin-top: 4px; }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-cell {
  background: var(--fundo-card-dark); border-radius: 16px; padding: 32px 24px;
  text-align: center;
}
.stat-cell .n { font-family: 'Bebas Neue', sans-serif; font-size: 56px; color: var(--laranja-base); line-height: 1; }
.stat-cell .l { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--cinza-texto); margin-top: 8px; }

/* Process */
.process-row { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr; gap: 16px; align-items: center; }
.process-step { position: relative; text-align: center; padding: 32px 8px; }
.process-step .bignum {
  font-family: 'Bebas Neue', sans-serif; font-size: 120px; color: #f3f4f6;
  position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  line-height: 1; z-index: 0; opacity: 0.8; pointer-events: none;
}
.process-step .ic { position: relative; z-index: 1; color: var(--laranja-base); display: inline-flex; }
.process-step h3 { font-family: 'Montserrat', sans-serif !important; font-size: 14px; font-weight: 700; color: #111827; margin-top: 12px; text-transform: uppercase; }
.process-step p { font-size: 13px; color: #6b7280; margin-top: 8px; line-height: 1.5; }
.process-arrow { color: var(--laranja-base); }

/* About */
.about-grid { display: grid; grid-template-columns: 45% 55%; gap: 0; align-items: stretch; }
.about-img { height: 360px; border-radius: 16px; overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%); border-radius: 16px; }
.about-text { padding-left: 48px; display: flex; flex-direction: column; justify-content: center; }
.about-text h2 { font-size: 48px; color: #fff; margin-top: 8px; }
.about-text p.body { color: var(--cinza-texto); font-size: 15px; line-height: 1.6; margin-top: 20px; }
.quote { border-left: 3px solid var(--laranja-base); padding-left: 20px; margin-top: 32px; }
.quote p { color: #fff; font-style: italic; font-weight: 600; font-size: 16px; }
.quote .sig { color: var(--cinza-texto); font-size: 12px; margin-top: 8px; font-style: normal; font-weight: 400; }

/* Testimonials */
.rating-hero { text-align: center; margin-bottom: 48px; display: flex; gap: 16px; align-items: center; justify-content: center; flex-wrap: wrap; }
.rating-hero .stars { display: inline-flex; gap: 2px; }
.rating-hero .score { font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: #111827; line-height: 1; }
.rating-hero .meta { font-size: 14px; color: #6b7280; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: start; }
.testi-grid > div:nth-child(2), .testi-grid > div:nth-child(5) { margin-top: 32px; }
.testi-card { background: #fff; border-radius: 16px; padding: 24px; box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.testi-card .top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.testi-card .gb { background: #f3f4f6; padding: 4px 10px; border-radius: 100px; font-size: 11px; color: #6b7280; display: inline-flex; align-items: center; gap: 4px; }
.testi-card .txt { font-size: 14px; color: #374151; line-height: 1.6; }
.testi-card .who { display: flex; gap: 12px; align-items: center; margin-top: 16px; }
.testi-card .avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #F97316, #c2410c); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.testi-card .nm { font-size: 14px; font-weight: 600; color: #111827; }
.testi-card .ct { font-size: 12px; color: #9ca3af; }

/* Gallery */
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; grid-auto-rows: 220px; }
.gal-cell { position: relative; overflow: hidden; border-radius: 12px; }
.gal-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gal-cell:hover img { transform: scale(1.04); }
.gal-cell::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
}
.gal-cell .lbl {
  position: absolute; bottom: 16px; left: 16px; z-index: 2;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; font-weight: 600;
}
.gal-tall { grid-row: span 2; }
.gal-wide { grid-column: span 2; }

/* Brands strip */
.brands-strip { background: #111111; padding: 2rem 0; }
.brands-eye { text-align: center; margin-bottom: 18px; color: var(--cinza-texto); font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; }

/* CTA Final */
.cta-final { position: relative; overflow: hidden; padding: 8rem 0; text-align: center; }
.cta-final::before {
  content:''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:600px; height:400px;
  background: radial-gradient(ellipse at center, rgba(249,115,22,0.18) 0%, transparent 70%);
  pointer-events:none;
}
.cta-final .inner { position: relative; z-index: 1; }
.cta-final h2 { font-size: 64px; color: #fff; margin-top: 8px; }
.cta-final p.sub { color: var(--cinza-texto); font-size: 18px; margin: 16px 0 32px; }
.cta-final .meta { font-size: 13px; color: var(--cinza-texto); margin-top: 24px; }
.btn-wpp.big { padding: 18px 40px; font-size: 16px; }

/* Footer */
footer.site-foot { background: var(--fundo-escuro); border-top: 1px solid var(--cinza-borda); padding: 4rem 0 2rem; }
.foot-grid { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr; gap: 48px; }
.foot-title { color: var(--laranja-base); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-bottom: 16px; }
.foot-link { color: var(--cinza-texto); font-size: 14px; text-decoration: none; display: block; padding: 4px 0; transition: color .2s; }
.foot-link:hover { color: #fff; }
.socials { display: flex; gap: 12px; margin-top: 24px; }
.socials a { background: var(--fundo-card-dark); border-radius: 8px; padding: 10px; color: var(--cinza-texto); display: inline-flex; transition: color .2s; }
.socials a:hover { color: var(--laranja-base); }
.foot-bottom {
  border-top: 1px solid var(--cinza-borda); margin-top: 48px; padding-top: 24px;
  text-align: center; color: #6b7280; font-size: 12px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 68px; }
  .hero-left { padding: 32px 20px; order: 2; }
  .hero h1 { font-size: 44px; }
  .hero { height: auto; max-height: none; }
  .hero-right { height: 260px; order: 1; clip-path: none; }
  .mini-stats { gap: 16px; }
  .mini-stats .stat { padding-right: 16px; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 16px 20px; }
  .nav-links { display: none; }
  .bento { grid-template-columns: 1fr; }
  .bento .main { grid-column: span 1; grid-row: span 1; }
  .diff-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-row { display: flex; overflow-x: auto; gap: 24px; scroll-snap-type: x mandatory; }
  .process-row .process-step { min-width: 220px; scroll-snap-align: center; }
  .process-row .process-arrow { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-text { padding-left: 0; margin-top: 32px; }
  .about-img { height: 300px; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-grid > div { margin-top: 0 !important; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gal-tall, .gal-wide { grid-column: span 1; grid-row: span 1; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .top-bar .hide-mob { display: none; }
  .cta-final h2 { font-size: 40px; }
  .section-head h2 { font-size: 36px; }
  .about-text h2 { font-size: 36px; }
  .whatsapp-float { bottom: 16px; right: 16px; }
}

/* HERO CAROUSEL */
.hero-carousel-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.hero-carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.hero-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.75s ease;
}
.hero-carousel-slide.active img { transform: scale(1.05); }
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent 60%, rgba(10,10,10,0.5) 100%);
  pointer-events: none;
}
.hero-carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 0;
}
.hero-dot.active {
  background: #F97316;
  width: 28px;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .hero-carousel-wrapper {
    clip-path: none;
    border-radius: 12px;
    height: 260px;
    min-height: unset;
  }
}

/* ===== Gradient text ===== */
.text-gradient {
  background: linear-gradient(135deg, #F97316 0%, #c2410c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

/* ===== Scroll entry animations ===== */
.anim-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-fade-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-fade-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-fade-up.visible,
.anim-fade-left.visible,
.anim-fade-right.visible,
.anim-scale.visible {
  opacity: 1;
  transform: none;
}
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }
.anim-delay-5 { transition-delay: 0.5s; }

/* Floating icon */
@keyframes float-icon {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.icon-float { animation: float-icon 3s ease-in-out infinite; }

/* Eyebrow line grow */
.eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow-line::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 2px;
  background: #F97316;
  transition: width 0.6s ease 0.3s;
}
.eyebrow-line.visible::before { width: 32px; }

/* Shimmer on CTA */
@keyframes shimmer {
  0%   { left: -100%; }
  100% { left: 150%; }
}
.btn-shimmer { position: relative; overflow: hidden; }
.btn-shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  animation: shimmer 2.5s ease-in-out infinite;
  pointer-events: none;
}

/* ===== SEÇÃO MAPA ===== */
.secao-mapa {
  background: #0a0a0a;
  padding: 6rem 0;
  overflow: hidden;
}

.mapa-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
}

.mapa-info h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.0;
  margin: 12px 0 32px;
}

.mapa-detalhes {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.mapa-detalhe-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.mapa-detalhe-item svg {
  color: #F97316;
  flex-shrink: 0;
  margin-top: 2px;
  width: 20px;
  height: 20px;
}

.mapa-detalhe-texto strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 4px;
}

.mapa-detalhe-texto p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.6;
  margin: 0;
}

.btn-mapa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #F97316 0%, #c2410c 100%);
  box-shadow: 0 4px 14px rgba(249,115,22,0.35);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-mapa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249,115,22,0.50);
}

.mapa-iframe-wrapper {
  position: relative;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.mapa-iframe-wrapper.visible {
  opacity: 1;
  transform: translateX(0);
}

.mapa-card-visual {
  display: block;
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  background: linear-gradient(135deg, #111111 0%, #0a0a0a 100%);
  border: 2px solid #1f2937;
  transition: border-color 0.3s ease;
}

.mapa-card-visual:hover {
  border-color: #F97316;
}

/* Grid decorativo de fundo — simula um "mapa" estilizado */
.mapa-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249,115,22,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

/* Pin central */
.mapa-pin-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mapa-pin {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #F97316 0%, #c2410c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(249,115,22,0.4);
}

/* Pulso animado ao redor do pin */
.mapa-pin-pulso {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(249,115,22,0.3);
  animation: pin-pulse 2.5s ease-out infinite;
}

@keyframes pin-pulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.8); opacity: 0; }
}

/* Informações sobrepostas */
.mapa-card-info {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
}

.mapa-card-eyebrow {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #F97316;
  margin-bottom: 8px;
}

.mapa-card-titulo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: #ffffff;
  letter-spacing: 0.02em;
  margin: 0;
}

.mapa-card-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #9ca3af;
  margin: 4px 0 0;
}

/* CTA flutuante na base */
.mapa-card-cta {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 100px;
  z-index: 2;
  transition: all 0.25s ease;
}

.mapa-card-visual:hover .mapa-card-cta {
  background: linear-gradient(135deg, #F97316 0%, #c2410c 100%);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(249,115,22,0.4);
  transform: translateX(-50%) translateY(-4px);
}

@media (max-width: 768px) {
  .mapa-iframe-wrapper {
    height: 300px;
  }
  .mapa-card-visual {
    height: 320px;
  }
  .mapa-card-titulo {
    font-size: 26px;
  }
}

/* === Google reviews button === */
.btn-google-reviews {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid #e5e7eb;
  color: #374151;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 16px;
}
.btn-google-reviews:hover {
  border-color: #F97316;
  color: #F97316;
  transform: translateY(-2px);
}

/* === NOVA badge in testimonials === */
.badge-nova {
  display: inline-block;
  background: #F97316;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}


/* Ajustes do pacote estático para hospedagem comum */
body.static-site { overflow-x: hidden; }
.static-icon { width: 1em; height: 1em; display: inline-block; vertical-align: -0.12em; flex-shrink: 0; }
.nav-brand { display:flex; align-items:center; gap:12px; text-decoration:none; }
.nav-brand-title { font-family:'Bebas Neue', sans-serif; color:#fff; font-size:24px; letter-spacing:.02em; }
.nav-brand-sub { font-size:11px; color:var(--cinza-texto); margin-top:2px; }
.inline-center { display:inline-flex; align-items:center; gap:8px; }
.stars { display:inline-flex; gap:2px; }
.star-svg { width:18px; height:18px; fill:#facc15; stroke:#facc15; }
.testi-card .star-svg { width:14px; height:14px; }
.process-step .ic svg, .mapa-detalhe-item svg, .btn-mapa svg, .foot-link svg { width:20px; height:20px; }
.process-step .ic svg { width:32px; height:32px; }
.mapa-iframe-wrapper iframe { border:0; width:100%; height:100%; min-height:450px; border-radius:12px; }
@media (max-width: 900px) { .btn-whatsapp-nav span { display:none; } .top-bar { gap:12px; font-size:11px; } }
