/* =============================================
   NOGUEIRA DESENTUPIDORA – ESTILOS GLOBAIS
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@700;800;900&display=swap');

:root {
  --navy:            #0d1f3c;
  --navy-dark:       #081428;
  --navy-mid:        #132b52;
  --silver:          #8fa8c0;
  --silver-light:    #c5d3e0;
  --white:           #ffffff;
  --graphite:        #1e2d40;
  --graphite-light:  #2e3f58;
  --accent-wpp:      #25D366;
  --accent-wpp-dark: #1da851;
  --accent-orange:   #e67e22;
  --accent-red:      #e74c3c;
  --text-muted:      #8fa8c0;
  --text-light:      #dce8f0;
  --bg-section:      #f0f5fa;
  --border-color:    rgba(143,168,192,0.25);
  --card-bg:         rgba(255,255,255,0.05);
  --radius:          12px;
  --radius-lg:       20px;
  --shadow:          0 8px 32px rgba(8,20,40,0.18);
  --shadow-hover:    0 16px 48px rgba(8,20,40,0.32);
  --transition:      all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--navy-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== FLOATING WHATSAPP ===== */
.float-wpp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: var(--accent-wpp);
  color: #fff;
  border-radius: 50px;
  padding: 13px 20px;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: pulse-wpp 2.5s infinite;
  max-width: calc(100vw - 48px);
}
.float-wpp:hover {
  background: var(--accent-wpp-dark);
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}
.float-wpp svg { flex-shrink: 0; }

@keyframes pulse-wpp {
  0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 4px 40px rgba(37,211,102,0.75); }
}

