/* =============================================================
   HRC SERVICOS - LIMPEZA E ZELADORIA
   style.css - Main Stylesheet
   ============================================================= */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1e2d40;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100%;
  position: relative;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; max-width: 100%; }

/* ---- CSS VARIABLES ---- */
:root {
  --navy:       #0f2441;
  --blue-dark:  #1a3a6b;
  --blue:       #1a56db;
  --blue-mid:   #2563eb;
  --blue-light: #3b82f6;
  --blue-soft:  #dbeafe;
  --blue-pale:  #eff6ff;
  --gray-900:   #111827;
  --gray-800:   #1f2937;
  --gray-700:   #374151;
  --gray-600:   #4b5563;
  --gray-400:   #9ca3af;
  --gray-200:   #e5e7eb;
  --gray-100:   #f3f4f6;
  --gray-50:    #f9fafb;
  --white:      #ffffff;
  --wa-green:   #25d366;
  --wa-dark:    #128c7e;
  --radius:     10px;
  --radius-lg:  16px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow:     0 4px 16px rgba(0,0,0,.08);
  --shadow-md:  0 8px 30px rgba(0,0,0,.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.12);
  --transition: .25s cubic-bezier(.4,0,.2,1);
  --container:  1200px;
  --nav-h:      76px;
}

/* ---- UTILITIES ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.section {
  padding: 96px 0;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}
.section--gray { background: var(--gray-50); }

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  border: 1px solid var(--blue-soft);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section__label--white {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.3);
  color: rgba(255,255,255,.95);
}

.section__title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}

.section__title--white { color: #fff; }

.section__subtitle {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 13px 24px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: normal;
  text-align: center;
  line-height: 1.35;
  max-width: 100%;
  cursor: pointer;
}

.btn--lg { padding: 15px 28px; font-size: 14px; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 4px 14px rgba(26,86,219,.35);
}
.btn--primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,86,219,.4);
}

.btn--white {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
.btn--white:hover {
  background: var(--blue-pale);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn--outline:hover {
  background: var(--blue);
  color: #fff;
}

.btn--whatsapp {
  background: var(--wa-green);
  color: #fff;
  border-color: var(--wa-green);
  box-shadow: 0 4px 14px rgba(37,211,102,.35);
}
.btn--whatsapp:hover {
  background: var(--wa-dark);
  border-color: var(--wa-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
}

/* ---- HEADER / NAV ---- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

.header.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav__logo-badge {
  background: var(--navy);
  padding: 6px 10px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(15, 36, 65, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
}

.nav__logo:hover .nav__logo-badge {
  transform: scale(1.03);
  box-shadow: 0 4px 14px rgba(15, 36, 65, 0.3);
}

.nav__logo-img {
  height: 28px;
  width: auto;
  max-width: 70px;
  object-fit: contain;
  display: block;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__logo-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: .04em;
}

.nav__logo-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--blue);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav__link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 6px 10px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.nav__link:hover {
  color: var(--blue);
  background: var(--blue-pale);
}

.nav__cta {
  flex-shrink: 0;
  font-size: 12.5px;
  padding: 10px 18px;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 6px;
  transition: background var(--transition);
}
.nav__hamburger:hover { background: var(--gray-100); }
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 998;
}
.nav__overlay.active { display: block; }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 50%, #1e4fa0 100%);
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero__container {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.hero__content { padding-right: 20px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -.01em;
}

.hero__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero__trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.8);
}

.hero__trust-item svg { color: #60a5fa; flex-shrink: 0; }

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  /* espaco para badges nao serem cortadas */
  padding: 40px 32px;
}

/* ---- SHOWCASE CONTAINER ---- */
.hero__showcase {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Glow de fundo — halo azul suave atras de tudo */
.hero__showcase-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.35) 0%, rgba(26,86,219,.1) 50%, transparent 75%);
  animation: glow-pulse 3.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glow-pulse {
  0%, 100% { transform: scale(1);   opacity: .8; }
  50%       { transform: scale(1.2); opacity: 1; }
}

