* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Google Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #111111;
  color: white;
}

section {
  padding: 80px 0;
}

.btn {
  background: #b20000;
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.logo img {
  height: 60px;
}

.header {
  background: #0f0f0f;
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 30px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo a {
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
}

.menu {
  display: flex;
  gap: 45px;
}

.menu a {
  color: #8f8f8f;
  font-family: "Google Sans", sans-serif;
  font-weight: 400;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.menu a:hover {
  color: #ffffff;
}

.btn-header {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #b20000;
  font-family: "Google Sans", sans-serif;
  color: white;
  padding: 12px 20px;
  border-radius: 120px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  box-shadow: 0 0 30px rgba(178, 0, 0, 0.35);
}

.btn-header:hover {
  background: #ffffff;
  color: #0b0b0b;
  transition: 0.5s;
}

.hero {
  background:
    linear-gradient(to right, rgba(0, 0, 0, 5.9), rgba(0, 0, 0, 0.7)),
    url("images/hero-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  color: white;
}

.hero-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-left {
  max-width: 540px;
}

.hero-location {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #b20000;
  border-radius: 20px;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 25px;
}

.hero-title {
  font-size: 60px;
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 25px;
}

.hero-title span {
  color: #b20000;
}

.hero-text {
  color: #bbb;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.hero-text strong {
  color: white;
  font-weight: 700;
}

.hero-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
  margin-bottom: 30px;
  color: #ddd;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-red {
  background: #b20000;
  padding: 14px 26px;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  font-weight: 400;
  box-shadow: 0 0 30px rgba(178, 0, 0, 0.35);
}

.btn-red:hover {
  background: #ffffff;
  color: #0b0b0b;
  transition: 0.5s;
}

.btn-dark {
  background: #2a2a2a;
  padding: 14px 26px;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  font-weight: 400;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-image-box {
  width: 520px;
  height: 620px;
  background: white;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 0 30px rgba(178, 0, 0, 0.35);
}

.hero-image-box:hover {
  transform: scale(1.02);
  transition: 0.4s;
}

.hero-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #111;
  color: white;
  padding: 12px 18px;
  border-radius: 10px;
}

.hero-badge small {
  display: block;
  color: #aaa;
  font-size: 12px;
  margin-bottom: 4px;
}

.hero-badge strong {
  color: #ff0000;
  font-size: 16px;
}

.check {
  color: #b20000;
  margin-right: 8px;
  font-weight: bold;
}

.problema {
  background: #131313;
  padding: 100px 0;
  color: #fff;
}

.problema-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.problema-left {
  flex: 1;
  max-width: 700px;
}

.problema-title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 24px;
  color: #fff;
}

.problema-title span {
  display: block;
  color: #b20000;
}

.problema-text {
  max-width: 560px;
  font-size: 16px;
  line-height: 1.7;
  color: #9d9d9d;
  margin-bottom: 32px;
}

.problema-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.problema-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #181818;
  border: 1px solid #242424;
  border-radius: 14px;
  padding: 20px 18px;
  transition: 0.3s ease;
}

.problema-card:hover {
  transform: translateY(-4px);
  border-color: rgba(178, 0, 0, 0.5);
  box-shadow: 0 0 22px rgba(178, 0, 0, 0.08);
}

.problema-card-icon {
  min-width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(178, 0, 0, 0.12);
  color: #b20000;
  font-size: 18px;
}

.problema-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #fff;
}

.problema-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #8c8c8c;
}

.problema-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.problema-image-box {
  width: 520px;
  height: 620px;
  background: white;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 0 30px rgba(178, 0, 0, 0.35);
}

.problema-image-box:hover {
  transform: scale(1.02);
  transition: 0.4s;
}

.problema-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.descobrir {
  background: #101010;
  padding: 100px 0;
  color: #fff;
}

.descobrir-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.descobrir-title {
  font-size: 42px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 18px;
  color: #fff;
}

.descobrir-title span {
  color: #b20000;
}

.descobrir-text {
  font-size: 18px;
  line-height: 1.7;
  color: #9b9b9b;
}

.descobrir-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.descobrir-card {
  background: #181818;
  border: 1px solid #242424;
  border-radius: 16px;
  padding: 24px 20px;
  min-height: 180px;
  transition: 0.3s ease;
}

.descobrir-card:hover {
  transform: translateY(-5px);
  border-color: rgba(178, 0, 0, 0.45);
  box-shadow: 0 0 24px rgba(178, 0, 0, 0.08);
}

