:root {
  --c1: #0b5fff;
  --c2: #0e1a2b;
  --c3: #f3f7ff;
  --ok: #18a957;
  --warn: #ff7a00;
  --gold: #EFB810;
  /* Variáveis responsivas */
  --padding-section: clamp(20px, 5vw, 60px);
  --gap-standard: clamp(12px, 3vw, 40px);
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Inter, Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  margin: 0;
  background: var(--c3);
  /* Previne zoom em inputs no iOS */
  -webkit-text-size-adjust: 100%;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(16px, 4vw, 28px);
}

/* ===== HEADER HERO ===== */
header.hero {
  background: linear-gradient(120deg, var(--c2), #1c1d1e);
  color: #fff;
  padding: 5px 0;
}

.hero h1 {
  font-size: clamp(24px, 6vw, 44px);
  margin: 0 0 clamp(6px, 2vw, 8px);
  line-height: 1.2;
}

.hero p {
  max-width: 880px;
  margin: 0 0 clamp(12px, 3vw, 18px);
  font-size: clamp(15px, 3vw, 19px);
  opacity: .95;
  line-height: 1.5;
}

/* ===== BOTÕES ===== */
.cta-row {
  display: flex;
  gap: clamp(8px, 2vw, 12px);
  flex-wrap: wrap;
  margin-top: 14px;
}

.btn {
  background: var(--gold);
  color: #000;
  border: none;
  border-radius: clamp(8px, 2vw, 12px);
  padding: clamp(10px, 2.5vw, 12px) clamp(14px, 3vw, 18px);
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  font-size: clamp(14px, 2vw, 16px);
  /* Melhora toque em mobile */
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn.sec {
  background: #fff;
  color: #0b2a6b;
  border: 2px solid #fff;
}

/* ===== GRID ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(12px, 3vw, 18px);
}

/* ===== SEÇÕES TOPIC ===== */
section.topic {
  background: #fff;
  border-radius: clamp(12px, 3vw, 18px);
  box-shadow: 0 10px 26px rgba(10, 30, 60, .06);
  overflow: hidden;
  margin: clamp(12px, 3vw, 18px) 0;
}

.topic img {
  width: 100%;
  height: clamp(160px, 30vw, 200px);
  object-fit: cover;
  background: #e8eefc;
}

.topic .box {
  padding: clamp(14px, 3vw, 18px);
}

.topic h2 {
  font-size: clamp(18px, 4vw, 22px);
  margin: 0 0 8px;
  color: #0e244b;
  line-height: 1.3;
}

.topic p {
  margin: 0 0 14px;
  color: #2a3242;
  font-size: clamp(14px, 2vw, 16px);
}

.topic .case {
  background: #f7fbff;
  border-left: 4px solid var(--c1);
  padding: clamp(10px, 2vw, 12px) clamp(12px, 2vw, 14px);
  border-radius: 10px;
  margin: 10px 0;
}

.topic .more {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-quote {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr auto;
    gap: 10px;
    max-width: 880px;
}
.more a {
  color: #0b5fff;
  font-weight: 700;
  text-decoration: none;
  font-size: clamp(14px, 2vw, 16px);
}

/* ===== BADGES E KICKERS ===== */
.kicker {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  background: #eef4ff;
  color: #193a8f;
  border: 1px solid #d7e4ff;
  border-radius: 999px;
  padding: clamp(4px, 1vw, 6px) clamp(8px, 2vw, 10px);
  font-size: clamp(11px, 2vw, 12px);
  font-weight: 700;
}

.badge {
  background: #e8fff2;
  border: 1px solid #c7f5dc;
  color: #126a3e;
  padding: clamp(6px, 1.5vw, 8px) clamp(8px, 2vw, 10px);
  border-radius: 10px;
  font-size: clamp(11px, 2vw, 12px);
  margin-right: 8px;
  display: inline-block;
}

/* ===== TABLE OF CONTENTS ===== */
.toc {
  background-color: #efb810;
}

.toc ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 10px;
  padding: 0;
  list-style: none;
}

.toc a {
  display: block;
  background: #fff;
  border-radius: 12px;
  padding: clamp(8px, 2vw, 10px) clamp(10px, 2vw, 12px);
  border: 1px solid #e7ecf7;
  text-decoration: none;
  color: #0e244b;
  font-size: clamp(14px, 2vw, 16px);
  min-height: 44px;
  display: flex;
  align-items: center;
}

/* ===== LEAD FORM ===== */
.lead {
  background: #fff;
  border-radius: 18px;
  padding: clamp(16px, 4vw, 22px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .05);
}

.lead h2 {
  margin-top: 0;
  font-size: clamp(20px, 4vw, 26px);
}

.lead form {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(10px, 2vw, 12px);
}

.lead form input,
.lead form select,
.lead form textarea {
  padding: clamp(10px, 2vw, 12px);
  border: 1px solid #dfe6f4;
  border-radius: 10px;
  font-size: 16px; /* 16px previne zoom no iOS */
  width: 100%;
  box-sizing: border-box;
}

.lead form textarea {
  grid-column: 1 / -1;
  min-height: 110px;
  resize: vertical;
}

.lead .small {
  font-size: clamp(11px, 2vw, 12px);
  color: #586070;
}

/* ===== FOOTER ===== */
footer {
  background: #0d1730;
  color: #c9d4ff;
}

footer .wrap {
  padding-top: clamp(24px, 5vw, 34px);
  padding-bottom: clamp(24px, 5vw, 34px);
}

.note {
  font-size: clamp(12px, 2vw, 13px);
  color: #5b6576;
}

/* ===== CASES ===== */
.case-block {
  background: #f7fbff;
  border-left: 4px solid var(--c1);
  padding: clamp(12px, 2vw, 14px) clamp(14px, 3vw, 18px);
  border-radius: 10px;
  margin-top: 12px;
}

.case-happy {
  background: #e8fff2;
  border-left-color: var(--ok);
}

.caption {
  font-size: clamp(11px, 2vw, 12px);
  color: #586070;
  margin: -6px 0 8px;
  text-align: center;
}

/* ===== UTILITY ===== */
.row {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(12px, 3vw, 18px);
}

/* ===== CONTAINER SYSTEM ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(20px, 5vw, 40px) clamp(15px, 3vw, 20px);
}

.inner {
  width: 100%;
}

/* ===== SEÇÃO TOPO ===== */
.secao-topo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 5vw, 40px);
  margin-bottom: clamp(20px, 5vw, 40px);
  align-items: center;
}