/* ---- ANEIS PULSANTES (sonar) ---- */
.hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(96,165,250,.45);
  animation: ring-out 4s ease-out infinite;
  pointer-events: none;
}
.hero__ring--1 { width: 220px; height: 220px; animation-delay: 0s; }
.hero__ring--2 { width: 300px; height: 300px; animation-delay: 1.3s; }
.hero__ring--3 { width: 378px; height: 378px; animation-delay: 2.6s; }

@keyframes ring-out {
  0%   { opacity: .9; transform: scale(.75); }
  100% { opacity: 0;  transform: scale(1); }
}

/* ---- LOGO FRAME: borda com gradiente girando ---- */
.hero__logo-frame {
  position: relative;
  border-radius: 24px;
  /* padding = espessura da borda animada */
  padding: 3px;
  /* conic-gradient que rotaciona via animation */
  background: conic-gradient(
    from 0deg,
    #1a56db 0deg,
    #60a5fa 90deg,
    #dbeafe 180deg,
    #60a5fa 270deg,
    #1a56db 360deg
  );
  animation: border-spin 4s linear infinite, logo-float 5s ease-in-out infinite;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08),
    0 20px 60px rgba(0,0,0,.4),
    0  4px 20px rgba(26,86,219,.5);
  z-index: 3;
}

@keyframes border-spin {
  to { --angle: 360deg; }
}

/* Para Firefox e Chrome — anima o background diretamente */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* Alternativa cross-browser: usar pseudo-element girando */
.hero__logo-frame::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 26px;
  background: conic-gradient(
    from var(--angle, 0deg),
    #1a56db, #60a5fa, #dbeafe, #3b82f6, #1a56db
  );
  animation: spin-border 4s linear infinite;
  z-index: -1;
  filter: blur(6px);
  opacity: .7;
}

@keyframes spin-border {
  to { transform: rotate(360deg); }
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

/* ---- LOGO INNER: fundo azul elegante integrado ---- */
.hero__logo-inner {
  position: relative;
  background: linear-gradient(145deg, #0d223f 0%, #153868 50%, #1c4987 100%);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 36px;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

/* Varredura de brilho sobre a logo */
.hero__logo-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent  30%,
    rgba(255,255,255,.65) 50%,
    transparent  70%
  );
  animation: shine-sweep 4s ease-in-out infinite 1s;
  pointer-events: none;
  z-index: 1;
}

@keyframes shine-sweep {
  0%, 100% { transform: translateX(-180%); }
  40%, 60% { transform: translateX(180%); }
}

.hero__logo-main {
  width: 240px;
  height: auto;
  max-height: 140px;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 0;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.45));
}

/* ---- ESTRELAS / SPARKLES ---- */
.hero__spark {
  position: absolute;
  pointer-events: none;
  z-index: 4;
}
.hero__spark svg { display: block; }

.hero__spark--1 { width: 22px; top: 12%;  left: 6%;  animation: spark-twinkle 3s ease-in-out infinite 0s; }
.hero__spark--2 { width: 16px; top: 10%;  right: 8%; animation: spark-twinkle 3s ease-in-out infinite 1.1s; }
.hero__spark--3 { width: 12px; bottom: 18%; left: 12%; animation: spark-twinkle 3s ease-in-out infinite 2s; }

@keyframes spark-twinkle {
  0%, 100% { opacity: .9; transform: scale(1)   rotate(0deg); }
  50%       { opacity: .3; transform: scale(.55) rotate(25deg); }
}