.descobrir-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(178, 0, 0, 0.12);
  color: #b20000;
  font-size: 17px;
  margin-bottom: 18px;
}

.descobrir-card h3 {
  font-size: 20px;
  line-height: 1.35;
  margin-bottom: 12px;
  color: #fff;
}

.descobrir-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #8f8f8f;
}

.itens-analisados {
  background: #131313;
  padding: 100px 0;
  color: #fff;
}

.itens-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.itens-left {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.itens-image-box {
  width: 100%;
  max-width: 560px;
  height: 420px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 32px rgba(178, 0, 0, 0.18);
}

.itens-image-box:hover {
  transform: scale(1.02);
  transition: 0.4s;
}

.itens-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.itens-right {
  flex: 1;
  max-width: 520px;
}

.itens-title {
  font-size: 42px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 22px;
  color: #fff;
}

.itens-title span {
  color: #b20000;
}

.itens-text {
  font-size: 18px;
  line-height: 1.7;
  color: #9a9a9a;
  margin-bottom: 30px;
}

.itens-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.itens-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  color: #f1f1f1;
}

.itens-check {
  width: 30px;
  height: 30px;
  min-width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(178, 0, 0, 0.15);
  color: #b20000;
  font-size: 16px;
  font-weight: 700;
}

.processo {
  background: #101010;
  padding: 100px 0;
  color: #fff;
}

.processo-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.processo-title {
  font-size: 42px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 16px;
  color: #fff;
}

.processo-title span {
  color: #b20000;
}

.processo-text {
  font-size: 18px;
  line-height: 1.7;
  color: #989898;
}

.processo-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.processo-card {
  background: #181818;
  border: 1px solid #242424;
  border-radius: 16px;
  padding: 26px 18px 24px;
  text-align: center;
  min-height: 260px;
  transition: 0.3s ease;
}

.processo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(178, 0, 0, 0.45);
  box-shadow: 0 0 24px rgba(178, 0, 0, 0.08);
}

.processo-number {
  font-size: 46px;
  font-weight: 800;
  color: #b20000;
  line-height: 1;
  margin-bottom: 18px;
}

.processo-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin: 0 auto 20px;
  background: rgba(178, 0, 0, 0.12);
  color: #b20000;
  font-size: 18px;
}

.processo-card h3 {
  font-size: 20px;
  line-height: 1.35;
  margin-bottom: 12px;
  color: #fff;
}

.processo-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #8d8d8d;
}

.relatorio {
  background: #131313;
  padding: 100px 0;
  color: #fff;
}

.relatorio-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.relatorio-left {
  flex: 1;
  max-width: 620px;
}

.relatorio-title {
  font-size: 42px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 22px;
  color: #fff;
}

.relatorio-title span {
  color: #b20000;
}

.relatorio-text {
  font-size: 18px;
  line-height: 1.7;
  color: #9b9b9b;
  margin-bottom: 32px;
  max-width: 560px;
}

.relatorio-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.relatorio-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #181818;
  border: 1px solid #242424;
  border-radius: 14px;
  padding: 18px 18px;
  transition: 0.3s ease;
}

.relatorio-item:hover {
  transform: translateY(-3px);
  border-color: rgba(178, 0, 0, 0.45);
  box-shadow: 0 0 22px rgba(178, 0, 0, 0.08);
}

.relatorio-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(178, 0, 0, 0.12);
  color: #b20000;
  font-size: 17px;
}

.relatorio-item span {
  font-size: 18px;
  font-weight: 600;
  color: #f2f2f2;
}

.relatorio-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.relatorio-image-box {
  width: 100%;
  max-width: 560px;
  height: 590px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 28px rgba(178, 0, 0, 0.15);
}

.relatorio-image-box:hover {
  transform: scale(1.02);
  transition: 0.4s;
}

.relatorio-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.especialista {
  background: #101010;
  padding: 100px 0;
  color: #fff;
}