.coluna-texto {
  display: flex;
  flex-direction: column;
}

.titulo {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: clamp(20px, 4vw, 30px);
  line-height: 1.2;
}

.texto {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: #333;
  line-height: 1.8;
  text-align: left;
}

.coluna-imagem {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.imagem-mobile {
  display: none;
}

.imagem img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* ===== ACCORDION ===== */
.accordion {
  margin-top: 20px;
  width: 100%;
}

.accordion-wrapper {
  border: none;
}

.accordion-item {
  border: none;
  margin-bottom: clamp(12px, 3vw, 20px);
}

.accordion-titulo {
  background: transparent;
  color: #D67E00;
  padding: 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 10px);
  border: none;
  /* Melhora área de toque */
  min-height: 44px;
}

.accordion-titulo::-webkit-details-marker {
  display: none;
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 10px);
  width: 100%;
}

.accordion-texto {
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: 600;
  color: #D67E00;
  line-height: 1.3;
}

.icone-seta {
  width: clamp(32px, 8vw, 40px);
  height: clamp(32px, 8vw, 40px);
  background-color: #ff0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icone-seta svg {
  width: clamp(16px, 4vw, 20px);
  height: clamp(16px, 4vw, 20px);
  fill: white;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

details[open] .icone-seta svg {
  transform: rotate(270deg);
}

.conteudo-accordion {
  padding: clamp(10px, 2vw, 15px) 0;
}

.container.boxed {
  padding: 0;
}

/* ===== TÍTULOS E TEXTOS ===== */
.subtitulo {
  font-size: clamp(1.3rem, 4vw, 1.6rem);
  font-weight: 700;
  color: #D67E00;
  text-align: center;
  margin-bottom: clamp(20px, 4vw, 30px);
  line-height: 1.3;
}

.texto-caso {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: #333;
  line-height: 1.8;
  text-align: left;
  margin-bottom: clamp(20px, 4vw, 30px);
}

.imagem-caso {
  text-align: center;
  margin-top: clamp(20px, 4vw, 30px);
}

.imagem-caso img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* ===== SEÇÃO CLONE WHATSAPP ===== */
.secao-clone {
  padding: var(--padding-section) clamp(15px, 3vw, 20px);
}

.secao-clone .secao-topo {
  max-width: 1200px;
  margin: 0 auto;
}

.titulo-alerta {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  color: #ff0000;
  margin-bottom: clamp(20px, 4vw, 30px);
  line-height: 1.3;
}

.texto-alerta {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: #333;
  line-height: 1.8;
  text-align: left;
}

/* ===== VÍDEO ===== */
.video-container {
  width: 100%;
  max-width: 800px;
  margin: clamp(20px, 4vw, 30px) auto 0;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.subtitulo-video {
  font-size: clamp(1.3rem, 4vw, 1.6rem);
  font-weight: 700;
  color: #D67E00;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}

.texto-video {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: #333;
  text-align: center;
  margin-bottom: clamp(20px, 4vw, 30px);
  line-height: 1.6;
}

.texto-video a {
  color: #D67E00;
  text-decoration: underline;
}

.conteudo-accordion-clone {
  padding: clamp(20px, 4vw, 30px) 0;
}

.icone-centro {
  text-align: center;
  margin-bottom: 20px;
}

.icone-centro svg {
  width: clamp(40px, 10vw, 60px);
  height: clamp(40px, 10vw, 60px);
  fill: #D67E00;
}

/* ===== BACKGROUNDS ALTERNADOS ===== */
#infidelidade-conjugal,
#secao-golpes-virtuais,
#secao-pre-nupcial,
#secao-devedor-pensao,
#secao-investigacao-trabalhista,
#secao-busca-veiculos,
#secao-funcionarios-domesticos,
#secao-localizacao-pessoas {
  background-color: white;
}

#secao-clone-whatsapp,
#secao-investigacao-empresarial,
#secao-comportamento-adolescentes,
#secao-vazamento-informacoes,
#secao-guarda-convivencia,
#secao-checagem-antecedentes,
#secao-seguros-indenizacoes {
  background-color: transparent;
}

/* ===== MEDIA QUERIES ===== */

/* Tablet */
@media (max-width: 860px) {
  .row {
    grid-template-columns: 1fr;
  }
  
  .lead form {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Layout geral */
  .secao-topo {
    grid-template-columns: 1fr;
    gap: clamp(15px, 4vw, 20px);
  }

  .titulo {
    font-size: clamp(1.5rem, 6vw, 2rem);
    text-align: left;
  }

  .titulo-alerta {
    font-size: clamp(1.3rem, 5vw, 1.5rem);
  }

  /* Imagens */
  .imagem-mobile {
    display: block;
    margin: 20px 0;
  }

  .coluna-imagem {
    display: none;
  }

  /* Accordion */
  .accordion-texto {
    font-size: clamp(0.95rem, 4vw, 1rem);
  }

  /* Títulos */
  .subtitulo,
  .subtitulo-video {
    font-size: clamp(1.2rem, 5vw, 1.4rem);
  }

  /* Textos */
  .texto,
  .texto-caso,
  .texto-alerta,
  .texto-video {
    font-size: clamp(0.88rem, 3vw, 0.95rem);
  }

  /* Seções */
  .secao-clone {
    padding: clamp(30px, 6vw, 40px) 15px;
  }

  /* Formulários */
  .lead form {
    grid-template-columns: 1fr;
  }

  /* Botões - garantir área de toque adequada */
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .cta-row {
    flex-direction: column;
  }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    
    img {
       width: 100%;
    }
    .hero h1 {
      margin: 15px 0;
      text-align: center;
      font-size: 29px;
    }

  .hero-quote {
    margin-top: 30px;
    display: grid;
    grid-template-columns: auto;
    gap: 10px;
    max-width: 450px;
}


  .wrap {
    padding: 20px;
  }

  .hero p  {
     text-align: center;
     font-size: 18px;
  }

  .hero {
    padding: 24px 0;
  }

  .topic .box {
    padding: 12px;
  }

  .accordion-texto {
    font-size: 0.9rem;
  }

  .icone-seta {
    width: 32px;
    height: 32px;
  }

  .icone-seta svg {
    width: 16px;
    height: 16px;
  }
}

/* Landscape mobile */
@media (max-width: 896px) and (orientation: landscape) {
  .hero {
    padding: 24px 0;
  }
  
  .secao-topo {
    gap: 20px;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .topic img,
  .imagem img,
  .imagem-caso img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* Preferências de acessibilidade */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .icone-seta svg {
    transition: none;
  }
}

/* Dark mode (opcional) */
@media (prefers-color-scheme: dark) {
  /* Adicione estilos de dark mode se necessário */
  
  
section.services {
    padding: 40px 0px;
    font-family: 'Roboto', Arial, sans-serif;
}

section.services h2 {
    line-height: 40px;
    color: rgb(50, 50, 50);
    font-weight: 500;
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
}

section.services h2::after {
    content: "";
    height: 3px;
    width: 180px;
    background-color: #be5a00;
    max-width: 60%;
    display: block;
    margin-inline: auto;
    margin-top: 10px;
    border-radius: 3px;
}

section.services .container {
    max-width: 1300px;
    width: 100%;
    margin: auto;
    display: grid;
    gap: 15px;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, 320px);
}

section.services .container>div {
    overflow: hidden;
    position: relative;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.20);
    color: rgb(50, 50, 50);
    background-color: white;
    border-radius: 8px;
    border-bottom: 3px solid #D67E00;
}

section.services .container div img {
    height: 200px;
    object-fit: cover;
    display: block;
    width: 100%;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
}

section.services .container h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
    min-height: 70px;
    text-align: center;
    width: 100%;
    font-size: 22px;
    font-weight: 500;
    margin: 25px 0px 10px;
}

section.services .container div p {
    font-weight: 500;
    text-align: center;
    color: rgb(80, 80, 80);
    margin-bottom: 80px;
    width: 100%;
    font-size: 16px;
    padding: 0px 25px;
}

section.services .container div a {
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    width: 200px;
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    margin: auto;
    background-color: #be5a00;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.15s;
}

section.services .container div a:hover{
    background-color: #d67e00;
}
section.blog {
    font-family: Arial, sans-serif;

    padding: 50px 0px;
    background-color: rgb(235, 235, 235);
}

#contato .container {
    color: rgb(50, 50, 50);
    padding-block: 40px;
    margin-top: 20px;
    text-align: center;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

#contato .container::after {
    content: "";
    display: block;
    width: 70%;
    height: 1px;
    margin: auto;
    background-color: rgb(100, 100, 100);
    margin-top: 40px;
    max-width: 500px;
}