/* ---- PONTOS FLUTUANTES ---- */
.hero__dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  animation: dot-float 4s ease-in-out infinite;
}
.hero__dot--1 { width: 7px; height: 7px; background: #60a5fa; top: 28%;  right: 5%;  animation-delay: 0s; }
.hero__dot--2 { width: 5px; height: 5px; background: #f59e0b; bottom: 28%; right: 8%;  animation-delay: 1s; }
.hero__dot--3 { width: 6px; height: 6px; background: #93c5fd; bottom: 22%; left: 6%;  animation-delay: 1.8s; }
.hero__dot--4 { width: 4px; height: 4px; background: #60a5fa; top: 42%;  left: 4%;  animation-delay: 2.4s; }

@keyframes dot-float {
  0%, 100% { transform: translateY(0)    opacity: .7; }
  50%       { transform: translateY(-10px); opacity: 1; }
}

/* ---- BADGES FLUTUANTES ---- */
.hero__floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  z-index: 5;
  white-space: nowrap;
}

.hero__floating-badge svg { color: var(--blue); }

.hero__floating-badge--1 {
  top: -8px;
  right: -18px;
  animation: float 4s ease-in-out infinite;
}
.hero__floating-badge--2 {
  bottom: -8px;
  left: -18px;
  animation: float 4s ease-in-out infinite 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}

.hero__wave {
  margin-top: auto;
  line-height: 0;
}
.hero__wave svg { width: 100%; height: 80px; display: block; }

/* ---- SOBRE ---- */
.sobre__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre__accent-card {
  background: linear-gradient(135deg, var(--navy), var(--blue-dark));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.sobre__icon-wrap {
  width: 64px; height: 64px;
  background: rgba(255,255,255,.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #93c5fd;
}

.sobre__accent-card p {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  padding-top: 8px;
}

.sobre__stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sobre__stat {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.sobre__stat:hover { transform: translateX(4px); box-shadow: var(--shadow); }

.sobre__stat-icon {
  width: 44px; height: 44px;
  background: var(--blue-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.sobre__stat div {
  display: flex;
  flex-direction: column;
}
.sobre__stat strong { font-size: 14px; color: var(--navy); font-weight: 700; }
.sobre__stat span { font-size: 12.5px; color: var(--gray-600); margin-top: 2px; }

.sobre__content { padding-left: 10px; }

.sobre__text {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 18px;
}

.sobre__content .btn { margin-top: 10px; }

/* ---- SERVICOS ---- */
.servicos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-soft);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 52px; height: 52px;
  background: var(--blue-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
  transition: background var(--transition), color var(--transition);
}
.service-card:hover .service-card__icon {
  background: var(--blue);
  color: #fff;
}
.service-card__icon svg { width: 24px; height: 24px; }

.service-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  transition: gap var(--transition);
}
.service-card__link:hover { gap: 10px; }

/* ---- CONDOMINIOS ---- */
.condominios {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 60%, #1e4fa0 100%);
  position: relative;
  overflow: hidden;
}

.condominios::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,.15) 0%, transparent 70%);
  pointer-events: none;
}

.condominios__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.condominios__text {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  line-height: 1.8;
  margin-bottom: 32px;
}

.condominios__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.condominios__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,.9);
  font-weight: 500;
}

.condominios__list li svg { color: #60a5fa; flex-shrink: 0; }

.condominios__card-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.condominios__info-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  backdrop-filter: blur(8px);
  transition: background var(--transition), transform var(--transition);
}
.condominios__info-card:hover {
  background: rgba(255,255,255,.18);
  transform: translateX(4px);
}
.condominios__info-card svg { color: #93c5fd; flex-shrink: 0; }
.condominios__info-card div { display: flex; flex-direction: column; }
.condominios__info-card strong { font-size: 15px; color: #fff; font-weight: 700; }
.condominios__info-card span { font-size: 13px; color: rgba(255,255,255,.7); margin-top: 2px; }

/* ---- EMPRESAS ---- */
.empresas__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.empresas__icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.empresas__icon-item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-700);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.empresas__icon-item svg { color: var(--blue); }
.empresas__icon-item:hover {
  border-color: var(--blue-soft);
  background: var(--blue-pale);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.empresas__icon-item:hover svg { color: var(--navy); }

.empresas__text {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 18px;
}

/* ---- DIFERENCIAIS ---- */
.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.diferencial-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.diferencial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.diferencial-card__icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--blue-pale), var(--blue-soft));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--blue);
  transition: background var(--transition), color var(--transition);
}
.diferencial-card:hover .diferencial-card__icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: #fff;
}
.diferencial-card__icon svg { width: 28px; height: 28px; }

.diferencial-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.diferencial-card p {
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ---- COMO FUNCIONA ---- */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps__grid::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-soft), var(--blue));
  z-index: 0;
}

