html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Red Hat Display', sans-serif;
  scroll-behavior: smooth;
}
#animate-img {
  transform: translatey(0px);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

#typewriter-text {
  overflow: hidden; /* Para garantir que o texto seja cortado */
  border-right: .15em solid orange; /* Efeito de cursor */
  white-space: nowrap; /* Para garantir que o texto seja exibido em uma linha */
  margin: 0 auto; /* Para centralizar o texto */
  letter-spacing: .15em; /* Espaçamento entre letras */
  animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite; /* Animação */
}

/* Animação de digitação */
@keyframes typing {
  from {
      width: 0; /* Começa sem texto */
  }
  to {
      width: 100%; /* Termina com todo o texto */
  }
}

/* Animação do cursor piscando */
@keyframes blink-caret {
  from, to {
      border-color: transparent; /* Torna o cursor invisível */
  }
  50% {
      border-color: transparent; /* Faz o cursor aparecer */
  }
}

header {
  background: #20196f;
  padding: 15px 0;
  margin: auto;
  width: 100%;
  height: auto;
  -webkit-box-shadow: 0px 10px 14px -13px #da6a48;
  box-shadow: 0px 10px 14px -13px #da6a48;
  z-index: 9;
  position: relative;
}
header .login {
  font-size: 18px;
  overflow: hidden;
  padding: 10px 20px;
  background: transparent;
  color: #fff;
  border: 1px solid #ff7a41;
  font-weight: 500;
  border-radius: 30px;
  text-transform: capitalize;
  transition: all 500ms ease;
  cursor: pointer;
  z-index: 1;
}
header .login:hover {
  overflow: hidden;
  padding: 10px 20px;
  background: transparent;
  color: #ff7a41;
  border: 1px solid #fff;
  font-weight: 500;
  border-radius: 30px;
  text-transform: capitalize;
  transition: all 500ms ease;
  z-index: 1;
}
header .logo {
  width: 130px;
  height: auto;
}
header .navbar-nav li .nav-link {
  color: #fff;
  margin-right: 20px;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 2px solid transparent;
}
header .navbar-nav li .nav-link:hover {
  border-bottom: 2px solid #ff7a41;
}

.banner {
  background-image: url(../assets/images/bg-banner.png);
  background: #20196f; 
  width: 100%;
  height: auto;
  color: #fff;
  padding: 90px 0px;
}
.banner h2 {
  font-weight: 700;
  font-size: 52px;
}
.banner .min {
  font-size: 20px;
  color: #fff;
}
.banner p {
  font-weight: 400;
  font-size: 30px;
  color: #ff7c2a;
}
.banner .int {
  text-align: center;
}

.section-1 {
  padding: 100px 0px;
}
.section-1 h2 {
  line-height: 45px;
  font-size: 42px;
  font-weight: 700;
  color: black;
}
.section-1 p {
  color: black;
  font-size: 22px;
  font-weight: 500;
}
.section-1 ul.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.section-1 ul li {
  color: rgb(88, 119, 144);
  position: relative;
  list-style: none;
  padding-left: 15px;
  margin-bottom: 10px;
  font-size: 22px;
}
.section-1 .icon-circle li:before, .icon-circle span:before, .icon-line li:before, .icon-line span:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all .5s;
  background-color: #ff7a41;
}

.section-2 {
  padding: 100px 0px;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  background-position: initial;
}
.section-2 h3 {
  line-height: 45px;
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  color: black;
  margin-bottom: 15px;
}
.section-2 h4 {
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  color: black;
  margin-top: 20px;
}
.section-2 p {
  text-align: center;
  color: black;
  font-size: 22px;
  font-weight: 400;
}
.section-2 .card-grid {
  padding: 25px;
  border-radius: 20px;
}
.section-2 .card-grid:hover {
  border-radius: 20px;
  transition-duration: 1s;
  transition-delay: 0s;
  background-color: #20196f;
}
.section-2 .card-grid:hover h4, .section-2 .card-grid:hover p  {
  transition-duration: 1s;
  transition-delay: 0s;
  color: #fff;
}
.section-3 {
  background: #20196f;
  padding: 80px 0;
}
.section-3 h4 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
}
.section-3 .btn-contact {
  background: transparent;
  color: #FFF;
  border: 1px solid #ff7a41;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 40px;
  border-radius: 40px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transform: scale(1);
  animation: pulse 3s infinite;
}
.section-3 .btn-contact:hover {
  background: transparent;
  color: #ff7a41;
  border: 1px solid #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 40px;
  border-radius: 40px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transform: scale(1);
  animation: pulse 3s infinite;
  transition: all 900ms ease;
  cursor: pointer;
}
.section-3 .btn-contact .whatsapp {
  font-size: 35px;
  margin-right: 10px;
}

