@font-face {
  font-family: "Axiforma";
  src: url("fonts-segmentos//Axiforma-Medium.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "eurofighter";
  src: url("fonts-segmentos//eurofighter/eurofighter.ttf");
  font-weight: bold;
  font-style: normal;
}

body {
  margin: 0;
  font-family: Axiforma, sans-serif !important;
}

.navbar {
  position: fixed;
  display: flex;
  justify-content: center;
  justify-self: center;
  align-items: center;
  padding: 20px;
  background-color: transparent;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 1000;
  will-change: transform, opacity;
  width: 100%;
}

.navbar.blurred {
  background-color: (255, 255, 255, 0.027);
  backdrop-filter: blur(25px);
}
.navbar.hidden {
  transform: translateY(-100%);
}

.logo-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.segmento-title{
  font-family: "eurofighter", sans-serif !important;
  font-size: 12px;
  color: var(--primary-color);
  top: -9px;
  position: relative;
}

.navbar nav a {
  align-items: center;
  margin: 0 10px;
  padding-top: 5px;
  justify-content: center;
  text-align: center;
  display: flex;
}

.fullscreen-menu a {
  color: var(--nav-text-color);
}

.logo {
  background-image: var(--logo);
  width: 183px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ====== LINKS DESKTOP ====== */
.nav-desktop {
  display: flex;
  gap: 20px;
}

.nav-desktop a {
  color: var(--nav-text-color);
  text-decoration: none;
  font-size: 16px;
}

.cta-btn {
  background-color: var(--btn-color);
  color: var(--revert-text-color) !important;
  padding: 10px !important;
  border-radius: 5px;
  border: 2px solid var(--btn-color);
  font-size: 16px;
  text-decoration: none;
}

/* .cta-btn:hover {
  background-color: var(--primary-color);
}
 */
/* ====== BOTÃO HAMBURGUER ====== */
.hamburger {
  font-size: 28px;
  background: none;
  border: none;
  color: var(--nav-text-color);
  cursor: pointer;
  display: none;
  z-index: 1002;
}

/* ====== MENU MOBILE FULLSCREEN ====== */
.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.692);
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);

  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1001;

  /* borda e sombra leve */
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.4);
}

.fullscreen-menu.active {
  display: flex;
  transform: translateX(0);
}

.fullscreen-menu a {
  color: white;
  font-size: 24px;
  margin: 15px 0;
  text-decoration: none;
}