.step-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-card__number {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--blue);
  background: var(--blue-pale);
  border: 2px solid var(--blue-soft);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-card__icon {
  width: 56px; height: 56px;
  background: var(--blue-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--blue);
}
.step-card__icon svg { width: 26px; height: 26px; }

.step-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ---- ORCAMENTO ---- */
.orcamento__container {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}

.orcamento__subtitle {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
}

.orcamento__contact-opts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.orcamento__opt {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-700);
  padding: 12px 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}
.orcamento__opt svg { color: var(--blue); flex-shrink: 0; }

/* ---- FORM ---- */
.orcamento__form-wrap {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form__group--full {
  grid-column: 1/-1;
}

.form__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
}

.form__input {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--gray-900);
  background: var(--gray-50);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form__input:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26,86,219,.1);
}

.form__input.error {
  border-color: #ef4444 !important;
  background-color: #fef2f2 !important;
  box-shadow: 0 0 0 3px rgba(239,68,68,.15) !important;
}

.form__input::placeholder { color: var(--gray-400); }

.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239ca3af' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form__textarea { resize: vertical; min-height: 100px; }

.form__error {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 20px;
  color: #991b1b;
  font-size: 14px;
}
.form__error svg { color: #ef4444; flex-shrink: 0; }

.btn__spinner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.spinner-icon {
  width: 18px;
  height: 18px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.btn--sm {
  padding: 8px 18px;
  font-size: 13px;
}

.form__success {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
  padding: 24px;
  color: #166534;
  animation: fadeIn 0.4s ease;
}
.form__success svg { color: #16a34a; flex-shrink: 0; margin-top: 2px; }
.form__success strong { font-size: 16px; font-weight: 700; display: block; margin-bottom: 6px; color: #14532d; }
.form__success p { font-size: 14.5px; line-height: 1.6; color: #166534; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- CTA FINAL ---- */
.cta-final {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 60%, #1e4fa0 100%);
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-final__container {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-final__content { max-width: 680px; margin: 0 auto; }

.cta-final__title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -.01em;
}

.cta-final__text {
  font-size: 18px;
  color: rgba(255,255,255,.8);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-final__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.7);
}

.footer__container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer__logo-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 10px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer__logo-img {
  height: 28px;
  width: auto;
  max-width: 70px;
  object-fit: contain;
  display: block;
}

.footer__logo-name {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .04em;
  display: block;
  line-height: 1;
}

.footer__logo-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--blue-light);
  display: block;
  margin-top: 3px;
}

.footer__tagline {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,.5);
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
}
.footer__social a:hover {
  background: var(--blue);
  color: #fff;
}

.footer__nav h4,
.footer__services h4,
.footer__contact h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff;
  margin-bottom: 20px;
}

.footer__nav ul,
.footer__services ul { display: flex; flex-direction: column; gap: 10px; }

.footer__nav li a,
.footer__services li a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer__nav li a:hover,
.footer__services li a:hover { color: #fff; }

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer__contact-list svg { color: var(--blue-light); flex-shrink: 0; margin-top: 2px; }

.footer__contact-data {
  font-size: 13.5px;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
}

.footer__bottom {
  padding: 20px 0;
}

.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.35);
}

.footer__segment {
  font-size: 11px;
  letter-spacing: .12em;
  color: rgba(255,255,255,.25);
  text-transform: uppercase;
}

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px; height: 58px;
  background: var(--wa-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: all var(--transition);
}

.whatsapp-float:hover {
  background: var(--wa-dark);
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}

.whatsapp-float__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--gray-900);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: all var(--transition);
}

.whatsapp-float__tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--gray-900);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ---- ATENDIMENTO VIRTUAL 24H (CONSULTORA MARIANA HRC) ---- */
.chatbot-widget {
  position: relative;
  z-index: 1001;
}

.chatbot-float {
  position: fixed;
  bottom: 98px;
  right: 28px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 26px rgba(15, 36, 65, 0.32);
  cursor: pointer;
  border: 2.5px solid #22c55e;
  padding: 0;
  transition: all var(--transition);
}

.chatbot-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 32px rgba(15, 36, 65, 0.45);
}

.chatbot-float__avatar-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.chatbot-float__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.chatbot-float__close-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
}

.chatbot-float__online-indicator {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background: #22c55e;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.8);
}

