@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #333; /* Cor de fundo fora do header */
  color: #fff;
}

.header {
  background: rgba(233, 233, 233, 0.1);
  backdrop-filter: blur(9.300000190734863px);
  padding: 2rem 0;
}

.container-header {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  position: relative;
}

.logo-header {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.2;
}

.logo-header img {
  width: 133px;
  margin-right: 10px;
}

.nav-menu {
  display: flex;
  gap: 3rem;
}

.nav-menu a {
  color: #fff;
  text-align: center;

  /* H4/Medium */
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 145.455% */
  position: relative;
  text-decoration: solid;
  border-bottom: 2px solid #ff782d;
}

.nav-menu a:hover,
.nav-menu a:focus {
  color: #f27931; /* Cor de destaque */
}

.nav-menu a::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #f27931;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-menu a:hover::after {
  opacity: 1;
}

.client-area .client-button {
  border: 1px solid #f27931;
  padding: 8px 20px;
  border-radius: 20px;
  color: var(--Foundation-Crayola-crayola-500, #ff782d);
  text-align: right;

  /* H5/Medium */
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 150% */
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.client-area .client-button:hover {
  background-color: #f27931;
  color: #fff;
}

/* Botão de hambúrguer (só aparece no mobile) */
.hamburger {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 2rem;

}
.just-mobile{
  display: none;
}
/* Drawer lateral para o menu no mobile */
.nav-menu.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  background-color: rgba(233, 233, 233, 0.9); /* Fundo do drawer */
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 5rem 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.nav-menu.drawer.active {
  transform: translateX(0);
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}
.intro-section {
  background-image: url('/assets/predioplaza.png'); /* Substitua com o caminho da sua imagem de fundo */
  background-size: cover;
  background-position: center;
  padding: 0 0;
  color: #fff;
  position: relative;
}
.container-title {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.title {
  color: #fff;
  text-align: center;

  /* Display 2x1/Bold */
  font-family: Montserrat;
  font-size: 72px;
  font-style: normal;
  font-weight: 700;
  line-height: 88px; /* 122.222% */
  margin: auto;
}

.stats-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  gap: 30px;
}

.stat-item {
  position: relative;
  padding-left: 30px; /* Ajuste para acomodar a linha laranja */
}

.stat-item::before {
  content: '';
  position: absolute;
  left: -100px;
  top: 150px;
  height: 2px;
  width: 100px;
  background-color: #f27931;
}

.stat-number {
  color: #fff;
  font-family: Montserrat;
  font-size: 96px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-align: left;
}
.stat-number > span {
  color: #ff782d;
  font-family: Montserrat;
  font-size: 96px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.stat-item p {
  color: #fff;
  font-family: Montserrat;
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.cta-box {
  padding: 8rem 3rem;
  max-width: 90%;

  margin: 0 auto;
  margin-top: 10rem;
  margin-bottom: 10rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  border-radius: 48.187px;
  background: rgba(255, 255, 255, 0.06);
  background-blend-mode: screen;
  backdrop-filter: blur(8.332337379455566px);
}

.cta-box h2 {
  color: #fff;

  /* H1/Semibold */
  -webkit-text-stroke-width: 0.6692640781402588;
  -webkit-text-stroke-color: #000;
  font-family: Montserrat;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px; /* 187.5% */
}

.cta-box p {
  color: #fff;

  /* H3/Medium */
  font-family: Montserrat;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 38px; /* 152% */
}

.cta-button {
  color: var(--Foundation-Crayola-crayola-50, #fff2ea);

  /* SubTitulo/Semibold */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 155.556% */

  padding: 12px 30px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 1rem;

  border-radius: 6.368px;
  background: var(--Foundation-Crayola-crayola-500, #ff782d);
  box-shadow: 0px 0.796px 1.592px 0px rgba(13, 16, 23, 0.06);
}

.cta-button:hover {
  background-color: #e66820;
}

.estatus {
  position: absolute;
  right: 15rem;
  bottom: 0;
}
.mancha {
  position: absolute;
  left: 0;
  bottom: 0;
}

#equipe-image-foto {
  width: 100%;
  /* background-image: url('/assets/equipe.png'); 
    background-size: cover;
    background-position: center; */
  background: url('/assets/equipe.png') lightgray 50% / cover no-repeat;

  width: 100%;
  height: 80vh; /* Ocupa toda a altura da viewport */
}

.security-section {
  background-color: #1c1c1c; /* Fundo escuro */
  color: #ffffff;
  text-align: left;
  padding: 0 0;
  position: relative;
}

.security-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 4rem 20px;
  position: relative;
}

.top-line {
  display: block;
  width: 531px;
  height: 13px;
  background-color: #f27931;
  /* margin: 0 auto 10px; */
  position: absolute;
  top: 0;
  left: 0;
}

.security-section h2 {
  color: #fff;

  /* Display xl/Semibold */
  font-family: Montserrat;
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 72px; /* 120% */
}

.highlight {
  color: #f27931; /* Cor laranja de destaque */
  font-weight: bold;
}

/* CSS */

.about-section {
  background-color: #ffffff;
  color: #333333;
  padding: 40px 20px;
  text-align: left;
}

.about-content {
  max-width: 1440px;
  margin: 0 auto;
}

.about-section h2 {
  color: #ff782d;

  /* Display xl/Semibold */
  font-family: Montserrat;
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 72px; /* 120% */
  margin-bottom: 3rem;
  margin-top: 3rem;
}

.about-section p {
  color: #000;

  /* H2/Normal */
  font-family: Montserrat;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 44px; /* 157.143% */
}

.about-section strong {
  font-weight: bold;
}

/* CSS */

.about-us-section {
  background: linear-gradient(288deg, #000 43.81%, #666 122.97%), #fff;
  color: #ffffff;
  padding: 40px 20px;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.content-wrapper {
  display: flex;
  align-items: center;
  max-width: 1440px;
  margin: auto;
  gap: 2rem;
  z-index: 9999;
}

.text-content {
  flex: 1;
  padding-right: 20px;
}

.text-content h2 {
  color: #ff782d;

  /* Display xl/Bold */
  font-family: Montserrat;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 72px; /* 120% */
  margin-bottom: 4rem;
}

.about-first-p {
  color: #fff;

  /* H1/Bold */
  font-family: Montserrat;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px; /* 187.5% */
  margin-bottom: 2rem;
}
p {
  color: #fff;

  /* H2/Normal */
  font-family: Montserrat;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 44px; /* 157.143% */
}

.image-content {
  flex: 1;
}

.image-content img {
  width: 100%;
  height: auto;
  border-radius: 5px; /* Borda arredondada */
}
.balanca-about {
  position: absolute;
  bottom: 0;
  left: 0;
}
.orange-line {
  background-color: #e66820;
  width: 2rem;
  height: 513px;
  position: absolute;
  left: 0;
}

/* CSS */

.team-section {
  display: flex;
  align-items: center;
  background-color: #fdf1e5; /* Fundo em tom claro */
  /* padding: 40px 20px; */
  position: relative;
}

.content-wrapper {
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
  gap: 30px;
}

.image-content {
  flex: 1;
}

.image-content img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.text-content-team-section {
  flex: 1;
  /* background-color: #fff; */
  padding: 20px;
  border-radius: 5px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.text-content-team-section h2 {
  color: #000;

  /* H2/Bold */
  font-family: Montserrat;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 44px; /* 157.143% */
}

.text-content-team-section p {
  color: #000;

  /* H3/Normal */
  font-family: Montserrat;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 38px; /* 152% */
}

.cta-button-team-sectiopn {
  border-radius: 6.368px;
  background: var(--Foundation-Crayola-crayola-500, #ff782d);
  box-shadow: 0px 0.796px 1.592px 0px rgba(13, 16, 23, 0.06);
  width: 100%;
  transition: background-color 0.3s ease;

  color: var(--Foundation-Crayola-crayola-50, #fff2ea);

  /* SubTitulo/Semibold */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 155.556% */

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-decoration: none;
}

.cta-button-team-sectiopn:hover {
  background-color: #e66820;
}

.text-content-team-section::before {
  /* content: "";
    position: absolute;
    top: 0;
    left: -10px;
    height: 100%;
    width: 5px;
    background-color: #f27931; */
}
.orange-line-team-section {
  position: absolute;
  right: 0;
  background-color: #e66820;
  width: 2rem;
  height: 513px;
}

/* CSS */

.services-section {
  background-color: #1c1c1c;
  color: #ffffff;
  padding: 40px 20px;
  text-align: left;
}

.services-content {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

.services-content h2 {
  color: var(--Foundation-Crayola-crayola-50, #fff2ea);

  /* Display xl/Normal */
  font-family: Montserrat;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 72px; /* 120% */
}

.services-content p {
  color: #fff;

  /* H1/Normal */
  font-family: Montserrat;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px; /* 187.5% */
  margin-bottom: 2rem;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-item {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 8px;
  min-height: 12rem;
}

.checkmark {
  color: #f27931;
  font-size: 18px;
  margin-right: 15px;
}

.service-item p {
  color: var(--Foundation-Crayola-crayola-500, #ff782d);

  /* H1/Bold */
  font-family: Montserrat;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px; /* 187.5% */
}

.title-services::before {
  content: '';
  position: absolute;
  left: -150px;
  top: 30px;
  height: 2px;
  width: 100px;
  background-color: #f27931;
}

/* CSS */

.team-overview {
  background-color: #ffffff;
  color: #333333;
  padding: 40px 20px;
}

.team-header {
  max-width: 1440px;
  margin: 0 auto;
  text-align: left;
  margin-bottom: 40px;
}

.team-header h2 {
  color: var(--Foundation-Raisin-Black-raisin-black-500, #222);

  /* Display xl/Normal */
  font-family: Montserrat;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 72px; /* 120% */
}

.team-header p {
  color: var(--Foundation-Raisin-Black-raisin-black-500, #222);

  /* H1/Normal */
  font-family: Montserrat;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px; /* 187.5% */
}

.team-intro {
  display: flex;
  align-items: center;
  max-width: 600px;
  /* margin: 0 auto 40px; */
  gap: 20px;
  flex-direction: column;
}

.logo-placeholder {
  font-size: 32px;
  color: #333;
  font-weight: bold;
  display: flex;
  flex-direction: row;
  align-self: start;
  margin-bottom: 3rem;
}
.logo-placeholder > img {
  width: 8rem;
}
.intro-text h3 {
  color: var(--Foundation-Raisin-Black-raisin-black-500, #222);

  /* Display xl/Semibold */
  font-family: Montserrat;
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 72px; /* 120% */
}

.intro-text p {
  color: var(--Foundation-Raisin-Black-raisin-black-500, #222);

  /* H1/Normal */
  font-family: Montserrat;
  font-size: 32px;
  font-style: italic;
  font-weight: 400;
  line-height: 60px; /* 187.5% */
}

.row-team-overview {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  max-width: 1440px;
  margin: auto;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.grid-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* CSS */

.methodology-section {
  background-color: #ffffff;
  color: #333333;
  padding: 40px 20px;
  text-align: center;
}

.methodology-header {
  max-width: 800px;
  margin: 0 auto 40px;
}

.methodology-header h2 {
  font-size: 32px;
  color: #f27931;
  margin-bottom: 10px;
}

.methodology-header p {
  font-size: 16px;
  line-height: 1.6;
}

.empresas-protegidas-section {
  background-color: #ffffff;
  color: #333333;
  padding: 40px 20px;
  text-align: center;
  padding: 4rem 0;
}
.empresas-protegidas {
  max-width: 1440px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  margin-top: 4rem;
}

.clientes-confiam-section {
  background-color: #ffffff;
  color: #333333;
  padding: 40px 20px;
  text-align: center;
  padding: 4rem 0;
}

/* CSS */

.testimonials-section {
  background-color: #ffffff;
  padding: 40px 20px;
}

.testimonials-grid {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.testimonial-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  width: 30%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}

.logo {
  position: relative;
  width: 129px;
  height: 129px;
  margin: 0 auto 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #000;
}

.logo img {
  width: 60%;
  height: auto;
  border-radius: 50%;
}

.quote-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #f27931;
  color: #ffffff;
  font-size: 20px;
  border-radius: 50%;
  padding: 5px 10px;
}

.testimonial-card p {
  font-size: 14px;
  color: #333;
  margin: 10px 0;
}

.testimonial-card h4 {
  font-size: 16px;
  color: #f27931;
  margin: 10px 0 5px;
}

.subtitle {
  font-size: 12px;
  color: #777;
}

/* CSS */

.compliance-test-section {
  background-color: #fdece4;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  min-height: 100vh;
}

.compliance-content {
  max-width: 1440px;
  margin: auto;
  position: relative;
  z-index: 9999;
}

.compliance-content h2 {
  color: var(--Foundation-Raisin-Black-raisin-black-500, #222);
  text-align: center;

  /* Display xl/Normal */
  font-family: Montserrat;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 72px; /* 120% */
}

.compliance-content p {
  color: var(--Foundation-Raisin-Black-raisin-black-500, #222);
  text-align: center;

  /* H1/Medium */
  font-family: Montserrat;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px; /* 187.5% */
  margin: 2rem 0;
}

.highlight-orange {
  color: #f27931;
  font-weight: bold;
}

.form-container {
  width: 60%;
  padding: 3rem 2rem;
  /* border-radius: 8px; */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: inline-block;
  text-align: left;

  border: 1px solid #999;
  background: rgba(233, 233, 233, 0.3);
  backdrop-filter: blur(10.5px);
  z-index: 9999;
}

.form-container form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.form-container label {
  color: var(--Foundation-Raisin-Black-raisin-black-500, #222);

  /* Text SM/Semibold */
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px; /* 157.143% */
}

.input-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.input-wrapper .icon {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  font-size: 18px;
  color: #999;
}

.input-wrapper input {
  width: 100%;
  padding: 10px 10px 10px 40px; /* padding para espaço do ícone */
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
}

input::placeholder {
  color: #999;
}

.form-container button {
  background-color: #f27931;
  color: var(--Foundation-Crayola-crayola-50, #fff2ea);

  /* SubTitulo/Semibold */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 155.556% */
  border: none;
  padding: 12px 0;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.form-container button:hover {
  background-color: #e66820;
}

.interrogacao {
  position: absolute;
  bottom: 0;
  left: 100px;
  z-index: 3;
}
.elipse {
  position: absolute;
  bottom: 0;
  left: 0;
}

/* CSS */

.download-guide-section {
  background: linear-gradient(90deg, #f27931, #f69235);
  color: #ffffff;
  padding: 40px 20px;
  text-align: center;
  position: relative;
}

.download-guide-section h2 {
  color: var(--Foundation-Crayola-crayola-50, #fff2ea);
  text-align: center;

  /* Display xl/Semibold */
  font-family: Montserrat;
  font-size: 60px;
  font-style: normal;
  font-weight: 500;
  line-height: 72px; /* 120% */
  max-width: 1440px;
  margin: auto;
}

.download-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1440px;
  margin: 0 auto;
}

.form-container-guide {
  background-color: #a9441c;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* max-width: 300px; */
  width: 40%;
  text-align: left;
}

.form-container-guide form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-container-guide label {
  font-size: 14px;
  color: #ffffff;
}

.form-container-guide input[type='email'] {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.form-container-guide button {
  background-color: #333333;
  color: #ffffff;
  border: none;
  padding: 10px 0;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.form-container-guide button:hover {
  background-color: #111111;
}

.guide-preview {
  display: flex;
  gap: 20px;
}

.guide-preview img {
  width: 640px;
  height: auto;
  border-radius: 5px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
}
.elipse02 {
  position: absolute;
  bottom: 0;
  right: 0;
}

/* CSS */

.footer-section {
  background-color: #3d3d3d;
  color: #ffffff;
  padding: 40px 20px;
  font-size: 14px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 20px;
}

.contact-info h4,
.footer-column h4 {
  color: var(--Foundation-Crayola-crayola-500, #ff782d);

  /* H4/SemiBold */
  font-family: Poppins;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 145.455% */
}
.footer-column p {
  color: var(--Foundation-Crayola-crayola-50, #fff2ea);

  /* Text/large/reguler */
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--Foundation-Crayola-crayola-50, #fff2ea);

  /* SubTitulo/Medium */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 155.556% */
}

.contact-info img,
.social-icons img {
  width: 33px;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 15px;

  border-radius: 8px;
  border: 0.5px solid var(--Foundation-Crayola-crayola-400, #ff9357);
  margin-bottom: 2rem;
}

.newsletter-form input {
  padding: 10px;
  flex: 1;
  background: transparent;
  border: none;
  color: #333;
  font-size: 14px;
}

.newsletter-form button {
  background: transparent;
  border: none;
  color: #ffffff;

  cursor: pointer;
  font-size: 16px;
  margin-right: 0.5rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #666666;
  padding-top: 20px;
}

.footer-bottom p {
  color: #b3b3b3;
  font-size: 12px;
}

.footer-bottom a {
  color: #f27931;
  text-decoration: none;
  margin: 0 5px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.newsletter-terms {
  color: var(--Neutral-color-200, #9f9fa2);

  /* Text xs/Normal */
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 133.333% */
  margin-top: 2rem;
}

/* Esconde o menu no mobile e exibe o botão de hambúrguer */
@media (max-width: 1024px) {

  .just-mobile{
    display: flex;
  }
  /* Adicione a visibilidade do drawer */
  .nav-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background-color: #000;
    color: #fff;
    z-index: 1000;
  }

  .nav-menu.drawer.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  /* Drawer visível apenas no mobile */
  .nav-menu.drawer {
    display: flex;
    background-color: #000;
  }
  .close-drawer {
    background-color: transparent;
    border: none;
    color: #fff;
    text-align: right;
    font-size: 26px;
  }

  .empresas-protegidas {
    flex-direction: column;
  }
  .empresas-protegidas img {
    width: 80%;
  }

  .interrogacao {
    left: 0;
    width: 70%;
  }
  .elipse {
    width: 30%;
  }

  .balanca-about {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
  }

  .guide-preview {
    display: flex;
    gap: 20px;
  }

  .guide-preview img {
    width: 100%;
    z-index: 9999;
  }
  .client-area .client-button {
    display: none;
  }

  .cta-box {
    padding: 3rem 1rem;
    max-width: 100%;

    flex-direction: column;
    align-items: center;
    z-index: 999;
    position: relative;
  }

  .cta-box h2 {
    line-height: 40px; /* 187.5% */
    margin-bottom: 2rem;
  }

  .cta-button {
    z-index: 999;
    margin-top: 1rem;
  }

  .estatus {
    right: 0;
    width: 60%;
    z-index: 10;
  }
  .mancha {
    width: 40%;
  }

  .top-line {
    width: 100%;
  }

  .security-section h2 {
    font-size: 36px;
    line-height: 40px; /* 120% */
  }

  .content-wrapper {
    flex-direction: column;
  }

  .service-item {
    flex-direction: row;
    align-items: flex-start;
    min-height: 6rem;
  }

  .checkmark {
    color: #f27931;
    font-size: 18px;
    margin-right: 15px;
  }

  .intro-text h3 {
    font-size: 40px;
    line-height: 52px;
    margin-bottom: 2rem;
  }

  .intro-text p {
    font-size: 26px;
    line-height: 40px; /* 187.5% */
  }

  .team-header h2 {
    font-size: 36px;
    line-height: 52px; /* 120% */
  }

  .team-header p {
    font-size: 26px;
    line-height: 40px; /* 187.5% */
  }

  .testimonials-grid {
    flex-direction: column;
  }

  .testimonial-card {
    width: 100%;
  }

  .compliance-content h2 {
    font-size: 36px;
    line-height: 52px; /* 120% */
  }

  .compliance-content p {
    font-family: Montserrat;
    font-size: 26px;
    line-height: 40px; /* 187.5% */
  }

  .form-container {
    width: 100%;
  }

  .download-guide-section h2 {
    font-size: 36px;
    line-height: 52px; /* 120% */
    z-index: 999;
    position: relative;
  }

  .form-container-guide {
    position: relative;
    z-index: 999;
    width: 100%;
  }
  .mobile-qr-code {
    display: flex;
    flex-direction: column;
  }
  .qrcode-image {
    width: 40%;
  }

  .about-section h2 {
    font-size: 36px;
    line-height: 52px;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .about-section p {
    font-size: 26px;
    line-height: 40px;
  }

  .text-content {
    flex: 1;
    padding-right: 20px;
  }

  .text-content h2 {
    font-size: 36px;
    line-height: 52px;
    margin-bottom: 1rem;
  }

  .about-first-p {
    font-size: 26px;
    line-height: 40px;
  }

  .services-content h2 {
    font-size: 36px;
    line-height: 52px; /* 120% */
    margin-bottom: 2rem;
  }

  .services-content p {
    font-size: 26px;
    line-height: 40px; /* 187.5% */
  }

  .service-item p {
    font-size: 18px;
    line-height: 40px; /* 187.5% */
  }

  .empresas-protegidas-section {
    padding: 4rem 2rem;
  }

  .clientes-confiam-section {
    padding: 4rem 2rem;
  }

  .stat-number {
    font-size: 56px;
  }
  .stat-number > span {
    font-size: 56px;
  }

  .stat-item p {
    font-size: 26px;
    text-align: left;
  }

  .stat-item::before {
    left: -100px;
    top: 50px;
  }
}