/* ===== FLOATING URGENT ===== */
.float-urgent {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9998;
  background: var(--accent-red);
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 20px 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 10px 0 0 10px;
  box-shadow: -4px 0 20px rgba(231,76,60,0.4);
  transition: var(--transition);
}
.float-urgent:hover { background: #c0392b; }

/* ===== HEADER ===== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8,20,40,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.header-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.logo-tagline {
  font-size: 10px;
  font-weight: 600;
  color: var(--silver);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.desktop-nav ul { display: flex; gap: 28px; }
.desktop-nav li { position: relative; }
.desktop-nav a {
  text-decoration: none;
  color: var(--silver-light);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
  position: relative;
  padding: 6px 14px;
  border-radius: 50px;
  white-space: nowrap;
}
.desktop-nav a::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 4px;
  background: var(--accent-wpp);
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: opacity 0.35s ease, width 0.35s ease;
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 24px;
  background: radial-gradient(ellipse at center, rgba(37,211,102,0.25) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  filter: blur(6px);
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.desktop-nav a:hover,
.desktop-nav a.nav-active {
  color: var(--white);
  background: rgba(37,211,102,0.08);
}
.desktop-nav a:hover::before,
.desktop-nav a.nav-active::before {
  opacity: 1;
}
.desktop-nav a:hover::after,
.desktop-nav a.nav-active::after {
  opacity: 1;
}

.header-cta { display: flex; align-items: center; gap: 10px; }
.btn-header-wpp {
  background: var(--accent-wpp);
  color: #fff;
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-header-wpp:hover { background: var(--accent-wpp-dark); transform: scale(1.04); }
.btn-header-call {
  border: 2px solid var(--silver);
  color: var(--silver-light);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-header-call:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  min-height: 100svh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,20,40,0.93) 0%,
    rgba(13,31,60,0.83) 50%,
    rgba(19,43,82,0.76) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 56px;
  padding-bottom: 56px;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,211,102,0.15);
  border: 1px solid rgba(37,211,102,0.35);
  color: var(--accent-wpp);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
  animation: fadeInDown 0.6s ease both;
}
.hero-badge span {
  width: 8px; height: 8px;
  background: var(--accent-wpp);
  border-radius: 50%;
  animation: blink 1.2s infinite;
  flex-shrink: 0;
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.3; } }

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInDown 0.7s 0.1s ease both;
}
.hero-title .highlight {
  background: linear-gradient(90deg, #25D366, #1da851);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title strong {
  color: var(--accent-wpp);
  -webkit-text-fill-color: var(--accent-wpp);
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 34px;
  max-width: 540px;
  animation: fadeInDown 0.7s 0.2s ease both;
  line-height: 1.7;
}
.hero-subtitle strong { color: #fff; font-weight: 700; }

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
  animation: fadeInDown 0.7s 0.3s ease both;
}

.btn-primary-wpp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent-wpp);
  color: #fff;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.3px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  max-width: 420px;
}
.btn-primary-wpp:hover {
  background: var(--accent-wpp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}
.btn-primary-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  max-width: 420px;
  background: rgba(255,255,255,0.06);
}
.btn-primary-call:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}

.chamada-rapida-hero {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 26px;
  max-width: 440px;
  animation: fadeInDown 0.7s 0.4s ease both;
  backdrop-filter: blur(8px);
}
.chamada-rapida-hero > p {
  color: var(--accent-red);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.btn-urgente {
  display: block;
  text-align: center;
  background: var(--accent-red);
  color: #fff;
  text-decoration: none;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  transition: var(--transition);
}
.btn-urgente:hover { background: #c0392b; transform: scale(1.02); }

.promo-pix { display: flex; gap: 14px; flex-wrap: wrap; }
.promo-pix p { color: var(--silver-light); font-size: 12px; font-weight: 600; }

.social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeInDown 0.7s 0.5s ease both;
  flex-wrap: wrap;
}
.avatares { display: flex; }
.avatares .av {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: linear-gradient(135deg, var(--silver), var(--navy-mid));
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.avatares .av:first-child { margin-left: 0; }
.stars { color: #f1c40f; font-size: 17px; letter-spacing: 2px; }
.reviews-text { color: var(--silver-light); font-size: 13px; font-weight: 600; }

/* ===== TAG TITLE ===== */
.tag-title {
  display: inline-block;
  color: var(--accent-wpp);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ===== SECTION HEADER ===== */
.section-header { margin-bottom: 48px; }
.section-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 900;
  color: var(--navy-dark);
  line-height: 1.2;
}
.section-header p {
  color: #4a6380;
  font-size: 16px;
  margin-top: 12px;
  max-width: 620px;
  line-height: 1.7;
}
.section-header.text-center { text-align: center; }
.section-header.text-center p { margin-left: auto; margin-right: auto; }

/* ===== STATS ===== */
.stats-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 70px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { color: var(--accent-wpp); }
.stat-label { color: var(--silver); font-size: 14px; font-weight: 600; letter-spacing: 0.5px; }

/* ===== SERVICES ===== */
.services-section {
  background: var(--bg-section);
  padding: 90px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(13,31,60,0.08);
  transition: var(--transition);
  border: 1px solid rgba(13,31,60,0.06);
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: radial-gradient(
    300px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(37,211,102,0.35), transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  pointer-events: none;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-lg) - 1px);
  background: var(--white);
  z-index: 0;
  pointer-events: none;
}
.service-card:hover::before {
  opacity: 1;
}
.service-card > * {
  position: relative;
  z-index: 1;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

/* Imagem do card com foto real */
.service-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,20,40,0.78) 0%,
    rgba(13,31,60,0.60) 100%
  );
}
.service-img-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.service-card-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-content h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 10px;
}
.service-card-content p {
  color: #5a7390;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}
.service-card-content p strong { color: var(--navy); font-weight: 700; }
.btn-card {
  display: block;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  margin-top: auto;
}
.btn-card:hover { background: var(--accent-wpp); }

/* ===== HOW IT WORKS – REDESIGN ===== */
.how-it-works {
  background: var(--navy-dark);
  padding: 90px 0;
}

.steps-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}

.step-box {
  background: var(--graphite);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  flex: 1;
  max-width: 300px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.step-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-wpp), var(--accent-wpp-dark));
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.step-box:hover::before { transform: scaleX(1); }
.step-box:hover { background: var(--graphite-light); transform: translateY(-6px); }

.step-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: rgba(37,211,102,0.15);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -2px;
}
.step-icon-wrap {
  width: 72px;
  height: 72px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.step-box h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.step-box p {
  color: var(--silver);
  font-size: 13.5px;
  line-height: 1.65;
  margin-bottom: 20px;
}
.step-box p strong { color: var(--silver-light); font-weight: 700; }

.step-detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}
.step-detail span {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-wpp);
  letter-spacing: 0.3px;
}

/* Conector entre steps */
.step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  gap: 6px;
  flex-shrink: 0;
}
.connector-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, transparent, var(--accent-wpp), transparent);
  opacity: 0.4;
  min-height: 40px;
}

/* CTA dentro do How It Works */
.how-cta {
  text-align: center;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--border-color);
}
.how-cta p {
  color: var(--silver-light);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
}
.how-cta .btn-primary-wpp {
  margin: 0 auto;
  max-width: 340px;
}

