/* ===========================================================
   Desentupidora Max — Estilos responsivos (mobile / tablet / desktop)
   =========================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Roboto", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #1f2937;
  line-height: 1.55;
  background: #fff;
  padding-top: 84px; /* header fixo */
}
img, svg, iframe { display: block; max-width: 100%; height: auto; border: 0; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; line-height: 1.2; color: #082764; }
p { margin: 0; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px)  { .container { padding: 0 24px; } }
@media (min-width: 1024px) { .container { padding: 0 32px; } }

/* ---------- Backgrounds ---------- */
.background-blue-gradient      { background: linear-gradient(135deg, #0a2463, #1e5efa); color: #fff; }
.background-lightblue-gradient { background: linear-gradient(180deg, #f0f8ff, #fff); }
.depoimentos-background        { background: linear-gradient(180deg, #b8d0ff, #e6f0ff); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.header-logo-link { display: inline-flex; align-items: center; flex-shrink: 0; }
.header-logo { width: 96px; height: auto; }

.header-hours {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #0b3c8c;
  font-weight: 700;
  font-size: 11px;
  line-height: 1.15;
  flex: 1 1 auto;
  min-width: 0;
  justify-content: center;
}
.header-hours-icon { font-size: 16px; color: #FACC15; flex-shrink: 0; }
.header-hours-sub  { font-weight: 400; font-size: 10px; color: #2b4a8a; }
.header-hours-title { white-space: nowrap; }

.nav-desktop { display: none; }
.nav-desktop ul { display: flex; gap: 6px; }
.nav-link {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 8px;
  color: #082764;
  font-weight: 500;
  font-size: 14px;
  transition: background-color .2s ease, color .2s ease;
}
.nav-link:hover { background: rgba(8,39,100,.08); color: #082764; }

/* Burger */
.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 8px;
  border-radius: 8px;
}
.burger-line {
  display: block;
  width: 24px; height: 2px;
  background: #082764;
  border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease;
}
.burger.is-active .burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-active .burger-line:nth-child(2) { opacity: 0; }
.burger.is-active .burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile */
.mobile-menu {
  position: fixed;
  inset: 0;
  top: 64px;
  background: #0a2463;
  color: #fff;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s ease;
  z-index: 9998;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu-logo img { width: 90px; height: auto; }
.mobile-menu-link {
  display: block;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  border-radius: 8px;
  transition: background-color .2s ease;
}
.mobile-menu-link:hover { background: rgba(255,255,255,.12); }

body.menu-open { overflow: hidden; }

/* Desktop nav */
@media (min-width: 768px) {
  .header-inner { padding: 10px 16px; gap: 16px; }
  .header-hours { gap: 10px; font-size: 13px; }
  .header-hours-icon { font-size: 18px; }
  .header-hours-sub  { font-size: 11px; }
  .header-logo { width: 140px; }
}
@media (min-width: 1024px) {
  .header-inner { padding: 12px 32px; }
  .header-logo  { width: 160px; }
  .nav-desktop  { display: flex; }
  .burger       { display: none; }
  .mobile-menu  { display: none; }
  body { padding-top: 96px; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 24px 0 64px;
  background: radial-gradient(ellipse at top right, #1e5efa 0%, #0a2463 55%, #061a4a 100%);
  overflow: hidden;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  text-align: center;
}
.hero-content { width: 100%; max-width: 640px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-badge .iconify { color: #FACC15; font-size: 12px; }

@media (max-width: 767px) {
  .hero-badge { display: none; }
  .hero { padding-top: 12px; }
  .hero-inner { gap: 20px; }
}

@media (min-width: 1024px) {
  .hero-badge {
    font-size: .82rem;
    gap: 8px;
    padding: 8px 16px;
    letter-spacing: .12em;
    margin-bottom: 22px;
  }
  .hero-badge .iconify { font-size: 16px; }
}

.hero-title {
  color: #fff;
  font-size: clamp(2rem, 5.2vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 16px;
}
.accent-line { display: inline-block; color: #FACC15; }
.accent { color: #FACC15; }

.hero-lead {
  color: rgba(255,255,255,.88);
  font-size: clamp(1rem, 2.3vw, 1.2rem);
  margin-bottom: 20px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, .18);
  border: 1px solid rgba(74, 222, 128, .45);
  color: #FACC15;
  font-weight: 700;
  font-size: clamp(.85rem, 1.8vw, 1.05rem);
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
  flex: 0 0 auto;
  max-width: 100%;
}
.hero-pill .iconify { color: #4ade80; font-size: 18px; flex-shrink: 0; }

@media (min-width: 640px) {
  .hero-pills { flex-wrap: nowrap; }
}

.hero-services {
  color: #fff;
  font-weight: 700;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  letter-spacing: .02em;
  margin-bottom: 18px;
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.72);
  font-size: .85rem;
  margin-top: 14px;
}
.hero-trust .iconify { font-size: 14px; }

.hero-image { width: 100%; max-width: 520px; }
.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(0,0,0,.35);
}

@media (min-width: 1024px) {
  .hero { padding: 72px 0 80px; }
  .hero-inner {
    flex-direction: row;
    text-align: left;
    gap: 48px;
    align-items: center;
  }
  .hero-content { flex: 1; max-width: none; }
  .hero-image   { flex: 1; max-width: 560px; }
}

/* ---------- Botão WhatsApp ---------- */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.15rem);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .35);
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.btn-whatsapp .iconify { font-size: 22px; }
.btn-whatsapp:hover  { background: #1EBE5D; transform: translateY(-1px); box-shadow: 0 16px 32px rgba(37,211,102,.42); }
.btn-whatsapp:active { background: #128C7E; }

.btn-whatsapp-lg {
  padding: 16px 34px;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  width: 100%;
  max-width: 420px;
}

/* ---------- Barra de destaques (trust bar) ---------- */
.trust-bar {
  background: #f5f8ff;
  padding: 28px 0;
  border-bottom: 1px solid #e4ebfb;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.trust-card {
  background: #fff;
  border: 1px solid #e4ebfb;
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(8, 39, 100, .04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.trust-card:hover {
  transform: translateY(-3px);
  border-color: #c7d5f6;
  box-shadow: 0 10px 22px rgba(8, 39, 100, .1);
}
.trust-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(32, 98, 230, .08);
  color: #2062e6;
  font-size: 26px;
}
.trust-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #082764;
  margin-bottom: 4px;
}
.trust-card p {
  color: #64748b;
  font-size: .85rem;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .trust-bar { padding: 32px 0; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .trust-card { padding: 22px 16px; }
  .trust-card h3 { font-size: 1.05rem; }
  .trust-card p  { font-size: .9rem; }
}

/* ---------- Section base ---------- */
.section { padding: 56px 0; }
@media (min-width: 768px)  { .section { padding: 72px 0; } }
@media (min-width: 1024px) { .section { padding: 88px 0; } }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: #082764;
  margin-bottom: 14px;
}
.section-sub {
  color: #4b5563;
  font-size: clamp(.95rem, 2vw, 1.05rem);
  line-height: 1.6;
}

.services-title {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #082764, #1e40af);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.services-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #2a5fde;
  border-radius: 3px;
}

/* ---------- Grid ---------- */
.grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 640px)  { .grid-3 { grid-template-columns: repeat(2, 1fr); } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.12); }

/* Serviços */
.card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 16px;
}
.card-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #082764;
  text-align: center;
  line-height: 1.35;
}

/* Diferenciais */
.card-value { text-align: center; padding: 28px 20px; }
.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #2062e6;
  margin-bottom: 12px;
}
.card-text {
  color: #4b5563;
  font-size: .95rem;
  line-height: 1.6;
  margin-top: 8px;
}

/* Depoimentos */
.card-testimonial { padding: 24px; }
.testimonial-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.avatar {
  width: 48px; height: 48px;
  background: #082764;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; color: #1f2937; font-size: .95rem; }
.testimonial-stars { color: #eab308; font-size: .9rem; }
.testimonial-stars .rating { margin-left: 6px; color: #4b5563; font-weight: 600; font-size: .8rem; }
.testimonial-text { color: #374151; font-size: .95rem; font-style: italic; line-height: 1.6; }

/* ---------- CTA Banner ---------- */
.cta-banner { padding: 56px 0; text-align: center; }
.cta-title {
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.cta-sub {
  color: rgba(255,255,255,.92);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  margin-bottom: 26px;
  max-width: 640px;
  margin-left: auto; margin-right: auto;
}

/* ---------- Regiões ---------- */
.region-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
.region-map {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  background: #dbeafe;
}
.region-map iframe { width: 100%; height: 320px; border: 0; display: block; }
.region-title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #082764;
  margin-bottom: 16px;
}
.region-list ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.region-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f5f8ff;
  padding: 14px 16px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,.05);
  color: #1f2937;
  font-size: .95rem;
}
.region-list li .iconify { color: #2062e6; font-size: 22px; flex-shrink: 0; }

@media (min-width: 640px) {
  .region-list ul { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .region-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .region-map iframe { height: 460px; }
}

/* ---------- Footer ---------- */
.site-footer { color: #fff; padding: 48px 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.footer-logo { width: 140px; height: auto; margin-bottom: 16px; }
.footer-about p { color: #d1d5db; font-size: .95rem; line-height: 1.6; }
.footer-about p strong { color: #fff; }
.footer-title {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 42px; height: 2px;
  background: #fff;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d1d5db;
  font-size: .95rem;
  transition: color .2s ease;
}
.footer-links a:hover { color: #fff; }
.footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d1d5db;
  font-weight: 500;
  font-size: .95rem;
}
.footer-contact .iconify { font-size: 22px; color: #fff; }

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.22);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
}
.footer-copy p { color: #d1d5db; font-size: .9rem; }
.footer-copy-sub { color: #9ca3af; font-size: .8rem; margin-top: 4px; }
.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d1d5db;
  font-size: .9rem;
}
.footer-credit img { width: 28px; height: auto; }

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
}

/* ---------- WhatsApp flutuante ---------- */
.whats-float {
  position: fixed;
  right: 18px; bottom: 18px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  z-index: 9997;
  transition: transform .2s ease;
}
.whats-float:hover { transform: scale(1.08); }
.whats-float img { width: 32px; height: 32px; }

@media (min-width: 1024px) {
  .whats-float { bottom: 28px; right: 28px; }
}

/* ---------- WhatsApp modal (oculto por padrão) ---------- */
.whats-modal {
  position: fixed;
  right: 18px; bottom: 90px;
  width: 320px;
  max-width: calc(100vw - 36px);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,.2);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 9996;
  overflow: hidden;
}
.whats-modal.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.whats-modal-head {
  background: #00a884;
  color: #fff;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.whats-modal-head h3 { font-size: 1.05rem; font-weight: 600; color: #fff; }
.whats-modal-close { color: #fff; font-size: 1.6rem; line-height: 1; }
.whats-modal-body { padding: 18px; background: #f3f4f6; display: flex; flex-direction: column; gap: 12px; }
.whats-modal-body input {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 1rem;
  color: #111;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.whats-modal-body input:focus { border-color: #00a884; box-shadow: 0 0 0 3px rgba(0,168,132,.25); }
.whats-modal-submit {
  padding: 12px;
  background: #00a884;
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  transition: background-color .2s ease;
}
.whats-modal-submit:hover { background: #007a65; }
