@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --main-color: #c54a07;
  --main-hover: #8c431b;
  --color-hover: #8c431b;
  --background-color: #1e1e1e;
  --background-color-black: #000000;
  --background-color-gradient: linear-gradient(
    90deg,
    rgb(196, 74, 8, 1) 0%,
    rgb(140, 67, 28, 1) 100%
  );
  --color-dark-one: #f3f3f3;
  --color-dark-two: #fff;
  --color-light-one: #ccc;
  --color-light-two: #e7e3e3;
  --whats-color: #0fee91;
  --danger-color: #7e0909;
  --blue-color: #1a6fba;
}
/* :root {
  --primary-color: #1e307e;
  --second-color: #071138;
  --third-color: #000000;
  --fourth-color: #f3f5fa;
  --fifth-color: #6cd2fa;
  --sixth-color: #ffffff;
  --seventh-color: #092b4c;
  --whats-color: #00804b;
  --danger-color: #ff0000;
} */

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  background: var(--background-color);
}
header {
  position: fixed;
  display: flex;
  width: 100%;
  height: 110px;
  z-index: 1000;
  padding: 0.4rem 10%;
  background: var(--main-color);
  justify-content: center;
  border-bottom: 2px solid var(--background-color);
}
section {
  width: 100%;
  padding: 0 12%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.navbar {
  display: flex;
  width: 100%;
  height: 100px;
  align-items: center;
  justify-content: space-between;
}
.navbar ul {
  display: flex;
  justify-content: space-between;
}
.navbar li {
  /* padding: 40px; */
  margin-right: 50px;
}
.navbar a {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--fourth-color);
}
.navbar li a::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background: var(--fourth-color);
  margin: auto;
  transition: width 0.3s;
  margin-top: 3px;
}
.navbar li a:hover::after {
  width: 100%;
}
img {
  width: 100%;
}
a {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-dark-one);
}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

section {
  width: 100%;
  /*   height: calc(100vh - 110px); */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.navbar.active ul {
  top: 100%;
}
.overlay {
  display: none;
}
.logo-img {
  display: none;
}
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  width: "100%";
}
.logo p {
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
  /*  color: var(--background-color); */
  /* color: var(--color-dark-one); */
}
.logo strong {
  font-weight: 600;
  color: var(--background-color-black);
  color: var(--color-dark-one);
}

.logo img {
  width: 80px;
}

.logo h3 {
  color: var(--color-dark-two);
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 700;
}
.links ul {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  align-items: center;
}

.links ul li a {
  color: var(--color-light-two);
  display: inline-block;
  transition: 0.3s;
}

.links a:hover {
  color: var(--background-color);
  transform: scale(1.05);
  transition: 0.7s;
  /*  border-bottom: 1px solid var(--main-color); */
}
.links i {
  color: var(--color-dark-one);
}

.btn {
  display: inline-block;
  padding: 0.6rem 1rem 0.4rem 1rem;
  color: var(--main-color) !important;
  background-color: var(--background-color-black);
  border-radius: 16px;
  text-transform: capitalize;
  transition: 0.9s;
}
.btn i {
  padding-right: 5px;
  color: var(--main-color) !important;
}
.btn:hover i {
  padding-right: 5px;
  color: var(--background-color-black) !important;
}
.btn:hover {
  background: var(--color-dark-two);
  color: var(--background-color-black) !important;
}
.cta {
  display: inline-block;
  padding: 0.8rem;
  background-color: var(--main-color);
  border-radius: 16px;
  text-transform: capitalize;
  transition: 0.9s;
}
.cta:hover {
  background: var(--color-dark-two);
  color: var(--background-color-black) !important;
}
.cta i {
  padding-right: 10px;
  font-size: 20px;
  color: var(--color-dark-one) !important;
}
.cta:hover i {
  color: var(--background-color-black) !important;
}

.cta a {
  animation: rotateButtom 1s 0.3s forwards;
}
.cta:hover a {
  color: var(--background-color-black) !important;
}

