* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  width: 100%;
  height: 100vh;
}

main {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: #000;
  transition: color 0.2s ease-in-out;
  text-transform: uppercase;
  padding: 0.5rem 1rem 0.5rem 1rem;
  border-bottom: 0.2rem #fff;
  transition: 0.2s ease-in-out;
}
a:hover {
  border-bottom: solid 0.2rem #8226af;
  border-top: solid 0.2rem #8226af;
}

p, h1, h2, h3 {
  margin: 0;
  padding: 0;
}

i {
  margin-right: 0.5rem;
}

hr {
  width: 90%;
  margin-inline: auto;
  color: #fff;
}

ul {
  list-style: none;
}

.header-container {
  background-color: #fff;
}
.header-container .top {
  width: 100%;
  height: 1.5rem;
  background-color: #8226af;
  margin-bottom: 1rem;
}
.header-container-logo {
  width: 150px;
}
.header-container-nav {
  max-width: 1148px;
  margin: 0 auto;
}
.header-container .btn-primary {
  border: solid 0.2rem #fff;
  border-radius: 0.5rem;
  box-shadow: -1px 1px 5px #8226af;
  transition: all 0.6s ease-in-out;
}
.header-container .btn-primary:hover {
  box-shadow: inset -1px 1px 35px #8226af;
  border: solid 0.2rem #fff;
  transition: all 0.6s ease-in-out;
}

.nav {
  max-width: 1148px;
  margin: 0 auto;
  height: 70px;
  padding-inline: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.hamburger {
  display: none;
  border: none;
  background: none;
  border-top: 3px solid #8226af;
  cursor: pointer;
  z-index: 3;
}

.hamburger::after,
.hamburger::before {
  content: " ";
  display: block;
  width: 30px;
  height: 3px;
  background: #8226af;
  margin-top: 5px;
  position: relative;
  transition: 0.3s;
}

@media screen and (max-width: 821px) {
  .hamburger {
    display: block;
  }
  .nav-list {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #de9f18;
    clip-path: circle(100px at 90% -25%);
    transition: 1s ease-out;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 0;
    pointer-events: none;
    z-index: 2;
  }
  .nav-list li:nth-child(1) a {
    transition: 0.5s 0.1s;
  }
  .nav-list li:nth-child(2) a {
    transition: 0.5s 0.2s;
  }
  .nav-list li:nth-child(3) a {
    transition: 0.5s 0.3s;
  }
  .nav-list li:nth-child(4) a {
    transition: 0.5s 0.4s;
  }
  .nav-list li:nth-child(5) a {
    transition: 0.5s 0.5s;
  }
  /* Estilos ativos */
  .nav.active .nav-list {
    clip-path: circle(1500px at 90% -15%);
    pointer-events: all;
  }
  .nav.active .nav-list a {
    opacity: 1;
  }
  .nav.active .hamburger {
    position: fixed;
    top: 26px;
    right: 16px;
    border-top-color: transparent;
  }
  .nav.active .hamburger::before {
    transform: rotate(135deg);
  }
  .nav.active .hamburger::after {
    transform: rotate(-135deg);
    top: -7px;
  }
}
.section-01 {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  max-width: 1148px;
  margin: 0 auto;
}

.container-info {
  width: 100%;
  text-align: center;
  margin: 2rem 0rem;
}
.container-info .title {
  font-size: 5rem;
  text-transform: capitalize;
  color: #8226af;
  font-weight: 700;
}
@media screen and (max-width: 821px) {
  .container-info .title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
  }
}
.container-info .title .title-plus {
  font-size: 5rem;
  color: #fff;
  background-color: #8226af;
  padding: 0.5rem 1.5rem;
  /*clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%)*/
  clip-path: circle(50% at 50% 50%);
  border-radius: 10rem;
}
@media screen and (max-width: 821px) {
  .container-info .title .title-plus {
    font-size: 2.5rem;
  }
}
.container-info .info-title {
  font-size: 1.2rem;
  color: #000;
  text-transform: capitalize;
  margin-bottom: 2.5rem;
}