/* ===== ABOUT ===== */
.about-section { padding: 90px 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text .tag-title { margin-bottom: 12px; }
.about-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  color: var(--navy-dark);
  margin-bottom: 18px;
  line-height: 1.2;
}
.about-text > p {
  color: #5a7390;
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.7;
}
.about-list { display: flex; flex-direction: column; gap: 16px; }
.about-item { display: flex; align-items: flex-start; gap: 14px; }
.check-icon {
  width: 24px; height: 24px;
  background: linear-gradient(135deg, var(--accent-wpp), var(--accent-wpp-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 11px; font-weight: 700;
  flex-shrink: 0; margin-top: 2px;
}
.item-content strong { display: block; color: var(--navy-dark); font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.item-content span { color: #5a7390; font-size: 13px; line-height: 1.5; }

.about-image-wrap { position: relative; }
.about-image-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.badge-selo {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--navy), var(--graphite-light));
  color: var(--silver-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 12px 24px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(8,20,40,0.3);
  border: 1px solid var(--border-color);
}

/* ===== ATENDIMENTO ===== */
.atendimento-section { background: var(--bg-section); padding: 90px 0; }
.atendimento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.atendimento-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  border: 2px solid transparent;
  box-shadow: 0 4px 16px rgba(13,31,60,0.07);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}
.atendimento-card:hover {
  border-color: var(--navy);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.atendimento-card .icon-circle {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--navy), var(--graphite-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 30px;
}
.atendimento-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 8px;
}
.atendimento-card p {
  color: #5a7390;
  font-size: 13px;
  line-height: 1.5;
}

/* ===== FINAL CTA ===== */
.final-cta-section {
  background: linear-gradient(135deg, #0d1f3c 0%, #132b52 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37,211,102,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.final-cta-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
}
.final-cta-section p { color: var(--silver-light); font-size: 16px; margin-bottom: 36px; }
.final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* ===== COVERAGE ===== */
.coverage-section { background: var(--white); padding: 90px 0; }
.cities-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 56px; }
.city-btn {
  background: var(--bg-section);
  border: 2px solid var(--border-color);
  color: var(--navy-dark);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
}
.city-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: scale(1.04);
}

.bairros-wrapper { margin-top: 48px; }
.bairros-cidade { margin-bottom: 40px; }
.bairros-cidade h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bairros-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.bairro-tag {
  background: var(--bg-section);
  border: 1px solid var(--border-color);
  color: var(--navy-dark);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  line-height: 1.4;
  display: inline-block;
}
.bairro-tag:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.main-footer { background: var(--navy-dark); }

/* Faixa CTA topo do footer */
.footer-cta-bar {
  background: linear-gradient(135deg, var(--navy-mid) 0%, #1a3a6e 100%);
  border-top: 1px solid rgba(37,211,102,0.2);
  border-bottom: 1px solid rgba(143,168,192,0.15);
  padding: 28px 0;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-cta-tag {
  display: inline-block;
  color: var(--accent-wpp);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.footer-cta-text p {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}
.footer-cta-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.footer-wpp-btn {
  max-width: none;
  padding: 13px 24px;
  font-size: 15px;
}
.footer-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,0.35);
  color: var(--white);
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  white-space: nowrap;
}
.footer-call-btn:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* Corpo do footer */
.footer-body {
  padding: 60px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.footer-brand .logo-name { color: var(--white); font-size: 20px; }
.footer-brand .logo-tagline { color: var(--silver); }
.footer-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 300px;
}
.footer-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-wpp);
  font-size: 13px;
  font-weight: 600;
}

.footer-col h4 {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(143,168,192,0.15);
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }

/* Contato footer */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(143,168,192,0.12);
  background: rgba(255,255,255,0.03);
  transition: var(--transition);
  color: inherit;
}
.footer-contact-item:not(.footer-contact-static):hover {
  border-color: var(--accent-wpp);
  background: rgba(37,211,102,0.07);
}
.footer-contact-static { cursor: default; }
.fc-icon {
  width: 34px;
  height: 34px;
  background: rgba(143,168,192,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--silver-light);
}
.fc-icon-wpp { background: rgba(37,211,102,0.15); color: var(--accent-wpp); }
.fc-info { display: flex; flex-direction: column; }
.fc-label { font-size: 11px; color: var(--text-muted); font-weight: 600; letter-spacing: .3px; }
.fc-value { font-size: 14px; color: var(--white); font-weight: 600; margin-top: 1px; }