.especialista-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.especialista-left {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.especialista-image-box {
  width: 100%;
  max-width: 480px;
  height: 500px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 32px rgba(178, 0, 0, 0.18);
}

.especialista-image-box:hover {
  transform: scale(1.02);
  transition: 0.4s;
}

.especialista-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.especialista-right {
  flex: 1;
  max-width: 560px;
}

.especialista-title {
  font-size: 42px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 26px;
  color: #fff;
}

.especialista-title span {
  color: #b20000;
}

.especialista-text {
  font-size: 18px;
  line-height: 1.8;
  color: #9c9c9c;
  margin-bottom: 22px;
}

.especialista-text strong {
  color: #fff;
  font-weight: 700;
}

.especialista-stats {
  display: flex;
  gap: 50px;
  margin-top: 28px;
}

.especialista-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.especialista-stat strong {
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
  color: #b20000;
}

.especialista-stat span {
  font-size: 16px;
  color: #8f8f8f;
}

.depoimentos {
  background: #131313;
  padding: 100px 0;
  color: #fff;
}

.depoimentos-header {
  text-align: center;
  margin-bottom: 50px;
}

.depoimentos-title {
  font-size: 42px;
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
}

.depoimentos-title span {
  color: #b20000;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.depoimento-card {
  background: #181818;
  border: 1px solid #242424;
  border-radius: 16px;
  padding: 24px 20px;
  transition: 0.3s ease;
}

.depoimento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(178, 0, 0, 0.4);
  box-shadow: 0 0 22px rgba(178, 0, 0, 0.08);
}

.depoimento-stars {
  color: #b20000;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.depoimento-text {
  font-size: 18px;
  line-height: 1.7;
  color: #d0d0d0;
  margin-bottom: 22px;
  font-style: italic;
}

.depoimento-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.depoimento-city {
  font-size: 15px;
  color: #8a8a8a;
}

.faq {
  background: #101010;
  padding: 100px 0;
  color: #fff;
}