.footer {
  padding: 50px 0px;
  background: #20196f;
}
.footer .whatsapp-btn {
  position: fixed;
  top: 88%;
  right: 2%;
  z-index: 10000000;
}
.footer .logo {
  width: auto;
  height: auto;
  margin-bottom: 20px;
}
.footer .logo:hover {
  color: #fff;
}
.footer h4 {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 15px;
  margin-top: 25px;
}
.footer .text-footer {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer ul li {
  color: #FFF;
  position: relative;
  list-style: none;
  padding-left: 15px;
  margin-bottom: 10px;
  font-size: 16px;
}
.footer ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
}
.footer ul li a:hover {
  color: #3db1e3;
}
.footer .icon-circle li:before, .icon-circle span:before, .icon-line li:before, .icon-line span:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all .5s;
  background-color: #ff7a41;
}
.footer .icon-social a {
  text-decoration: none;
}
.footer .icon-social a i {
  width: 35px;
  height: 35px;
  background: #FFF;
  border-radius: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #ff7a41;
  font-size: 25px;
  text-align: center;
  margin-right: 20px;
}
.footer .icon-social a i:hover {
  color: #fff;
  background-color: #3db1e3;
  transform: translatey(0px);
}
.footer-bar {
  border-top: 1px solid #ff7a41;
  padding: 15px 0px;
  background: #20196f;
  text-align: center;
  color: #FFF;
  font-weight: 500;
  font-size: 16px;
}
.footer .instagram .instagram-social-icon {
  width: 40px;
  height: auto;
}

.section-teamspeak-price {
  padding: 100px 0;
}
.section-teamspeak-price .card {
  background: #f3f2f7;
  border-radius: 10px;
  border: 1px solid #f1f1f1;
  font-size: 18px;
  margin-bottom: 25px;
}
.section-teamspeak-price .card-body {
  text-align: center;
}
.section-teamspeak-price img {
  width: 20%;
}
.section-teamspeak-price .card-body .card-text {
  font-size: 26px;
}
.section-teamspeak-price .card-body .card-text span {
  font-size: 18px;
}
.section-teamspeak-price h3 {
  line-height: 45px;
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  color: #132f51;
  margin-bottom: 25px;
}
.section-teamspeak-price h5 {
  color: #ff7a41;
}
.section-teamspeak-price .card-link {
  background-color: #20196f;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  padding: 10px 30px;
  border-radius: 5px 35px 5px 35px;
}
.section-teamspeak-price ul {
  list-style: none;
  text-align: center;
  padding: 0;
  font-size: 16px;
}

@keyframes pulse {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.1);
  }
  100% {
      transform: scale(1);
  }
}

#btn-pulse {
  animation: pulse 2s infinite;
}

@media screen and (max-width: 1368px) {
  body {
      zoom: 0.9;
  }
  .banner h2 {
      font-size: 40px;
  }
  .banner p {
      font-size: 18px;
  }
  .banner .btn-contact, .banner .btn-contact:hover {
      margin-top: 10px;
  }
  .section-1 h2 {
      font-size: 26px;
  }
  .section-1 p {
      font-size: 18px;
  }
  .section-2 h3 {
      font-size: 26px;
  }
  .section-2 p {
      font-size: 18px;
  }
  .section-3 h4 {
      font-size: 26px;
  }
  .section-3 .btn-contact, .section-3 .btn-contact:hover {
      margin-top: 0;
      font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  body {
    zoom: none;
    width: 100%;
    margin: auto;
  }
  header .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
  header .navbar .navbar-toggler {
    border: none;
    box-shadow: none;
  }
  header .navbar .navbar-toggler .navbar-toggler-icon {
    background-image: url(../assets/images/menu.png);
  }
  header .login {
    font-size: 14px;
    padding: 5px 10px;
  }
  header .navbar-nav li .nav-link {
    margin-right: 0;
  }
  header .navbar-collapse {
    text-align: center;
  }
  header .next {
    display: inline-block !important;
    text-align: center;
  }
  .banner {
    padding: 60px 0px;
    text-align: center;
  }
  .banner .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
  .banner .mobile {
    flex-direction: column-reverse;
  }
  .banner h2 {
      font-size: 30px;
  }
  .banner .btn-contact .whatsapp {
      font-size: 20px;
      margin-right: 5px;
  }
  .section-1 {
      text-align: center;
      padding: 40px 0px;
  }
  .section-1 h2 {
      line-height: 1em;
      margin-top: 15px;
      margin-bottom: 20px !important;
  }
  .section-1 ul.icon-list {
      padding-left: 2rem;
  }
  .section-1 ul li {
      text-align: left;
      width: 80%;
      margin-left: 10%;
  }
  .section-2 {
    background-color: #f3f4f6;
    padding: 40px 0px;
    background-image: none;
  }
  .section-2 .card-grid {
    padding: 5px 25px;
  }
  .section-2 h3 {
    line-height: 1em;
  }
  .section-2 img {
    width: 70px;
    height: auto;
  }
  .section-2 h4 {
    margin-bottom: 0;
  }
  .section-3 {
      text-align: center;
  }
  .section-3 .btn-contact {
    margin-top: 20px;
  }
  .section-3 .btn-contact:focus {
    margin-top: 20px;
  }
  .footer {
      text-align: center;
  }
  .footer .none-mobile {
      display: none;
  }
  .footer .icon-social a i {
    margin-right: 0;
  }
}
