
html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: 'Uncut Sans';
  src: url('./assets/fonts/UncutSans-Regular.woff2') format('woff2'),
       url('../assets/fonts/UncutSans-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

body{
  background-color: #ffffff;
  font-family: 'Uncut Sans', sans-serif;
  overflow-x: hidden;
  margin: 0;
}

.default_button {
  padding: 2% 1%;
  border: none;
  margin-top: 5%;
  width: 100%;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  color: #995CF5;
}


.default_button:hover {
  background-color: #995CF5; 
  color:#f7f7f7
}

.background {
  width: 40%;
  height: 40%;
  position: relative;
  backdrop-filter: blur(40px);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  z-index: 0;
}

.background .shape {
  height: 25vw;
  width: 25vw;
  position: absolute;
  border-radius: 50%;
}
.shape:first-child {
  background: linear-gradient(#995CF5, #BFA4FA);
  left: -28vw;
  top: 5vh;
  animation: bubbleEffect1 12s infinite ease-in-out; 
}
.shape:last-child {
  background: linear-gradient(to right, #995CF5, #BFA4FA);
  left: 45vw;
  top: 50vh;
  animation: bubbleEffect2 8s infinite ease-in-out; 
}
@keyframes bubbleEffect1 {
  0% {
    transform: scale(1) skew(0deg, 0deg) rotate(0deg) translate(0, 0);
  }
  25% {
    transform: scale(1.1) skew(2deg, 1deg) rotate(3deg) translate(-5px, 5px);
  }
  50% {
    transform: scale(1.2) skew(4deg, 2deg) rotate(-2deg) translate(-10px, 10px);
  }
  75% {
    transform: scale(1.3) skew(6deg, 3deg) rotate(1deg) translate(-15px, 15px);
  }
  85% {
    transform: scale(1.35) skew(4deg, 8deg) rotate(1deg) translate(2px, -5px);
  }
  100% {
    transform: scale(1.2) skew(2deg, 1deg) rotate(4deg) translate(-5, 5);
  }
}
@keyframes bubbleEffect2 {
  0% {
    transform: scale(1) skew(0deg, 0deg) rotate(0deg) translate(0, 0);
  }
  25% {
    transform: scale(1.1) skew(1deg, 2deg) rotate(-3deg) translate(10px, -10px);
  }
  50% {
    transform: scale(1.2) skew(2deg, 4deg) rotate(2deg) translate(-10px, 10px);
  }
  75% {
    transform: scale(1.3) skew(3deg, 6deg) rotate(-1deg) translate(5px, -10px);
  }
  85% {
    transform: scale(1.35) skew(4deg, 8deg) rotate(1deg) translate(2px, -5px);
  }
  100% {
    transform: scale(1.2) skew(1deg, 2deg) rotate(0deg) translate(5, -10);
  }
}

.container{
  height: 200vh;
  width: 110%;
  position: absolute;
  transform: translate(-50%,-50%);
  top: 50%;
  left: 50%;
  backdrop-filter: blur(5vw);
}

.logo-home {
  max-width: 115%; 
  max-height: 100%; 
  object-fit: contain; 
}
.intro{
  text-align: center;
}
label{
  display: block;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 500;
}

.default_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  position: relative;
  z-index: 2;
  font-family: 'Uncut Sans', sans-serif;
}

.logo-header {
  flex-shrink: 0;
  max-width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex: 1; 
  margin: 0 40px;
}

.nav-links a {
  color: #010202;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  background-color: rgba(153, 92, 245, 0.1);
  color: #995CF5;
  text-decoration: none;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}


.language-selector {
  position: relative; 
  display: inline-block;
}

#globe-icon {
  padding: 5px; 
  vertical-align: middle; 
}

.language-dropdown {
  display: none; 
  position: absolute;
  top: 100%; 
  left: 50%; 
  transform: translateX(-50%); 
  background-color: transparent;
  min-width: 120px;
  z-index: 1000; 
  padding-top: 8px;
  border-radius: 4px;
}

.language-dropdown.options-inverted .language-option {
  color: #FFFFFF;
}

.language-dropdown.options-inverted .language-option:hover {
  color: #E0E0E0; 
}


.language-dropdown.active {
  display: block;
}

.language-option {
  display: block; 
  color: #20262A;
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 100%;
  letter-spacing: 0.2px;
  text-decoration: none;
  padding: 10px 15px;
  text-align: center; 
  white-space: nowrap; 
  transition: color 0.2s ease;
}

.language-option:hover {
  color: #995CF5; 
}
.language-option.selected-lang {
  font-weight: bold; 
}

/* Produtos dropdown styles */
.produtos-dropdown {
  position: relative;
  display: inline-block;
}

.produtos-dropdown .dropdown-toggle {
  color: #010202;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
}

.produtos-dropdown .dropdown-toggle::after {
  content: '▼';
  font-size: 10px;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.produtos-dropdown.active .dropdown-toggle::after {
  transform: rotate(180deg);
}

.produtos-dropdown .dropdown-toggle:hover {
  background-color: rgba(153, 92, 245, 0.1);
  color: #995CF5;
  text-decoration: none;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  min-width: 180px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(153, 92, 245, 0.1);
  z-index: 1000;
  padding: 8px 0;
  margin-top: 8px;
}

.produtos-dropdown.active .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  color: #010202;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 16px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background-color: rgba(153, 92, 245, 0.1);
  color: #995CF5;
}
.container-text {
  position: relative; 
  transform: none;  
  top: auto;
  left: auto;
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 80px;
  letter-spacing: -0.01em;
  text-align: center;
  color: #010202;
  z-index: 2;
  max-width: 66%;
}

.simple-container{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10vh auto 10vh auto; 
}

.container-text-wrapper {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.conclusion-about {
  text-align: justify;
  margin: 0;
}

.conclusion {
  text-align: left;
}

.container-underline {
  display: block;         
  margin: 16px auto 0;    
  width: 35vw;           
  height: auto;      
}

.container-subtext {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.01em;
  color: #9B9DA4;
  text-align: center;
  margin-top: 24px;
}
.container-h{
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  text-align: justify;
  text-justify: auto;
  color:#1D1F1E;
  margin-top: 10vh;
}
.purple-button {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #995CF5;
  color: #FFFFFF;
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 600;
  font-size: 20px;
  border: 1px solid #995CF5;
  border-radius: 8px;
  padding: 0 24px;
  height: 54px;
  width: 350px;
  margin: 32px auto 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.purple-button-icon {
  width: 20px;
  height: 20px;
}
.purple-button:hover {
  background-color: transparent;
  color: #995CF5;
}
.purple-button:hover .purple-button-icon {
  filter: brightness(0) invert(42%) sepia(83%) saturate(2492%) hue-rotate(241deg) brightness(98%) contrast(91%);
}

.reverse-button {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  color: #995CF5;
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 600;
  font-size: 20px;
  border: 1px solid #995CF5;
  border-radius: 8px;
  padding: 12px 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.white{
  background-color: #ffffff;
}

.reverse-button:hover {
  background-color: #995CF5;
  color: #FFFFFF;
}

.reverse-button:hover .purple-button-icon {
  filter: grayscale(100%) brightness(300%) contrast(300%);
}
.about-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 80px;  
  padding: 40px 0;
  max-width: 77vw;
  margin-left: auto;
  margin-right: auto;
}

.about-left, .about-right {
  flex: 1;
  min-width: 30vw;
}

.about-tag {
  color: #995CF5;
  font-family: 'Uncut Sans', 'sans‑serif';
  font-weight: 500;
  font-size: 18px;
  line-height: 44px;
  letter-spacing: 0;
  margin: 0 0 8px 0;
}

.about-heading {
  color: #000000;
  font-family: 'Uncut Sans', 'sans‑serif';
  font-weight: 600;
  font-size: 42px;
  line-height: 44px;
  letter-spacing: 0;
  margin: 0;
}

.about-description {
  color: #1D1F1E;
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0;
  margin: 5.5vh 0 5.5vh 0;
}
.about-description-bold{
  color: #1D1F1E;
  font-weight: 700;
  font-size: 25px;
  line-height: 32px;
}

.carousel-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-top: 80px;
  padding: 60px 0;
  max-width: 90vw;
  margin-left: auto;
  margin-right: auto;
}

.carousel-title {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 44px;
  letter-spacing: 0;
  color: #010202;
  text-align: center;
  margin: 0 0 16px;
}

.carousel-subtitle {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.01em;
  color: #68769F;
  text-align: center;
  margin: 0;
}


.carousel-subtitle {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.01em;
  color: #010202;
  margin: 0 0 40px;
}

.carousel-slides {
  overflow: hidden;
  width: 100%;
  cursor: grab;
  user-select: none;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(153, 92, 245, 0.02) 0%, rgba(255, 255, 255, 0.5) 100%);
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 20px rgba(153, 92, 245, 0.08);
  padding: 12px;
  position: relative;
}


.carousel-slides:active {
  cursor: grabbing;
}

.slides-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
  gap: 0;
}