.chatbot-float__badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
  z-index: 2;
}

.chatbot-float__pulse {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid #22c55e;
  animation: chatbotRingPulse 2.2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
  pointer-events: none;
}

@keyframes chatbotRingPulse {
  0% { transform: scale(0.95); opacity: 0.9; }
  60% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

.chatbot-float__tooltip {
  position: absolute;
  right: calc(100% + 14px);
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
  border: 1px solid rgba(255,255,255,.1);
}

.chatbot-float__tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy);
}

.chatbot-float:hover .chatbot-float__tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Janela do Chatbot */
.chatbot-window {
  position: fixed;
  bottom: 168px;
  right: 28px;
  width: 380px;
  max-width: calc(100vw - 36px);
  height: 540px;
  max-height: calc(100vh - 190px);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(15, 36, 65, 0.28), 0 0 0 1px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1002;
  animation: chatbotPopUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes chatbotPopUp {
  from { opacity: 0; transform: translateY(18px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.chatbot-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 50%, var(--blue) 100%);
  color: #fff;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.chatbot-header__avatar {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}

.chatbot-header__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  display: block;
}

.chatbot-header__online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 11px;
  height: 11px;
  background: #22c55e;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 5px #22c55e;
}

.chatbot-header__info {
  flex: 1;
}

.chatbot-header__name {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.chatbot-header__status {
  font-size: 11.5px;
  color: rgba(255,255,255,.85);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.status-dot-green {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px #22c55e;
}

.chatbot-header__close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.chatbot-header__close:hover {
  background: rgba(255,255,255,.25);
}

/* Corpo do Chat */
.chatbot-body {
  flex: 1;
  padding: 16px 14px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #f8fafc;
}

.chatbot-body::-webkit-scrollbar {
  width: 5px;
}
.chatbot-body::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

.chat-msg {
  display: flex;
  max-width: 92%;
  animation: chatMsgFade 0.25s ease;
}

@keyframes chatMsgFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-msg--bot {
  align-self: flex-start;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.chat-msg__avatar-mini {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid var(--blue-light);
  margin-top: 2px;
}

.chat-msg__avatar-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.chat-msg__content-wrap {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.chat-msg--user {
  align-self: flex-end;
  display: flex;
  flex-direction: column;
}

.chat-msg__bubble {
  padding: 12px 15px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.55;
}

.chat-msg--bot .chat-msg__bubble {
  background: #fff;
  color: var(--gray-800);
  border: 1px solid var(--gray-200);
  border-top-left-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.chat-msg--bot .chat-msg__bubble p:not(:last-child) {
  margin-bottom: 8px;
}
.chat-msg--bot .chat-msg__bubble ul {
  padding-left: 18px;
  margin: 6px 0;
  list-style: disc;
}
.chat-msg--bot .chat-msg__bubble li {
  margin-bottom: 4px;
}

.chat-msg--user .chat-msg__bubble {
  background: var(--blue);
  color: #fff;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 12px rgba(26,86,219,.25);
}

.chat-msg__time {
  font-size: 10.5px;
  color: var(--gray-400);
  margin-top: 4px;
  padding: 0 4px;
}
.chat-msg--user .chat-msg__time {
  align-self: flex-end;
}

/* Opcoes Rapidas */
.chat-quick-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
  padding-left: 36px;
}

.chat-chip {
  background: #fff;
  border: 1.5px solid var(--blue-soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  text-align: left;
}
.chat-chip:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: translateY(-1px);
}

/* Botoes de Acao no corpo da mensagem do bot */
.chat-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue);
  color: #fff !important;
  font-size: 12.5px;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 8px;
  margin-top: 8px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  border: none;
  box-shadow: 0 2px 6px rgba(26,86,219,.25);
}
.chat-action-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}
.chat-action-btn--wa {
  background: var(--wa-green);
  box-shadow: 0 2px 6px rgba(37, 211, 102, 0.3);
}
.chat-action-btn--wa:hover {
  background: var(--wa-dark);
}

/* Indicador de Digitando */
.chat-typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  background: #f1f5f9;
  border-top: 1px solid var(--gray-200);
}

.typing-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: typingBounce 1.2s infinite ease-in-out;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
  40% { transform: translateY(-5px); opacity: 1; }
}

