@charset "UTF-8";
/*PRIMARY*/
/*SECONDARY*/
/*COMPLEMENTARY*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  font-family: "Nunito Sans", sans-serif;
  overflow-x: hidden;
  color: #363636;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body::before {
  font-size: 14px;
  padding: 20px;
  z-index: 100;
  position: fixed;
  right: 0;
  display: none;
}

.main {
  margin: 0 auto;
  max-width: 1920px;
}

.btn {
  display: inline-block;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 35px;
  text-align: center;
  text-decoration: none;
  padding: 20px 30px;
  transition: all 0.25s;
  border: 1px solid transparent;
  text-transform: uppercase;
}
.btn.--primary {
  background: #0897E9;
}
.btn.--primary:hover {
  background: #055B8C;
}
.btn.--secondary {
  background: #fff;
  color: #0897E9;
  border: 1px solid #0897E9;
}
.btn.--secondary:hover {
  color: #fff;
  background: #055B8C;
}

a {
  transition: all 0.25s;
}

.bold {
  font-weight: bold;
}

.card-gray {
  background: #eee;
  display: flex;
  flex-flow: column;
  padding: 24px;
  border-radius: 16px;
}
.card-gray .card-gray-img {
  border-radius: 8px;
  box-shadow: 2px 2px 20px rgba(110, 130, 165, 0.3215686275);
  margin-bottom: 30px;
  width: 100%;
}
.card-gray .card-gray-tit {
  color: #0897E9;
  font-size: 14px;
  margin-bottom: 24px;
}
.card-gray .card-gray-txt {
  font-size: 16px;
}

.card-color {
  position: relative;
  border-radius: 16px;
  padding: 50px 240px 50px 50px;
  overflow: hidden;
  min-height: 267px;
}
.card-color.--purple {
  background: #6B48FF;
  color: #fff;
}
.card-color .card-color-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: initial;
  background: #fff;
  color: #0897E9;
  border-radius: 50%;
  height: 40px;
  width: 40px;
}
.card-color .card-color-content .card-color-icon {
  margin-bottom: 14px;
}
.card-color .card-color-content .card-color-txt {
  font-size: 16px;
  margin-bottom: 24px;
}
.card-color .card-color-content .card-color-tit {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 39px;
}
.card-color .card-color-img {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 0;
}

.fa-mobile-alt {
  color: #0897E9;
  font-size: 24px;
}

.btnToTop-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: initial;
  padding: 0 160px 20px 160px;
}

.btnToTop {
  color: #0897E9;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

video::-webkit-media-controls {
  display: none !important;
}

video:hover::-webkit-media-controls {
  display: block !important;
}

video::-webkit-media-controls-enclosure {
  display: none !important;
}

video::-webkit-media-controls-panel {
  display: none !important;
}

video::-webkit-media-controls-play-button {
  display: none !important;
}

video::-webkit-media-controls-start-playback-button {
  display: none !important;
}

label {
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 8px;
  display: inline-block;
}

input[type=text] {
  border: 1px solid;
  border-color: #eee;
  font-size: 16px;
  height: 50px;
  border-radius: 40px;
  text-indent: 25px;
  width: 100%;
}
input[type=text]::placeholder {
  color: #D2D2D2;
}

input[type=text]:focus {
  border-color: #0897E9;
  outline: none;
}

input,
label {
  margin: 0;
}

.header {
  padding: 10px;
  border-bottom: 1px solid rgba(210, 210, 210, 0.3);
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.0509803922);
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
}

.totvs-brand {
  background: url("https://navega.cloudtotvs.com.br/uxlib/img/login/img/icon-logo-tovs-blue.svg") no-repeat;
  display: inline-flex;
  font-size: 0 !important;
  margin-right: 39px;
  margin-left: 14px;
  height: 36px;
  width: 32px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: initial;
  margin: 0 auto;
  max-width: 1920px;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 65px;
}
.nav-menu a {
  font-size: 15px;
  color: #363636;
  font-weight: bold;
  text-decoration: none;
}
.nav-menu a:hover {
  color: #0897E9;
}

.language-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: initial;
  display: none;
}

.language-flag {
  font-size: 10px;
  text-align: center;
  cursor: pointer;
}
.card-cta-wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  margin: -130px auto 32px;
  padding: 0 100px;
  z-index: 3;
}

.card-cta {
  position: relative;
  color: #fff;
  overflow: hidden;
  border-radius: 20px;
  padding: 35px 67px;
}
.card-cta .btn {
  position: relative;
  z-index: 1;
}
.card-cta .card-cta-type,
.card-cta .card-cta-title,
.card-cta .card-cta-txt {
  display: block;
  position: relative;
  margin-bottom: 20px;
  line-height: normal;
  z-index: 1;
}
.card-cta.--link {
  position: relative;
  transition: transform 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  padding: 40px;
}
.card-cta.--link .card-cta-txt-wrap {
  width: 310px;
}
.card-cta.--link .card-cta-txt {
  min-height: 140px;
  margin-bottom: 10px;
}
.card-cta.--link:hover {
  transform: translateY(-7px);
}
.card-cta.--media {
  top: initial;
}
.card-cta.--media .card-cta-txt-wrap {
  padding-right: initial;
  position: relative;
  height: 275px;
  width: initial;
  z-index: 1;
}
.card-cta.--media .card-cta-client-logo {
  display: block;
  margin-bottom: 30px;
}
.card-cta.--media .card-cta-txt {
  font-size: 23px;
  font-weight: bold;
  margin-bottom: 0;
  min-height: initial;
  width: 320px;
}

.card-cta-type {
  font-size: 12px;
}

.card-cta-title {
  font-weight: bold;
  font-size: 32px;
}

.card-cta-txt {
  font-size: 16px;
}

.card-cta-shadow {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(to right, rgb(54, 54, 54) 50%, rgba(54, 54, 54, 0.72) 64%, rgba(54, 54, 54, 0) 100%);
  z-index: 0;
}

.card-cta-img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  height: 100%;
}

.card-cta-txt-wrap {
  display: block;
}

.home-banner-area {
  position: relative;
}
.home-banner-area .login-box {
  position: absolute;
  top: 120px;
  right: 285px;
  z-index: 1;
}
.home-banner-area .login-box.--mobile {
  display: none;
}

.home-banner-area-text {
  color: #fff;
  position: absolute;
  top: 120px;
  left: 160px;
  width: 715px;
  z-index: 1;
}
.home-banner-area-text h1, .home-banner-area-text h2 {
  font-weight: bold;
}
.home-banner-area-text h1 {
  font-size: 63px;
  margin-bottom: 40px;
  line-height: 85px;
}
.home-banner-area-text h2 {
  font-size: 35px;
  margin-bottom: 50px;
  line-height: 47px;
}

.home-video-wrap {
  position: relative;
}
.home-video-wrap .home-video-wrap-bg {
  background: rgba(0, 34, 51, 0.8);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.home-video-wrap .video-wrap {
  overflow: hidden;
  max-height: 800px;
}
.home-video-wrap .video-wrap img {
  width: 100%;
}

.login-box {
  display: flex;
  align-items: center;
  flex-flow: column;
  background: color(srgb 0 0 0/0.7);
  color: #fff;
  padding: 40px;
  border-radius: 10px;
  width: 313px;
}
.login-box .btn {
  display: block;
  margin-bottom: 40px;
}

.login-box-logo {
  font-weight: bold;
  font-size: 33px;
  margin-bottom: 40px;
  width: 180px;
}

.login-box-tit {
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 40px;
}

.login-box-txt {
  display: block;
  position: relative;
  font-size: 14px;
  color: #fff;
  line-height: normal;
  padding: 30px 0 0;
  text-align: center;
  text-decoration: none;
}
.login-box-txt:hover {
  text-decoration: none;
  color: #FEAC0E;
}
.login-box-txt:before {
  content: "";
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}

.info {
  background: DarkGray;
  box-shadow: 0 0 1px rgba(169, 169, 169, 0.25);
  color: #fff;
}

.alert {
  background: #0897E9;
  box-shadow: 0 0 1px rgba(8, 151, 233, 0.25);
  color: #fff;
}

.success {
  background: #FEAC0E;
  box-shadow: 0 0 1px rgba(254, 172, 14, 0.25);
  color: #fff;
}

footer {
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: initial;
  gap: 60px;
  padding: 20px 0;
}

.footer-app-txt h4 {
  color: #0897E9;
  font-size: 40px;
  margin-bottom: 50px;
}
.footer-app-txt h5 {
  font-size: 32px;
}
.footer-app-txt h4, .footer-app-txt h5 {
  font-weight: bold;
  line-height: initial;
}

.app-stores-wrap {
  margin-top: 40px;
}

.app-stores-link {
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.app-stores-link .store-qrcode-img {
  margin-right: 20px;
}

.app-store-link {
  display: flex;
  gap: 30px;
}

.footer-copyright {
  background: #363636;
  padding: 20px;
  color: #fff;
  text-align: right;
  font-size: 12px;
}

.page {
  line-height: initial;
}
.page .page-header {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
  margin: 80px 0 65px;
  padding: 0 40px;
}
.page .page-header h1 {
  font-size: 50px;
}
.page .page-title,
.page .page-subtitle {
  font-weight: 800;
}
.page .page-title strong,
.page .page-subtitle strong {
  color: #0897E9;
}
.page .page-title {
  display: block;
  color: #363636;
  font-size: 46px;
  margin-bottom: 32px;
}
.page .page-subtitle {
  font-size: 32px;
  margin-bottom: 36px;
}
.page .page-content {
  padding: 0 160px;
}
.page .page-txt {
  margin-bottom: 24px;
}
.page .page-txt strong {
  font-weight: normal;
  color: #0897E9;
}
.page .page-txt.--txt-img {
  display: flex;
  gap: 20px;
}
.page .page-txt.--txt-img img {
  height: 120px;
  border-radius: 25px;
}
.page .page-txt.--txt-img.--align-right {
  flex-flow: row-reverse;
}
.page .card-cta-shadow {
  background: linear-gradient(to right, rgb(54, 54, 54) 2%, rgb(54, 54, 54) 44%, rgba(54, 54, 54, 0.8) 58%, rgba(54, 54, 54, 0.7) 71%, rgba(54, 54, 54, 0.2) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.page .card-cta-title {
  text-transform: none;
  margin-bottom: 60px;
}
.page .card-cta-txt {
  font-size: 17px;
  margin-bottom: 60px;
}
.page .card-cta-breadcrumb {
  position: relative;
  font-size: 20px;
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  z-index: 2;
}
.page .card-cta-breadcrumb a {
  text-decoration: none;
  color: #fff;
}
.page .card-cta-breadcrumb a:hover {
  text-decoration: underline;
}
.page .login-box-tit {
  font-size: 24px;
}
.page .login-box-txt {
  font-size: 13px;
}
.page .card-cta.--banner {
  height: 420px;
  padding: 60px 630px 35px 120px;
}
.page .card-cta.--banner .card-cta-txt {
  font-size: 24px;
}
.page .card-cta-title,
.page .card-cta-txt,
.page .card-cta-txt-wrap {
  margin-bottom: 32px;
}
.page .card-cta-title {
  font-size: 44px;
}
.page .page .card-cta-txt {
  font-size: 24px;
}
.page .page.--testmonials .card-cta-title {
  width: 450px;
}
.page .cloud-offers-list {
  margin-bottom: 24px;
}
.page .cloud-offers-list dt {
  color: #363636;
  font-weight: bold;
  font-size: 42px;
  margin-bottom: 24px;
}
.page .cloud-offers-list dd {
  position: relative;
  margin-bottom: 8px;
}
.page .cloud-offers-list dd:before {
  content: "";
  display: inline-block;
  background: #0897E9;
  height: 10px;
  border-radius: 30px;
  margin-right: 10px;
  width: 10px;
}
.page .cloud-offers-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
.page .cloud-offers-box-wrap {
  background: #E7FBFC;
  padding: 24px 28px;
  border-radius: 16px;
}
.page .cloud-offers-box-wrap.--prime .cloud-offers-list dd:before {
  background: #563ACC;
}
.page .cloud-offers-box-app {
  margin-bottom: 40px;
}
.page .cloud-offers-app-wrap {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 32px;
}
.page .cloud-offers-app-wrap .card-color-tit {
  max-width: 240px;
}
.page .cloud-offers-app-wrap .card-color-txt {
  max-width: 305px;
}
.page .cloud-offers-app-wrap .wrap {
  background: #eee;
  padding: 42px;
  border-radius: 16px;
}
.page .app-text-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 79px;
}
.page .txt-link {
  color: #0897E9;
  text-decoration: none;
}
.page .txt-link:hover {
  text-decoration: underline;
}
.page .txt-list {
  margin-bottom: 24px;
}
.page .txt-list li {
  margin-left: 30px;
}
.page .page-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.page .testimonials-media-links-wrap {
  margin-top: 90px;
}
.page.--testmonials .card-cta-title {
  width: 590px;
}
.page .testmonials-wrap {
  margin: 32px auto;
  padding: 0 160px;
  max-width: 1500px;
}
.page .testimonials-media-links-title,
.page .testimonials-media-links-title strong {
  font-weight: bold;
}
.page .testimonials-media-links-title {
  display: block;
  color: #363636;
  font-size: 46px;
  margin-bottom: 65px;
}
.page .testimonials-media-links-title strong {
  color: #0897E9;
  font-weight: bold;
}
.page .testimonials-media-links {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(2, 1fr);
}
.page .testimonials-media-links .card-cta .btn {
  width: 190px;
}
.page .carousel {
  border-radius: 20px;
  box-shadow: 2px 10px 30px rgba(10, 33, 53, 0.15);
  margin-bottom: 90px;
}
.page .carousel .slick-prev {
  left: -50px;
}
.page .carousel .slick-prev, .page .carousel .slick-next {
  z-index: 1;
}
.page .carousel .slick-prev::before, .page .carousel .slick-next::before {
  color: #0897E9 !important;
  background-color: white;
  font-size: 45px;
  border-radius: 50%;
}
.page .carousel .slick-dots {
  bottom: -44px;
}
.page .carousel .slick-dots li button::before {
  font-size: 14px;
}
.page .carousel .slick-dots li button:hover::before {
  color: #0897E9 !important;
  opacity: 0.75;
}
.page .carousel .slick-dots li.slick-active button::before {
  color: #0897E9 !important;
}
.page .login-box {
  background: #363636;
}
.page .carousel-card {
  border-radius: 20px;
  display: flex;
  background: #fff;
  padding: 45px 55px 0;
}
.page .carousel-card-video-wrap {
  position: relative;
  padding-right: 50px;
  margin-right: 50px;
}
.page .carousel-card-video-wrap:before {
  content: "";
  position: absolute;
  background: url("https://navega.cloudtotvs.com.br/uxlib/img/login/img/carousel-line.png");
  right: 0;
  bottom: 0;
  top: 0;
  width: 1px;
}
.page .carousel-card-video-wrap iframe {
  overflow: hidden;
  border-radius: 10px;
}
.page .carousel-card-text-wrap {
  font-size: 24px;
  line-height: initial;
}
.page .carousel-card-text {
  margin-bottom: 40px;
}
.page .carousel-card-text strong {
  color: #0897E9;
  font-weight: normal;
}
.page .carousel-card-text::before {
  content: "";
  background: url("https://navega.cloudtotvs.com.br/uxlib/img/login/img/aspas.svg") no-repeat;
  height: 30px;
  width: 40px;
  margin-right: 10px;
  display: inline-block;
}
.page .carousel-card-sign {
  display: flex;
  align-items: center;
  gap: 50px;
}
.page .carousel-card-sign .carousel-card-sign-logo.--mira {
  width: 220px;
}
.page .carousel-card-sign p strong {
  display: block;
}
.page.--iaas .iaas-features {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-bottom: 40px;
  padding: 52px 20px;
}
.page.--iaas .iaas-features.card-gray {
  background-color: #eee;
  border-radius: 16px;
  flex-flow: row;
  padding: 24px;
}
.page.--iaas .iaas-features .features-options {
  display: flex;
  flex-flow: column;
  gap: 12px;
}
.page.--iaas .iaas-features .features-options .btn-option {
  border: 1px solid #0897E9;
  border-radius: 40px;
  color: #0897E9;
  cursor: pointer;
  display: block;
  font-family: "Nunito Sans", sans-serif;
  padding: 8px 16px;
  text-transform: uppercase;
  transition: all 0.25s ease;
  width: 240px;
}
.page.--iaas .iaas-features .features-options .btn-option.active {
  background-color: #0897E9;
  color: #eee;
}
.page.--iaas .iaas-features .features-description {
  width: 400px;
}
.page.--iaas .iaas-features .features-description .features-title {
  font-size: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.page.--iaas .iaas-features .features-description .feature-txt {
  padding-left: 20px;
  margin-bottom: 20px;
  width: 296px;
}
.page.--iaas .iaas-features .features-description .feature-txt li::marker {
  font-size: 20px;
}
.page.--iaas .iaas-features .features-description .iaas-cta-btn {
  background-color: #FEAC0E;
  border: none;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  font-family: "Nunito Sans", sans-serif;
  padding: 12px 0;
  text-transform: uppercase;
  width: 264px;
}
.page.--iaas .iaas-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 40px;
}
.page.--iaas .iaas-benefits.card-gray {
  background-color: #eee;
  border-radius: 16px;
}
.page.--iaas .iaas-benefits .iaas-benefits-insights {
  align-items: center;
  background: #fff;
  border-radius: 16px;
  display: flex;
  flex-flow: row;
  gap: 32px;
  justify-content: space-between;
  padding: 32px;
}
.page.--iaas .iaas-benefits-interation {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 24px;
  gap: 40px;
  border-radius: 16px;
  padding: 32px;
}
.page.--iaas .iaas-benefits-interation.card-gray {
  background-color: #eee;
  border-radius: 16px;
}
.page.--iaas .iaas-benefits-interation .iaas-benefits-interation-insights {
  align-items: center;
  display: flex;
  flex-flow: column;
  text-align: center;
}
.page.--iaas .iaas-benefits-interation .iaas-benefits-interation-insights .insights-img {
  cursor: pointer;
  display: block;
  height: 80px;
  width: 80px;
  margin-bottom: 12px;
  text-align: center;
}
.page.--iaas .iaas-benefits-interation .iaas-benefits-interation-insights .insights-txt {
  margin-top: 16px;
  opacity: 0;
  transition: all 0.75s;
}
.page.--iaas .iaas-benefits-interation .iaas-benefits-interation-insights .insights-txt.show {
  opacity: 1;
}
.page.--paas .card-gray {
  transition: all 0.25s;
}
.page.--paas .card-gray:hover {
  background: #0897E9;
}
.page.--paas .card-gray:hover .card-gray-tit,
.page.--paas .card-gray:hover .card-gray-txt {
  color: #fff;
}
.page .cloud-offers-insights-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 24px;
  gap: 40px;
  background: #eee;
  border-radius: 16px;
  padding: 32px;
}
.page .cloud-offers-insights {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-flow: row;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
}
.page .store-logo-img {
  width: 43%;
}
.page .cloud-offers-insights-txt h4 {
  margin-bottom: 16px;
}
.page.--help {
  margin: -27px 0 0;
}
.lgpd-cert-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 24px;
  gap: 40px;
  background: #eee;
  border-radius: 16px;
  padding: 32px;
}

.img-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-flow: row;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
}
.img-list img {
  width: 43%;
}

.img-list-tit {
  font-weight: bold;
  margin-bottom: 32px;
}

.txt-list.--lgpd strong {
  display: block;
}
.txt-list.--lgpd li {
  margin-bottom: 32px;
}

.lgpd-link-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 32px 0 64px;
}

.lgpd-link {
  color: #fff;
  text-decoration: none;
  background: #0897E9;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid transparent;
  transition: all 0.25s;
}
.lgpd-link strong {
  display: block;
}
.lgpd-link:hover {
  background: none;
  color: #0897E9;
  border: 1px solid #0897E9;
}

.modal {
  animation: modalShow 250ms ease;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Fundo semi-transparente */
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.modal-content {
  animation: modalContentShow 500ms ease;
  max-height: 80vh;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
}
.modal-content .close-modal-btn {
  background: #fff;
  border-radius: 3px;
  border: 2px solid #eee;
  font-size: 32px;
  font-weight: bold;
  color: #0897E9;
  cursor: pointer;
  line-height: 0;
  padding: 0;
  position: absolute;
  right: 22px;
  top: 20px;
  height: 30px;
  width: 30px;
}

