@font-face {
  font-family: "Afacad";
  src: url("./fonts/afacad/Afacad-Regular.woff") format("woff"), url("./fonts/afacad/Afacad-Regular.otf") format("otf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Afacad";
  src: url("./fonts/afacad/Afacad-Medium.woff") format("woff"), url("./fonts/afacad/Afacad-Medium.otf") format("otf");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Afacad";
  src: url("./fonts/afacad/Afacad-SemiBold.woff") format("woff"), url("./fonts/afacad/Afacad-SemiBold.otf") format("otf");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Afacad";
  src: url("./fonts/afacad/Afacad-Bold.woff") format("woff"), url("./fonts/afacad/Afacad-Bold.otf") format("otf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Afacad", sans-serif;
}

.cursor {
  width: 10px;
  height: 10px;
  background: #F26B21;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  z-index: 10000;
}

.cursor.clicking {
  transform: translate(-50%, -50%) scale(2);
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.container {
  width: 100%;
  padding-right: 24px;
  padding-left: 24px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 620px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 860px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1300px;
  }
}
@media (min-width: 1500px) {
  .container {
    max-width: 1400px;
  }
}
.bg-secondary {
  background: #0E1B29 !important;
}

.botao-primary {
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
  background: #F26B21;
  align-items: center;
  padding: 16px;
  height: 42px;
  display: inline-flex;
}
.botao-primary:hover {
  background: #FFF;
  color: #F26B21;
}

.botao-white {
  color: #4F4F4F;
  padding: 0.3rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
  background: white;
  align-items: center;
  padding: 16px;
  height: 42px;
  display: inline-flex;
}
.botao-white:hover {
  background: #F26B21;
  color: white;
}

.botao-white-outline {
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
  border: 1px solid white;
  align-items: center;
  padding: 16px;
  height: 42px;
  display: inline-flex;
}
.botao-white-outline.btn-redes {
  border-radius: 100%;
  color: #F26B21;
  width: 42px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}
.botao-white-outline:hover {
  background: white;
  color: #F26B21;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  padding: 16px 0px;
}

.site-header.transparent {
  background-color: transparent;
  box-shadow: none;
}

.site-header.scrolled {
  background-color: #0E1B29;
  padding: 8px 0px;
}

/* MENU */
.burger {
  width: 30px;
  height: 22px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  height: 4px;
  background: #F26B21;
  border-radius: 2px;
  transition: 0.3s;
}

/* Animar para X */
.burger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Menu wrapper */
.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.menu a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s;
}

.menu a:hover {
  color: #F26B21;
}

.site-branding img {
  width: 60px;
  height: 60px;
  cursor: pointer;
  object-position: -10px 0;
}
.site-branding img:hover {
  animation: bounce 0.6s ease;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
.botao-contato {
  border: 1px solid #F26B21;
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  height: 42px;
}
.botao-contato.desk {
  display: block;
}
.botao-contato.mobile {
  display: none;
}

.botao-contato:hover {
  background: #F26B21;
  color: white;
}

.site-main {
  min-height: 200vh;
}

.text-supportcolor {
  color: #E8E8E2;
}

.text-primary {
  color: #F26B21 !important;
}

@media (max-width: 1500px) {
  #hero-section .banner {
    height: 700px !important;
  }
  #hero-section .banner::before {
    background-position: 0 300% !important;
  }
  #empresas-confiam {
    padding: 70px 0 100px 0 !important;
  }
}
@keyframes fade1 {
  0%, 45% {
    opacity: 1;
  }
  50%, 95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade2 {
  0%, 45% {
    opacity: 0;
  }
  50%, 95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#hero-section {
  position: relative;
}
#hero-section .banner {
  background-color: #0E1B29;
  height: 820px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#hero-section .banner .row {
  position: relative;
  z-index: 1;
}
#hero-section .banner::before {
  background-image: url("/wp-content/themes/datapage-theme2025/src/images/banner_hero.webp");
  background-position: 0 120%;
  background-size: 100%;
  animation: fade1 15s infinite ease-in-out;
}
#hero-section .banner::after {
  background-image: url("/wp-content/themes/datapage-theme2025/src/images/banner_hero2.webp");
  background-position: 0 0%;
  animation: fade2 15s infinite ease-in-out;
  background-size: cover;
}
#hero-section .banner::before, #hero-section .banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-attachment: fixed;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  z-index: 0;
}
#hero-section h1 {
  font-size: 82px;
  line-height: 0.8;
  font-weight: 400;
}
#hero-section h1 span {
  font-weight: 500;
  background: linear-gradient(90deg, #FFF 37%, #F26B21 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#hero-section p {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 400;
  color: #E8E8E2;
  line-height: 1;
}
#hero-section .scroll-container {
  position: absolute;
  bottom: -2px;
  width: 100%;
  left: 0;
  z-index: 50;
  overflow: hidden;
}
#hero-section .scroll-container::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 51%;
  top: 0;
  background: #fff;
  z-index: 45;
  right: 0;
  margin-right: -245px;
}
#hero-section .scroll-container .scroll {
  height: 69px;
  width: 505px;
  position: relative;
  z-index: 50;
  left: 0;
  right: 0;
  margin: auto;
}
#hero-section .scroll-container .scroll a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
}
#hero-section .scroll-container .scroll a svg {
  fill: #fff !important;
}
#hero-section .scroll-container .scroll-mouse-down {
  position: absolute;
  flex-flow: column;
  display: flex;
  align-items: center;
  color: white;
  top: -2px;
  animation: pulseVertical 2s ease-in-out infinite;
  transition: transform 0.3s;
}
#hero-section .scroll-container .scroll-mouse-down img {
  width: 24px;
  height: 24px;
  filter: brightness(2);
}
#hero-section .scroll-container::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 51%;
  top: 0;
  background: #fff;
  z-index: 45;
  left: 0;
  margin-left: -245px;
}