.container-planos {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 2rem 0rem;
  gap: 2rem;
}
.container-planos .planos {
  width: 320px;
  height: 440px;
  background-color: #8226af;
  border-radius: 2rem;
  transition: transform 1s ease-in-out;
  margin: 1rem 0;
  text-align: center;
  position: relative;
}
.container-planos .planos:hover {
  transform: translateY(-1rem);
}
.container-planos .promo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 75%;
  height: 30px;
  text-align: center;
  margin: 0 auto;
  position: absolute;
  border-radius: 1rem;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 1.5rem;
  background: red;
  font-size: 2rem;
  color: #fff;
  font-size: 1.5rem;
}
.container-planos .card-01 {
  width: 100%;
  margin-top: 3rem;
}
.container-planos .card-01 .plano {
  color: #fff;
  font-size: 3.4rem;
  text-transform: uppercase;
  font-weight: 700;
  width: 100%;
}
.container-planos .card-01 .plano-info {
  color: #fff;
  font-size: 1.2rem;
  text-transform: capitalize;
}
.container-planos .card-01 .value {
  font-size: 3.4rem;
  color: #fff;
  position: relative;
}
.container-planos .card-01 .value .value-info {
  position: absolute;
  top: 0.4rem;
  font-size: 2rem;
  color: #fff;
}
.container-planos .datails {
  font-size: 1.4rem;
  color: #fff;
}
.container-planos .btn-default {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  color: #fff;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 2rem;
  color: #000;
}
.container-planos .btn-default:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #de9f18;
  border-radius: 0.5rem;
  z-index: -2;
}
.container-planos .btn-default:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #de9f18, 15%;
  transition: all 0.3s;
  border-radius: 0.5rem;
  z-index: -1;
}
.container-planos .btn-default:hover {
  color: #fff;
}
.container-planos .btn-default:hover:before {
  width: 100%;
}

.section-02 {
  width: 100%;
  height: 100%;
  margin-bottom: 2rem;
}
.section-02 img {
  width: 100%;
  height: 100%;
}

.section-03 {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-03 .section-03-cover {
  width: 100%;
  background-color: #8226af;
}
.section-03 .content {
  width: 100%;
  height: 100%;
  max-width: 1148px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
  padding: 2rem;
}
.section-03 .content .content-card {
  width: 300px;
  height: 240px;
  background-color: transparent;
  border-radius: 2rem;
  transition: transform 1s ease-in-out;
  border: solid 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.section-03 .content .content-card:hover {
  transform: translateY(-1rem);
}
.section-03 .content .content-card:hover {
  border-color: #de9f18;
  -webkit-animation: rotate-hor-center 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.section-03 .content .content-card .fa-phone,
.section-03 .content .content-card .fa-dollar-sign,
.section-03 .content .content-card .fa-whatsapp {
  font-size: 5rem;
  color: #de9f18;
}
.section-03 .content .content-title {
  color: #fff;
  font-size: 1.2rem;
}
.section-03 .content .content-info {
  color: #fff;
}

@-webkit-keyframes rotate-hor-center {
  0% {
    -webkit-transform: rotateX(0);
    -webkit-transform-transform: rotateX(0);
  }
  100% {
    -webkit-transform: rotateY(-360deg);
    -webkit-transform-transform: rotateY(-360deg);
  }
}
.section-04 {
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}
.section-04 .title-section-04 {
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 5rem;
  font-weight: bold;
  text-transform: capitalize;
  margin-top: 2rem;
}
@media screen and (max-width: 821px) {
  .section-04 .title-section-04 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
}
.section-04 .section-04-content {
  max-width: 1148px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
}
@media screen and (max-width: 821px) {
  .section-04 .section-04-content {
    flex-direction: column;
  }
}
.section-04 .section-04-content .content-list {
  width: 374px;
  height: auto;
  border: solid 2px #000000;
  background-color: rgba(0, 0, 0, 0.168627451);
  border-radius: 1rem;
  padding: 1rem;
}
@media screen and (max-width: 821px) {
  .section-04 .section-04-content .content-list {
    padding-inline: 0.5rem;
  }
}
.section-04 .section-04-content .content-list ol li {
  font-size: 1.5rem;
}
.section-04 .section-04-content .content-perguntas {
  width: 100%;
  color: #000;
  font-size: 1.5rem;
}
.section-04 .section-04-content .content-response {
  width: 100%;
  color: #000;
}
@media screen and (max-width: 821px) {
  .section-04 .section-04-content .content-response {
    padding-inline: 0.5rem;
  }
}
.section-04 .section-04-content .response {
  font-size: 2rem;
  font-weight: bold;
}
.section-04 .section-04-content .response span {
  font-weight: normal;
  font-size: 1.5rem;
  line-height: 1rem;
}

.section-05 {
  width: 100%;
  height: auto;
}
.section-05-title {
  text-align: center;
  font-size: 3rem;
  background-color: #8226af;
  padding: 2rem 0;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.4rem;
}
.section-05 .section-05-content {
  max-width: 1148px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.section-05 .section-05-content .content-card {
  width: 220px;
  border: solid 2px;
  border-radius: 1rem;
  padding: 2rem 1rem;
  text-align: center;
  margin: 2rem 0;
}
.section-05 .section-05-content .content-card i {
  width: 100%;
  font-size: 5rem;
  margin: 1rem 0;
  color: #000;
}
.section-05 .section-05-content .content-card .content-title {
  font-size: 2rem;
  color: #000;
}
.section-05 .section-05-content .content-card .btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  color: #fff;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 2rem;
  margin: 0;
  border: none;
}
.section-05 .section-05-content .content-card .btn:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #de9f18;
  border-radius: 0.5rem;
  z-index: -2;
}
.section-05 .section-05-content .content-card .btn:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #de9f18, 15%;
  transition: all 0.3s;
  border-radius: 0.5rem;
  z-index: -1;
}
.section-05 .section-05-content .content-card .btn:hover {
  color: #fff;
}
.section-05 .section-05-content .content-card .btn:hover:before {
  width: 100%;
}

.contaiener-footer {
  width: 100%;
  height: auto;
  background-color: #8226af;
}
.contaiener-footer .container-footer-cover {
  width: 100%;
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1148px;
  margin: 0 auto;
}
.contaiener-footer .container-footer-cover .footer-content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}
@media screen and (max-width: 821px) {
  .contaiener-footer .container-footer-cover .footer-content {
    gap: 0;
  }
}
.contaiener-footer .container-footer-cover .footer-content .card-footer {
  width: 250px;
  height: 200px;
  text-align: start;
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
}
.contaiener-footer .container-footer-cover .footer-content .card-footer img {
  width: 150px;
  margin-bottom: 1rem;
  margin: 0 auto;
}
.contaiener-footer .container-footer-cover .footer-content .card-footer .footer-title {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  position: relative;
  text-align: center;
  border-block: blue;
}
.contaiener-footer .container-footer-cover .footer-content .card-footer .footer-title::before {
  position: absolute;
  content: "";
  left: -0.5rem;
  top: 0;
  color: #000;
  background-color: #fff;
  padding: 1rem;
  border-radius: 50%;
  text-align: center;
  clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
  animation: girar 3s linear infinite;
}
.contaiener-footer .container-footer-cover .footer-content .card-footer .footer-title::before:hover {
  animation-play-state: paused;
  cursor: pointer;
}
.contaiener-footer .container-footer-cover .footer-content .card-footer p {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
}
.contaiener-footer .container-footer-cover .footer-content .card-footer i {
  font-size: 1.5rem;
  transition: transform 0.5s;
  cursor: pointer;
}
.contaiener-footer .container-footer-cover .footer-content .card-footer i:hover {
  transform: scale(1.5);
  color: #000;
}

.copy {
  text-align: center;
  font-size: 1.5rem;
  padding-inline: 0.5rem;
  color: #fff;
}
@media screen and (max-width: 821px) {
  .copy {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 480px) {
  .copy {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 360px) {
  .copy {
    font-size: 0.8rem;
  }
}

.whatsapp {
  width: 80px;
  position: fixed;
  right: 1.5rem;
  bottom: 1rem;
}
@media screen and (max-width: 821px) {
  .whatsapp {
    bottom: 1rem;
    width: 50px;
  }
}
.whatsapp a {
  border: none;
}
.whatsapp img {
  width: 100%;
  animation: pulse 1s linear infinite;
}

@-webkit-keyframes girar {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/*# sourceMappingURL=main.css.map */
