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

header {
  width: 100%;
  padding: 40px;
}

.header-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

i {
  color: #F7F7F7;
}

.header-icons {
  justify-self: start;
  display: flex;
  gap: 40px;
}
.header-icons a {
  font-size: 1.2rem;
}

.header-icons a:hover i {
  animation: translateY 0.5s infinite alternate;
  color: #A9CFE5;
}

@keyframes translateY {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-8px) scale(1.1);
  }
}
.header-logo {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-logo img {
  width: 100%;
  max-width: 230px;
}

.header-items {
  justify-self: end;
  display: flex;
  gap: 20px;
}

.header-items a {
  color: #F7F7F7;
  font-size: 1.1rem;
  font-weight: 600;
}

.header-items a:hover {
  animation: scaleItem 0.5s infinite alternate;
  color: #A9CFE5;
}

@keyframes scaleItem {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-8px) scale(1.2);
  }
}
@media screen and (max-width: 1415px) {
  .header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }
  .header-icons,
  .header-items {
    justify-content: center;
  }
  .header-logo {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }
  .header-icons a {
    font-size: 0.8rem;
  }
  .header-items {
    padding-top: 10px;
    gap: 50px;
  }
  .header-items a {
    font-size: 0.9rem;
  }
  .header-logo img {
    max-width: 200px;
  }
}
@media screen and (max-width: 480px) {
  .header-items {
    gap: 20px;
  }
  .header-items a {
    font-size: 0.8rem;
  }
}
.header-content .header-icons,
.header-content .header-logo,
.header-content .header-items {
  opacity: 0;
  transition: all 0.6s ease;
  position: relative;
  transform: translateY(-100%);
}

.header-content.init .header-icons,
.header-content.init .header-logo,
.header-content.init .header-items {
  opacity: 1;
  transform: translateY(0);
}

.home {
  position: relative;
}

.home::before {
  content: "";
  position: absolute;
  background-image: linear-gradient(to bottom, rgba(29, 63, 97, 0.1), #021B33), url("../Assets/imagem-tecnologia.webp");
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  z-index: -1;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero {
  color: #F7F7F7;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero h1 {
  text-align: center;
  line-height: 150%;
  max-width: 940px;
  font-size: 3rem;
}
.hero p {
  text-align: center;
  margin: 14px 0;
  font-size: 1rem;
}

.btn-contact {
  padding: 14px 28px;
  color: #F7F7F7;
  background-color: #A9CFE5;
  border: 0;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 800;
  margin: 14px 0;
  animation: scaleButton 0.5s infinite alternate;
}

.btn-contact:hover {
  color: #A9CFE5;
  border: 1px solid #A9CFE5;
  background-color: #F7F7F7;
}

@keyframes scaleButton {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.07);
  }
}
@media screen and (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }
  .hero h1 {
    font-size: 1.8rem;
    padding: 0 14px;
    width: 100%;
  }
  .hero p {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 480px) {
  .hero {
    min-height: 50vh;
  }
  .hero h1 {
    font-size: 1.4rem;
  }
  .hero p {
    font-size: 1rem;
  }
}
.whatsapp-icon {
  width: 100%;
  height: auto;
  display: flex;
}

.wpp-content {
  position: fixed;
  right: 0;
  bottom: 0;
}
.wpp-content img {
  border: none;
  cursor: pointer;
  width: 70px;
}
.wpp-content img:hover {
  animation: scaleButton 0.5s infinite alternate;
}

.hero h1,
.hero p,
.hero .btn-contact {
  opacity: 0;
  transition: all 0.5s ease;
  position: relative;
}

.hero h1 {
  transform: translateX(-100px);
}

.hero p {
  transform: translateX(100px);
}

.hero .btn-contact {
  transform: translateX(-100px);
}

.hero.init h1,
.hero.init p,
.hero.init .btn-contact {
  transform: translateX(0);
  opacity: 1;
}

.hero.init h1 {
  transition-delay: 0.1s;
}

.hero.init p {
  transition-delay: 0.3s;
}

.hero.init .btn-contact {
  transition-delay: 0.5s;
}

.services {
  display: flex;
  background-color: #021B33;
  min-height: 90vh;
  width: 100%;
  justify-content: center;
  flex-direction: column;
  padding: 15px;
}

.services-content {
  display: flex;
  color: #F7F7F7;
  overflow: hidden;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 60px;
}