.fullscreen-menu .close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Page Content Styles */
.page-content {
  background-color: var(--background-color);
  color: var(--primary-text-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  /*   background: linear-gradient(
      to left,
      var(--primary-color) 15%,
      transparent 40%
    ),
    var(--background-color); */
}

.left-gradient {
  position: relative;
  background: radial-gradient(
    circle at left center,
    var(--primary-color) 0%,
    var(--background-color) 60%
  );
  z-index: 1000;
}

.half-left-gradient {
  position: relative;
  background: radial-gradient(
    circle at left center,
    var(--primary-color) 0%,
    var(--background-color) 30%
  );
  z-index: 1000;
}

.half-rigth-gradient {
  position: relative;
  background: radial-gradient(
    circle at right center,
    var(--primary-color) 0%,
    var(--background-color) 30%
  );
  z-index: 1000;
}

.rigth-gradient {
  position: relative;
  background: radial-gradient(
    circle at right center,
    var(--primary-color) 0%,
    var(--background-color) 30%
  );
  z-index: 1000;
}

.container {
  display: flex;
  flex-direction: column;
  width: 80%;
  height: 100%;
  align-items: center;
  margin: 16px 0;
}

.intro {
  height: 300px;
  text-align: center;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}

.intro h1 {
  font-size: 3em;
  font-weight: 400;
  line-height: 1.1em;
  color: var(--primary-text-color);
}

.intro p {
  font-size: 1.6em;
  font-weight: 400;
  line-height: 1.3em;
  color: var(--primary-text-color);
}

.intro-images {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.intro-img {
  position: relative;
  width: 400px;
  height: 250px;
  z-index: 2;
  border-radius: 8px;
  transition: transform 0.3s ease-out;
}

.intro-img:first-child {
  transform: rotateZ(10deg);
  left: 125px;
  background-image: var(--img-intro-left);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.intro-img:last-child {
  transform: rotateZ(-10deg);
  right: 125px;
  background-image: var(--img-intro-right);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.first-container {
  position: relative;
  z-index: 0;
  padding-top: 64px;
}

.first-container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    var(--background-color) 0%,
    var(--background-color) 2%,
    transparent 50%,
    transparent 100%
  );
  z-index: 3;
  pointer-events: none;
}

.intro-img-center {
  position: relative;
  z-index: 0;
  display: inline-block;
  width: 800px;
  height: 500px;

  background-image: var(--img-intro-center);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.opiniao-pessoal-container {
  display: flex;
  flex-direction: column;
}

.opiniao-pessoal-container p {
  margin: 0px;
}

.opiniao-pessoal-container span {
  font-size: 0.8em;
  font-weight: 400;
  line-height: 1.3em;
  color: var(--secundary-text-color);
}

.facilitadores-title {
  margin-top: 64px;
  margin-bottom: 64px;
  font-size: 2em;
  font-weight: 400;
  line-height: 1.1em;
}

.facilitadores {
  display: flex;
  margin-bottom: 64px;
  width: 100%;
}

.facilitador-box {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  padding: 30px;
  width: 33.3%;
  margin: 8px;
  background-color: var(--bg-box);
  transition: box-shadow 0.3s ease;
  border: 1px solid #6b6b6bb4;
  gap: 16px;
}

.facilitador-box span {
  text-align: justify !important;
}

/* .facilitador-box:hover {
  box-shadow: 0 0 10px 10px var(--primary-color);
} */

.facilitador-box ul li {
  list-style: none;
  position: relative;
  padding-left: 32px;
  color: var(--secundary-text-color);
}

.facilitador-box ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background-image: url("images-segmentos/check-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.facilitador-box p {
  font-size: 1.3em;
  font-weight: 400;
  margin: 0;
}

.solucao-bg {
  position: relative;
  background-image: url("images-segmentos/Call-to-action-copiar.webp");
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.solucao-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(
    268deg,
    var(--transparent-primary-color) 1.12%,
    var(--primary-color) 99.38%
  );
  opacity: 1;
  pointer-events: none;
}

.solucao-bg > .container {
  position: relative;
  z-index: 1;
}

.solucao-content {
  width: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.solucao-content span {
  font-size: 2.5em !important;
  font-weight: 400;
  line-height: 1.1em;
}

.solucao-box {
  margin-top: 64px;
  margin-bottom: 64px;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: baseline;
  gap: 32px;
}

.solucao {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 16px;
  align-items: center;
}

.solucao span {
  font-size: 32px;
  word-break: normal;
  word-wrap: break-word;
  text-align: left;
  width: 61vh;
  color: var(--revert-text-color);
}

.solucao button,
.substitua button {
  height: 50px;
  width: 175px;
  border-radius: 8px;
  color: var(--revert-text-color);
  background-color: var(--btn-color);
  transition: box-shadow 0.3s ease;
  border: 2px solid var(--btn-color);
  cursor: pointer;
}

/* .solucao button:hover {
  box-shadow: 0 5px 10px #ffffff5e;
} */

.solucao-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 50%;
  font-size: 1em;
  line-height: 1.7em;
  font-weight: 300;
  text-align: left;
  color: var(--revert-text-color);
  text-align: justify;
}

.substitua-container {
  gap: 32px;
  display: flex;
  width: 100%;
  align-items: center;
}

.substitua-container .facilitador-box {
  border: 1px solid #6b6b6bb4;
  justify-content: center;
}

.substitua {
  display: flex;
  gap: 16px;
  flex-direction: column;
}

.img-substitua {
  background-image: var(--img-substitua);
  background-size: contain;
  background-repeat: no-repeat;
  width: 40%;
  height: 400px;
  align-self: center;
}

.substitua p {
  margin: 0;
  color: var(--primary-text-color);
  font-size: 2em;
  font-weight: 400;
  line-height: 1.2em;
}

.substitua span {
  font-size: 0.9em;
  font-weight: 400;
  line-height: 1.8em;
  color: var(--secundary-text-color);
}

.aspas {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.facilitador-title-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.facilitador-svg {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 5px;
  padding: 2px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.facilitador-svg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.white-label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: auto;
}

.white-label-img {
  background-image: var(--img-white-label);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
  width: 45%; /* ou um valor flexível como 80%, etc */
  aspect-ratio: 1 / 1; /* quadrado, ou use 16 / 9, 4 / 3, etc */
}

.white-label-box button {
  align-self: flex-start;
  margin-top: 6px;
}

.areas-content {
  display: flex;
  height: auto;
  gap: 32px;
  width: 100%;
}

.areas-img {
  background-image: var(--img-areas-1);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.areas-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 50%;
}

.areas-text p {
  font-size: 1.4em;
  font-weight: 400;
  line-height: 1.1em;
  color: var(--primary-text-color);
  margin: 0px;
  margin-bottom: 8px;
}

.areas-text span {
  font-size: 0.8em;
  font-weight: 400;
  line-height: 1.7em;
  color: var(--secundary-text-color);
}

.areas-box .btn-list button {
  font-size: 0.9rem;
  font-weight: 400;
  width: auto;
  height: 40px;
  padding: 8px;
  background-color: transparent;
  border: transparent;
  box-shadow: none;
  cursor: pointer;
  color: var(--primary-text-color);
  border-radius: 8px;
}

.areas-box .btn-list button.selected {
  background-color: var(--btn-color);
  color: var(--revert-text-color) !important;
}

.areas-box {
  display: flex;
  width: 80%;
  flex-direction: column;
}

.areas-box h1 {
  align-self: center;
  font-weight: 400;
  line-height: 1.1em;
  font-size: 2.5em;
  text-align: center;
  margin: 0;
}

.white-label-box {
  align-items: center;
  margin-bottom: 64px;
  width: 100%;
  gap: 0;
}

.planos-box {
  margin-top: 64px;
}

.container-white-label {
  display: flex;
}

.white-label-box span {
  color: var(--primary-text-color);
  width: 55vh;
  text-align: left;
}

.white-label-content {
  align-items: center;
}

.white-label p {
  width: 55vh;
  margin: 0;
  font-weight: 400;
  font-size: 0.9em;
  line-height: 1.7em;
  color: var(--secundary-text-color);
  text-align: justify;
}

.perfil-opiniao {
  /*   position: absolute;
  bottom: 24px; */
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  height: auto;
  margin-top: auto;
}

.perfil-opiniao .foto-perfil {
  border: 1px solid var(--primary-text-color);
  height: 60px;
  width: 60px;
  border-radius: 50%;
  object-fit: cover;
  background-color: gray;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.foto-perfil:first-child {
  background-image: var(--img-depoimento-1);
}

.foto-perfil:nth-child(2) {
  background-image: url(--img-depoimento-2);
}

.foto-perfil:nth-child(3) {
  background-image: url(--img-depoimento-3);
}

.facilitador-box span {
  display: flex;
  text-align: left;
  width: 100%;
  font-size: 0.7em;
  color: var(--secundary-text-color);
}

.recursos {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

/* .recursos-container {
  object-fit: contain;
  background-image: var(--img-recursos);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
  height: 900px;
} */

.img-recursos {
  height: 600px;
  background-size: contain;
  object-fit: contain;
  background-image: var(--img-recursos);
  background-repeat: no-repeat;
  background-position: top center;
  display: flex;
  justify-content: center;
  z-index: 1;
  margin-top: 25px;
}

.img-recursos-degrade {
  width: 70%;
  height: 10%;
  top: 10%;
  z-index: 0;
  background: conic-gradient(
    from 0.25turn at 50% 30%,
    var(--background-color),
    10deg,
    var(--primary-color)
    350deg,
    var(--background-color),
  );
  /*   background: conic-gradient(
    to top,
    var(--transparent-primary-color) 10%,
    transparent 100%
  ); */
}

.planos-valor {
  display: flex;
  flex-direction: column;
}

.recursos h1 {
  font-size: 2.5em;
  text-align: center;
  font-weight: 400;
  align-self: center;
  width: 50%;
  margin: 0;
}

.facilitador-box h3 {
  margin: 0px !important;
  padding: 0px !important;
  line-height: normal;
  font-size: 1.1em;
  font-weight: 300;
}

.facilitador-box h2 {
  line-height: normal;
  margin: 0px !important;
  padding: 0px !important;
  font-size: 1.7em;
  font-weight: 400;
}

.planos p {
  text-align: center;
}

.facilitador-box ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 16px;
  padding-left: 0;
}

.planos-title {
  font-size: 32px;
  margin-top: 64px;
  margin-bottom: 16px;
  font-weight: 600;
}

.planos-subtitle {
  text-align: center;
  width: 60%;
  margin-bottom: 32px;
  color: var(--secundary-text-color);
}

.planos img {
  height: 50px;
  width: 50px;
  border-radius: 10px;
  object-fit: contain;
  background-color: var(--primary-color);
  padding: 5px;
}

.planos {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-planos {
  align-self: center;
  margin-top: auto;
  height: 50px;
  width: 60%;
  border-radius: 10px;
  border: none;
  background-color: var(--btn-color);
  color: var(--revert-text-color);
  font-size: 16px;
  cursor: pointer;
}

.planos-descricao {
  color: var(--secundary-text-color);
  font-size: 12px;
  margin: 8px 0;
}

.opiniao-box {
  padding: 30px;
}

.experimente {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 128px;
}

.recursos span {
  color: var(--secundary-text-color);
  font-size: 0.9em;
  font-weight: 400;
}

.experimente-title {
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  font-size: 0.7em;
  font-weight: 400;
  line-height: 20px;
  color: var(--secundary-text-color);
  text-transform: uppercase;
  padding: 8px 16px;
  margin: 0;
}

.experimente-desc {
  display: flex;
  width: 70%;
  font-size: 2.5em;
  text-align: center;
  color: var(--primary-text-color);
  justify-self: center;
  margin: 16px 0;
  line-height: 1.1em;
}

.experimente-sec-desc {
  display: flex;
  font-size: 0.9em;
  font-weight: 400;
  width: 75%;
  text-align: center;
  color: var(--secundary-text-color);
  justify-self: center;
  margin-bottom: 8px;
}

.btn-experimente {
  align-self: center;
  justify-self: center;
  margin-top: 16px;
  height: 50px;
  padding: 12px 24px 12px 24px;
  border-radius: 10px;
  border: none;
  background-color: var(--btn-color);
  color: var(--revert-text-color);
  font-size: 16px;
  cursor: pointer;
}

/* FOOTER */

.footer-container {
  display: flex;
  flex-direction: column;
  height: auto;
  background-color: #263238;
  padding: 0 20px 0 20px;
}

.footer-content-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 414px;
  margin: 40px 15px 0 15px;
}

.footer-content-column {
  display: flex;
  width: 250px;
  height: 400px;
}

.footer-logos-group {
  display: flex;
}

.footer-content-logo {
  padding-top: 20px;
}

.footer-logos-group a:not(:first-child) {
  padding-left: 10px;
}

.footer-content-title {
  color: #f1f1f1;
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 10px;
}

.footer-content-link {
  color: #f1f1f1;
  font-size: 17px;
  font-weight: 500;
  padding-top: 20px;
  text-decoration: none;
}

.footer-list {
  display: flex;
  height: auto;
  flex-direction: column;
  list-style: none;
}

.footer-logo-baseline {
  display: flex;
  align-items: center;
}

.footer-logo-baseline hr {
  width: 65%;
  border: 1px solid gray;
  padding-right: 5px;
}

.footer-logo-baseline p {
  color: gray;
  margin-left: 10px;
  font-weight: 500;
}

.footer-safe-browsing-logo {
  padding: 0px 110px 30px 20px;
  display: flex;
  justify-content: flex-end;
}

.footer-safe-browsing-logo img {
  width: 125px;
  height: auto;
}

.substitua-box {
  padding: 45px;
}

.experimente-facilitadores {
  display: flex;
  gap: 16px;
}

.experimente-facilitadores span {
  align-self: center;
  justify-self: center;
  font-size: 0.9em;
  font-weight: 400;
}

.experimente-facilitadores .img {
  display: flex;
}

.img-experimente {
  border-radius: 50%;
  width: 38px;
  height: 38px;
  border: 2px solid #333333;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateX(100%);
  position: relative;
}

.img-experimente:nth-child(1) {
  left: -10px;
  background-image: url("images-segmentos/facilitador-circle-img.jpg");
}

.img-experimente:nth-child(2) {
  left: -20px;
  background-image: url("images-segmentos/facilitador2.jpg");
}

.img-experimente:nth-child(3) {
  left: -30px;
  background-image: url("images-segmentos/facilitador3.jpg");
}

.img-experimente:nth-child(4) {
  left: -40px;
  background-image: url("images-segmentos/facilitador4.jpg");
}

.img-experimente:nth-child(5) {
  left: -50px;
  background-image: url("images-segmentos/facilitador5.jpg");
}

@media screen and (max-width: 1024px) {
  .footer-content-container {
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
  }

  .footer-content-column {
    width: 20%;
    text-align: left;
    height: 350px;
    margin: 0 15px 0 15px;
  }

  .navbar nav a {
    margin: 0 10px;
  }
}

@media screen and (max-width: 890px) {
  .solucao-box,
  .facilitadores-title,
  .facilitadores {
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .facilitador-box p {
    font-size: 18px;
  }

  .btn-planos {
    font-size: 14px;
  }

  .img-substitua {
    background-position: center;
  }

  .container {
    width: 90%;
  }
  .navbar nav a {
    font-size: 12px;
  }

  .solucao-text {
    font-size: 14px;
  }

  .solucao span {
    font-size: 24px;
  }

  .facilitador-box {
    width: 33%;
    padding: 16px;
  }
}

@media (min-width: 769px) {
  .fullscreen-menu {
    display: none !important;
  }

  .hamburger {
    display: none !important;
  }

  .nav-desktop {
    display: flex;
  }
}

body.no-scroll {
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .navbar .logo {
    width: 100px;
  }

  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .fullscreen-menu a {
    padding: 16px;
    font-size: 24px;
  }

  .logo, .segmento-title {
    z-index: 1005;
  }

  .logo-box {
    margin-left: 10%;
  }

  .hamburger {
    margin-right: 10%;
  }

  .navbar {
    justify-content: space-between;
  }
}

@media screen and (max-width: 425px) {
  .intro {
    height: auto;
  }

  .segmento-title {
    font-size: 10px;
  }

  .experimente-facilitadores {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
  }

  .navbar {
    justify-content: space-between;
    width: 100%;
  }

  .logo {
    margin-left: 10%;
  }

  .hamburger {
    margin-right: 10%;
  }

  .solucao button {
    align-self: center;
    margin-top: 32px;
  }

  .solucao span {
    line-height: 1.1em;
  }

  .substitua button {
    align-self: center;
  }

  .substitua-box {
    padding: 40px;
  }

  .facilitador-box p,
  .facilitador-box span {
    text-align: left;
  }

  .substitua-text {
    text-align: center !important;
  }

  .planos-title {
    font-size: 1.7em;
  }

  .facilitador-box span,
  .planos-subtitle {
    font-size: 0.7em;
  }

  .intro h1 {
    font-size: 1.8em;
    text-align: center;
    width: 90%;
    align-self: center;
    justify-self: center;
    margin: 5px 0;
  }

  .intro p {
    margin: 5px 0;
    font-size: 0.9em;
  }

  .facilitadores-title {
    font-size: 1.5em;
    text-align: center;
  }

  .facilitadores {
    flex-direction: column;
  }

  .facilitador-box {
    width: auto;
    margin: 8px 0;
  }

  .tudo-em-um-btn {
    display: none;
  }

  .recursos h1 {
    font-size: 1.5em;
    width: 80%;
  }

  /*   .recursos-container {
    height: 425px;
  } */

  .solucao-content span {
    font-size: 24px !important;
    line-height: 1.5em;
    width: 60%;
    line-break: normal;
    word-wrap: break-word;
  }

  .img-recursos {
    height: 300px;
  }

  .solucao-box {
    flex-direction: column;
    align-items: center;
  }

  .solucao {
    width: 100%;
    align-items: flex-start;
  }

  .solucao-content {
    align-items: flex-start;
    width: 100%;
  }

  .solucao-text {
    width: 100%;
    font-size: 0.7em;
    font-weight: 300;
  }

  .facilitador-box ul li {
    font-size: 0.7em;
    line-height: 1.3em;
    font-weight: 300;
  }

  .facilitador-box ul li::before {
    height: 15px;
    width: 15px;
  }

  .white-label-box {
    flex-direction: column-reverse;
    margin: 0;
  }

  .white-label-img {
    width: 90%;
    align-self: center;
  }

  .white-label-box span {
    text-align: center;
  }

  .white-label p {
    width: 100%;
    font-size: 0.8em;
    line-height: 1.7em;
  }

  .white-label-box button {
    align-self: center;
  }

  .white-label-content {
    align-items: center;
    text-align: center;
  }

  .areas-box {
    width: 100%;
  }

  .areas-box h1 {
    font-size: 1.5em;
    width: 100%;
  }

  .btn-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .areas-content,
  .substitua-container {
    flex-direction: column;
  }

  .areas-text,
  .img-substitua {
    width: 100%;
  }

  .planos-title {
    text-align: center;
    margin-top: 0;
  }

  .planos p {
    font-size: 1.5em;
  }

  .planos-subtitle {
    width: 100%;
  }

  .experimente-desc {
    width: 80%;
    font-size: 1.5em;
  }

  .experimente-sec-desc {
    width: 100%;
    font-size: 0.8em;
  }

  .experimente-title {
    text-align: center;
  }

  .btn-experimente {
    font-size: 14px;
  }
}

@media screen and (max-width: 665px) {
  .footer-content-container {
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-content-column {
    width: 30%;
    padding: 5% 0 5% 0;
    margin-bottom: 20px;
    text-align: left;
    align-self: center;
    justify-content: left;
    height: 275px;
  }

  .footer-safe-browsing-logo {
    justify-content: flex-start;
    margin-left: 8px;
    padding-top: 50px;
  }

  .footer-logo-baseline hr {
    width: 250px;
  }

  .footer-logo-baseline p {
    font-size: 14px;
  }

  .footer-safe-browsing-logo {
    justify-content: flex-end;
  }
}

@media screen and (max-width: 470px) {
  .footer-content-container {
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
    flex-direction: column;
  }

  .footer-content-column {
    width: 90%;
    padding: 5% 0 5% 0;
    text-align: left;
    justify-content: left;
    height: auto;
  }

  .footer-safe-browsing-logo {
    justify-content: flex-start;
    margin-left: 8px;
    padding-top: 50px;
  }

  .footer-logo-baseline hr {
    width: 40px;
  }

  .footer-logo-baseline p {
    font-size: 14px;
  }
}

@media screen and (max-width: 330px) {
  .footer-logo-baseline hr {
    display: none;
  }

  .footer-logo-baseline p {
    font-size: 12px;
  }
}