/* ANIMAÇÃO PARA BOTAO CTA */
@keyframes rotateButtom {
  0% {
    transform: scale(1.5) rotateX(360deg);
  }
}

.hamburger-menu {
  position: relative;
  z-index: 99;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: none;
}

.hamburger-menu .bar {
  position: relative;
  width: 100%;
  height: 3px;
  background-color: var(--color-dark-two);
  border-radius: 3px;
  transition: 0.5s;
}

.bar::before,
.bar::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--color-dark-two);
  border-radius: 3px;
  transition: 0.5s;
}

.bar::before {
  transform: translateY(-8px);
}

.bar::after {
  transform: translateY(8px);
}

main.active .hamburger-menu .bar {
  background-color: transparent;
}

main.active .bar::before {
  transform: translateY(0) rotate(-45deg);
}

main.active .bar::after {
  transform: translateY(0) rotate(45deg);
}

.big-title {
  font-size: 1.2rem;
  color: var(--color-dark-one);
  text-transform: uppercase;
  line-height: 1.4;
}

.text {
  color: var(--color-light-one);
  font-size: 1.1rem;
  margin: 1.2rem 0 2.5rem;
  max-width: 600px;
  line-height: 1.8;
}

.showcase-area .btn {
  box-shadow: 0 0 40px 2px rgba(0, 0, 0, 0.05);
}

.hero {
  /* width: 123%; */
  width: 70%;
  border-radius: 30px;
  transform: translate(25%, 50px);
}
.blob {
  position: absolute;
  z-index: 0;
  width: 500px;
  bottom: -250px;
  right: -15px;
  opacity: 0.1;
}
.blob1 {
  position: absolute;
  z-index: 0;
  width: 400px;
  top: 50px;
  left: -15px;
  opacity: 0.1;
  transition: 0.3s;
}

.copy {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  animation: appear 1s 1 both;
}

footer {
  background: var(--color-dark-one);
  background: linear-gradient(90deg, rgb(197, 74, 7) 0%, rgb(140, 67, 28) 100%);
  color: var(--color-dark-one);
  height: 100%;
  min-height: 200px;
}
/* home */
.home {
  background-color: var(--background-color-black);
  width: 100%;
  min-height: 90vh;
}
.showcase-area {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: space-between;
}
/* plans */

/* advertising */
.advertising {
  width: 100%;
  height: 100%;
  min-height: 80vh;
  background-color: var(--main-color);
}
.container-advertising {
  width: 100%;
  margin-top: 10%;
  padding-top: 5%;
  padding-bottom: 5%;
}
.container-advertising .show-images {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}
.advertising img {
  width: 100%;
  padding-right: 30px;
}
.advertising .img {
  justify-content: center;
}
.advertising .text-img {
  font-size: 20px;
  font-weight: 500;
  padding-top: 40px;
  padding-bottom: 10px;
  color: var(--color-dark-one);
}
.advertising h2 {
  text-transform: uppercase;
  font-size: 28px;
  color: var(--color-dark-one);
}
.advertising h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 1px;
  background: var(--color-dark-one);
}
.alerts {
  max-width: 100%;
  display: flex;
  justify-content: space-around;
  margin-top: 10px;
}
.alerts-info {
  display: flex;
  flex-direction: column;
  max-width: 350px;
  margin-right: 15px;
}
.alerts-info ul li {
  font-weight: 500;
  color: var(--color-dark-one);
}

/* PLANS */
.plans {
  background: var(--background-color);
  width: 100%;
  height: 100%;
  min-height: 80vh;
}
.container-plans {
  width: 100%;
  margin-top: 10%;
  padding-top: 5%;
  padding-bottom: 5%;
}
.container-plans h2 {
  text-transform: uppercase;
  font-size: 28px;
  color: var(--color-dark-one);
}
.container-plans h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 1px;
  background: var(--main-color);
}

.container-plans h4,
h5 {
  text-transform: uppercase;
  padding-bottom: 20px;
  font-size: 35px;
  color: var(--background-color-black);
}
.container-plans .middle {
  text-transform: uppercase;
  padding-bottom: 20px;
  font-size: 35px;
  color: var(--main-color);
}