@keyframes pulseVertical {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
#empresas-confiam {
  padding: 100px 0 150px 0;
}
#empresas-confiam h3 {
  color: #4F5B68;
  font-size: 32px;
  line-height: 1;
  font-weight: 400;
}
#empresas-confiam h3 span {
  color: #0E1B29;
  font-weight: 600;
}
#empresas-confiam .logo-bloco {
  width: 140px;
  height: 60px;
  overflow: hidden;
  position: relative;
}
#empresas-confiam .logo-slider {
  display: flex;
  flex-direction: column;
}
#empresas-confiam .logo-slider.logo-slider-1 {
  animation: slideSuave 9s ease-in-out infinite;
}
#empresas-confiam .logo-slider.logo-slider-2 {
  animation: slideSuave 10s ease-in-out infinite;
}
#empresas-confiam .logo-slider.logo-slider-3 {
  animation: slideSuave 11s ease-in-out infinite;
}
#empresas-confiam .logo-slider.logo-slider-4 {
  animation: slideSuave 12s ease-in-out infinite;
}
#empresas-confiam .logo-slider img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  opacity: 0.4;
}

@keyframes slideSuave {
  0% {
    transform: translateY(0%);
  }
  20% {
    transform: translateY(0%);
  }
  25% {
    transform: translateY(-25%);
  }
  45% {
    transform: translateY(-25%);
  }
  50% {
    transform: translateY(-50%);
  }
  70% {
    transform: translateY(-50%);
  }
  75% {
    transform: translateY(-75%);
  }
  95% {
    transform: translateY(-75%);
  }
  100% {
    transform: translateY(0%);
  }
}
#sobre {
  padding: 0 0 150px 0;
}
#sobre h2 {
  font-size: 52px;
  line-height: 1.2;
  font-weight: 500;
  color: #0E1B29;
}
#sobre p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #0E1B29;
}
#sobre .video {
  height: 400px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
#sobre .video video {
  width: 120%;
  height: 120%;
}
#sobre .tags-footer {
  margin-top: auto;
}

.tag {
  border: 1px solid #E8E8E2;
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 14px;
  color: #000;
  display: inline-flex;
  transition: 0.3s;
}
.tag:hover {
  background: #F26B21;
  color: white;
}

#numeros {
  padding: 0 0 100px 0;
}
#numeros h6 {
  font-size: 32px;
}
#numeros p {
  color: #4F4F4F;
  font-size: 16px;
  line-height: 1;
}
#numeros .counter {
  color: #F26B21;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

#solucoes {
  background: white;
  padding-bottom: 50px;
}
#solucoes .card-solucao {
  background: white;
  min-height: 500px;
  position: sticky;
  padding: 80px 0 50px 0;
  top: 120px;
  z-index: 1;
}
#solucoes .container-solucao {
  background: #F8F8F6;
  border-radius: 12px;
}
#solucoes .container-solucao h5 {
  font-size: 42px;
  line-height: 0.8;
  font-weight: 600;
}
#solucoes img {
  width: 108%;
  top: 0;
  margin-top: -10%;
  object-fit: contain;
}
#solucoes .container-solucao:nth-child(1) {
  z-index: 1;
}
#solucoes .container-solucao:nth-child(2) {
  z-index: 2;
}
#solucoes .container-solucao:nth-child(3) {
  z-index: 3;
}
#solucoes .container-solucao:nth-child(4) {
  z-index: 4;
}
#solucoes .container-solucao:nth-child(5) {
  z-index: 5;
}

#cases {
  height: 100%;
  position: relative;
  z-index: 1;
}
#cases .container-cases {
  background: #0E1B29;
  min-height: 600px;
  height: 100%;
  border-radius: 12px;
  padding: 80px 0 40px 0;
}
#cases .container-cases h3 {
  font-size: 56px;
  line-height: 1;
  font-weight: 500;
}
#cases .card-case {
  background: white;
  border-radius: 16px;
  text-align: center;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  height: 100%;
}
#cases .card-case h6 {
  font-size: 32px;
  line-height: 1;
  transition: 0.5s all;
}
#cases .card-case p {
  font-size: 16px;
  line-height: 1;
}
#cases .card-case .case {
  background: #0E1B29;
  background-image: url("/wp-content/themes/datapage-theme2025/src/images/bg_case.webp");
  border-radius: 16px 0 0 16px;
  margin-left: 12px;
  bottom: 12px;
  position: relative;
  height: 380px;
}
#cases .card-case:hover h6 {
  color: #F26B21;
}
#cases .card-case:hover img {
  transform: translateY(-50px);
}
#cases .card-case.remocao img {
  height: 600px;
  bottom: -250px;
  left: -30px;
}
#cases .card-case img {
  height: 100%;
  width: 580px;
  left: 16px;
  bottom: -30px;
  object-fit: contain;
  position: absolute;
  transition: 0.7s all;
}

#experiencias {
  padding: 0 0 100px 0;
}
#experiencias h3 {
  font-size: 62px;
  line-height: 0.8;
  font-weight: 600;
  text-align: right;
}
#experiencias .base-card {
  box-shadow: 0px 8px 10px 0px rgba(14, 27, 41, 0.1);
  background: white;
  padding: 80px 32px 32px 32px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
#experiencias .base-card h5 {
  font-size: 42px;
  font-weight: 500;
}
#experiencias .base-card h2 {
  font-size: 180px;
  opacity: 0.3;
  position: absolute;
  top: -70px;
  left: -10px;
}
#experiencias .base-card p {
  color: #0E1B29;
  font-size: 18px;
  font-weight: 400;
}
#experiencias .iphone-sticky, #experiencias .sticky-processo {
  position: sticky;
  top: 150px;
  z-index: 0;
}
#experiencias .iphone-container {
  position: relative;
  perspective: 1000px;
  transform-style: preserve-3d;
  margin-top: -50px;
  transition: transform 0.8s ease-in-out;
}
#experiencias .iphone-image {
  width: 100%;
  display: block;
}
#experiencias .screen-image {
  position: absolute;
  top: 6%;
  left: 0%;
  width: 100%;
  height: 90%;
  object-fit: cover;
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.5s ease;
}
#experiencias .screen-image.active {
  opacity: 1;
  z-index: 1;
}

#contato {
  background: #0E1B29;
}
#contato .para-seu-negocio {
  height: 400px;
  position: relative;
  color: white;
}
#contato .para-seu-negocio .row {
  position: relative;
  z-index: 2;
}
#contato .para-seu-negocio .row h5 {
  font-size: 48px;
  line-height: 1;
}
#contato .para-seu-negocio .row h5 span {
  font-weight: 600;
}
#contato .para-seu-negocio::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0.9;
  background: linear-gradient(86deg, rgba(14, 27, 41, 0.9) -7.45%, rgba(14, 27, 41, 0) 58.71%);
}
#contato .para-seu-negocio::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("/wp-content/themes/datapage-theme2025/src/images/bg-para-seu-negocio.webp");
  background-size: 100%;
  background-position: 0 50%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  z-index: 0;
}
#contato .footer-container {
  height: 650px;
  position: relative;
}
#contato .footer-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("/wp-content/themes/datapage-theme2025/src/images/bg_logo_footer.webp");
  background-size: 35%;
  background-position: 20% 50%;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  z-index: 0;
}
#contato .footer-container .container {
  position: relative;
}
#contato .footer-container .logo-dp {
  width: 200px;
  height: 50px;
  object-fit: contain;
}
#contato .footer-container .text-comercial {
  color: #E8E8E2;
  font-size: 18px;
  opacity: 0.7;
}
#contato .disponivel {
  background: #F26B21;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  margin-right: 8px;
}
#contato .text-disponivel {
  font-size: 16px;
}
#contato .linha-divisoria {
  opacity: 0.1;
  background: #E8E8E2;
  height: 1px;
  width: 100%;
}
#contato h2 {
  background: linear-gradient(138deg, #E8E8E2 35%, #0E1B29 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 72px;
  line-height: 0.8;
}
#contato .link-footer {
  color: #fff;
  text-decoration: none;
  transition: 0.2s;
  font-size: 18px;
}
#contato .link-footer:hover {
  text-decoration: underline;
  cursor: pointer;
}
#contato .descricao {
  color: #E8E8E2;
  opacity: 0.7;
}

@media (max-width: 1000px) {
  #cases .container-cases h3 {
    font-size: 42px;
  }
  #contato h2 {
    font-size: 52px;
  }
}
@media (max-width: 768px) {
  .burger {
    display: flex;
  }
  .nav-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    background: #fff;
    height: 100vh;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.4s ease-in-out;
    pointer-events: none;
  }
  .nav-wrapper.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-navigation ul {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .botao-contato {
    font-size: 1.1rem;
    color: #F26B21;
  }
  .botao-contato.desk {
    display: none;
  }
  .botao-contato.mobile {
    display: block;
  }
  .menu a {
    color: #0E1B29;
  }
  #hero-section .banner {
    padding: 16px;
    height: 600px !important;
  }
  #hero-section .banner::before {
    background-image: url("/wp-content/themes/datapage-theme2025/src/images/banner_hero_mob.webp");
    background-position: 0 10%;
  }
  #hero-section .banner::after {
    background-position: 65% 100%;
  }
  #hero-section h1 {
    font-size: 48px;
  }
  #hero-section .scroll-container .scroll {
    width: 379.245px;
    height: 52.5px;
  }
  #hero-section .scroll-container .scroll-mouse-down {
    font-size: 12px;
  }
  #hero-section .scroll-container::before {
    margin-right: -185px;
  }
  #hero-section .scroll-container::after {
    margin-left: -185px;
  }
  #empresas-confiam {
    padding: 100px 0 50px 0;
  }
  #empresas-confiam h3 {
    margin-bottom: 16px;
  }
  #empresas-confiam .logo-bloco {
    margin-bottom: 24px;
  }
  #sobre {
    padding: 0 0 100px 0;
  }
  #sobre h2 {
    font-size: 42px;
    line-height: 0.8;
  }
  #sobre .video {
    margin-top: 24px;
    height: 300px;
  }
  #sobre .video video {
    width: 130%;
    height: 130%;
  }
  #numeros {
    padding: 0 0 80px 0;
    text-align: center;
  }
  #numeros p {
    margin-bottom: 24px;
  }
  #solucoes {
    overflow: hidden;
  }
  #solucoes .card-solucao {
    top: 0;
    padding: 0px 0 0px 0;
  }
  #solucoes img {
    width: 100%;
    margin-top: 0%;
  }
  #solucoes .p-5 {
    padding: 24px !important;
  }
  #cases .container-cases h3 {
    font-size: 36px;
  }
  #cases .container-cases .col-12 {
    margin-bottom: 24px;
  }
  #cases .container-cases .mt-5 {
    margin-top: 0 !important;
  }
  #cases .container-cases .card-case .p-5 {
    padding: 24px !important;
  }
  #cases .container-cases .card-case .case {
    height: 200px;
  }
  #cases .container-cases .card-case img {
    bottom: -10px;
    width: 300px;
  }
  #cases .container-cases .card-case.remocao img {
    bottom: -300px;
    width: 250px;
    left: 30%;
  }
  #experiencias .iphone-sticky {
    position: relative;
    top: 60px;
  }
  #contato h2 {
    font-size: 44px !important;
    margin-top: 24px;
  }
  #contato .para-seu-negocio h5 {
    font-size: 32px !important;
  }
  #contato .para-seu-negocio::before {
    background-size: 400%;
    background-position: 50% 20%;
  }
  #contato .bg-secondary {
    text-align: center;
  }
  #contato .bg-secondary .col-md-6 {
    text-align: center !important;
  }
}

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