:root {
  --clr-accent-500-lighter: rgb(255, 255, 255);
  --clr-accent-300: #050505;
  --clr-accent-100: hsl(13, 100%, 96%);

  --clr-primary-400: hsl(0, 0%, 100%);

  --clr-neutral-900: rgb(0, 1, 11);
  --clr-neutral-100: hsl(0, 0%, 100%);

  --ff-primary: 'Montserrat Medium', sans-serif;
  --ff-body: var(--ff-primary);
  --ff-heading: var(--ff-primary);

  --fw-regular: 400;
  --fw-semi-bold: 500;
  --fw-bold: 700;

  --fs-300: 0.8125rem;
  --fs-400: 0.875rem;
  --fs-500: 0.9375rem;
  --fs-600: 1rem;
  --fs-700: 1.875rem;
  --fs-800: 2.5rem;
  --fs-900: 3.5rem;

  --fs-body: var(--fs-400);
  --fs-primary-heading: var(--fs-800);
  --fs-secondary-heading: var(--fs-700);
  --fs-nav: var(fs--500);
  --fs-button: var(--fs-300);

  --size-100: 0.25rem;
  --size-200: 0.5rem;
  --size-300: 0.75rem;
  --size-400: 1rem;
  --size-500: 1.5rem;
  --size-600: 2rem;
  --size-700: 3rem;
  --size-800: 4rem;
  --size-900: 5rem;
}