.container-plans span {
  padding-bottom: 20px;
  padding-left: 5px;
  text-transform: lowercase;
  font-size: 20px;
  font-weight: 300;
  color: var(--color-dark-one);
}
.plans-details {
  min-width: 300px;
  max-width: 300px;
  height: 100%;
  min-height: 500px;
  padding: 48px 20px 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 5px;
  background: var(--main-color);
  box-shadow: 0px 5px 90px 0px rgb(110 123 131 / 5%);
  margin: 2%;
}
.plans-details .button-cta {
  padding: 10px 60px;
  font-size: 18px;
  text-transform: uppercase;
  background-color: var(--background-color);
  color: var(--main-color);
  border-radius: 5px;
  margin-top: 15%;
  transition: all 0.3s;
}
.plans-details .button-cta:hover {
  padding: 10px 60px;
  font-size: 18px;
  text-transform: uppercase;
  background-color: transparent;
  color: var(--background-color-black);
  border-radius: 5px;
  border: 1px solid var(--background-color-black);
  transition: all 0.3s;
}
.plans-details .button-cta-middle {
  padding: 10px 60px;
  font-size: 18px;
  text-transform: uppercase;
  background-color: var(--main-color);
  color: var(--background-color-black);
  border-radius: 5px;
  margin-top: 15%;
  transition: all 0.3s;
}
.plans-details .button-cta-middle:hover {
  padding: 10px 60px;
  font-size: 18px;
  text-transform: uppercase;
  background-color: transparent;
  color: var(--main-color);
  border-radius: 5px;
  border: 1px solid var(--main-color);
  transition: all 0.3s;
}
.plans-details {
  border-top: 10px solid var(--main-color);
  min-width: 300px;
  max-width: 300px;
  height: 100%;
  min-height: 500px;
  padding: 40px 20px 50px 20px;
  display: flex;
  flex-direction: column;
  background: var(--background-color-black);
  box-shadow: 0px 5px 90px 0px rgb(110 123 131 / 5%);
  margin: 2%;
  transform: scale(1.05);
}
.plans-details:hover {
  transition: all 0.3s;
  transform: scale(1.1);
}
.plans-details .benefits-details-icon i {
  font-size: 60px;
  color: var(--main-color);
}
.plans-details .benefits-details-icon i:hover {
  transition: all 0.3s;
  transform: rotate(10deg);
  width: 70px;
  height: 80px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--main-color);
  color: var(--background-color-black);
}

.plans-details:hover {
  transition: all 0.3s;
  transform: scale(1.03);
}
.plans-details ul li {
  display: flex;
  flex-direction: row;

  align-items: center;
  color: var(--color-dark-one);
}
.plans-details ul li > i {
  font-size: 35px;
  color: var(--whats-color);
}
.plans-details img {
  width: 100%;
  max-width: 300px;
  padding-top: 20px;
}
.container-plans-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 5%;
  color: var(--fourth-color);
}
.plans-details h4 {
  text-align: center;
  font-size: 19px;
  font-weight: 600;
  color: var(--main-color);
}
.plans-details-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
}
.plans-details-icon i {
  font-size: 60px;
  color: var(--main-color);
}

.plans-details-icon i:hover {
  transition: all 0.3s;
  transform: rotate(10deg);
  width: 70px;
  height: 80px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--main-color);
  color: var(--background-color-black);
}

.plans-details p {
  padding: 5px 5px;
  margin-bottom: 10%;
  text-align: center;
  line-height: 30px;
  font-weight: normal;
  color: var(--color-dark-one);
}