.faq-container {
  max-width: 760px;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-title {
  font-size: 42px;
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
}

.faq-title span {
  color: #b20000;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #181818;
  border: 1px solid #242424;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(178, 0, 0, 0.35);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 24px;
  font-size: 18px;
  font-weight: 700;
  color: #f2f2f2;
  text-align: left;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #b20000;
  transition: 0.3s;
}

.faq-item.active .faq-question::after {
  content: "–";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.faq-answer p {
  padding: 0 24px 22px;
  font-size: 16px;
  line-height: 1.7;
  color: #9a9a9a;
}

.cta {
  padding: 120px 0;
  text-align: center;
  background: radial-gradient(
    circle at center,
    rgba(178, 0, 0, 0.25) 0%,
    rgba(15, 15, 15, 1) 60%
  );
}

.cta-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  color: white;
  max-width: 900px;
  margin: 0 auto 25px;
}

.cta-title span {
  color: #b20000;
}

.cta-text {
  color: #9a9a9a;
  font-size: 18px;
  margin-bottom: 35px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 34px;
  background: #b20000;
  border-radius: 12px;
  color: white;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.cta-button:hover {
  background: #d10000;
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(178, 0, 0, 0.5);
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;

  width: 60px;
  height: 60px;

  background: #25d366;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);

  z-index: 999;
  transition: 0.3s;

  line-height: 0; /* remove espaço de linha */
}

.whatsapp-float i {
  font-size: 30px;
  color: white;
  display: block;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.footer {
  background: #101010;
  padding: 70px 0 40px;
  color: #cfcfcf;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.footer-col h4 i {
  color: #b20000;
  margin-right: 8px;
}

.footer-col p {
  font-size: 15px;
  line-height: 1.7;
  color: #9a9a9a;
}

.footer-logo img {
  width: 170px;
  margin-bottom: 14px;
}

.footer-social {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1c1c1c;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #ffffff;
}

.footer-col a {
  color: #b20000;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid #1f1f1f;
  padding-top: 25px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #7a7a7a;
}

.footer-bottom strong {
  color: #fff;
}

section {
  scroll-margin-top: 100px;
}

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
  transition: 0.3s ease;
  border-radius: 999px;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  section {
    padding: 44px 0;
    scroll-margin-top: 90px;
  }

  .container {
    padding: 0 16px;
  }

  h2 {
    word-break: break-word;
  }

  .header {
    padding: 14px 0;
  }

  .nav {
    position: relative;
    height: auto;
    min-height: 60px;
  }

  .logo img {
    height: 42px;
  }

  .btn-header {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #141414;
    border: 1px solid #242424;
    border-radius: 14px;
    padding: 10px 0;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.3s ease;
  }

  .menu a {
    padding: 14px 18px;
    font-size: 15px;
    color: #f1f1f1;
  }

  .menu a:hover {
    background: rgba(178, 0, 0, 0.08);
    color: #fff;
  }

  .menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .hero {
    padding: 56px 0;
    background-position: center right;
  }

  .hero-grid,
  .problema-grid,
  .itens-grid,
  .relatorio-grid,
  .especialista-grid {
    flex-direction: column;
    gap: 28px;
  }

  .hero-left,
  .hero-right,
  .problema-left,
  .problema-right,
  .itens-left,
  .itens-right,
  .relatorio-left,
  .relatorio-right,
  .especialista-left,
  .especialista-right {
    width: 100%;
    max-width: 100%;
  }

  .hero-title {
    font-size: 34px;
    line-height: 1.08;
    margin-bottom: 18px;
  }

  .hero-location {
    font-size: 13px;
    padding: 8px 12px;
    margin-bottom: 18px;
  }

  .hero-text {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .hero-list {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 22px;
  }

  .hero-list div {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn-red,
  .btn-dark {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 18px;
  }

  .hero-image-box,
  .problema-image-box {
    width: 100%;
    max-width: 100%;
    height: 300px;
  }

  .hero-badge {
    bottom: 16px;
    left: 16px;
    padding: 10px 14px;
  }

  .problema-title,
  .descobrir-title,
  .itens-title,
  .processo-title,
  .relatorio-title,
  .especialista-title,
  .depoimentos-title,
  .faq-title,
  .cta-title {
    font-size: 30px;
    line-height: 1.12;
  }

  .problema-text,
  .descobrir-text,
  .itens-text,
  .processo-text,
  .relatorio-text,
  .especialista-text,
  .cta-text {
    font-size: 16px;
    line-height: 1.7;
  }

  .problema-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .problema-card {
    padding: 18px 16px;
  }

  .descobrir-header,
  .processo-header,
  .depoimentos-header,
  .faq-header {
    margin-bottom: 34px;
  }

  .descobrir-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .descobrir-card {
    min-height: auto;
    padding: 20px 18px;
  }

  .itens-image-box {
    width: 100%;
    max-width: 100%;
    height: 280px;
  }

  .itens-list {
    gap: 14px;
  }

  .itens-list div {
    align-items: flex-start;
    font-size: 16px;
  }

  .itens-check {
    margin-top: 1px;
  }

  .processo-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .processo-card {
    min-height: auto;
    padding: 22px 18px;
  }

  .processo-number {
    font-size: 38px;
    margin-bottom: 14px;
  }

  .processo-card h3 {
    font-size: 18px;
  }

  .processo-card p {
    font-size: 14px;
  }

  .relatorio-image-box {
    width: 100%;
    max-width: 100%;
    height: 320px;
  }

  .relatorio-list {
    gap: 14px;
  }

  .relatorio-item {
    padding: 16px;
    align-items: flex-start;
  }

  .relatorio-item span {
    font-size: 16px;
    line-height: 1.5;
  }

  .especialista-image-box {
    width: 100%;
    max-width: 100%;
    height: 420px;
  }

  .especialista-stats {
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 20px;
  }

  .especialista-stat strong {
    font-size: 34px;
  }

  .depoimentos-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .depoimento-card {
    padding: 20px 18px;
  }

  .depoimento-text {
    font-size: 16px;
    line-height: 1.65;
  }

  .faq-container {
    max-width: 100%;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 17px;
    line-height: 1.5;
    padding-right: 52px;
  }

  .faq-question::after {
    right: 20px;
    font-size: 22px;
  }

  .faq-answer p {
    padding: 0 20px 18px;
    font-size: 15px;
  }

  .cta {
    padding: 70px 16px;
  }

  .cta-title {
    max-width: 100%;
    font-size: 30px;
  }

  .cta-text {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .cta-button {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    padding: 16px 18px;
  }

  .footer {
    padding: 48px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 24px;
  }

  .footer-col {
    padding: 0 2px;
  }

  .footer-logo img {
    width: 150px;
  }

  .footer-social {
    margin-top: 12px;
  }

  .footer-bottom {
    text-align: left;
    padding-top: 18px;
  }

  .footer-bottom p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 6px;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-float i {
    font-size: 26px;
  }
  .footer {
    padding: 48px 20px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 24px;
  }

  .footer-col {
    padding: 0;
  }

  .footer-col p {
    max-width: 90%;
  }
  .footer-social {
    margin-top: 12px;
  }
  .footer-col h4 {
    margin-bottom: 10px;
  }
  @media (max-width: 768px) {
    .btn-red {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;

      padding: 14px 20px;
      border-radius: 12px;

      font-size: 15px;
      font-weight: 600;
    }

    .btn-red i {
      font-size: 16px;
    }
  }
  @media (max-width: 768px) {
    .hero {
      background:
        linear-gradient(to right, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.78)),
        #0b0b0b;
    }
  }
}