@media (min-width: 767px) {
  :root {
    --fs-body: var(--fs-500);
    --fs-primary-heading: var(--fs-900);
    --fs-secondary-heading: var(--fs-800);
    --fs-nav: var(--fs-300);
  }
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
* {
  margin: 0;
  padding: 0;
  font: inherit;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

/* Set core body defaults */
body {
  text-rendering: optimizeSpeed;
  line-height: 1.75;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture,
svg {
  max-width: 100%;
  display: block;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* general styling */

body {
  font-size: var(--fs-body);
  font-family: var(--ff-body);
  color: var(--clr-primary-400);
  background-color: #000;
}

p:not([class]) {
  opacity: 0.7;
  max-width: 34ch;
}

p[data-width='wide'] {
  max-width: 43ch;
}

.gradient {
  background: -webkit-linear-gradient(
    left,
    hsl(288, 76%, 70%),
    var(--clr-accent-500)
  );
  background: linear-gradient(to right,var(--clr-accent-500-lighter), var(--clr-accent-500));

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* button */

.button {
  display: inline-flex;
  cursor: pointer;
  text-decoration: none;
  border: 0;
  border-radius: 100px;
  padding: 1.25em 2.5em;
  font-weight: var(--fw-bold);
  font-size: var(--fs-button);
  line-height: 1;
  color: var(--clr-neutral-100);
  background-color: var(--clr-accent-400);
  box-shadow: 0 1em 0.5em -1em var(--clr-accent-500);
  transition: 300ms;

}

.button[data-type="inverted"] {
  background-color: var(--clr-neutral-100);
  color: var(--clr-accent-400);

}

.button:hover,
.button:focus-visible {
  background-color: #6db4c6;
  scale:1.03
}

.button[data-type="inverted"]:hover,
.button[data-type="inverted"]:focus-visible {
  background-color: var(--clr-neutral-100);
  color: var(--clr-accent-300);

}

/* navigation */

.logo-top {
  width: 160px;
}

.blur {
  position: absolute;
  top: 1100px;
  left: 0px;
  width: 800px;
  z-index: -1;
}

.blur2 {
  position: absolute;
  top: 100px;
  right: 0px;
  width: 800px;
  z-index: -1;
}

.primary-header {
  padding-top: 2rem;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-toggle {
  display: none;
}

.nav-list {
  font-size: var(--fs-nav);
}

.nav-list {
  display: flex;
  gap: clamp(var(--size-400), 5vw, var(--size-700));
  font-weight: var(--fw-semi-bold);
}

.nav-list a {
  text-decoration: none;
  color: var(--clr-primary-400);
}

.nav-list a:hover,
.nav-list a:focus {
  color: var(--clr-accent-400);
}

@media (max-width: 767px) {
  .primary-navigation {
    display: none;

    position: fixed;
    padding: var(--size-700);
    inset: 4rem var(--size-400) auto;
    max-width: 25rem;
    margin-left: auto;
    background: #12151e;
    border-radius: var(--size-100);
    box-shadow: 0 0 0.75em rgb(0, 0, 0, 0.05);
  }

  .primary-header[data-overlay]::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: linear-gradient(rgb(0 0 0/0), rgb(0 0 0/0.8));
  }

  .nav-list {
    display: grid;
    gap: var(--size-600);
    text-align: center;
    font-weight: var(--fw-bold);
  }

  .primary-navigation[data-visible] {
    display: block;
    z-index: 1000;
    
  }

  .mobile-nav-toggle {
    display: block;
    position: fixed;
    top: var(--size-600);
    right: var(--size-400);
    cursor: pointer;
    background: transparent;
    border: 0;
    padding: 0.5em;
  }

  .mobile-nav-toggle .icon-close {
    display: none;
  }
}

/* footer nav */

.footer-nav {
  columns: 2;
}

.footer-nav a {
  color: var(--clr-neutral-100);
  text-decoration: none;
  line-height: 2.5;
}

.footer-nav a:is(:hover, :focus) {
  color: var(--clr-accent-400);
}

/* cta */

.cta {
  position: relative;
  isolation: isolate;
  text-align: center;
  background-image: linear-gradient(
    to right,
    var(--clr-accent-400),
    var(--clr-accent-300)
  );
}

@media (min-width: 767px) {
  .cta {
    text-align: left;
  }
}

/* .cta::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: 
        url('images/bg-tablet-pattern.svg'),
        url('images/bg-tablet-pattern.svg');
    background-position: -15rem -5rem, 80rem -42rem;
    background-repeat: no-repeat;
    opacity: 0.1;
} */

/* Utility classes */

.visually-hidden {
  position: absolute;
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.container {
  --max-width: 1110px;
  --padding: 1rem;

  width: min(var(--max-width), 100% - (var(--padding) * 2));
  margin-inline: auto;
}

.even-columns {
  display: grid;
  gap: 1rem;
}

.uneven-columns {
  display: flex;
  padding: 0px 0px 1rem 0px;
  border-style: solid;
  border-color: #181818;
  border-width: 1px;
  border-radius: 20px;
  transition: 200ms;
}

.uneven-columns:hover {
  display: flex;
  background-image: linear-gradient(#30333b, #12151e);
  border-radius: 20px;
  scale: 1.02;
}

.div-icon {
  display: flex;
  width: 100px;
}

.icons-mid {
  width: 60px;
  margin: auto;
  background-color: rgba(0, 110, 255, 0.048);
  border-radius: 100000px;
  padding: 16px;
  filter: hue-rotate(-300deg);
}

@media (min-width: 767px) {
  .even-columns {
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
  }
}

.vertical-align-center {
  align-items: center;
}

/* .justify-self-end {
    justify-self: end;
} */

@media (min-width: 767px) {
  .justify-self-end-md {
    justify-self: end;
  }
}

:where(.flow :not(:first-child)) {
  margin-top: var(--flow-spacer, 3em);
}

.text-primary-400 {
  color: var(--clr-primary-400);
}
.text-accent-400 {
  color: var(--clr-accent-400);
}
.text-accent-100 {
  color: var(--clr-accent-100);
}
.text-neutral-100 {
  color: var(--clr-neutral-100);
}
.text-neutral-900 {
  color: var(--clr-neutral-900);
}

.bg-primary-400 {
  background-color: var(--clr-primary-400);
}
.bg-accent-400 {
  background-color: var(--clr-accent-400);
}
.bg-accent-100 {
  background-color: var(--clr-accent-100);
}
.bg-neutral-100 {
  background-color: var(--clr-neutral-100);
}
.bg-neutral-900 {
  background-color: #080808;
}

.fw-bold {
  font-weight: var(--fw-bold);
}
.fw-semi-bold {
  font-weight: var(--fw-semi-bold);
}
.fw-regular {
  font-weight: var(--fw-regular);
}

.fs-primary-heading {
  font-size: var(--fs-primary-heading);
  line-height: 1.1;
}
.fs-secondary-heading {
  font-size: var(--fs-secondary-heading);
  line-height: 1.1;
}

.fs-300 {
  font-size: var(--fs-300);
}
.fs-400 {
  font-size: var(--fs-400);
}
.fs-500 {
  font-size: var(--fs-500);
}
.fs-600 {
  font-size: var(--fs-600);
}

.padding-block-900 {
  padding-block: var(--size-900);
  margin-bottom: 0rem;
}

.padding-block-700 {
  padding-block: var(--size-700);
}

.display-sm-none {
  display: none;
}

@media (min-width: 767px) {
  .display-md-inline-flex {
    display: inline-flex;
  }
}

.flow a {
  text-decoration: none;
  margin-top: 25px;
}

.flow p {
  margin-bottom: 2rem;
}

.justify-self-end-md a {
  text-decoration: none;
}

.main-image {
  z-index: 1000;
  margin-top: 30px;
  filter: hue-rotate(-300deg);

}

.blur {
  position: absolute;
  top: 350px;
  left: 65%;
  width: 200px;
  height: 250px;
  opacity: 0.5;
  background: linear-gradient( 213.94deg, var(--clr-accent-500) 90%, #1c58d8 90% );
  filter: blur(120.604px);
  border-radius: 21.3448px;
  z-index: -100;
}

@media (max-width: 50em){
  .lastsection p{
    
    max-width: 18ch;
    font-size: 30px;
    margin-left: auto;
    margin-right: auto;
  }

  .blur {
    display: none;
  }

  }

  .logo-bottom {
    width: 210px;
    margin-bottom: 5px;
  }

  
  
  /* Adjusts tradevipe logos */

.footer_left_wrapper {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: end;
}

.logo-footer-tradevipe {
  width: 130px;
}

.logo-footer {
  width: 185px;
  margin-left: 40px;
}



/* How it works */
:root {
  --surface-color: #0F0F0F;
  --curve: 40;
}

* {
  box-sizing: border-box;
}


.how-it-works {
  max-width: 1000px; /* largura máxima desejada */
  margin: 0 auto; /* centralizar horizontalmente */
  margin-bottom: 6rem;
  margin-top: 2rem;
}

.titles{
  font-size: large;
  width: 300px;
  text-align: center;
  margin: 0 auto;
}



.cards {
  justify-content: center;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
  gap: 2rem;
  padding: 0;
  list-style-type: none;
  margin: 1rem auto; /* centralizar verticalmente */
  
}

.card {
  position: relative;
  display: block;
  height: 100%;  
  border-radius: calc(var(--curve) * 1px);
  overflow: hidden;
  text-decoration: none;
  filter: hue-rotate(-300deg);
}



.card__image {      
  width: 100%;
  height: auto;

}

.card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;      
  border-radius: calc(var(--curve) * 1px);    
  background-color: var(--surface-color);      
  transform: translateY(100%);
  transition: .2s ease-in-out;
}

.card:hover .card__overlay {
  transform: translateY(0);
}

.card__header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2em;
  padding: 2em;
  border-radius: calc(var(--curve) * 1px) 0 0 0;    
  background-color: var(--surface-color);
  transform: translateY(-100%);
  transition: .2s ease-in-out;
  border: solid;
  border-color: #0f0f0f;
  border-width: 2px 0px 0px 0px;
  
}

.card__arc {
  width: 80px;
  height: 80px;
  position: absolute;
  bottom: 100%;
  right: 0;      
  z-index: 1;
}

.card__arc path {
  fill: var(--surface-color);
  d: path("M 40 80 c 22 0 40 -22 40 -40 v 40 Z");
  
}       

.card:hover .card__header {
  transform: translateY(0);
}

.card__thumb {
  flex-shrink: 0;
  width: 50px;
  height: 50px;      
  border-radius: 50%;      
}

.card__title {
  font-size: 1em;
  margin: 0 0 .3em;
  color: #FFF;
}

.card__tagline {
  display: block;
  margin: 1em 0;
  font-family: "MockFlowFont";  
  font-size: .8em; 
  color: #ffffff;  
}

.card__status {
  font-size: .8em;
  color: #ffffff;
}

.card__description {
  padding: 0 2em 2em;
  margin: 0;
  color: darkgrey;
  font-family: "Outfit";   
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}    


/*ytvideo*/

.youtubevideo {
 
  padding-bottom: 5rem;
  padding-top: 2rem;
}

.ytvideo {
  display: flex;

margin-left: auto;
margin-right: auto;
justify-self: center;
justify-content: center;
margin-bottom: 2rem;
margin-top: 1rem;



}
.ytvideo iframe {
border-radius: 20px; /* set the border radius to 10 pixels */
border-color: rgb(123, 123, 123);
}



@media (max-width: 767px) {
  .ytvideo {
    scale: 0.9;
  }
}

.buttonmiddle {
display: flex;
width: 300px;
justify-content: center;
margin-left: auto;
margin-right: auto;

}


/* leaderbenefits */


.benefitscontainer{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 7rem;
  }
  
  .flexbenefits1 {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  
  }
  
  @media (max-width: 907px){
  .flexbenefits1 {
    justify-content: center;
  }
  
  .flexbenefits2 {
    justify-content: center;
  }
  
  .flexbenefits3 {
    justify-content: center;
  }
  
  }
  
  
  .flexbenefits1 div{
  display: flex;
  flex-direction: column;
  max-width: 550px;
  min-width: 200px;
  padding: 20px;
  padding-left: 50px;
  padding-right: 50px;
  justify-content: center;
  gap:15px;
  
  }
  
  .flexbenefits1 img{
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  filter: hue-rotate(-300deg);
  }
  
  
  .flexbenefits2 {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  flex-direction: row-reverse;
  
  }
  
  .flexbenefits2 div{
  display: flex;
  flex-direction: column;
  max-width: 550px;
  min-width: 200px;
  padding: 20px;
  padding-left: 50px;
  padding-right: 50px;
  justify-content: center;
  gap:15px;
  }
  
  .flexbenefits2 img{
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  filter: hue-rotate(-300deg);
  
  }
  
  .flexbenefits3 {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  flex-direction: row-reverse;
      filter: hue-rotate(-300deg);
  
  }
  
  .flexbenefits3 div{
  display: flex;
  flex-direction: column;
  max-width: 550px;
  min-width: 200px;
  padding: 20px;
  padding-left: 50px;
  padding-right: 50px;
  justify-content: center;
  gap:15px;
  }
  
  .flexbenefits3 img{
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  filter: hue-rotate(-300deg);
  }
  
  
  .image1benefits {
  width: 400px;

  }
  
  .image2benefits {
  width: 400px;

  }
  
  .image3benefits {
  width: 400px;

  
  
  }
  
  #pricing {
  padding-top: 5rem;
  }


  /* ------------------------Footer----------------- */
.row_footer div {
  padding: 11px;
}

.row_footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.footer_left_wrapper p{

  margin-left: 31px;

}
.site-footer {
  background-color: transparent;
  padding: 45px 0 20px;
  font-size: 15px;
  line-height: 24px;
  color: #737373;
}
.site-footer hr {
  border-top-color: #bbb;
  opacity: 0.5;
}
.site-footer hr.small {
  margin: 20px 0;
}
.site-footer h6 {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 5px;
  letter-spacing: 2px;
}
.site-footer a {
  color: #737373;
}
.site-footer a:hover {
  color: #3366cc;
  text-decoration: none;
}
.footer-links {
  padding-left: 0;
  list-style: none;
}
.footer-links li {
  display: block;
}
.footer-links a {
  color: #737373;
}
.footer-links a:active,
.footer-links a:focus,
.footer-links a:hover {
  color: #3366cc;
  text-decoration: none;
}
.footer-links.inline li {
  display: inline-block;
}
.site-footer .social-icons {
  text-align: right;
}
.site-footer .social-icons a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-left: 6px;
  margin-right: 0;
  border-radius: 100%;
  background-color: #33353d;
}
.copyright-text {
  margin: 0;
}
@media (max-width: 991px) {
  .site-footer [class^='col-'] {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .site-footer {
    padding-bottom: 0;
  }
  .site-footer .copyright-text,
  .site-footer .social-icons {
    text-align: center;
  }
}
.social-icons {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  
  
}
.social-icons li {
  display: inline-block;
  margin-bottom: 4px;
}
.social-icons li.title {
  margin-right: 15px;
  text-transform: uppercase;
  color: #96a2b2;
  font-weight: 700;
  font-size: 13px;
}
.social-icons a {
  
  background-color: #34343C;
  color: #80878F; 
  font-size: 17px;
  display: inline-block;
  line-height: 40px;
  width: 40px;
  height: 40px;
  text-align: center;
  margin-right: 1px;
  margin-left: 1px;
  border-radius: 100%;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;

 
}
.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
  color: #fff;
  background-color: #29aafe;
}
.social-icons.size-sm a {
  align-items: center;
  justify-content: center;
  line-height: 34px;
  height: 34px;
  width: 34px;
  font-size: 14px;
}
.social-icons a.facebook:hover {
  background-color: #b75bdb;
}
.social-icons a.twitter:hover {
  background-color: #1DA1F2;
}
.social-icons a.linkedin:hover {
  background-color: #2FA2D8;
}
.social-icons a.dribbble:hover {
  background-color: #e94b4b;
}
.social-icons a.tiktok:hover {
  background-color: #24ECE6;
}
@media (max-width: 767px) {
  .social-icons li.title {
    display: block;
    margin-right: 0;
    font-weight: 600;
  }
}

.social-icons-div {
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-self: end;
}

@media (max-width: 767px) {
  .social-icons-div {
    justify-self: auto;
  }
}

a {
  text-decoration: auto;
}

.logo-footer {
  width: 180px;
  margin-left: 27px;
}

.logopoweredby {
  width: 110px;
  margin-left: 7px;
  margin-bottom: 27px;

}

.poweredbywrapper {
  display: flex;
  flex-direction: row;
}


.nav-list-footer {
  font-size: var(--fs-nav);
}

.nav-list-footer {
  display: flex;
  gap: 10px;
  font-weight: var(--fw-semi-bold);
  flex-direction: column;
  padding-top: 75px;
  padding-left: 50px;
}

.nav-list-footer a {
  text-decoration: none;
  color: var(--clr-primary-400);
}

.nav-list-footer a:hover,
.nav-list-footer a:focus {
  color: var(--clr-accent-400);
}







.nav-list-footer2 {
  font-size: var(--fs-nav);
}

.nav-list-footer2 {
  display: flex;
  gap: 10px;
  font-weight: var(--fw-semi-bold);
  flex-direction: column;
  padding-top: 75px;
  
}

.nav-list-footer2 a {
  text-decoration: none;
  color: var(--clr-primary-400);
}

.nav-list-footer2 a:hover,
.nav-list-footer2 a:focus {
  color: var(--clr-accent-400);
}


@media (max-width: 767px) {
  .nav-wrapper  {
    justify-content: center !important;
  }

  .logo-bottom {
    margin: 0px auto !important;
  }
}