.check,
.support,
.maintenance {
  flex-direction: column;
  flex: 1;
  border: 1px solid #F7F7F7;
  border-radius: 10px;
  padding: 30px;
  width: 50vw;
  min-width: 250px;
  height: auto;
  min-height: 350px;
  align-items: center;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.check h1,
.support h1,
.maintenance h1 {
  font-size: 1.3rem;
}
.check p,
.support p,
.maintenance p {
  font-size: 0.9rem;
  max-width: 100%;
  text-align: justify;
  padding-top: 30px;
}

.check-img-title,
.support-img-title,
.maintenance-img-title {
  gap: 40px;
  max-width: 100%;
}
.check-img-title i,
.support-img-title i,
.maintenance-img-title i {
  font-size: 4rem;
  padding-bottom: 15px;
}

.services-content .check,
.services-content .support,
.services-content .maintenance {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.services-content.init .check,
.services-content.init .support,
.services-content.init .maintenance {
  opacity: 1;
}

.services-content .check {
  transition-delay: 0.1s;
}

.services-content .support {
  transition-delay: 0.3s;
}

.services-content .maintenance {
  transition-delay: 0.5s;
}

.order {
  padding: 60px;
  min-height: 90vh;
  background-color: #12577B;
  align-content: center;
}

.order-content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.order-content img {
  border-radius: 20px;
  width: 100%;
  max-width: 650px;
  text-align: center;
  justify-items: center;
}
.order-content a {
  background-color: #021B33;
  color: #F7F7F7;
  padding: 20px;
  border-radius: 10px;
}

.order-description h2 {
  text-align: center;
  font-size: 2rem;
  padding-bottom: 30px;
}

.order-item {
  display: flex;
  padding: 20px;
  width: 100%;
  min-width: 300px;
  align-items: center;
  gap: 20px;
  text-align: justify;
}

.order-title-span h3 {
  font-size: 1.1rem;
  color: #021B33;
}
.order-title-span span {
  font-size: 0.9rem;
  color: #F7F7F7;
}

.order-number {
  justify-content: center;
  text-align: center;
  align-content: center;
  width: 100%;
  max-width: 60px;
  height: 60px;
  background-color: #021B33;
  border-radius: 100%;
  color: #F7F7F7;
}

.order-btn-init {
  text-align: center;
  padding: 20px;
}

.blue {
  color: #021B33;
}

.white {
  color: #F7F7F7;
}

@media screen and (max-width: 768px) {
  .order-content {
    flex-direction: column;
    gap: 40px;
  }
}
@media screen and (max-width: 1225px) {
  .order-content {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  .order-description h2 {
    text-align: center;
  }
}
.order-content img {
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.5s ease-in-out;
}

.order-content.init img {
  opacity: 1;
  transform: translateX(0);
}

.order-content h2 {
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.5s ease-in-out;
}

.order-content.init h2 {
  opacity: 1;
  transform: translateY(0);
}

.order-description .order-btn-init {
  opacity: 0;
  transition: all 0.5s ease-in-out;
  transition-delay: 0.2s;
}

.order-description.init .order-btn-init {
  opacity: 1;
}

.order-item {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.3s ease;
}

.order-item.init {
  animation: waveUp 0.5s ease forwards;
  opacity: 1;
}

@keyframes waveUp {
  0% {
    transform: translateY(60px);
    opacity: 0;
  }
  60% {
    transform: translateY(-10px);
    opacity: 1;
  }
  80% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}
.order-number span,
.order-title-span h3,
.order-title-span span {
  opacity: 0;
  transform: translateY(60px);
  animation: waveText 0.5s ease forwards;
}

.order-item.init .order-number span {
  animation-delay: 0.1s;
}

.order-item.init .order-title-span h3 {
  animation-delay: 0.3s;
}

.order-item.init .order-title-span span {
  animation-delay: 0.5s;
}

@keyframes waveText {
  0% {
    transform: translateY(60px);
    opacity: 0;
  }
  60% {
    transform: translateY(-10px);
    opacity: 1;
  }
  80% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.faq {
  display: flex;
  background-color: #F7F7F7;
  min-height: 90vh;
  width: 100%;
  justify-content: center;
  flex-direction: column;
  padding: 20px !important;
}

.title-faq h2 {
  padding: 30px;
  font-size: 2rem;
  color: #021B33;
}

.faq-content {
  display: grid;
  gap: 20px;
  justify-content: center;
  justify-items: center;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  flex-wrap: wrap;
}

.faq-item {
  display: flex;
  flex: 1;
  flex-direction: column;
  width: 100%;
  height: auto;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid #12577B;
  border-radius: 10px;
  text-align: center;
  align-items: center;
  align-self: start;
}

.faq-question {
  background: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  width: 100%;
  height: 100%;
  min-height: 72px;
  text-align: left;
  font-size: 19px;
  color: #021B33;
}
.faq-question span {
  font-size: 1rem;
  display: flex;
}

.faq-question:hover {
  background-color: #A9CFE5;
}

.faq-answer {
  display: none;
  padding: 0 20px;
  overflow: hidden;
  max-height: 0;
  text-align: justify;
  font-size: 0.9rem;
  color: #12577B;
  transition: max-height 0.3s ease-out;
}

.faq-answer.active {
  max-height: 200px;
  display: block;
  padding: 20px;
}

.arrow {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
  color: #021B33;
}

.arrow.active {
  transform: rotate(180deg);
}

@media screen and (max-width: 850px) {
  .faq-content {
    grid-template-columns: auto;
  }
}
.title-faq h2 {
  opacity: 0;
  transition: all 0.5s ease-in-out;
  transform: translateY(-20px);
}

.title-faq.init h2 {
  opacity: 1;
  transform: translateY(0);
}

.faq-content .left {
  opacity: 0;
  transition: all 0.5s ease-in-out;
  transform: translateX(-100%);
}

.faq-content .right {
  opacity: 0;
  transition: all 0.5s ease-in-out;
  transform: translateX(100%);
}

.faq-content.init .left,
.faq-content.init .right {
  opacity: 1;
  transform: translateX(0);
}

.footer {
  padding: 30px;
}

.footer-content {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  align-items: center;
  gap: 20px;
}

.footer-social-media,
.footer-logo,
.contact {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.footer-icons {
  display: flex;
  gap: 30px;
  justify-content: center;
}
.footer-icons a {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.footer-icons a:hover i {
  animation: translateY 0.5s infinite alternate;
  color: #A9CFE5;
}

@keyframes translateY {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-8px) scale(1.1);
  }
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
}

.contacts {
  align-items: center;
  position: relative;
  flex-direction: column;
  flex: 1;
  gap: 20px;
}

.footer-items {
  position: relative;
  display: flex;
  gap: 20px;
}

.email-contact {
  display: flex;
}
.email-contact img {
  width: 70px;
}
.email-contact span {
  width: 100%;
  align-content: center;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  color: #F7F7F7;
}

.phone-contact {
  display: flex;
}
.phone-contact img {
  width: 70px;
}
.phone-contact span {
  width: 100%;
  align-content: center;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  color: #F7F7F7;
}

.copyright {
  text-align: center;
  padding: 10rem;
}
.copyright span {
  font-size: clamp(0.7rem, 2.5vw, 0.8rem);
  color: #F7F7F7;
}

@media screen and (max-width: 1152px) {
  .footer-content {
    display: flex;
  }
  .footer-icons {
    gap: 20px;
  }
  .footer-icons a {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
  }
  .email-contact,
  .phone-contact {
    display: flex;
  }
  .email-contact img,
  .phone-contact img {
    width: 50px;
  }
  .email-contact span,
  .phone-contact span {
    font-size: 0.8rem;
  }
  .copyright {
    padding: 10rem;
  }
  .copyright span {
    font-size: clamp(0.7rem, 2.5vw, 0.7rem);
  }
}
@media screen and (max-width: 810px) {
  .footer-content {
    padding-bottom: 30px;
    flex-direction: column;
  }
}
.footer {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.footer.init {
  opacity: 1;
}

.forms {
  padding: 30px !important;
}

.form-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 700px;
  min-height: 60vh;
  color: #F7F7F7;
  border: 1px solid #F7F7F7;
  border-radius: 20px;
  padding: 40px !important;
  overflow-x: hidden;
  position: relative;
}

.form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../Assets/imagem-tecnologia.webp");
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
  z-index: -1;
}

.back-home {
  display: flex;
  align-items: center;
  padding: 20px 0;
  text-align: center;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 10px;
}
.back-home a {
  font-size: 0.7rem;
  color: #F7F7F7;
  text-decoration: underline;
}
.back-home a:hover {
  color: #A9CFE5;
}

.logo {
  text-align: center;
}
.logo img {
  width: 100%;
  max-width: 200px;
}

.form-header {
  display: flex;
  position: relative;
  overflow: hidden;
  flex-direction: column;
  text-align: center;
  padding: 20px;
}
.form-header h1 {
  font-size: 3rem;
  padding-bottom: 20px;
}
.form-header span {
  font-size: 1rem;
}

.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
}

.btn-contact {
  padding: 13px 28px;
  color: #F7F7F7;
  background-color: #A9CFE5;
  border: 0;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 800;
  margin: 14px 0;
  animation: scaleButton 0.5s infinite alternate;
}

.btn-contact:hover {
  color: #A9CFE5;
  border: 1px solid #A9CFE5;
  background-color: #F7F7F7;
}

@keyframes scaleButton {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.07);
  }
}
.input-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  text-align: center;
  padding-bottom: 15px;
}
.input-group input {
  background: transparent;
  border-radius: 10px;
  height: 40px;
  color: white;
  padding-left: 10px;
  margin-top: 10px;
  width: 50vw;
  max-width: 600px;
}

@media screen and (max-width: 768px) {
  .form-header h1 {
    font-size: 2rem;
    padding-bottom: 20px;
  }
  .form-header span {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 480px) {
  .form-header h1 {
    font-size: 1.4rem;
    padding-bottom: 20px;
  }
  .form-header span {
    font-size: 0.7rem;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Sora", sans-serif;
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: #021B33;
  overflow-x: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

button {
  font-family: "Sora", sans-serif;
  cursor: pointer;
}

svg {
  width: 100%;
}

img {
  width: 100%;
}

a {
  cursor: pointer;
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */