:root {
  --red-950: #450a0a;
  --red-900: #7f1d1d;
  --red-800: #991b1b;
  --red-700: #b91c1c;
  --orange: #f97316;
  --amber: #f59e0b;
  --dark: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --soft: #fff7ed;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(17, 24, 39, .18);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: #ffffff;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(229, 231, 235, .85);
  backdrop-filter: blur(14px);
}

/* Logo do topo: usa somente a imagem do logo, sem texto separado */
.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img,
.brand-logo {
  display: block;
  width: clamp(190px, 20vw, 280px);
  height: 78px;
  object-fit: cover;
  object-position: center;
}
.nav { display: flex; gap: 22px; font-size: .94rem; color: #374151; }
.nav a:hover { color: var(--red-700); }

.section-pad { padding: clamp(52px, 8vw, 112px) clamp(18px, 4vw, 64px); }
.hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(32px, 5vw, 74px);
  align-items: center;
  min-height: 720px;
  background:
    radial-gradient(circle at 88% 16%, rgba(249, 115, 22, .22), transparent 32%),
    linear-gradient(135deg, #fff 0%, #fff7ed 48%, #fee2e2 100%);
  overflow: hidden;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red-700);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red-700), var(--orange));
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 800px;
  margin: 14px 0 18px;
  font-size: clamp(2.35rem, 5.6vw, 5.9rem);
  line-height: .93;
  letter-spacing: -.075em;
}
h2 {
  margin: 12px 0 14px;
  font-size: clamp(2rem, 3.4vw, 3.45rem);
  line-height: 1.02;
  letter-spacing: -.055em;
}
h3 { margin-bottom: 8px; font-size: 1.15rem; }
.hero-text, .section-head p, .cta-panel p { color: #4b5563; font-size: 1.08rem; max-width: 760px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--red-700), var(--orange));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(185, 28, 28, .28);
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(185, 28, 28, .34); }
.btn-outline { background: transparent; color: var(--red-800); border-color: rgba(185, 28, 28, .24); box-shadow: none; }
.btn-light { background: #fff; color: var(--red-800); box-shadow: 0 14px 34px rgba(0,0,0,.18); }
.btn-small { min-height: 42px; padding: 0 18px; font-size: .92rem; }

.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 760px; }
.trust-row div { padding: 16px; background: rgba(255,255,255,.74); border: 1px solid rgba(255,255,255,.9); border-radius: 18px; box-shadow: 0 10px 30px rgba(17,24,39,.05); }
.trust-row strong { display: block; font-size: 1rem; }
.trust-row span { display: block; color: var(--muted); font-size: .9rem; }

.hero-card {
  position: relative;
  background: linear-gradient(160deg, var(--red-950), var(--red-800) 55%, var(--orange));
  border-radius: 36px;
  padding: 28px;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}
.hero-card img { border-radius: 28px; background: rgba(255,255,255,.08); }
.alert-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 18px;
  background: rgba(255,255,255,.92);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,.22);
}
.alert-card strong, .alert-card span { display: block; }
.alert-card span { color: var(--muted); }

.risk-strip {
  padding: 28px clamp(18px, 4vw, 64px);
  background: var(--red-950);
  color: #fff;
  text-align: center;
}
.risk-strip p { margin: 0 auto; max-width: 1060px; font-size: clamp(1.05rem, 2vw, 1.35rem); font-weight: 800; }