/* Rodape do Chat */
.chatbot-footer {
  padding: 12px 14px;
  background: #fff;
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.chatbot-input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 24px;
  font-size: 13.5px;
  outline: none;
  background: var(--gray-50);
  color: var(--gray-900);
  transition: border-color var(--transition), background var(--transition);
}
.chatbot-input:focus {
  border-color: var(--blue);
  background: #fff;
}

.chatbot-send-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
  transition: all var(--transition);
}
.chatbot-send-btn:hover {
  background: var(--blue-dark);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .chatbot-float {
    bottom: 78px;
    right: 18px;
    width: 52px;
    height: 52px;
  }
  .chatbot-window {
    position: fixed;
    bottom: 12px;
    right: 12px;
    left: 12px;
    width: auto;
    max-width: 100%;
    height: calc(100dvh - 24px);
    max-height: 580px;
    border-radius: 18px;
    z-index: 10000;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45);
  }
  .chat-quick-options {
    padding-left: 0;
  }
}

/* ---- ANIMATIONS ---- */
[data-animate] {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}
[data-animate="fade-up"] { transform: translateY(30px); }
[data-animate="fade-right"] { transform: translateX(-30px); }
[data-animate="fade-left"] { transform: translateX(30px); }

[data-animate].animated {
  opacity: 1;
  transform: none !important;
}

@media (max-width: 768px) {
  [data-animate="fade-right"],
  [data-animate="fade-left"] {
    transform: translateY(20px);
  }
}

/* ---- INPUT VALIDATION ---- */
.form__input.error { border-color: #ef4444; }
.form__input.error:focus { box-shadow: 0 0 0 3px rgba(239,68,68,.1); }

/* ============================================================
   MAPA INTERATIVO & COBERTURA
   ============================================================ */
.map-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.map-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--gray-200);
  background: #fff;
  color: var(--gray-700);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.map-filter-btn:hover {
  border-color: var(--blue-soft);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.map-filter-btn.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(26,86,219,.35);
}
.map-filter-btn svg {
  flex-shrink: 0;
}

.map-showcase {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-md);
  margin-bottom: 32px;
}

.map-wrapper {
  position: relative;
  height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  z-index: 1;
}

.coverage-map {
  width: 100%;
  height: 100%;
  background: #f1f5f9;
}

.map-overlay-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1000;
  background: rgba(15, 36, 65, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.2);
  pointer-events: none;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.8);
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.8); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.map-reset-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 1000;
  background: #fff;
  border: 1px solid var(--gray-200);
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: all var(--transition);
}
.map-reset-btn:hover {
  background: var(--blue-pale);
  color: var(--blue);
  border-color: var(--blue-soft);
  transform: translateY(-1px);
}

/* Sidebar de Locais */
.map-sidebar {
  display: flex;
  flex-direction: column;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px;
  height: 520px;
}

.map-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.map-sidebar__header h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
}
.map-sidebar__counter {
  font-size: 12px;
  font-weight: 700;
  background: var(--blue-pale);
  color: var(--blue);
  border: 1px solid var(--blue-soft);
  padding: 3px 12px;
  border-radius: 50px;
}

.map-search-wrap {
  position: relative;
  margin-bottom: 14px;
}
.map-search-wrap svg {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: var(--gray-400);
  pointer-events: none;
}
.map-search-wrap input {
  width: 100%;
  padding: 11px 14px 11px 40px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-size: 13.5px;
  background: #fff;
  color: var(--gray-900);
  outline: none;
  transition: all var(--transition);
}
.map-search-wrap input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,.12);
}

.map-locations-list {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 4px;
}

.map-locations-list::-webkit-scrollbar {
  width: 6px;
}
.map-locations-list::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