.contato {
  display: flex;
  width: 100%;
  height: calc(100% - 120);
  min-height: 60vh;
  background-color: var(--main-color);
}
.container-contato {
  width: 100%;
  margin-top: 10%;
  padding-top: 5%;
  padding-bottom: 5%;
}
.container-contato {
  padding-bottom: 5%;
}
.container-contato h2 {
  text-transform: uppercase;
  font-size: 28px;
  color: #fff;
}
.container-contato h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: var(--color-dark-one);
}
.contato-info {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}
.contato-info i {
  display: flex;
  font-size: 22px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background-color: var(--background-color);
  color: #fff;
  transition: all 0.3s;
}
.contato-details {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 300px;
  padding: 20px;
  margin-bottom: 15px;
  margin-right: 15px;
  border: 1px solid #fff;
  border-radius: 5px;
}
.contato-details-icon {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 60px;
  height: 60px;
}

.contato-details h5,
p,
i {
  color: #fff;
}
.contato-details h5 {
  font-size: 22px;
  padding-bottom: 10px;
}
.contato-details p {
  font-size: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 24px;
}

.content-4 {
  width: 100%;
  padding: 1% 10%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: var(--background-color);
}

.content-4 strong {
  color: #fff;
}

.content-4 .copyright {
  padding-top: 15px;
  padding-bottom: 15px;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-self: center;
  text-align: center;
  font-size: 16px;
  color: var(--color-dark-one);
}
.content-4 .copyright-1 {
  margin-right: 5px;
  margin-left: 5px;
  color: var(--color-dark-one);
}
.content-4 .copyright-2 {
  margin-right: 10px;
  margin-left: 10px;
  color: var(--color-dark-one);
}
.content-4 .privacy_policy_terms {
  padding-top: 15px;
  padding-bottom: 15px;
  margin-top: 15px;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-self: center;
  text-align: center;
  font-size: 16px;
}
.content-4 .footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
  font-size: 25px;
  padding-right: 10px;
}
.content-4 .footer-socials i {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: violet;
}
.content-4 .footer-socials i:hover {
  opacity: 0.7;
}
.content-4 .footer-socials .icon-play {
  width: 43px;
  height: 43px;
  display: block;
  transition: 0.4s;
  padding: 10px;
  margin: 5px;
  background: #fff;
  border-radius: 50%;
}
.content-4 .footer-socials .icon-play:hover {
  opacity: 0.7;
}
/* BUTTOM TO-TOP */
.buttom-to-top a {
  position: absolute;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  padding: 10px 10px;
  right: 3%;
  bottom: 20px;
  position: fixed;
  z-index: 200;
  border-radius: 50%;
  font-size: 1.5rem;
  background-color: var(--color-dark-one);
  transition: all 0.3s;
  /* visibility: hidden;
  opacity: 1; */
}
.sticky.buttom-to-top a {
  visibility: visible;
  opacity: 0.9;
}
.buttom-to-top a:hover {
  transition: all 0.3s;
  opacity: 1;
  transform: scale(1.1);
}
.buttom-to-top i {
  font-size: 28px;
  color: var(--background-color-black);
}
@media (max-width: 1300px) {
  .hamburger-menu {
    display: flex;
  }

  .links {
    position: fixed;
    top: 0;
    right: 0;
    max-width: 450px;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    z-index: 95;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: 0.5s;
  }

  .links ul {
    flex-direction: column;
  }

  .links a {
    color: #fff;
    margin-left: 0;
    padding: 1rem 0;
  }
  .links-text a {
    color: #fff;
    margin-bottom: 2rem;
  }
  .links .btn {
    padding: 0.7rem;
  }
  .overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
  }

  .main.active .links {
    transform: translateX(0);
    box-shadow: 0 0 50px 2px rgba(0, 0, 0, 0.4);
  }

  .main.active .overlay {
    pointer-events: all;
    opacity: 1;
  }
  .container-advertising {
    padding-top: 5%;
  }
}
@media (max-width: 1080px) {
  .hero {
    display: none;
  }
  .hamburger-menu {
    display: flex;
  }

  .links {
    position: fixed;
    top: 0;
    right: 0;
    max-width: 450px;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    z-index: 95;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: 0.5s;
  }

  .links ul {
    flex-direction: column;
  }

  .links a {
    color: #fff;
    margin-left: 0;
    padding: 1rem 0;
  }
  .links-text a {
    color: #fff;
    margin-bottom: 2rem;
  }

  .overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
  }

  .main.active .links {
    transform: translateX(0);
    box-shadow: 0 0 50px 2px rgba(0, 0, 0, 0.4);
  }

  .main.active .overlay {
    pointer-events: all;
    opacity: 1;
  }
  .big-title {
    width: 100%;
    min-width: 390px;
    font-size: 1.1rem;
  }
  .left p {
    font-size: 0.9rem;
  }
  .advertising {
    padding-top: 5%;
  }
  .alerts {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 290px;
    justify-content: center;
    align-items: center;
  }
  .alerts-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 200px;
    margin: 2%;
  }

  .plans {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 5%;
    color: var(--fourth-color);
  }
  .logo-img {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 10%;
    margin-right: 2%;
  }
  .logo {
    margin-right: 5%;
  }

  .content-4 .copyright-2 {
    margin-right: 5px;
    margin-left: 10px;
  }
  .content-4 .copyright {
    padding-top: 5px;
    display: flex;
    justify-content: space-between;
    align-self: center;
    text-align: center;
    font-size: 16px;
    padding: 2px;
  }
  .content-4 .privacy_policy_terms {
    padding-top: 5px;
    display: flex;
    justify-content: space-between;
    align-self: center;
    text-align: center;
    font-size: 16px;
    padding: 2px;
  }
  .content-4 .privacy_policy_terms .pipe {
    display: none;
  }
}
@media (max-width: 950px) {
  header {
    transition: 0.3s;
  }
  #menu-icon {
    display: block;
  }

  .navbar.active ul {
    top: 100%;
  }
  .navbar ul li a {
    display: block;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--background-color-black);
    border-left: 2px solid var(--fourth-color);
  }
  .plans {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 8%;
    margin-bottom: 5%;
    color: var(--fourth-color);
  }
  .plans-details {
    margin-bottom: 10%;
  }
}
@media (max-width: 850px) {
  .main-text h4 {
    font-size: 18px;
    transition: 0.3s;
  }
  .main-text h1 {
    font-size: 28px;
    transition: 0.3s;
  }

  .a-client-btn {
    font-size: 16px;
    font-weight: 500;
  }
  .benefits-details {
    width: 100%;
    min-width: 650px;
  }
  .container-benefits h2 {
    margin-top: 12%;
  }
  .container-contato {
    padding-bottom: 5%;
  }
  .container-contato h2 {
    margin-top: 2%;
  }
  .contato-details p {
    font-size: 16px;
  }
  .content-4 .copyright {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    text-align: center;
    font-size: 16px;
    padding-top: 5px;
    padding: 2px;
  }
  .content-4 .copyright .pipe {
    display: none;
  }
  .content-4 .copyright-2 {
    margin-right: 5px;
    margin-left: 10px;
  }
  .content-4 .privacy_policy_terms {
    padding-top: 5px;
    display: flex;
    flex-direction: column;
    align-self: center;
    text-align: center;
    font-size: 16px;
  }
  .content-4 .privacy_policy_terms .pipe {
    display: none;
  }
}
@media (max-width: 750px) {
  header {
    transition: 0.3s;
  }
  .hamburger-menu {
    display: flex;
  }

  .links {
    position: fixed;
    top: 0;
    right: 0;
    max-width: 450px;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    z-index: 95;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: 0.5s;
  }

  .links ul {
    flex-direction: column;
  }

  .links a {
    color: #fff;
    margin-left: 0;
    padding: 1rem 0;
  }
  .links-text a {
    color: #fff;
    margin-bottom: 2rem;
  }

  .contato-info {
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
  }
  .content-4 {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }
  .content-4 .footer-socials {
    flex: 1;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .content-4 .footer-socials i {
    margin-right: 10px;
  }
  .content-4 .copyright {
    padding-top: 5px;
    display: flex;
    justify-content: center;
    align-self: center;
    text-align: center;
    letter-spacing: 1px;
    line-height: 28px;
    font-size: 16px;
    color: var(--color-dark-one);
    border-bottom: 1px solid #fff;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .content-4 .copyright-1 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .container-contato h2 {
    margin-top: 2%;
  }
}
@media (max-width: 650px) {
  .hamburger-menu {
    display: flex;
  }

  .links {
    position: fixed;
    top: 0;
    right: 0;
    max-width: 450px;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    z-index: 95;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: 0.5s;
  }

  .links ul {
    flex-direction: column;
  }

  .links a {
    color: #fff;
    margin-left: 0;
    padding: 1rem 0;
  }
  .links-text a {
    color: #fff;
    margin-bottom: 2rem;
  }

  .container-contato {
    padding-bottom: 5%;
  }
  .container-contato h2 {
    margin-top: 2%;
  }
  .contato-details p {
    font-size: 16px;
  }
  .content-4 {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }
}
@media (max-width: 520px) {
  header {
    transition: 0.3s;
  }
  .hamburger-menu {
    display: flex;
  }

  .links {
    position: fixed;
    top: 0;
    right: 0;
    max-width: 450px;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    z-index: 95;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: 0.5s;
  }

  .links ul {
    flex-direction: column;
  }

  .links a {
    color: #fff;
    margin-left: 0;
    padding: 1rem 0;
  }
  .links-text a {
    color: #fff;
    margin-bottom: 2rem;
  }
  .hero {
    display: none;
  }
  .logo p {
    font-size: 1rem;
  }
  .logo strong {
    font-size: 0.8rem;
  }
  .big-title {
    min-width: 280px;
  }
  .big-title h1 {
    font-size: 1.1rem;
  }
  .left p {
    font-size: 0.9rem;
  }
  .container-advertising .show-images {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .contato-info {
    display: flex;
    flex-direction: column;
  }
  .container-benefits h2 {
    margin-top: 24%;
  }
  .container-contato h2 {
    margin-top: 10%;
  }
  .contato-details p {
    font-size: 16px;
  }
  .content-4 .copyright {
    padding-top: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    text-align: center;
    font-size: 16px;
    padding: 2px;
  }
  .content-4 {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }
}
@media (max-width: 414px) {
  .hamburger-menu {
    display: flex;
  }

  .links {
    position: fixed;
    top: 0;
    right: 0;
    max-width: 450px;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    z-index: 95;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: 0.5s;
  }

  .links ul {
    flex-direction: column;
  }

  .links a {
    color: #fff;
    margin-left: 0;
    padding: 1rem 0;
  }
  .links-text a {
    color: #fff;
    margin-bottom: 2rem;
  }
  .home {
  }
  .container-plans {
    width: 100%;
    height: 100%;
    margin-top: 30%;
  }
  .plans-details {
    margin-bottom: 10%;
    transform: scale(1);
  }

  .container-advertising {
    margin-top: 15%;
  }
  .container-advertising h2 {
    font-size: 1.3rem;
    margin-top: 20%;
  }
  .alerts {
    max-width: 200px;
  }
  .container-contato {
    margin-top: 30%;
    padding-bottom: 5%;
  }
  .container-contato h2 {
    margin-top: 10%;
    font-size: 22px;
  }
  .content-4 {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }

  .content-4 .footer-socials i {
    margin-right: 20px;
  }
  .contato-details p {
    font-size: 16px;
  }
  .content-4 .copyright {
    padding-top: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    text-align: center;
    font-size: 16px;
    padding: 2px;
  }
  /* BUTTOM TO-TOP */
  .buttom-to-top a {
    position: absolute;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    padding: 10px 10px;
    right: 5%;
    bottom: 6%;
    position: fixed;
    z-index: 200;
    border-radius: 50%;
    font-size: 1.5rem;
    background-color: var(--color-dark-one);
    transition: all 0.3s;
    /* visibility: hidden;
  opacity: 1; */
  }
  .sticky.buttom-to-top a {
    visibility: visible;
    opacity: 0.9;
  }
  .buttom-to-top a:hover {
    transition: all 0.3s;
    opacity: 1;
    transform: scale(1.1);
  }
  .buttom-to-top i {
    font-size: 28px;
    color: var(--background-color-black);
  }
}
