@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.w-75 {
    width: 75%;
}

.text-warning {
    color: #ffc107 !important;
}

.home-slider {
   width: 40vw; 
}

html{
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body{
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    background-color: black;
    color: white;
}

header{
    background: linear-gradient(rgb(0 0 0 / 32%), rgb(0 0 0 / 1%));
    justify-content: center;
    align-items: center;
    height: 50px;
    position: fixed;
    display: flex;
    z-index: 100;
    width: 100%;
    left: 0;
    top: 0;
}

a {
    color: #ff00ea;
}
a:hover {
    color: #aa0a9d;
}

header .nav-item .nav_burger_button,
header .nav-item {
    display: flex;
}

header .nav-item {
    margin-top: 5px;
    gap: 1em;
}

header .nav-item a{
    margin: auto;
}
header .nav-item a:hover{
    color: #ffffff;
}

header .nav-item:first-child {
    position: absolute;
    margin-left: 2rem;
    left: 0;
}

.navbar-user a, .navbar-user span {
    color: white !important;
    font-size: 14px;
}

.navbar-user, .navbar-user a {
    display: flex;
    align-items: center;
}

.navbar-user img {
    float: left;
    width: 40px;
    height: 40px;
    margin: 0 5px 0 0;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
}

.nav-mobile-itens a {
    margin: 1rem 0 1rem !important;
}

header .nav-item:last-child {
    position: absolute;
    margin-right: 2rem;
    right: 0;
}

header nav .nav-mobile {
    min-width: 200px;
    display: none;
}

.nav-mobile-title {
    display: flex;
    align-items: center;
}

.nav-mobile-title img{
    height: 35px;
    width: 35px;
    border-radius: 1em;
}

header .nav-item .nav_burger_button {
    display: none;
}

.nav_trigger {
    background-color: #ffffff1a;
    color: white;
    font-size: large;
    border-radius: .875rem;
    flex: none;
    justify-content: center;
    align-items: center;
    min-width: 4.1rem;
    height: 4.1rem;
    transition: all .5s;
    cursor: pointer;
    display: flex;
    position: relative;
    overflow: hidden;
    padding: 10px;
}

.nav_trigger:hover {
    background-color: #ffffff4d;
    transform: scale(1.03);
}

.logo:hover{
    transform: scale(1.03);
}

@media(max-width: 1100px){
    header nav .nav-mobile {
        display: block;
    }

    header nav{
        border-bottom-left-radius: 1.5em;
        border-top-left-radius: 1.5em;
        background: black;
        position: fixed;
        width: 0;
        height: 100%;
        display: none !important;
        z-index: 1000;
        right: 0;
        top: 0;
    }

    header .nav-item .RHIDMobile {
        display: none !important;
    }

    header nav .nav-itens {
        display: block !important;
    }

    header nav a{
        display: block;
        font-size: 2rem;
        text-align: start;
        margin: 1.5rem 0 2rem !important;
    }

    header .nav-item .nav_burger_button {
        display: flex;
    }

    header .nav-item {
        gap: 0.5em !important;
    }
}
@media(max-width: 1000px){
    .bouncy-arrow {
        display: none !important;
    }
}
@media(max-width: 1300px){
    .btn-black-rounded {
        margin-top: 5px;
    }
}
header nav {
    transition: 0.5s ease;
}
header nav.show {
    display: block !important;
    width: auto;
}
header nav .nav-itens {
    padding: 1.5rem;
    display: flex;
    gap: 2em;
}
.hc-size{
    font-size: 17px;
    padding: 10px;
}

.closeNavBar{
    margin-right: 0;
    margin-left: auto;
}

header nav a:first-child{
    margin-left: 0;
}

header nav hr {
    margin: 10px 0;
    border-bottom: 1px solid #696969;
}

.nav-mobile-itens{
    display: flex;
    gap: 2em;
}

header nav a{
    font-size: 1.8rem;
    color: white;
    font-weight: 500;
    transition: 0.3s ease;
    border-bottom: 3px solid transparent;
}

header nav a:hover,
header nav a.active{
    color: #712cf9;
    border-bottom: 3px solid #712cf9;
}

main.main {
    position: absolute;
    width: 100%;
    height: 100vh;
}

.logo{
    font-size: 3rem;
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
    transition: 0.5s ease;
}

.bg-212335 {
    --card-text: white !important;
    background: linear-gradient(132deg, #000000, #212335) !important;
    animation: Gradient 15s ease infinite;
    background-size: 400% 400%;
}

.card.bg-212335 .card__shine {
    background: linear-gradient(132deg, #000000, #212335) !important;
}


.cursor-pointer {
    cursor: pointer;
}

.d-flex {
    display: flex;
}

.text-danger {
    color: red !important;
}

section{
    position: relative;
    width: 100%;
    height: 100%;
}

section .content {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
}

section.auto-height {
    height: auto;
}

section.auto-height .content {
    position: relative;
    width: 100%;
    height: auto;
    padding: 7rem 0 7rem;
}

.all-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.inline-center {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

section#about, section#download, section#contact{
    font-size: 13px;
}

section .sub-content p {
    font-size: 1.6rem;
    font-weight: 700;
}

section .sub-content h1{
    font-size: 3.5rem;
    font-weight: 700;
}

.flex-colum {
    flex-direction: column;
}

@media (max-width: 1000px){
    .all-center, .inline-center{
        gap: 2rem;
    }
}

@media(max-width:995px){
    .all-center {
        flex-direction: column;
    }
    .no-flex-colum {
        flex-direction: unset !important;
    }
    section .sub-content h1{
        font-size: 2.5rem;
    }
    .btn-black-rounded{
        padding: 1rem 1.8rem;
    }
    .card-image{
        margin-top: 4rem;
    }
    .card-image img{
        width: 75vw;
    }
    .home-slider {
        width: 75vw;
    }
}

span{
    color: #712cf9;
}

.card-image {
    display: flex;
}

.card-image img{
    position: relative;
    width: 40vw;
    border-radius: 0%;
    box-shadow: 0 0 25px rgb(113, 44, 249);
    cursor: pointer;
    transition: 0.2s linear;
    animation: pulse 2s infinite;
}

.arrow-left {
    color: white;
    font-size: 3.5em;
    overflow: hidden;
    margin: auto;
}

.arrow-rigth {
    color: white;
    font-size: 3.5em;
    overflow: hidden;
    margin: auto;
}

.arrow-left,
.arrow-rigth {
    transition: all .5s;
    justify-content: center;
    align-items: center;
    display: flex
;
}
.arrow-left:hover,
.arrow-rigth:hover {
    transform: scale(1.2);
}

.arrow-left svg {
    transform: rotate(90deg);
    width: 55px;
}

.arrow-rigth svg{
    transform: rotate(-90deg);
    width: 55px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 5px rgba(113, 44, 249, 0.7);
    }

    70% {
        box-shadow: 0 0 35px rgba(113, 44, 249, 0);
    }

    100% {
        box-shadow: 0 0 5px rgba(113, 44, 249, 0);
    }
}

.card-image img:hover{
    font-size: 1.8rem;
    font-weight: 500;
}

.social-icons {
    gap: 0.8rem;
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}

.social-icons a, .social-icons button{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background-color: tranparent;
    border: 0.2rem solid #712cf9;
    font-size: 2rem;
    border-radius: 1rem;
    transition: 0.3s ease;
    color: #712cf9;
}

.social-icons a:hover, .social-icons button:hover{
    color: black;
    transform: scale(1.03) translateY(-5px);
    background-color: #712cf9;
    box-shadow: 0  0 12.5px #712cf9;
}

.social-icons a:disabled, .social-icons button:disabled {
    cursor: no-drop;
    color: #712cf9;
    transform: scale(1);
    background-color: #5c5b5b5e;
    box-shadow: none;
}

.prevent-select {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

.btn-black-rounded{
    display: inline-block;
    padding: 1rem 2.8rem;
    background: black;
    border-radius: 1rem;
    font-size: 1.6rem;
    color: #712cf9;
    letter-spacing: 0.3rem;
    font-weight: 600;
    border: 2px solid #712cf9;
    transition: 0.3s ease;
    margin-right: 5px;
    cursor: pointer;
}
.btn-black-rounded.text-warning {
    color: #ffc107 !important;
    border: 2px solid #ffc107 !important;
}

.btn-black-rounded.text-warning:hover{
    transform: scale(1.03);
    background-color: #ffc107;
    color: black !important;
    box-shadow: 0 0 10px #ffc107;
}

.btn-black-rounded:hover{
    transform: scale(1.03);
    background-color: #712cf9;
    color: black;
    box-shadow: 0 0 10px #712cf9;
}

.typing-text{
    font-size: 34px;
    font-weight: 600;
    min-width: 280px;
}

.typing-text span{
    position: relative;
}

.typing-text span::after{
    content: "";
    position: absolute;
    width: calc(100% + 8px);
    height: 100%;
    border-left: 3px solid black;
    right: -8;
    animation: cursor 0.6s infinite;
}

@keyframes cursor{
    to{
        border-left: 3px solid #712cf9;
    }
}
.bouncy-arrow {
    color: white;
    position: absolute;
    bottom: 0;
    width: auto;
    height: auto;
    font-size: 2.5rem;
    animation: arrow-bounce 2s infinite;
    overflow: hidden;
}
.bouncy-arrow.sr2 {
    font-size: 2em;
}
.d-bouncy-arrow {
    position: absolute;
    width: 100%;
    bottom: 0;
    justify-content: center;
    display: flex;
}

@keyframes arrow-bounce{

    0%, 20%, 50%, 80%, 100% {
        transform: translateY(10px);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
    font-size: inherit;
    color: inherit;
    vertical-align: -0.125em;
}

.footer-language {
    position: fixed;
    right: 0;
    bottom: 0;
    width: auto !important;
    padding: 10px 20px;
}

.footer-copyright {
    position: fixed;
    width: auto;
    bottom: 0;
    display: flex !important;
    text-align: center;
    padding: 10px 0;
    background-size: 140% 140%;
    color: #fff;
}

.text-center {
    text-align: center;
}

.footer-copyright div.left {
    margin-right: auto;
    margin-left: 10px;
}

.bg-primary-subtle {
    background-color: #031633;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
    
}

.version {
    font-size: 0.9rem;
    color: #777;
}

ul,
ol {
    list-style: none;
    padding: 0;
}

li {
    margin-bottom: 0.5rem;
}

.download-button {
    display: inline-block;
    background: linear-gradient(-300deg, #20009e, #712cf9, #4c0bce);
    background-size: 140% 140%;
    animation: gradient-animation 2.5s ease infinite;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px;
}

.download-button:hover {
    color: #ffffff;
    background: linear-gradient(-300deg, #20009e, #0d6efd) !important;
    background-size: 140% 140% !important;
    animation: gradient-animation 0.5s ease infinite !important;
    transform: scale(1.05);
    transition: all 0.5s;
}

::-webkit-scrollbar .auto-scrool {
  display: none;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  --bs-bg-opacity: 1;
  background: #212335;
}

::-webkit-scrollbar-thumb {
  background: #8828ff;
}

::-webkit-scrollbar-thumb:hover {
  background: #a052ff;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

:root {
  --f-brand-color: #2563eb;
}

.productCarousel,
.f-thumbs.is-classic,
.fancybox__toolbar,
.fancybox__nav {
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border-radius: 4px;

  --f-button-color: #0d0c22;
  --f-button-hover-color: var(--f-brand-color);

  --f-button-bg: #f1f5f9;
  --f-button-hover-bg: #e2e8f0;
  --f-button-active-bg: #e2e8f0;

  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  --f-button-svg-stroke-width: 2.25;
  --f-button-svg-filter: none;

  --f-button-svg-disabled-opacity: 0.2;
}

.f-carousel__slide {
  display: flex;
  align-items: center;
  justify-items: center;
}

.f-thumbs.is-classic {
  --f-thumb-width: 120px;
  --f-thumb-height: 60px;
  --f-thumb-gap: 8px;

  --f-thumb-opacity: 1;
  --f-thumb-selected-opacity: 1;

  --f-thumb-outline: 2px;
  --f-thumb-outline-color: var(--f-brand-color);

  --f-button-next-pos: 8px;
  --f-button-prev-pos: 8px;
}

.f-thumbs.is-classic.is-horizontal {
  padding: 0 56px;
}

.f-thumbs.is-classic.is-vertical {
  padding: 56px 0;
}

.productCarousel .f-carousel__nav {
  opacity: 0;
  transition: opacity 0.15s;
}

@media (hover: hover) {
  .productCarousel:hover .f-carousel__nav {
    opacity: 1;
  }
}

.fancybox__container {
  --fancybox-bg: #fff;
  --fancybox-color: #6a6969;

  --f-spinner-color-1: rgba(0, 0, 0, 0.1);
  --f-spinner-color-2: rgba(17, 24, 28, 0.8);
}

@media screen and (min-width: 640px) {
  .fancybox__container {
    flex-direction: row-reverse;
  }
}

.fancybox__thumbs.is-classic.is-horizontal {
  --f-thumb-width: 75px;
  --f-thumb-height: 55px;
  --f-thumb-gap: 8px;
}

.fancybox__thumbs.is-classic.is-vertical {
  --f-thumb-width: 100%;
  --f-thumb-height: 100px;

  width: 182px;

  outline: 1px solid #edeef0;
}

.fancybox__thumbs.is-classic.is-vertical .f-thumbs__track {
  padding: 0 16px;
}

.fancybox__toolbar {
  padding: 8px;
}

.fancybox__nav {
  --f-button-next-pos: 8px;
  --f-button-prev-pos: 8px;
}

.fancybox__carousel {
  min-width: 0;
  min-height: 0;
}

.fancybox__slide {
  padding: 8px;
}

.uptime-color {
    color: #5cdd8b;
}
.uptime-color:hover {
    color: #5cdd8b;
    opacity: .8;
}



/*  ///  Card  /// */

.card {
    --card-bg: #ffffff;
    --card-accent: #7c3aed;
    --card-text: #1e293b;
    --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    width: 400px;
    max-width: 90%;
    /*min-height: 550px;*/
    max-height: 90%;
    background: var(--card-bg);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
}

.card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0) 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card__glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(124, 58, 237, 0.3) 0%,
    rgba(124, 58, 237, 0) 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.card__content {
  padding: 1.25em;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  position: relative;
  z-index: 2;
}

.card__badge {
  position: absolute;
  top: 13px;
  right: 13px;
  background: #10b981;
  color: white;
  padding: 0.50em 1em;
  border-radius: 999px;
  font-size: 0.9em;
  font-weight: 600;
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.4s ease 0.1s;
}

.card__image {
  width: 100%;
  height: 200px;
  background: linear-gradient(45deg, #a78bfa, #8b5cf6);
  border-radius: 12px;
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 30%
    ),
    repeating-linear-gradient(
      45deg,
      rgba(139, 92, 246, 0.1) 0px,
      rgba(139, 92, 246, 0.1) 2px,
      transparent 2px,
      transparent 4px
    );
  opacity: 0.5;
}

.card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card__text {
    display: flex;
    flex-direction: column;
    gap: 0.50em;
    max-height: 40rem;
    overflow: hidden;
}

.card__title {
  color: var(--card-text);
  font-size: 3em;
  margin: 0;
  font-weight: 700;
  transition: all 0.3s ease;
}

.card__description {
  color: var(--card-text);
  font-size: 1.75em;
  margin: 0;
  opacity: 0.7;
  transition: all 0.3s ease;
  overflow-y: auto;
}

.card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.card__price {
  color: var(--card-text);
  font-weight: 700;
  font-size: 2em;
  transition: all 0.3s ease;
}

.card__button {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: scale(0.9);
}

/* Hover Effects */
.card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: rgba(124, 58, 237, 0.2);
}

.card:hover .card__shine {
  opacity: 1;
  animation: shine 3s infinite;
}

.card:hover .card__glow {
  opacity: 1;
}

.card:hover .card__badge {
  transform: scale(1);
  opacity: 1;
  z-index: 1;
}

.card:hover .card__image {
    height: 150px;
    transform: translateY(-5px) scale(1.03);
    /*box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);*/
}

.card:hover .card__title {
  color: var(--card-accent);
  transform: translateX(2px);
}

.card:hover .card__description {
  opacity: 1;
  transform: translateX(2px);
}

.card:hover .card__price {
  color: var(--card-accent);
  transform: translateX(2px);
}

.card:hover .card__button {
  transform: scale(1);
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.2);
}


/* Active State */
.card:active {
  transform: translateY(-5px) scale(0.98);
}

/* Animations */
@keyframes shine {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.btn-pay {
  width: 130px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(15, 15, 15);
  border: none;
  color: white;
  font-weight: 600;
  gap: 8px;
  cursor: pointer;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.103);
  position: relative;
  overflow: hidden;
  transition-duration: .3s;
}

.svgIcon {
  width: 16px;
}

.svgIcon path {
  fill: white;
}

.btn-pay::before {
    width: 128px;
    height: 130px;
    position: absolute;
    content: "";
    background-color: white;
    border-radius: 50%;
    left: -100%;
    top: 0;
    transition-duration: .3s;
    mix-blend-mode: difference;
}

.btn-pay:hover {
    border: 1px solid black;
    color: white;
}

.btn-pay:hover::before {
    transition-duration: .3s;
    transform: translate(100%,-50%);
    border-radius: 0;
}

.svgIcon:hover path {
    fill: black;
}

.btn-pay:active {
    transform: scale(1.05);
    transition-duration: .3s;
}

.carousel-container {
  position: relative;
}

.carousel-wrapper {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-out;
}

.carousel-item {
  flex: 0 0 20%;
  padding: 0 0.25rem;
}

.nav-button {
  position: absolute;
  height: 100%;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  cursor: pointer;
  padding: 1rem;
  transition: background-color 0.3s ease;
}

.nav-button:hover {
  background: rgba(0, 0, 0, 0.7);
}

.nav-button-left {
  left: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.nav-button-right {
  right: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.movie-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.7) 40%,
    rgba(0, 0, 0, 0.4) 100%
  );
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 4px;
}

.movie-card:hover .movie-overlay {
  opacity: 1;
}

.movie-info {
  padding: 1rem;
  width: 100%;
}

.movie-title {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
  line-height: 1.2;
  letter-spacing: 0.3px;
}

.movie-category {
  color: #e5e5e5;
  font-size: 0.5rem;
  margin: 0;
  opacity: 0.8;
  line-height: 1.4;
}

.shadow-drop,
.nav-item .logo,
.card,
.bouncy-arrow,
.home-slider,
.btn-black-rounded,
.nav_trigger.nav_burger_trigger,
.download-button,
.fancybox__content,
.f-thumbs__track
{
  filter: drop-shadow(8px 8px 1px rgba(0, 0, 0, 0.15));
}

typebot-bubble {
    z-index: 1000;
    position: absolute;
}