.section { padding: clamp(58px, 7vw, 104px) clamp(18px, 4vw, 64px); }
.section-light { background: #f9fafb; }
.section-dark { background: linear-gradient(135deg, #111827, #450a0a); color: #fff; }
.section-head { max-width: 920px; margin-bottom: 34px; }
.section-head.inverted p { color: rgba(255,255,255,.76); }

.split-grid, .cards-grid, .service-grid, .equipment-grid { display: grid; gap: 18px; }
.split-grid { grid-template-columns: repeat(2, 1fr); }
.cards-grid { grid-template-columns: repeat(4, 1fr); }
.service-grid { grid-template-columns: repeat(4, 1fr); }
.equipment-grid { grid-template-columns: repeat(3, 1fr); }

.info-card, .mini-card, .service-card, .equipment-card, .step, .faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 36px rgba(17,24,39,.06);
}
.info-card { padding: 28px; min-height: 230px; }
.info-card .icon { display: inline-flex; font-size: 2rem; margin-bottom: 18px; }
.info-card p, .service-card p, .equipment-card p, .step p, .faq-list p { color: #4b5563; margin-bottom: 0; }
.danger-card { color: #fff; background: linear-gradient(135deg, var(--red-800), var(--orange)); border: none; }
.danger-card p { color: rgba(255,255,255,.88); }

.mini-card { padding: 20px; }
.mini-card strong, .mini-card span { display: block; }
.mini-card span { color: var(--muted); margin-top: 4px; font-size: .94rem; }

.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { padding: 24px; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); box-shadow: none; }
.step span { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 18px; border-radius: 50%; background: #fff; color: var(--red-800); font-weight: 900; }
.step p { color: rgba(255,255,255,.72); }

.service-card { padding: 26px; }
.service-card span { font-size: 2rem; display: inline-block; margin-bottom: 14px; }
.equipment-card { padding: 28px; border-top: 6px solid var(--orange); }
.equipment-card span { font-size: 2.1rem; display: inline-block; margin-bottom: 14px; }

.cta-panel {
  margin: clamp(18px, 4vw, 64px);
  padding: clamp(32px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(255,255,255,.18), transparent 28%),
    linear-gradient(135deg, var(--red-800), var(--orange));
  border-radius: 34px;
  box-shadow: var(--shadow);
}
.cta-panel h2 { max-width: 820px; }
.cta-panel p { color: rgba(255,255,255,.86); margin-bottom: 0; }
.cta-panel .eyebrow { color: #fff; }
.cta-panel .eyebrow::before { background: #fff; }

.faq-list { max-width: 940px; display: grid; gap: 12px; }
.faq-list details { padding: 20px 22px; }
.faq-list summary { cursor: pointer; font-weight: 900; font-size: 1.05rem; }
.faq-list p { margin-top: 12px; }

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 64px);
  color: #fff;
  background: #111827;
}
.footer p { margin: 4px 0 0; color: rgba(255,255,255,.66); }
.footer div:last-child { display: flex; gap: 18px; flex-wrap: wrap; }
.footer a { color: rgba(255,255,255,.82); font-weight: 800; }
.footer a:hover { color: #fff; }

.float-whats {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: #16a34a;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(22, 163, 74, .34);
}

@media (max-width: 980px) {
  .nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-card { max-width: 620px; margin: 0 auto; }
  .trust-row, .split-grid, .timeline, .service-grid, .equipment-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-panel { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .topbar { padding-inline: 14px; }
  .brand img,
  .brand-logo {
    width: 190px;
    height: 58px;
  }
  .btn-small { display: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 1fr; }
  .hero-card { padding: 16px; border-radius: 26px; }
  .alert-card { position: static; margin-top: 14px; }
  .footer { flex-direction: column; align-items: flex-start; }
}


.responsavel-card {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow);
}

.responsavel-photo {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(135deg, #111827, var(--red-900));
  box-shadow: 0 18px 44px rgba(17,24,39,.18);
}

.responsavel-photo img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.responsavel-photo span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border-radius: 16px;
  color: #fff;
  background: rgba(17, 24, 39, .76);
  font-size: .9rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.responsavel-content p {
  color: #4b5563;
  font-size: 1.03rem;
}

.credenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.credenciais-grid div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f9fafb;
}

.credenciais-grid strong,
.credenciais-grid span {
  display: block;
}

.credenciais-grid strong {
  color: var(--red-800);
  font-size: 1.05rem;
}

.credenciais-grid span {
  margin-top: 4px;
  color: var(--muted);
  font-size: .9rem;
}

.responsavel-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 5px solid var(--orange);
  border-radius: 18px;
  background: #fff7ed;
}

.responsavel-note strong,
.responsavel-note span {
  display: block;
}

.responsavel-note span {
  color: #6b7280;
  margin-top: 3px;
}

@media (max-width: 980px) {
  .responsavel-card { grid-template-columns: 1fr; }
  .credenciais-grid { grid-template-columns: repeat(2, 1fr); }
  .responsavel-photo img { min-height: 360px; }
}

@media (max-width: 560px) {
  .credenciais-grid { grid-template-columns: 1fr; }
  .responsavel-card { padding: 18px; border-radius: 26px; }
  .responsavel-photo img { min-height: 280px; }
}
.menu-toggle {
  display: none;
  border: 1px solid rgba(185, 28, 28, 0.25);
  background: #ffffff;
  color: #7f1d1d;
  font-size: 28px;
  font-weight: 900;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .topbar {
    position: sticky;
    top: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .brand-logo {
    height: 46px;
    width: auto;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    background: #ffffff;
    border: 1px solid rgba(185, 28, 28, 0.18);
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
    flex-direction: column;
    gap: 6px;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 14px 12px;
    border-radius: 12px;
    font-weight: 800;
  }

  .nav a:hover {
    background: #fff1f2;
  }

  .topbar .btn-small {
    display: none;
  }
}
/* Corrige botão do menu: só aparece no celular/tablet */
.menu-toggle {
  display: none !important;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: flex !important;
  }
}

@media (min-width: 901px) {
  .menu-toggle {
    display: none !important;
  }

  .nav {
    display: flex !important;
  }
}