.carousel-item {
  flex: 0 0 calc(100% / 3);
  box-sizing: border-box;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  border-radius: 12px;
  margin: 0 8px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(153, 92, 245, 0.1);
  min-height: 180px;
}

.carousel-item:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 30px rgba(153, 92, 245, 0.15);
  border-color: rgba(153, 92, 245, 0.2);
}


.item-content {
  display: flex;
  gap: 16px;
}

.item-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  padding: 8px;
  background: linear-gradient(135deg, rgba(153, 92, 245, 0.1) 0%, rgba(191, 164, 250, 0.1) 100%);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.carousel-item:hover .item-icon {
  transform: scale(1.1) rotate(3deg);
  background: linear-gradient(135deg, rgba(153, 92, 245, 0.15) 0%, rgba(191, 164, 250, 0.15) 100%);
  box-shadow: 0 4px 15px rgba(153, 92, 245, 0.2);
}

.item-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  text-align: left;
}

.item-title {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 0;
  color: #010202;
  margin: 0 0 8px 0;
  transition: color 0.3s ease;
}

.carousel-item:hover .item-title {
  color: #995CF5;
}

.item-desc {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: -0.01em;
  color: #696A6E;
  margin: 8px 0 0;
}

.item-arrow {
  width: 28px;
  height: 28px;
  cursor: pointer;
  flex-shrink: 0;
  transform: rotate(45deg);
  transform-origin: center;
  padding: 6px;
  border-radius: 50%;
  background: rgba(153, 92, 245, 0.08);
  transition: all 0.3s ease;
  opacity: 0.7;
}

.carousel-item:hover .item-arrow {
  transform: rotate(45deg) scale(1.2);
  background: rgba(153, 92, 245, 0.15);
  opacity: 1;
}

.card {
  width: 30vw;
  margin-top: 5vh;
}

.card-image {
  display: block; 
  width: 100%;
  height: 340px;
  border-radius: 12px;
  object-fit: cover;
}

.card-title {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;  
  letter-spacing: 0;
  color: #010202;
  margin: 0;
}

.contact-container {
  position: absolute;
  top: -10vh;
  z-index: 2;
  width: 100%;
  height: 70vh;
  margin: 80px auto;         
  background-color: #190E39;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;             
  box-sizing: border-box;
  overflow: hidden; 
  z-index: -100;       
}

.contact-subtext {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  text-align: center;
  margin-top: 24px;
}

.contact-content{
  margin-top: 15vh;
}
.promo-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 85vw;
  height: 545px;
  margin: 80px auto;         
  background-color: #190E39;
  border-radius: 1rem;        
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;             
  box-sizing: border-box;
  overflow: hidden;        
}

.promo-title {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 400;
  font-size: 62px;
  line-height: 68px;
  letter-spacing: -0.03em;  
  color: #FFFFFF;
  margin: 0 0 24px;
}

.promo-subtitle {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.004em;    
  color: #E8E8E8;
  margin: 0 0 32px;            
  max-width: 800px;            
}

.promo-bg {
  position: absolute;
  inset: 0;              
  z-index: 0;
  pointer-events: none;  
}

.promo-bg .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);    
}
.promo-bg .shape:first-child {
  width: 10vw;    
  height: 10vw;  
  top: 60%;
  left: 5%;
}

.promo-bg .shape:last-child {
  width: 10vw;   
  height: 10vw;  
  top: 5%;
  left: 85%;
}

.footer-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 40px 10%;  
  gap: 32px;                
  margin-top: 80px;         
  margin-left: auto;
  margin-right: auto;
  background-color: #ffffff;
  box-sizing: border-box;
  font-family: 'Uncut Sans', sans-serif;
  color: #20262A;
  width: 100%;
  background-color: #F9FAFE;
  padding: 40px 20px;
  box-sizing: border-box;
}


.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 32px;    
}


.footer-logo img {
  width: 100%;
  max-width: 1288px;       
  height: auto;            
  max-height: 273px;
  object-fit: contain;
}


.footer-nav {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-nav a {
  font-weight: 400;
  font-size: 19px;
  line-height: 100%;
  letter-spacing: 0.2px;
  color: #20262A;
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  width: 320px;           
  gap: 4px;               
}

.contact-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #010202;
  margin: 0 0 8px;
}

.contact-subtitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.004em;
  color: #696A6E;
  margin: 0 0 16px;
}

.contact-input {
  width: 100%;
  height: 48px;
  padding: 0 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.contact-btn {
  width: 100%;
  margin: 0;
}


.footer-divider {
  border: none;
  border-top: 1px solid #D9DEDD;
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.004em;
  color: #646A69;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social img {
  width: 32px;
  height: 32px;
}
.footer-social a:hover img {
  filter: brightness(0) saturate(100%) invert(42%) sepia(83%) saturate(2492%) hue-rotate(241deg) brightness(98%) contrast(91%);
}

.founders{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 77vw;
  margin-left: auto;
  margin-right: auto;
}
.image-card {
  margin: 30px auto;
  position: relative;
  width: 28vw;
  height: 100%;
  font-family: 'Uncut Sans', sans-serif;
}

.main-image {
  width: 100%;
  height: 100%;
  border-radius: 5%;
  object-fit: none;
  object-position:50% 20%;
  display: block;
}

.info-card {
  position: absolute;
  top: 70%;
  left: 5%;
  width: 90%;
  padding: 16px;
  background-color: #FFFFFF;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-sizing: border-box;
  align-items: flex-start;
}

.name {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.004em;
  color: #010202;
}

.xp {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.004em;
  color: #646A69;
}
.container-cases{
  height: 200vh;
  width: 110%;
  position: absolute;
  transform: translate(-50%,-50%);
  top: 50%;
  left: 50%;
  backdrop-filter: blur(5vw);
}

.cases-title {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 80px;
  letter-spacing: -0.01%;
  text-align: center;
  color: #010202;
  margin-bottom: 50px;
  
}

.cases-link {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.01%;
  text-align: center;
  color: #9B9DA4;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 50px;
}

.cases-link-icon {
  width: 20px;
  height: 20px;
}

.cases-h4{
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.01%;
  color: #696A6E;
  margin: 0;
}

.cases-h5{
  margin: 0;
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.01%;
  color: #1D1F1E;
}

.case-elem{
  margin-bottom: 5vh;
}

.other-cases {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.01em;
  color: #010202;
}

.other-cases-container {
  display: flex;
  justify-content: space-between;
  gap: 40px; 
  width: 100%;
  flex-wrap: wrap; 
}

.form-container {
  position: absolute;
  top: 60%;
  left: 30%;
  width:40%;
  height: 500px;
  padding: 0 32px;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  font-family: 'Uncut Sans', sans-serif;
}

.form-label {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.004em;
  color: #1D1F1E;
}

.optional {
  color: #696A6E;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.004em;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #9B9DA4;
  border-radius: 8px;
  background-color: #ffffff;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.004em;
  color: #1D1F1E;
  font-family: 'Uncut Sans', sans-serif;
  box-sizing: border-box;
}

.form-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #995CF5;
  color: #FFFFFF;
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  padding: 0 24px;
  height: 54px;
  width: 100%;
  margin: 32px auto 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}


.footer-spacer-hack {  
  height: calc(100vh - 30px + 50px);
  }


.mockup-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 900px;
  width: 100%;
  margin-top: 20px;
}

.celular-resete {
  position: absolute;
  width: 70vw;
  max-width: 950px;
  height: auto;
  opacity: 0;
}

