:root {
  --cyan: cyan;
  --blue: #5221e6;
  --white: white;
  --black: black;
  --level-1: #181823;
  --darkgrey: #5b6876;
  --light-slate-grey: #8491a0;
  --lime-green: #3cc74e;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.body {
  background-color: #221341;
  font-family: Sen, sans-serif;
}

.wrapper {
  width: 100%;
  max-width: 1920px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.wrapper.grid {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.wrapper.grid-3_col {
  grid-column-gap: 24px;
  grid-row-gap: 48px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.wrapper.projects-grid {
  grid-column-gap: 24px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.wrapper.sticky-grid {
  grid-column-gap: 64px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.wrapper.footer-grid {
  grid-column-gap: 24px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .6fr .4fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.nav-bar {
  background-color: #0000;
  padding-left: 72px;
  padding-right: 72px;
}

.nav-link {
  color: #ffffffb3;
  padding: 32px 24px;
  font-size: 16px;
  line-height: 150%;
  transition: color .35s cubic-bezier(.165, .84, .44, 1);
}

.nav-link:hover {
  color: var(--cyan);
}

.nav-link.button {
  background-color: var(--blue);
  color: var(--white);
  font-weight: 700;
  transition: background-color .35s cubic-bezier(.165, .84, .44, 1), color .35s cubic-bezier(.165, .84, .44, 1);
}

.nav-link.button:hover {
  background-color: #2a0b85;
}

.brand {
  margin-top: 32px;
  padding-left: 0;
}

.logo {
  width: 50px;
}

.hero-section {
  height: 90vh;
  max-height: 1080px;
  padding-right: 40px;
  position: static;
}

.hero-image-box {
  background-image: url('../images/Captura-de-tela-2025-02-05-081341.avif');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 80vh;
  max-height: 864px;
}

.heading_76px {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 32px;
  font-size: 76px;
  line-height: 110%;
}

.hero-text-block {
  margin-left: 10px;
}

.paragraph_18px {
  color: var(--white);
  font-size: 18px;
  line-height: 150%;
}

.paragraph_18px.dark-grey {
  color: var(--darkgrey);
}

.paragraph_18px.light-grey {
  color: #e4e4e4;
}

.paragraph_18px.light-grey._40px-bottom_m {
  margin-bottom: 40px;
}

.paragraph_18px.light-grey._64px-bottom_m {
  margin-bottom: 64px;
}

.paragraph_18px.light-grey.zap {
  text-align: left;
  font-size: 16px;
  -webkit-text-decoration: underline #c061ff;
  text-decoration: underline #c061ff;
}

.hero-bg {
  z-index: -1;
  background-image: linear-gradient(to bottom, var(--level-1), var(--level-1));
  width: 65vw;
  height: 110vh;
  max-height: 1350px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.white_50 {
  color: #7c5cffd4;
}

.experience-section {
  padding: 265px 72px 120px;
}

.overline_16px {
  color: #7c5cff;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  display: inline-block;
}

.heading_55px {
  color: var(--white);
  width: 100%;
  max-width: 780px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 55px;
  line-height: 110%;
  display: inline-block;
}

.heading_55px.black {
  color: var(--level-1);
}

.heading_55px.black._24px-bottom, .heading_55px._24px-bottom {
  margin-bottom: 24px;
}

.flex-vertical_left_top {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.experience-grid {
  grid-column-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 40px;
}

.number {
  color: #b49eff;
  margin-bottom: 8px;
  font-size: 4rem;
  font-weight: 400;
  line-height: 100%;
  display: block;
}

.heading_24px {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
}

.heading_24px._64px-bottom_m {
  margin-bottom: 64px;
}

.experience-block {
  padding-right: 48px;
}

.paragraph_16px {
  color: var(--white);
  margin-bottom: 0;
  font-size: 16px;
  line-height: 150%;
  text-decoration: none;
}

.paragraph_16px.light-grey {
  color: var(--light-slate-grey);
}

.paragraph_16px.white {
  color: var(--white);
}

.paragraph_16px.cyan {
  color: var(--cyan);
  transition: color .35s;
}

.paragraph_16px.cyan:hover {
  color: #00ffffd9;
}

.green {
  color: var(--lime-green);
}

.blue {
  color: #609bff;
}

.pink {
  color: #e95d90;
}

.mid-section {
  height: 600px;
  display: block;
}

.mid_left-block {
  background-color: #fff3e4;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 120px 72px;
  display: flex;
}

.mid_left-block.instagram {
  background-color: #fbe4ff;
}

.animated-link-button {
  border-bottom: 1px solid var(--darkgrey);
  color: var(--level-1);
  font-size: 16px;
  line-height: 40px;
  text-decoration: none;
  transition: color .35s cubic-bezier(.165, .84, .44, 1), padding .35s cubic-bezier(.165, .84, .44, 1), background-color .35s cubic-bezier(.165, .84, .44, 1);
  display: inline-block;
}

.animated-link-button:hover {
  background-image: linear-gradient(to bottom, var(--blue), var(--blue));
  color: var(--white);
  padding-left: 16px;
  padding-right: 16px;
}

.animated-link-button.white {
  color: var(--white);
}

.normal-wrapper._48px-right_p {
  padding-right: 48px;
}

.normal-wrapper._48px-right_p._80px-bottom_m {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 80px;
  display: flex;
}

.normal-wrapper._120px-bottom_m {
  margin-bottom: 120px;
}

.normal-wrapper.flex-vertical_left_space-betwen {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.normal-wrapper.flex-horizontal_left_top {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.mid_image {
  background-image: url('../images/Snapinst.app_339114023_241021701660611_3726178904596727940_n_1081.avif');
  background-position: 50% 70%;
  background-size: cover;
}

.mid_image.instagram {
  background-image: url('../images/Instagram.jpg');
  background-position: 50% 0;
}

.skills-section {
  padding: 120px 72px;
}

.skill-icon {
  width: 40px;
  margin-bottom: 24px;
}

.logo-bar-section {
  overflow: hidden;
}

.logo-grid {
  grid-column-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.logo-box {
  border: 1px solid var(--level-1);
  justify-content: center;
  align-items: center;
  width: 24vw;
  height: 140px;
  display: flex;
}

.projects-section {
  padding: 120px 72px;
}

.projects-section.mobile {
  display: none;
}

.project-image {
  box-sizing: border-box;
  object-fit: cover;
  height: 400px;
}

.project-description {
  background-color: var(--level-1);
  padding: 40px 32px;
  position: relative;
}

.button-wrapper {
  justify-content: center;
  align-items: center;
  height: 232px;
  display: flex;
}

.cta {
  border: 1px solid var(--blue);
  color: var(--white);
  background-color: #3898ec00;
  padding: 24px 32px;
  font-size: 18px;
  font-weight: 700;
  transition: box-shadow .35s cubic-bezier(.165, .84, .44, 1), background-color .35s cubic-bezier(.165, .84, .44, 1), transform .35s cubic-bezier(.165, .84, .44, 1);
}

.cta:hover {
  background-color: var(--blue);
  transform: translate(0, -5px);
  box-shadow: 0 20px 60px #5221e64d;
}

.project-wrapper {
  text-decoration: none;
  overflow: hidden;
}

.project-wrapper._24px-bottom_m {
  margin-bottom: 24px;
}

.dribbble-section {
  padding-top: 120px;
  padding-bottom: 120px;
  display: block;
}

.wrapper-v2 {
  width: 100%;
  max-width: 1076px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.wrapper-v2.forms-grid {
  grid-column-gap: 24px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.brower-bar {
  background-color: var(--level-1);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  justify-content: flex-start;
  align-items: center;
  height: 37px;
  padding-left: 16px;
  display: flex;
}

.dots {
  background-color: var(--light-slate-grey);
  border-radius: 100px;
  width: 12px;
  height: 12px;
  margin-right: 6px;
}

.dribbble-image {
  background-image: url('../images/Dribbble.jpg');
  background-position: 50%;
  background-repeat: repeat;
  background-size: 1024px;
  background-attachment: fixed;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  height: 640px;
}

.testimonial-section {
  padding: 120px 72px;
}

.testimonial-block._120px-bottom_m {
  margin-bottom: 120px;
}

.testimonial-image {
  object-fit: cover;
  height: 360px;
}

.testimonial-text {
  border-right: 1px solid var(--darkgrey);
  border-bottom: 1px solid var(--darkgrey);
  border-left: 1px solid var(--darkgrey);
  padding: 64px;
}

.heading_18px {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
}

.heading_18px.light-grey {
  color: var(--light-slate-grey);
}

.heading_18px.light-grey._4px-bottom_m {
  margin-bottom: 4px;
}

.testimonial-sticky-block {
  position: sticky;
  top: 64px;
}

.tabs-section {
  padding: 120px 72px;
}

.tab {
  border: 1px solid var(--blue);
  color: var(--white);
  background-color: #ddd0;
  margin-right: 24px;
  padding: 12px 16px;
  font-size: 18px;
  font-weight: 700;
  transition: background-color .35s cubic-bezier(.165, .84, .44, 1);
}

.tab:hover {
  background-color: #5221e633;
}

.tab.w--current {
  background-color: var(--blue);
}

.tab-menu {
  margin-bottom: 40px;
}

.tab-grid {
  grid-column-gap: 24px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 32vw;
  max-height: 630px;
  display: grid;
}

.tab-image {
  object-fit: cover;
  height: 100%;
}

.forms-section {
  padding: 120px 72px;
}

.text-field {
  background-color: var(--level-1);
  color: var(--white);
  border: 0 #000;
  margin-top: 8px;
  margin-bottom: 40px;
}

.text-field._100px {
  height: 100px;
  display: block;
}

.form-button {
  background-color: var(--blue);
  width: 100%;
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 18px;
  font-weight: 700;
}

.success {
  background-color: var(--lime-green);
}

.success-text {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

.error-message {
  background-color: #e43b3b;
}

.text-block {
  color: #fff;
}

.footer {
  background-color: var(--level-1);
  height: 422px;
  padding: 80px 72px;
}

.footer-logo {
  margin-bottom: 32px;
}

.social-icons {
  margin-right: 16px;
}

.footer-link-block {
  border: 1px #000;
  width: 50%;
  text-decoration: none;
}

.footer-link {
  color: var(--white);
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 16px;
  transition: color .35s cubic-bezier(.165, .84, .44, 1);
}

.footer-link:hover {
  color: var(--cyan);
}

.skills-wrapper._48px-right_p {
  padding-right: 48px;
}

.progress-bar {
  z-index: 100;
  background-color: var(--blue);
  transform-origin: 0%;
  width: 100%;
  height: 5px;
  position: fixed;
  inset: 0% 0% auto;
}

.arrow-div {
  background-color: var(--blue);
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
  position: absolute;
  inset: auto 0% 0% auto;
}

.banner {
  background-color: var(--blue);
  background-image: linear-gradient(to bottom, transparent, transparent), linear-gradient(to right, var(--blue), #8d21e6);
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 16px 24px;
  text-decoration: none;
  transition: background-color .35s cubic-bezier(.165, .84, .44, 1);
  display: block;
  position: static;
  inset: 0% 0% auto;
}

.banner:hover {
  background-image: linear-gradient(to bottom, #0003, #0003), linear-gradient(to right, var(--blue), #8d21e6);
}

.banner-text {
  color: var(--white);
  text-align: center;
  font-size: 16px;
}

.div-block, .div-block-2 {
  flex-flow: column;
  margin-bottom: 20px;
  display: flex;
}

.div-block-3 {
  flex-flow: column;
  display: flex;
}

@media screen and (max-width: 991px) {
  .wrapper.grid-3_col {
    grid-template-columns: 1fr 1fr;
  }

  .wrapper.projects-grid {
    grid-row-gap: 48px;
    grid-template-columns: 1fr;
  }

  .wrapper.sticky-grid {
    grid-column-gap: 24px;
  }

  .wrapper.footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-bar {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-section {
    padding-right: 32px;
  }

  .heading_76px {
    font-size: 56px;
  }

  .experience-section {
    padding: 150px 40px 80px;
  }

  .experience-block {
    padding-right: 16px;
  }

  .mid_left-block, .skills-section {
    padding: 80px 40px;
  }

  .logo-grid {
    grid-row-gap: 0px;
    grid-template-columns: 1fr 1fr;
  }

  .logo-box {
    width: auto;
  }

  .projects-section {
    padding: 80px 40px;
  }

  .project-wrapper._24px-bottom_m {
    margin-bottom: 48px;
  }

  .dribbble-section {
    padding: 80px 40px;
  }

  .dribbble-image {
    background-size: cover;
    height: 480px;
  }

  .testimonial-section {
    padding: 80px 40px;
  }

  .testimonial-block._120px-bottom_m {
    margin-bottom: 64px;
  }

  .testimonial-text {
    padding: 32px;
  }

  .tabs-section {
    padding: 80px 40px;
  }

  .tab-grid {
    grid-row-gap: 24px;
    grid-template-columns: 1fr 1fr;
    height: 840px;
    max-height: none;
  }

  .forms-section {
    padding: 80px 40px;
  }

  .footer {
    padding-left: 40px;
    padding-right: 40px;
  }

  .banner {
    display: block;
  }

  .banner-text {
    text-align: center;
    line-height: 130%;
  }
}

@media screen and (max-width: 767px) {
  .wrapper.grid {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .wrapper.grid-3_col {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .wrapper.sticky-grid {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    grid-template-columns: 1fr;
  }

  .wrapper.footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-bar {
    padding-left: 20px;
    padding-right: 0;
  }

  .nav-link {
    border-bottom: 1px solid #ffffff1f;
  }

  .brand {
    margin-top: 24px;
  }

  .menu-button {
    padding: 24px 20px;
  }

  .menu-button.w--open {
    background-color: var(--black);
  }

  .nav-menu {
    background-color: var(--level-1);
  }

  .hero-section {
    height: auto;
    padding-right: 0;
  }

  .hero-image-box {
    height: 45vh;
  }

  .heading_76px {
    margin-bottom: 16px;
    font-size: 32px;
  }

  .hero-text-block {
    background-image: linear-gradient(to bottom, var(--level-1), var(--level-1));
    margin-left: 0;
    padding: 48px 20px;
  }

  .hero-bg {
    display: none;
  }

  .experience-section {
    padding: 64px 20px;
  }

  .heading_55px {
    font-size: 32px;
  }

  .experience-grid {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .experience-block {
    padding-right: 0;
  }

  .mid-section {
    height: auto;
    display: block;
  }

  .mid_left-block {
    height: 450px;
    padding: 48px 20px;
  }

  .normal-wrapper._48px-right_p {
    padding-right: 0;
  }

  .normal-wrapper._120px-bottom_m {
    margin-bottom: 64px;
  }

  .mid_image {
    height: 450px;
  }

  .skills-section, .projects-section, .dribbble-section {
    padding: 64px 20px;
  }

  .wrapper-v2.forms-grid {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    grid-template-columns: 1fr;
  }

  .dribbble-image {
    background-size: cover;
  }

  .testimonial-section {
    padding: 64px 20px;
  }

  .testimonial-sticky-block {
    position: static;
  }

  .tabs-section {
    padding: 64px 20px;
  }

  .tab {
    justify-content: center;
    align-items: center;
    margin-right: 4px;
    display: flex;
  }

  .tab-menu {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .tab-grid {
    height: auto;
  }

  .tab-image {
    height: 360px;
  }

  .forms-section {
    padding: 64px 20px;
  }

  .footer {
    height: auto;
  }

  .skills-wrapper._48px-right_p {
    padding-right: 0;
  }

  .banner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 479px) {
  .wrapper {
    max-width: 100%;
  }

  .wrapper.grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    max-width: 100%;
    display: block;
  }

  .wrapper.projects-grid {
    max-width: 100%;
  }

  .hero-section {
    object-fit: fill;
    max-width: 100%;
    overflow: visible;
  }

  .hero-image-box {
    width: 100%;
    max-width: 100%;
  }

  .hero-text-block {
    width: 100%;
  }

  .paragraph_18px.dark-grey {
    word-break: normal;
  }

  .paragraph_18px.light-grey {
    box-sizing: border-box;
    aspect-ratio: auto;
    word-break: normal;
    object-fit: fill;
    max-width: 100%;
    overflow: visible;
  }

  .paragraph_18px.light-grey.zap {
    word-break: normal;
  }

  .paragraph_18px.light-grey.links {
    word-break: break-all;
  }

  .experience-section {
    width: 100%;
    display: block;
  }

  .heading_55px {
    word-break: normal;
    overflow-wrap: normal;
    max-width: 100%;
  }

  .heading_55px.black._24px-bottom, .heading_55px._24px-bottom {
    word-break: normal;
  }

  .number {
    word-break: normal;
    overflow-wrap: normal;
    font-size: 2.5rem;
  }

  .heading_24px {
    text-align: left;
    word-break: normal;
    overflow-wrap: normal;
    font-style: normal;
    text-decoration: none;
    display: block;
  }

  .paragraph_16px {
    word-break: normal;
    overflow-wrap: normal;
  }

  .paragraph_16px.light-grey {
    color: var(--white);
    word-break: normal;
  }

  .mid_left-block {
    height: 700px;
  }

  .animated-link-button {
    word-break: break-all;
  }

  .normal-wrapper {
    overflow: hidden;
  }

  .normal-wrapper._48px-right_p._80px-bottom_m {
    overflow: visible;
  }

  .mid_image {
    max-width: 100%;
    height: 300px;
  }

  .projects-section {
    width: 100%;
  }

  .projects-section.desktop {
    display: block;
  }

  .projects-section.mobile {
    display: flex;
  }

  .project-image {
    box-sizing: border-box;
    object-fit: fill;
    height: auto;
    overflow: visible;
  }

  .cta {
    word-break: normal;
  }

  .project-wrapper {
    width: 100%;
  }

  .project-wrapper._24px-bottom_m {
    width: 100%;
    max-width: 100%;
    display: inline-block;
    overflow: visible;
  }

  .wrapper-v2.forms-grid {
    max-width: 100%;
  }

  .testimonial-text {
    padding: 24px;
  }

  .tab-grid {
    grid-template-columns: 1fr;
  }

  .div-block-4 {
    max-width: 100%;
    overflow: hidden;
  }

  .bold-text {
    overflow-wrap: normal;
  }

  .div-block-5 {
    width: 100%;
  }

  .div-block-6 {
    background-color: #000;
    width: 100%;
    padding: 20px 10px;
  }

  .text-span {
    color: var(--blue);
  }

  .div-block-7 {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
    flex-flow: column;
    display: flex;
  }
}

#w-node-_3cb0f931-ad23-8f11-e7c9-7467d5aa3ec3-91c8a61e, #w-node-c07b73a0-4560-1829-def8-54c08f04f882-91c8a61e {
  align-self: center;
}

#w-node-_4a8f1cb8-b5cc-dca3-1f15-df569cc0e59e-91c8a61e {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_4a8f1cb8-b5cc-dca3-1f15-df569cc0e59e-91c8a61e {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_4a8f1cb8-b5cc-dca3-1f15-df569cc0e59e-91c8a61e {
    grid-column: span 1 / span 1;
  }
}