#contato .container h3 {
    font-size: 24px;
}

#contato .container h4 {
    font-size: 20px;
    font-weight: 500;
}

#contato .container div {
    margin-top: 20px;
    display: inline-block;
}

#contato .container div>a {
    border-radius: 10px;
    margin-top: 10px;
    color: #D67E00;
    font-weight: 600;
    text-decoration: none;
    font-size: 26px;
    padding: 5px 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 12px
}

#contato .container div a span {
    display: block;
    width: 100%;
    font-size: 16px;
    color: #14873C;
}

#contato .container div a:last-child {
    margin-top: 20px;
}

#missao {
    padding-block: 50px;
    text-align: center;
}

#missao h3 {
    font-size: 30px;
    padding: 15px 15px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
    color: rgb(145, 38, 20);
    background-color: rgba(240, 70, 70, 0.15);
    border-radius: 10px;
    width: fit-content;
    margin: auto;
}

#missao .container {
    margin: auto;
    margin-bottom: 15px;
    text-align: center;
}

#missao p {
    padding-inline: 10px;
    color: rgb(50, 50, 50);
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
}

#missao a {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 20px;
    text-decoration: none;
    background-color: rgb(206, 67, 67);
    color: white;
    padding: 8px 15px;
    border-radius: 15px;
}