.celular-resete.cel1 {
  left: 50%;
  z-index: 1;
  transform: translateX(calc(-50% - 80px)) translateY(30px);
  animation: entradaCel1 1.5s cubic-bezier(0.42, 0, 0.58, 1) 0.2s forwards;
}

.celular-resete.cel2 {
  left: 50%;
  z-index: 2;
  transform: translateX(calc(-50% + 80px)) translateY(-60px);
  animation: entradaCel2 1.5s cubic-bezier(0.42, 0, 0.58, 1) 0.4s forwards;
}

.mockup-shadow {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 900px;
  height: auto;
  z-index: 0;
  opacity: 0.4;
}


.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: #010202;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  color: #010202;
  text-decoration: none;
  font-size: 24px;
  font-weight: 500;
  padding: 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-menu a:hover {
  background-color: rgba(153, 92, 245, 0.1);
  color: #995CF5;
}




@media (max-width: 1024px) {
  .nav-links {
    gap: 24px;
    margin: 0 20px;
  }
  
  .nav-links a {
    font-size: 15px;
    padding: 6px 12px;
  }
}


@media (max-width: 768px) {
  .default_header {
    padding: 12px 16px;
  }
  
  .nav-links {
    gap: 16px;
    margin: 0 10px;
  }
  
  .nav-links a {
    font-size: 14px;
    padding: 4px 8px;
  }
  
  .reverse-button {
    font-size: 14px;
    padding: 8px 16px;
  }
  
  .user-info {
    gap: 12px;
  }
}


@media (max-width: 640px) {
  .default_header {
    padding: 10px 16px;
  }
  
  .nav-links {
    display: none;
  }
  
  .user-info img {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .reverse-button {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .logo-header {
    max-width: 100px;
  }
}


.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

@keyframes entradaCel1 {
  from {
    transform: translateX(calc(-50% - 80px + 55vw)) translateY(calc(30px + 600px));
    opacity: 0;
  }
  to {
    transform: translateX(calc(-50% - 80px)) translateY(30px);
    opacity: 1;
  }
}

@keyframes entradaCel2 {
  from {
    transform: translateX(calc(-50% + 80px - 55vw)) translateY(calc(-60px + 600px));
    opacity: 0;
  }
  to {
    transform: translateX(calc(-50% + 80px)) translateY(-60px);
    opacity: 1;
  }
}

.line-reveal-mask {
  overflow: hidden;
  display: block;
  line-height: 1.2;
  padding-bottom: 2px;
}

.animate-line-by-line {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  animation: slideUpLineReveal 0.6s ease-out forwards;
  will-change: transform, opacity;
}

.container-text .line-reveal-mask:nth-of-type(1) .animate-line-by-line {
  animation-delay: 0.2s;
}
.container-text .line-reveal-mask:nth-of-type(2) .animate-line-by-line {
  animation-delay: 0.35s;
}
.container-text .line-reveal-mask:nth-of-type(3) .animate-line-by-line {
  animation-delay: 0.5s;
}

.text-reveal-mask-block {
  overflow: hidden;
}

.container-text .line-reveal-mask:last-of-type {
  margin-bottom: 24px;
}

.container-subtext.animate-block-slide-up {
  opacity: 0;
  transform: translateY(100%);
  animation: slideUpLineReveal 0.8s ease-out forwards;
  will-change: transform, opacity;
  margin-top: 0;
  margin-bottom: 0;
  animation-delay: 0.7s;
}

@keyframes slideUpLineReveal {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.about-enter-from-left,
.about-enter-from-right {
  opacity: 0;
  visibility: hidden; 
}

.about-enter-from-left.is-visible {
  animation: slideInFromLeftEffect 0.8s ease-out forwards;
  visibility: visible;
}

.about-enter-from-right.is-visible {
  animation: slideInFromRightEffect 0.8s ease-out forwards;
  visibility: visible;
}

@keyframes slideInFromLeftEffect {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRightEffect {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.animated-mockup {
  width: 100%;
  display: block;
  margin: 16px auto 0 auto;
  opacity: 0;
  animation-name: gentleSlideUpEntrance;
  animation-duration: 0.9s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  animation-delay: 0.4s;
  will-change: transform, opacity;
}

@keyframes gentleSlideUpEntrance {
  from {
    transform: translateY(90px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