@keyframes modalShow {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modalContentShow {
  from {
    opacity: 0;
    translate: 0 -75vh;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
.modal-title,
.modal-text {
  margin-bottom: 32px;
}

.modal-title {
  font-size: 32px;
  font-weight: 900;
}

.modal-wrap-content {
  padding: 36px 36px 0;
}
.modal-wrap-content .form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 32px;
}
.modal-wrap-content .fieldset-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: initial;
  border-top: 2px solid #D2D2D2;
  margin: 0 -36px;
  padding: 16px;
}
.modal-wrap-content .form-checkbox {
  margin: 32px 0;
}

.fieldset-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.fieldset-wrap label {
  margin-bottom: 8px;
}

.modal-title {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 32px;
}

.modalBodyFixed {
  overflow-y: hidden;
}

.moda-first-access {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 11;
}

.moda-first-access-bg {
  background: color(srgb 0 0 0/0.87);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

.moda-first-access-content {
  display: flex;
  align-items: center;
  flex-flow: column;
  justify-content: center;
  gap: 30px;
  text-align: center;
  border-radius: 16px;
  padding: 40px;
  max-width: 525px;
  background: #fff;
  position: relative;
  z-index: 1;
}
.moda-first-access-content h3,
.moda-first-access-content p {
  line-height: normal;
}
.moda-first-access-content h3 {
  font-weight: 900;
  font-size: 29px;
  line-height: normal;
}
.moda-first-access-content p {
  font-weight: bold;
}

.scrollTopBtn-wrap {
  display: flex;
  justify-content: flex-end;
  margin: 24px 0;
}

/* Para telas maiores */
@media (min-width: 1440px) and (max-width: 1800px) {
  .home-banner-area-text {
    line-height: initial;
    top: 120px;
    left: 10%;
    width: 560px;
  }
  .home-banner-area-text h1 {
    font-size: 50px;
  }
  .home-banner-area-text h2 {
    font-size: 25px;
    font-weight: normal;
    line-height: initial;
  }
  .page .card-cta.--banner {
    padding: 60px 277px 35px 120px;
  }
  .card-cta.--link .card-cta-title {
    font-size: 24px;
  }
  .card-cta.--link .card-cta-type,
  .card-cta.--link .card-cta-title,
  .card-cta.--link .card-cta-txt {
    margin-bottom: 15px;
  }
  .card-cta.--link .card-cta-txt {
    font-size: 14px;
  }
  .card-cta.--link .card-cta-txt-wrap {
    width: 265px;
  }
  .card-cta.--link .card-cta-wrap {
    height: 210px;
  }
  .card-cta.--media .card-cta-client-logo {
    display: block;
    margin-bottom: 30px;
  }
  footer {
    gap: initial;
  }
  .footer-app-img img {
    width: 440px;
  }
  .store-qrcode-img {
    width: 80px;
  }
  .footer-app-txt {
    max-width: 605px;
  }
  .footer-app-txt h4 {
    margin-bottom: 25px;
  }
  .footer-app-txt h5 {
    font-size: 21px;
  }
  .app-stores-link .store-qrcode-img {
    width: 105px;
  }
  .card-color.--purple {
    padding: 50px 115px 50px 50px;
  }
  .card-color-img img {
    max-width: 148px;
  }
  .home-banner-area-text h2 {
    font-size: 22px;
    font-weight: normal;
  }
  .page .app-text-wrap {
    margin-bottom: 32px;
  }
  .app-stores-link .store-logo-img {
    width: 40%;
  }
  .app-downloads .app-store-link {
    gap: 32px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .home-banner-area-text {
    width: 450px;
  }
  .home-banner-area-text h1, .home-banner-area-text h2 {
    line-height: normal;
  }
  .home-banner-area-text h1 {
    font-size: 33px;
  }
  .home-banner-area-text h2 {
    font-size: 21px;
  }
  .page .card-cta.--banner {
    padding: 48px 235px 48px 48px;
  }
  .home-banner-area .login-box {
    right: 177px;
  }
  .page .cloud-offers-insights,
  .page.--iaas .iaas-benefits .iaas-benefits-insights {
    flex-flow: column;
  }
  .card-cta-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .app-store-link {
    gap: 30px;
    flex-flow: column;
    justify-content: flex-end;
    align-items: flex-start;
  }
  .app-stores-link {
    gap: initial;
  }
  footer {
    gap: 42px;
  }
  .footer-app-txt h5 {
    font-size: 21px;
  }
  .footer-app-txt h4 {
    margin-bottom: 25px;
  }
  .footer-app-img img {
    width: 440px;
  }
  .store-qrcode-img {
    width: 80px;
  }
  .footer-app-txt {
    max-width: 605px;
    padding: 0;
  }
  .card-cta.--link .card-cta-txt {
    font-size: 14px;
    max-width: 250px;
  }
  .card-cta.--media .card-cta-txt {
    font-size: 23px;
  }
}
@media only screen and (max-width: 768px) {
  .btnToTop {
    gap: initial;
  }
  .scrollTopBtn-wrap {
    justify-content: center;
  }
  .moda-first-access-content {
    margin: 24px;
  }
  .moda-first-access-content h3 {
    font-size: 27px;
  }
  nav {
    justify-content: flex-start;
    align-items: flex-start;
  }
  .nav-menu {
    gap: 24px;
  }
  .totvs-brand {
    margin-right: 0;
  }
  .header {
    position: relative;
  }
  .home-banner-area {
    padding-bottom: 8px;
    overflow: hidden;
  }
  .home-banner-area-text,
  .home-banner-area .login-box {
    position: relative;
    top: initial;
    width: auto;
  }
  .home-banner-area-text {
    text-align: center;
    padding: 24px;
    left: initial;
    z-index: 2;
  }
  .home-video-wrap .home-video-wrap-bg {
    z-index: 1;
  }
  .home-banner-area .login-box {
    right: initial;
    margin: 0px 20px 20px;
  }
  .home-banner-area-text h1,
  .home-banner-area-text h2 {
    line-height: initial;
    margin-bottom: 24px;
  }
  .home-banner-area-text h1 {
    font-size: 30px;
  }
  .home-banner-area-text h2 {
    font-size: 17px;
  }
  .home-video-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }
  .home-video-wrap .video-wrap img {
    position: relative;
    left: -460px;
    margin-left: -50%;
    width: initial;
  }
  .card-cta-wrap {
    flex-flow: column;
    display: flex;
    margin: 0;
    padding: 32px;
  }
  .home-banner-area .login-box {
    display: none;
  }
  .home-banner-area .login-box {
    display: none;
  }
  .home-banner-area .login-box.--mobile {
    background: rgba(0, 0, 0, 0.8509803922);
    display: flex;
  }
  .btnToTop-wrap {
    justify-content: center;
    padding: 0;
  }
  #footer {
    position: relative;
    z-index: 3;
  }
  footer {
    flex-flow: column;
    margin: 0;
    gap: 0;
  }
  .footer-app-img {
    margin-top: 10px;
    align-items: center;
    display: flex;
    justify-content: center;
  }
  .footer-app-img img {
    width: 80%;
  }
  .footer-app-txt {
    padding-top: 32px;
    margin-bottom: 64px;
    text-align: center;
  }
  .footer-app-stores {
    width: 85%;
  }
  .footer-app-txt h4 {
    margin-bottom: 20px;
    font-size: 25px;
  }
  .footer-app-txt h5 {
    font-size: 19px;
  }
  .app-stores-link .store-qrcode-img {
    display: none;
  }
  .app-store-link {
    flex-flow: column;
    align-items: center;
    gap: 62px;
    margin-bottom: 140px;
  }
  .app-stores-link img {
    width: 215px;
  }
  .footer-copyright {
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
  }
}
/* Para dispositivos móveis (geralmente até 480px de largura) */
@media only screen and (max-width: 480px) {
  .nav-menu {
    flex-flow: column;
    align-items: flex-start;
    gap: 16px;
    margin: 30px;
  }
  .nav-menu a {
    margin: 0;
  }
  .card-cta.--link .card-cta-txt-wrap {
    width: initial;
  }
  .page .page-header {
    margin: 24px 0;
    display: flex;
    flex-flow: column;
  }
  .page .card-cta.--banner {
    padding: 24px;
  }
  .page .card-cta-breadcrumb {
    font-size: 14px;
  }
  .page .card-cta-title {
    font-size: 28px;
  }
  .page.--testmonials .card-cta-title {
    font-size: 24px;
    width: initial;
  }
  .page .card-cta.--banner .card-cta-txt {
    font-size: 18px;
    line-height: 32px;
  }
  .page .card-cta-shadow {
    background: rgba(0, 0, 0, 0.8392156863);
  }
  .page .login-box {
    background: #363636;
    padding: 12px;
    width: initial;
  }
  .page .page-content {
    padding: 0 32px;
  }
  .page .page-title {
    font-size: 18px;
  }
  .page.--iaas .iaas-features.card-gray {
    display: flex;
    flex-flow: column;
  }
  .page.--iaas .iaas-benefits {
    display: flex;
    flex-flow: column;
  }
  .page.--iaas .iaas-features .features-description,
  .page.--iaas .iaas-features .features-description .feature-txt {
    width: initial;
  }
  .page.--iaas .iaas-benefits .iaas-benefits-insights {
    flex-flow: column;
    justify-content: normal;
    gap: 18px;
    text-align: center;
  }
  .page.--iaas .iaas-benefits .iaas-benefits-insights h4 {
    margin-bottom: 16px;
  }
  .page.--iaas .iaas-features .features-description .features-title {
    text-align: center;
  }
  .page.--iaas .iaas-features {
    gap: 32px;
  }
  .page .cloud-offers-content {
    display: flex;
    flex-flow: column;
  }
  .page .page-card {
    display: flex;
    flex-flow: column;
  }
  .page .cloud-offers-insights {
    flex-flow: column;
  }
  .page .cloud-offers-insights-wrap {
    display: flex;
    flex-flow: column;
  }
  .card-color.--purple {
    padding: 24px 24px 0 24px;
  }
  .card-color .card-color-img {
    position: relative;
  }
  .page .cloud-offers-app-wrap .wrap {
    padding: 0;
  }
  .page .app-text-wrap {
    grid-template-columns: repeat(1, 1fr);
    padding: 24px;
  }
  .app-store-link {
    margin-bottom: 95px;
  }
  .page .store-logo-img {
    width: 80%;
  }
  .page .cloud-offers-app-wrap {
    display: flex;
    flex-flow: column;
  }
  .lgpd-cert-wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    padding: 0;
  }
  .lgpd-link-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
  .lgpd-cert-wrap .img-list {
    flex-flow: column;
  }
  .page .testmonials-wrap {
    margin: 0 24px;
    padding: 0;
  }
  .page .testimonials-media-links {
    grid-template-columns: repeat(1, 1fr);
  }
  .card-cta.--media .card-cta-client-logo {
    width: 100%;
  }
  .card-cta.--media .card-cta-txt {
    height: initial;
    width: initial;
  }
  .page .carousel-card {
    flex-flow: column;
    padding: 0;
    overflow: hidden;
  }
  .page .carousel-card-video-wrap {
    padding-right: 0;
    margin-right: 0;
  }
  .page .carousel-card-video-wrap:before {
    display: none;
  }
  .page .carousel-card-sign {
    flex-flow: column;
    margin: 0 24px 32px;
  }
  .page .carousel-card-text {
    padding: 24px;
  }
  .page.--iaas .iaas-features .features-options {
    align-items: center;
  }
  .app-stores-wrap.--home {
    margin-top: 40px;
  }
  .btnToTop-wrap.--home {
    margin: 0 0 32px;
  }
  .btnToTop-wrap.--paas {
    padding: 20px 0 75px;
  }
}
/* Para tablets (geralmente entre 481px e 768px de largura) */
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .card-cta.--link .card-cta-txt-wrap {
    width: 400px;
  }
  .btnToTop-wrap {
    padding: 0 0 40px 0;
  }
  .footer-app-stores {
    padding: 0 50px;
    width: initial;
  }
  .page .cloud-offers-app-wrap {
    display: flex;
    flex-flow: column;
  }
  .page .page-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .card-cta.--link .card-cta-txt-wrap {
    width: initial;
  }
  .page .page-header {
    display: flex;
    flex-flow: column;
    padding: 0;
    margin: 24px;
  }
  .page .card-cta.--banner {
    padding: 24px;
  }
  .page .card-cta-breadcrumb {
    font-size: 14px;
  }
  .page .card-cta-title {
    font-size: 28px;
  }
  .page.--testmonials .card-cta-title {
    font-size: 24px;
    width: initial;
  }
  .page .card-cta.--banner .card-cta-txt {
    font-size: 18px;
    line-height: 32px;
    width: 365px;
  }
  .page .card-cta-shadow {
    background: rgba(0, 0, 0, 0.8392156863);
  }
  .page .login-box {
    background: #363636;
    padding: 42px;
    width: initial;
  }
  .page .page-content {
    padding: 0 32px;
  }
  .page .page-title {
    font-size: 18px;
  }
  .page.--iaas .iaas-features.card-gray {
    display: flex;
    flex-flow: column;
  }
  .page.--iaas .iaas-benefits {
    display: flex;
    flex-flow: column;
  }
  .page.--iaas .iaas-features .features-description,
  .page.--iaas .iaas-features .features-description .feature-txt {
    width: initial;
  }
  .page.--iaas .iaas-benefits .iaas-benefits-insights h4 {
    margin-bottom: 16px;
  }
  .page.--iaas .iaas-features .features-description .features-title {
    text-align: center;
  }
  .page.--iaas .iaas-features {
    gap: 32px;
  }
  .page .cloud-offers-content {
    display: flex;
    flex-flow: column;
  }
  .page .page-card {
    display: flex;
    flex-flow: column;
  }
  .page .cloud-offers-insights-wrap {
    display: flex;
    flex-flow: column;
  }
  .card-color.--purple {
    display: flex;
    justify-content: space-between;
    padding: 24px 24px 0 24px;
  }
  .card-color .card-color-img {
    position: relative;
  }
  .page .cloud-offers-app-wrap .wrap {
    padding: 0;
  }
  .page .app-text-wrap {
    grid-template-columns: repeat(1, 1fr);
    padding: 24px;
  }
  .app-store-link {
    margin-bottom: 95px;
  }
  .page .store-logo-img {
    width: 80%;
  }
  .page .cloud-offers-app-wrap {
    display: flex;
    flex-flow: column;
  }
  .lgpd-cert-wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    padding: 0;
  }
  .lgpd-link-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
  .lgpd-cert-wrap .img-list {
    flex-flow: column;
  }
  .page .testmonials-wrap {
    margin: 0 24px;
    padding: 0;
  }
  .page .testimonials-media-links {
    grid-template-columns: repeat(1, 1fr);
  }
  .page .carousel-card-video-wrap iframe {
    height: 364px;
    width: 100%;
  }
  .card-cta.--media .card-cta-txt {
    height: initial;
    width: initial;
  }
  .page .carousel-card {
    flex-flow: column;
    padding: 0;
    overflow: hidden;
  }
  .page .carousel-card-video-wrap {
    padding-right: 0;
    margin-right: 0;
  }
  .page .carousel-card-video-wrap:before {
    display: none;
  }
  .page .carousel-card-sign {
    flex-flow: column;
    margin: 0 24px 32px;
  }
  .page .carousel-card-text {
    padding: 24px;
  }
  .page.--iaas .iaas-features .features-options {
    align-items: center;
  }
  .app-stores-wrap.--home {
    margin-top: 40px;
  }
  .btnToTop-wrap.--home {
    margin: 0 0 32px;
  }
  .btnToTop-wrap.--paas {
    padding: 20px 0 75px;
  }
}
/* Para tablets em modo landscape ou dispositivos pequenos até 1024px de largura */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .page .carousel .slick-prev {
    left: -30px;
  }
  .slick-next {
    right: 0;
  }
  .home-banner-area-text {
    width: 450px;
  }
  .home-banner-area-text h1, .home-banner-area-text h2 {
    line-height: normal;
  }
  .home-banner-area-text h1 {
    font-size: 33px;
  }
  .home-banner-area-text h2 {
    font-size: 21px;
  }
  .page .card-cta.--banner {
    padding: 24px;
  }
  .home-banner-area .login-box {
    right: 24px;
    top: 75px;
  }
  .home-banner-area-text {
    left: 55px;
  }
  .page .cloud-offers-insights,
  .page.--iaas .iaas-benefits .iaas-benefits-insights {
    flex-flow: column;
  }
  .card-cta-wrap {
    grid-template-columns: repeat(2, 1fr);
    margin: -17px auto 32px;
    padding: 0 30px;
  }
  .card-cta.--link .card-cta-txt {
    font-size: 14px;
    max-width: 250px;
  }
  .card-cta.--media .card-cta-txt {
    font-size: 23px;
  }
  .page .card-cta-breadcrumb {
    font-size: 14px;
  }
  .page .card-cta-title,
  .page.--testmonials .card-cta-title {
    font-size: 34px;
    width: initial;
  }
  .page .testimonials-media-links {
    grid-template-columns: repeat(1, 1fr);
  }
  .page .page-content {
    padding: 0 32px;
  }
  .page .carousel-card {
    flex-flow: column;
    padding: 24px;
  }
  .page .carousel-card-video-wrap:before {
    display: none;
  }
  .page .carousel-card-video-wrap iframe {
    width: 100%;
    height: 317px;
  }
  .page .cloud-offers-insights, .page.--iaas .iaas-benefits .iaas-benefits-insights {
    flex-flow: column;
    justify-content: flex-start;
  }
  .card-color.--purple {
    padding: 24px 24px 0;
  }
  .page .cloud-offers-app-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .page .cloud-offers-app-wrap .wrap {
    padding: 24px;
    margin: 0 0 26px;
  }
  .card-color .card-color-img {
    position: relative;
  }
  .app-downloads .app-store-link {
    gap: 16px;
  }
  .page .store-logo-img {
    width: 80%;
  }
  .main {
    max-width: initial;
    margin: initial;
  }
  .main,
  #footer,
  footer,
  .footer-app-stores {
    display: block;
  }
  .card-cta.--link .card-cta-txt-wrap {
    width: 400px;
  }
  .page .carousel-card-video-wrap {
    padding-right: 0;
    margin-right: 0;
  }
  .page .cloud-offers-box-app {
    margin-bottom: 0;
  }
  .page.--iaas .iaas-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  footer {
    display: flex;
    gap: initial;
  }
  .footer-app-txt h5 {
    font-size: 21px;
  }
  .footer-app-txt h4 {
    margin-bottom: 25px;
  }
  .footer-app-img img {
    width: 100%;
  }
  .store-qrcode-img {
    width: 80px;
  }
  .footer-app-txt {
    max-width: 605px;
    padding: 0;
  }
  .app-stores-link .store-qrcode-img {
    display: none;
  }
  .footer-app-stores {
    padding: 0 50px;
    width: initial;
  }
  .page .testmonials-wrap {
    padding: 0 41px;
  }
  .page .page-card {
    grid-template-columns: repeat(2, 1fr);
  }
  .page .cloud-offers-insights-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .slick-next {
    right: 0;
  }
  .page .carousel .slick-prev {
    left: -28px;
  }
}
@media only screen and (min-width: 1024px) {
  .slick-next {
    right: 0;
  }
  .page .carousel .slick-prev {
    left: -28px;
  }
}/*# sourceMappingURL=style.css.map */