#missao a i {
    margin-right: 10px;
}

#missao p span {
    color: rgb(206, 67, 67)
}

@media (min-width: 1100px) {
    #missao h3 {
        font-size: 32px;
        padding: 15px 30px;
        margin: 0px;
    }

    #missao .container {
        display: flex;
        justify-content: center;
        align-items: center;
        column-gap: 10px;
    }

    #missao p {
        font-size: 24px;
    }
}

.banner {
    z-index: -10;
    padding: 50px 0px;
}

.banner div {
    line-height: 1.3;
    color: white;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    letter-spacing: 1px;
    margin: auto;
    width: 95%;
    text-align: center;
}

.banner div h1 {
    font-size: 32px;
    color: #EFB810;
    margin-bottom: 30px;
}

.banner div h2 {
    margin-bottom: 10px;
    font-size: 22px;
}

.banner div>p:first-of-type {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 30px;
}
.banner div>p:first-of-type>span {
    display: inline-block;
    color: #EFB810;
    font-weight: 600;
}
.banner div a {
    display: block;
    text-decoration: none;
    color: #EFB810;
    font-size: 18px;
    font-weight: 600;
}
.banner div a:nth-of-type(2) {
    margin-top: 26px;
}
.como-funciona {
    padding: 10px 0px;
    background-color: white;
    text-align: center;
}

.como-funciona>div {
    font-family: Arial, Helvetica, sans-serif;
    margin: auto;
    width: 90%;
}

.como-funciona>div h2 {
    font-size: 26px;
    text-align: center;
    margin-bottom: 20px;
    /* color: #EFB810; */
    color: rgb(50, 50, 50);
}

.como-funciona>div h2 b {
    color: #D67E00;
}


/* .como-funciona>div h2::after {
    content: "";
    background-color: #A18756;
    width: 600px;
    max-width: 60%;
    height: 1px;
    display: block;
    margin: auto;
    margin-top: 20px;

} */

.como-funciona>div h3 {
    margin-top: 50px;
    text-align: center;
    margin-bottom: 20px;
    /* color: rgb(60, 60, 60); */
    color: #D67E00;
    font-size: 20px;
    text-transform: uppercase;
}

.como-funciona>div p {
    font-size: 18px;
    color: rgb(80, 80, 80);
    margin-bottom: 20px;
}

.como-funciona>div li::marker {
    font-size: 20px;
}

.como-funciona>div p {
    text-align: left;
}

.faq {
    font-family: 'Roboto', Arial, sans-serif;
    padding: 50px 0px;
    background-color: white;
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: 500;
}

.faq div {
    color: rgb(50, 50, 50);
    margin: auto;
    width: 95%;
    min-width: 300px;
    max-width: 1000px;
}

.faq div ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
}

.faq div li:not(:last-child) {
    margin-bottom: 10px;
}

.faq div li {
    background-color: rgb(252, 252, 250);
    border: 1px solid rgb(200, 200, 200);
    border-left: 4px solid #EFB810;
    border-radius: 5px;
    padding: 15px 20px;
}

.faq div ul p {
    font-size: 16px;
    padding-left: 5px;
}

.faq div ul h3 {
    
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 17px;
}

.diferencial {
    background-image: url(/img/detetive-particular-3-1.webp); 
    padding: 70px 0px;
    background-repeat: no-repeat; 
    background-size: cover; 
    background-position: center;
}

.diferencial div {
    width: 85%;
    margin: auto;
}

.diferencial p {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    color: white;
    font-size: 16px;
    text-align: center;
}

.diferencial p:not(:last-child) {
    margin-bottom: 25px;
}

.atendimento h2 {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding: 100px 0px;
    color: rgb(30, 30, 30);
}



@media (min-width: 660px) {

    .banner div,
    .como-funciona>div {
        width: 75%;
        max-width: 1000px;
    }

    .faq div {
        width: 80%;
    }

    .faq div li {
        padding: 15px 30px;
    }

    .diferencial p {
        font-size: 18px;
    }

    .diferencial div {
        width: 75%;
        max-width: 900px;
    }

    section.services .container {
        grid-template-columns: repeat(auto-fit, 360px);
    }
    section.services .container div p{

        font-size: 16px;
    }
    section.services .container div img{
        height: 220px;
    }
    section.services .outros ul {
        display: grid;
        row-gap: 1.3em;
    }
}

@media (min-width: 1000px) {
    
    .como-funciona>div {
    font-family: Arial, Helvetica, sans-serif;
  margin-left: -15px;
    max-width: 90%;
    margin: 0 auto;
}
    section.services .outros {
        width: 75%;
    }

    .faq div {
        width: 70%;
    }


}

.cidades {
    padding: 80px 0px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

.cidades h3 {
    padding: 0px 15px;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
}

.cidades p {
    font-size: 16px;
    color: rgb(80, 80, 80);
    font-weight: 400;
    margin-bottom: 10px;
}

.cidades input {
    display: none;
}

.cidades div {
    width: 80%;
    max-width: 600px;
    margin: auto;
}

.cidades>div>ul {
    height: 0px;
    transition: height 0.3s ease-in-out;
    background-color: white;
    overflow-x: hidden;
    text-align: left;
}

.cidades div ul li a {
    padding-left: 10%;
    display: block;
    text-decoration: none;
    color: rgb(40, 40, 40);
}

.cidades div ul li {
    line-height: 32px;
}

.cidades label {
    font-size: 18px;
    font-weight: 600;
    position: relative;
    cursor: pointer;
    color: rgb(60, 60, 60);
    border: 1px solid rgb(130, 130, 130);
    border-radius: 7px;
    padding: 7px 10px;
    display: block;
    width: 100%;
}

.cidades label i {
    line-height: 30px;
    font-size: 18px;
    margin-left: 15px;
}

#city-dropdown:checked~ul {
    border: 1px solid rgb(130, 130, 130);
    border-radius: 7px;
    height: 400px;
}

@media (min-width: 760px) {
    .cidades div ul li {
        padding-left: 15%;
    }

    .cidades div ul li a {
        width: 80%;
        font-size: 18px;
    }
}

.video-container video {
    width: 100%;
    height: auto;
}

.video-container .overlap {
    position: absolute;
    text-align: center;
    width: 85%;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    z-index: 99;
    font-family: Arial, Helvetica, sans-serif;
    transition: opacity .2s ease-in-out;
}

.video-container .overlap>span {
    color: white;
    font-size: 16px;

}

.video-container .overlap .play {
    color: white;
    transition: color .4s;
    padding-block: 15px;
    cursor: pointer;
}

.video-container .yt-link a{
    color: rgb(240, 80, 80);
    font-weight: 600;
}
.video-container .yt-link {
    margin-top: 5px;
}

.video-container .overlap .play:hover {
    color: rgb(240, 70, 70);
}

.video-container .overlap .play i {
    font-size: 62px;
    margin-bottom: 5px;
}

.video-container .overlap .play>span {
    font-size: 18px;
    display: block;
}

.como-contratar {
    text-align: center;
    margin: auto;
}

.como-contratar .video-container video {
    width: 100%;
    height: auto;
}

.como-contratar .video-container {
    width: 95vw;
    max-width: 900px;
    display: inline-block;
    position: relative;
    margin: auto;
}

section.podcast {
    text-align: center;
}

section.podcast .container {
    margin: auto;
    max-width: 1200px;
}

.blur {
    -webkit-filter: brightness(0.5);
    -o-filter: brightness(0.5);
    -moz-filter: brightness(0.5);
    -ms-filter: brightness(0.5);
    filter: brightness(0.5);
}

section.flagrantes {
    background-color: rgb(240, 240, 238);
    text-align: center;
    padding-block: 40px;
    margin-bottom: 20px;
    font-family: Arial, Helvetica, sans-serif;
}

.flagrantes> :not(:last-child) {
    margin-bottom: 20px;
}

section.flagrantes h3 {
    line-height: 40px;
    color: rgb(50, 50, 50);
    font-weight: 600;
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px !important;
}

section.flagrantes span {
    font-size: 22px;
    font-weight: 400;
    color: rgb(145, 38, 20);
    display: block;
}

section.flagrantes h3::after {
    content: "";
    height: 3px;
    width: 60%;
    max-width: 180px;
    background-color: #EFB810;
    display: block;
    margin-inline: auto;
    margin-top: 20px;
    border-radius: 3px;
}

section.flagrantes .flagrante img {
    border-radius: 5px;
    width: 90%;
    max-width: 328px;
}

section.flagrantes .flagrante {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
}

section.flagrantes .flagrante:nth-of-type(3) img {
    height: 204px;
    object-fit: cover;
}

.enquete-container {
    margin-top: 40px;
}
}