.map-loc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: left;
}
.map-loc-item:hover {
  border-color: var(--blue-soft);
  background: var(--blue-pale);
  transform: translateX(4px);
}
.map-loc-item.selected {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 4px 12px rgba(26,86,219,.18);
}
.map-loc-item__left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.map-loc-item__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.map-loc-item__icon svg { width: 16px; height: 16px; }
.map-loc-item__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  display: block;
  line-height: 1.2;
}
.map-loc-item__sub {
  font-size: 11.5px;
  color: var(--gray-600);
  display: block;
  margin-top: 3px;
}
.map-loc-item__tag {
  font-size: 11px;
  font-weight: 700;
  color: #15803d;
  background: #dcfce7;
  padding: 3px 9px;
  border-radius: 6px;
  border: 1px solid #bbf7d0;
}

/* Custom Leaflet Pins */
.custom-map-pin {
  background: transparent;
  border: none;
}
.custom-map-pin__inner {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  border: 2.5px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.35);
  transition: transform 0.2s ease, background 0.2s ease;
  cursor: pointer;
}
.custom-map-pin__inner svg {
  transform: rotate(45deg);
  color: #fff;
  width: 16px;
  height: 16px;
}
.custom-map-pin:hover .custom-map-pin__inner {
  transform: rotate(-45deg) scale(1.2);
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Custom Popup */
.leaflet-popup-content-wrapper {
  border-radius: 14px !important;
  box-shadow: 0 14px 40px rgba(0,0,0,.22) !important;
  padding: 0 !important;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.leaflet-popup-content {
  margin: 0 !important;
  line-height: 1.5 !important;
  min-width: 270px;
}
.map-popup-card {
  padding: 20px 22px;
}
.map-popup-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--gray-100);
  padding-bottom: 10px;
}
.map-popup-card__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
}
.map-popup-card__badge {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: #15803d;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  padding: 3px 9px;
  border-radius: 50px;
}
.map-popup-card__desc {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 12px;
}
.map-popup-card__services {
  font-size: 12px;
  color: var(--gray-700);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 14px;
}
.map-popup-card__services strong {
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
  font-size: 12.5px;
}
.map-popup-card__btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 16px;
  background: var(--blue);
  color: #fff;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .03em;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.map-popup-card__btn:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