/* Faixa de confiança */
.footer-trust {
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(143,168,192,0.1);
  border-bottom: 1px solid rgba(143,168,192,0.1);
  padding: 18px 0;
}
.footer-trust-inner { display: flex; justify-content: center; }
.trust-items {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--silver-light);
  white-space: nowrap;
}
.trust-sep {
  width: 1px;
  height: 20px;
  background: rgba(143,168,192,0.2);
}

/* Rodapé inferior */
.footer-bottom {
  background: rgba(0,0,0,0.25);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { color: var(--text-muted); font-size: 13px; }

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== MENU MOBILE ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-dark);
  border-top: 1px solid var(--border-color);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--silver-light);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
  display: block;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--white); padding-left: 6px; }

/* ===================================================
   RESPONSIVIDADE COMPLETA
   =================================================== */

/* Tablet grande */
@media (max-width: 1100px) {
  .desktop-nav ul { gap: 20px; }
  .btn-header-call { display: none; }
  .steps-container { gap: 0; }
  .step-box { padding: 28px 20px; }
}

/* Tablet */
@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .header-cta .btn-header-call { display: none; }
  .hamburger { display: flex; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  /* Steps em coluna no tablet */
  .steps-container {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-width: 480px;
    margin: 0 auto;
  }
  .step-box { max-width: 100%; }
  .step-connector {
    flex-direction: row;
    padding: 12px 0;
    height: 48px;
  }
  .connector-line {
    width: auto;
    height: 2px;
    flex: 1;
    min-height: unset;
    background: linear-gradient(to right, transparent, var(--accent-wpp), transparent);
  }
  .step-connector svg { transform: rotate(90deg); }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap img { height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-cta-inner { flex-direction: column; text-align: center; }
  .footer-cta-actions { justify-content: center; }
}

/* Mobile */
@media (max-width: 768px) {
  .container { padding: 0 18px; }

  /* Header */
  .header-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-section { min-height: 100svh; }
  .hero-content { padding-top: 40px; padding-bottom: 40px; }
  .hero-actions { align-items: stretch; }
  .btn-primary-wpp,
  .btn-primary-call { max-width: 100%; font-size: 15px; padding: 14px 24px; }
  .chamada-rapida-hero { max-width: 100%; }
  .promo-pix { gap: 10px; }

  /* Stats */
  .stats-section { padding: 48px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-number { font-size: clamp(30px, 8vw, 44px); }

  /* Services */
  .services-section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .section-header { margin-bottom: 32px; }

  /* How it works */
  .how-it-works { padding: 64px 0; }
  .how-cta .btn-primary-wpp { max-width: 100%; }

  /* About */
  .about-section { padding: 64px 0; }
  .about-image-wrap img { height: 280px; }
  .badge-selo { font-size: 10px; padding: 10px 18px; white-space: normal; text-align: center; }

  /* Atendimento */
  .atendimento-section { padding: 64px 0; }
  .atendimento-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .atendimento-card { padding: 24px 16px; }

  /* Coverage */
  .coverage-section { padding: 64px 0; }
  .cities-grid { gap: 8px; }
  .city-btn { font-size: 13px; padding: 8px 16px; }

  /* Footer */
  .footer-body { padding: 40px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-cta-inner { flex-direction: column; text-align: center; }
  .footer-cta-actions { justify-content: center; width: 100%; }
  .footer-cta-actions a { flex: 1; justify-content: center; max-width: 260px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .trust-items { gap: 0; }
  .trust-item { font-size: 12px; padding: 6px 12px; }
  .trust-sep { display: none; }

  /* Floating elements */
  .float-urgent { display: none; }
  .float-wpp { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 13px; }
}

/* Mobile pequeno */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero-badge { font-size: 10px; padding: 5px 12px; }
  .hero-title { font-size: clamp(26px, 7vw, 34px); }
  .hero-subtitle { font-size: 15px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .services-grid { gap: 20px; }
  .service-img { height: 170px; }

  .atendimento-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .atendimento-card h3 { font-size: 14px; }
  .atendimento-card p { display: none; }

  .final-actions { flex-direction: column; align-items: stretch; }
  .final-actions a { text-align: center; justify-content: center; }
  .btn-outline-white { justify-content: center; }

  .footer-grid { gap: 24px; }

  .bairro-tag { font-size: 12px; padding: 7px 11px; }
}

/* Telas muito pequenas */
@media (max-width: 360px) {
  .logo-name { font-size: 15px; }
  .logo-tagline { font-size: 9px; }
  .header-logo-img { height: 38px; }
  .btn-primary-wpp { font-size: 14px; padding: 13px 20px; }
}