/* Trust Bar */
.map-trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.map-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.map-trust-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.map-trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-trust-item strong {
  display: block;
  font-size: 14.5px;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 4px;
}
.map-trust-item span {
  display: block;
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq__list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq__item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq__item.active {
  border-color: var(--blue-soft);
  box-shadow: var(--shadow-sm);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  background: transparent;
  transition: color var(--transition);
  cursor: pointer;
}
.faq__question:hover { color: var(--blue); }

.faq__icon {
  color: var(--blue);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq__item.active .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq__item.active .faq__answer {
  max-height: 250px;
  padding: 0 24px 20px;
}

.faq__answer p {
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */

/* Tablet (1024px) */
@media (max-width: 1024px) {
  .sobre__container { grid-template-columns: 1fr; gap: 48px; }
  .sobre__visual { order: -1; }
  .condominios__container { grid-template-columns: 1fr; gap: 48px; }
  .empresas__container { grid-template-columns: 1fr; gap: 48px; }
  .orcamento__container { grid-template-columns: 1fr; gap: 40px; }
  .footer__container { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: 1 / -1; }
  .steps__grid { grid-template-columns: repeat(2, 1fr); }
  .steps__grid::before { display: none; }

  /* Showcase menor em tablet */
  .hero__showcase  { width: 300px; height: 300px; }
  .hero__ring--3   { width: 300px; height: 300px; }
  .hero__ring--2   { width: 246px; height: 246px; }
  .hero__ring--1   { width: 186px; height: 186px; }
  .hero__logo-main { width: 180px; }
  .hero__logo-inner { padding: 22px 26px; }

  /* Mapa */
  .map-showcase { grid-template-columns: 1fr; }
  .map-wrapper { height: 420px; }
  .map-sidebar { height: 320px; }
}

@media (max-width: 900px) {
  .servicos__grid { grid-template-columns: repeat(2, 1fr); }
  .diferenciais__grid { grid-template-columns: repeat(2, 1fr); }
  .map-trust-bar { grid-template-columns: 1fr; gap: 14px; }
}

/* Mobile (768px) */
@media (max-width: 768px) {
  :root { --nav-h: 66px; }
  .section { padding: 56px 0; }
  .container { padding: 0 16px; width: 100%; max-width: 100%; }

  .section__title {
    font-size: clamp(21px, 5.5vw, 30px);
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.25;
  }
  .section__subtitle { font-size: 15px; }

  /* BUTTONS EM MOBILE */
  .btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    padding: 13px 18px;
    font-size: 13.5px;
  }
  .btn--lg { padding: 14px 18px; font-size: 13px; }

  /* NAV */
  .nav__menu {
    position: fixed;
    top: var(--nav-h);
    right: 0;
    height: calc(100vh - var(--nav-h));
    width: 280px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    gap: 4px;
    z-index: 999;
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform .3s ease, visibility .3s ease;
    box-shadow: -4px 0 30px rgba(0,0,0,.15);
  }
  .nav__menu.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav__link { font-size: 15px; width: 100%; padding: 12px 14px; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; margin-left: auto; }

  /* HERO */
  .hero {
    padding-top: calc(var(--nav-h) + 36px);
    min-height: auto;
  }
  .hero__container {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 48px;
  }
  .hero__content { padding-right: 0; text-align: center; width: 100%; }
  .hero__actions { justify-content: center; flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; }
  .hero__trust { align-items: center; justify-content: center; }
  .hero__visual { display: none; }

  /* SOBRE */
  .sobre__accent-card { flex-direction: column; text-align: center; padding: 24px 20px; }
  .sobre__stats { gap: 10px; width: 100%; }
  .sobre__content { text-align: center; width: 100%; padding-left: 0; }
  .sobre__content .btn { width: 100%; }

  /* SERVICOS */
  .servicos__grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 24px 20px; }

  /* DIFERENCIAIS */
  .diferenciais__grid { grid-template-columns: 1fr; gap: 14px; }
  .diferencial-card { padding: 24px 20px; }

  /* STEPS */
  .steps__grid { grid-template-columns: 1fr; gap: 16px; }

  /* FORM */
  .form__row { grid-template-columns: 1fr; }
  .orcamento__form-wrap { padding: 24px 18px; }

  /* CTA */
  .cta-final__actions { flex-direction: column; align-items: center; width: 100%; }
  .cta-final__actions .btn { width: 100%; max-width: 100%; }

  /* FOOTER */
  .footer__container { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom .container { flex-direction: column; gap: 8px; text-align: center; }

  /* BOTOES FLUTUANTES NO MOBILE */
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
    z-index: 1000;
  }
  .whatsapp-float__tooltip { display: none !important; }

  .chatbot-float {
    bottom: 74px;
    right: 16px;
    width: 50px;
    height: 50px;
    z-index: 1001;
  }
  .chatbot-float__tooltip { display: none !important; }

  /* JANELA DO CHATBOT NO MOBILE */
  .chatbot-window {
    position: fixed;
    bottom: 10px;
    right: 10px;
    left: 10px;
    width: auto;
    max-width: 100%;
    height: calc(100dvh - 20px);
    max-height: 580px;
    border-radius: 18px;
    z-index: 99999;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5);
  }

  /* CONDOMINIOS */
  .condominios::before { display: none !important; }
  .condominios__content { text-align: center; width: 100%; }
  .condominios__content .btn { width: 100%; }
  .condominios__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-bottom: 28px;
  }
  .condominios__list li {
    font-size: 14px;
    text-align: left;
    word-break: break-word;
  }
  .condominios__card-group { width: 100%; }
  .condominios__info-card {
    padding: 14px 16px;
    gap: 12px;
  }
  .condominios__info-card strong { font-size: 14px; }
  .condominios__info-card span { font-size: 12px; }

  /* EMPRESAS */
  .empresas__icon-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .empresas__content { text-align: center; width: 100%; }
  .empresas__content .btn { width: 100%; }
}

@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; }
  .sobre__stats { gap: 8px; }
  .section__header { margin-bottom: 36px; }
  .servicos__grid { gap: 14px; }
  .diferenciais__grid { gap: 14px; }
  .map-wrapper { height: 320px; }
  .map-sidebar { height: 280px; padding: 14px; }
  .map-filter-btn { padding: 8px 14px; font-size: 12px; }
}
