* {
    box-sizing: border-box;
}

.noselect {
    user-select: none;
    -webkit-user-select: none; 
    -moz-user-select: none;    
    -ms-user-select: none;     
}

.portfolio-item a {
  text-decoration: none; 
  color: inherit;         
  display: block;       
}

.portfolio-item a:visited {
  color: inherit;          
}

.portfolio-item a:hover,
.portfolio-item a:active,
.portfolio-item a:focus {
  color: inherit;         
}

.parallax-element {
    transform: translateY(var(--parallax-offset, 0));
    transition: transform 0.1s ease-out;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-up {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-up.animate {
    opacity: 1;
    transform: scale(1);
}

.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.smooth-move {
    transition: transform 0.3s ease-out;
}

.typewriter {
    overflow: hidden;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end);
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #00ff88; }
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #121212;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid #333;
    border-top: 3px solid #00ff88;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-btn, .contato-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-btn::before, .contato-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-btn:hover::before, .contato-btn:hover::before {
    width: 300px;
    height: 300px;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #00ff88, #00ccff);
    z-index: 9998;
    transition: width 0.1s ease;
}

.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: textReveal 0.8s ease forwards;
}

@keyframes textReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.glitch {
    position: relative;
    color: #fff;
    animation: glitch-skew 1s infinite linear alternate-reverse;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-anim-1 0.5s infinite linear alternate-reverse;
    color: #ff0040;
    z-index: -1;
}

.glitch::after {
    animation: glitch-anim-2 1s infinite linear alternate-reverse;
    color: #00ffff;
    z-index: -2;
}

@keyframes glitch-anim-1 {
    0% { clip: rect(42px, 9999px, 44px, 0); }
    5% { clip: rect(12px, 9999px, 59px, 0); }
    10% { clip: rect(48px, 9999px, 29px, 0); }
    15% { clip: rect(42px, 9999px, 73px, 0); }
    20% { clip: rect(63px, 9999px, 27px, 0); }
    25% { clip: rect(34px, 9999px, 55px, 0); }
    30% { clip: rect(86px, 9999px, 73px, 0); }
    35% { clip: rect(20px, 9999px, 20px, 0); }
    40% { clip: rect(26px, 9999px, 60px, 0); }
    45% { clip: rect(25px, 9999px, 66px, 0); }
    50% { clip: rect(57px, 9999px, 98px, 0); }
    55% { clip: rect(5px, 9999px, 46px, 0); }
    60% { clip: rect(82px, 9999px, 31px, 0); }
    65% { clip: rect(54px, 9999px, 27px, 0); }
    70% { clip: rect(28px, 9999px, 99px, 0); }
    75% { clip: rect(45px, 9999px, 69px, 0); }
    80% { clip: rect(23px, 9999px, 85px, 0); }
    85% { clip: rect(54px, 9999px, 84px, 0); }
    90% { clip: rect(45px, 9999px, 47px, 0); }
    95% { clip: rect(37px, 9999px, 20px, 0); }
    100% { clip: rect(4px, 9999px, 91px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(65px, 9999px, 100px, 0); }
    5% { clip: rect(52px, 9999px, 74px, 0); }
    10% { clip: rect(79px, 9999px, 85px, 0); }
    15% { clip: rect(75px, 9999px, 5px, 0); }
    20% { clip: rect(67px, 9999px, 61px, 0); }
    25% { clip: rect(14px, 9999px, 79px, 0); }
    30% { clip: rect(1px, 9999px, 66px, 0); }
    35% { clip: rect(86px, 9999px, 30px, 0); }
    40% { clip: rect(23px, 9999px, 98px, 0); }
    45% { clip: rect(85px, 9999px, 72px, 0); }
    50% { clip: rect(71px, 9999px, 75px, 0); }
    55% { clip: rect(2px, 9999px, 48px, 0); }
    60% { clip: rect(30px, 9999px, 16px, 0); }
    65% { clip: rect(59px, 9999px, 50px, 0); }
    70% { clip: rect(41px, 9999px, 62px, 0); }
    75% { clip: rect(2px, 9999px, 82px, 0); }
    80% { clip: rect(47px, 9999px, 73px, 0); }
    85% { clip: rect(3px, 9999px, 27px, 0); }
    90% { clip: rect(26px, 9999px, 55px, 0); }
    95% { clip: rect(53px, 9999px, 84px, 0); }
    100% { clip: rect(45px, 9999px, 69px, 0); }
}

@keyframes glitch-skew {
    0% { transform: skew(0deg); }
    10% { transform: skew(-2deg); }
    20% { transform: skew(1deg); }
    30% { transform: skew(-1deg); }
    40% { transform: skew(2deg); }
    50% { transform: skew(-1deg); }
    60% { transform: skew(0deg); }
    70% { transform: skew(1deg); }
    80% { transform: skew(-2deg); }
    90% { transform: skew(2deg); }
    100% { transform: skew(0deg); }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(20);
        opacity: 0;
    }
}

.hero-btn, .contato-btn {
    background: linear-gradient(45deg, #00ff88, #00ccff);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@media (max-width: 768px) {
    .parallax-element {
        transform: none !important;
    }
    
    .hover-lift:hover {
        transform: none;
    }
    
    .glitch {
        animation: none;
    }
    
    .floating {
        animation: none;
    }
}

body {
    margin: 0;
    padding-top: 80px; 
    font-family: Arial, Helvetica, sans-serif;
    background-color: #121212;
    color: #f5f5f5ff;
}

html {
    scroll-behavior: smooth;
}

body, html {
  overflow-x: hidden;
}

@import url('https://fonts.googleapis.com/css2?family=Fira+Code&display=swap');

@font-face {
    font-family: 'Agharti';
    src: url('../fonts/Agharti-SemiBold.otf') format('truetype');
    font-display: swap;
}

@font-face {
  font-family: 'Nougat';
  src: url('../fonts/Nougat-ExtraBlack.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nexa Heavy';
  src: url('../fonts/Nexa-Heavy.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nexa Light';
  src: url('../fonts/Nexa-ExtraLight.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  min-height: 80px; 
  background-color: #1f1f1f;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

header nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

header nav .nav-links {
  display: flex;
  gap: 50px;
  margin: 0 auto;
}

header nav a,
header .contato-btn,
header .logo {
  font-family: 'Nexa Heavy', sans-serif;
}

.logo img {
  height: 100px;
}

.logo {
  cursor: pointer;
}

nav .nav-links a {
  position: relative;
  text-decoration: none;
  color: #f5f5f5ff;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  font-family: 'Nexa Heavy', sans-serif;
}

nav .nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #00adb5; 
  transition: width 0.3s ease;
}

nav .nav-links a:hover::after {
  width: 100%;
}

nav .nav-links a:hover {
  color: #00adb5; 
}

.contato-btn {
  background-color: #00adb5;
  color: #121212;
  padding: 10px 20px;
  border-radius: 25px; 
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
  font-family: 'Nexa Heavy', sans-serif;
}

.contato-btn:hover {
  background-color: #019ca3;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 92vh;
    background: linear-gradient(135deg, #1f1f1f, #121212);
    padding: 0 20px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.code-line::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 1.2em;
  background-color: #00ff88;
  margin-left: 5px;
  vertical-align: middle;
  animation: blink 1s steps(1, start) infinite;
  animation-play-state: running; /* default */
}

.code-line.blink-paused::after {
  animation-play-state: paused !important;
}

@keyframes blink {
    0%, 50% { visibility: visible; }
    50.01%, 100% { visibility: hidden; }
}


.hero-content {
    top: -60px;
    max-width: 800px;
}

.code-line {
    font-family: 'Fira Code', monospace;
    color: #00ff88; 
    font-size: 1.5em;
    margin-bottom: 10px;
}

h1 {
    font-family: 'Nougat', sans-serif;
    color: white;
    font-size: 4rem;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 3em;
    font-weight: bold;
    color: #f5f5f5;
    margin-bottom: 30px;
}

.hero-btn {
    font-family: 'Nexa Heavy', sans-serif;
    display: inline-block;
    padding: 12px 30px;
    background-color: #00adb5;
    color: #121212;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-btn:hover {
    background-color: #019ca3;
    transform: scale(1.05);
}

.corner-text {
    position: absolute;
    bottom: 0%;
    left: 5%;
    font-family: 'Agharti', sans-serif;
    font-size: clamp(2em, 6vw, 6em);
    color: #f5f5f5;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 0.9;
    text-align: left;
    white-space: nowrap;
    z-index: 10;
    opacity: 0.8;
    pointer-events: none;
}


.corner-text .amp {
  font-size: 0.5em;
  position: relative;
  top: 0px;
  right: 20px;
}

.portfolio-section {
  padding: 60px 20px;
  color: white;
  text-align: center;
}

.portfolio-section h2 {
  font-family: 'Nexa Light', sans-serif;
  font-size: 1.3em;
  color: #32dee7; 
  margin-bottom: -20px; 
}

.portfolio-section p {
  font-family: 'Nexa Heavy', sans-serif;
  font-size: 1.8em; 
  color: white;
  margin-bottom: 30px;  
}

.portfolio-grid {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  min-height: 400px; 
  overflow: visible; 
}

.portfolio-grid::after {
  content: "";
  display: block;
  clear: both;
}

.grid-sizer {
  width: calc(33.3333% - 6.66px);
  box-sizing: border-box;
  visibility: hidden;
  height: 0;
}

.portfolio-item {
  width: calc(33.3333% - 6.66px);
  margin-bottom: 20px;
  background: #2a2a2a;
  border-radius: 15px;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: auto;
  position: relative;
  transition:
              box-shadow 0.3s ease, 
              opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.portfolio-item img {
  max-height: 250px; 
  image-rendering: auto;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translateZ(0);
  will-change: transform;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 10px 10px 0 0;
  flex-shrink: 0;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(0, 255, 136, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
  border-radius: 15px;
}

.portfolio-item:hover::before {
  opacity: 1;
}

.portfolio-item.destaque {
  width: calc(66.6666% - 6.66px);
}

.portfolio-item.destaque img {
  max-height: 525px;
  height: 620px; 
  object-fit: cover;
}

.portfolio-item.oculto {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  display: none !important;
}

.portfolio-item.preencher {
  animation: fadePreencher 0.4s ease;
}

@keyframes fadePreencher {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.portfolio-item > .conteudo {
  padding: 25px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  background: linear-gradient(145deg, #2a2a2a 0%, #1f1f1f 100%);
}

.portfolio-item:hover > .conteudo {
  background: linear-gradient(145deg, #333 0%, #2a2a2a 100%);
}

@media screen and (max-width: 1024px) {
  .grid-sizer {
    width: calc(50% - 5px);
  }
  .portfolio-item,
  .portfolio-item.destaque {
    width: calc(50% - 5px);
  }
}

@media screen and (max-width: 768px) {
  .grid-sizer {
    width: 100% !important;
  }
  .portfolio-item,
  .portfolio-item.destaque {
    width: 100% !important; 
  }
  .portfolio-item img,
  .portfolio-item.destaque img {
    max-height: 250px !important; 
    height: auto !important;
  }
}

.portfolio-item h3 {
  font-family: 'Nexa Heavy', sans-serif;
  font-size: 1.3em;
  margin: 0 0 8px 0; 
  color: white;
  text-align: left; 
}

.portfolio-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9em;
  color: #ccc;
  font-family: 'Nexa Heavy', sans-serif;
}

.portfolio-tipo {
  font-family: 'Nexa Light', sans-serif;
  color: #ccc;
  font-size: 1em;
  text-align: left;
}

.portfolio-data {
  font-family: 'Nexa Light', sans-serif;
  text-align: right;
  padding-left: 15px;
}

.portfolio-filtros {
  font-family: 'Nexa Heavy', sans-serif;
  font-size: 1em;
  margin-top: 80px;
  margin-right: 780px;
  margin-bottom: 20px;
  color: rgb(165, 165, 165);
  white-space: nowrap;
}


.filtro-opcao {
  cursor: pointer;
  transition: color 0.3s;
  margin-right: 0; 
  display: inline-block;
}

.filtro-primeiro {
  margin-left: 20px; 
}

.filtro-opcao.ativo {
  color: #32dee7;
}

.filtro-opcao:hover {
  color: #32dee7;
}

.filtro-separador {
  margin-left: 0px;  
  margin-right: 9px; 
  display: inline-block;
  color: rgb(165, 165, 165);
}

.sobre-section h2 {
  font-family: 'Nexa Light', sans-serif;
  font-size: 1.3em;
  color: #32dee7; 
  margin-bottom: -20px; 
}

.sobre-section p {
  font-family: 'Nexa Heavy', sans-serif;
  font-size: 1.8em; 
  color: white;
  margin-bottom: 30px;
}

.sobre-section {
  text-align: center;
  padding: 30px 20px;
  color: white;
}

.sobre-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.sobre-card {
  background-color: #222;
  border: 1px solid #444;
  border-radius: 20px;
  padding: 30px 20px;
  width: 700px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sobre-card .tecnologias-grid {
  font-family: 'Nexa Light', sans-serif;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  width: 200%;
  max-width: 700px;        
  margin: 0 auto;           
  justify-items: start;    
  place-content: center;
  padding-right: 50px;
}

.tecnologia-item {
  border-radius: 12px;
  padding: 10px 15px;
  width: 100%;
  max-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin: 0 auto;
}

  .sobre-card .tecnologias-grid:empty {
    display: none;
  }

  .sobre-card h3 {
    color: #f5f5f5ff;
    font-family: 'Nexa Heavy', sans-serif;
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 10px;  
    margin-top: -5px;
  }

  .tecnologia-titulo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f5f5f5ff;
    font-family: 'Nexa Heavy', sans-serif;
    font-size: 1.3em;
  }

  .tecnologia-titulo svg {
    stroke: #32dee7;
    fill: #32dee7;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    margin-right: 10px; 
  }

  .tecnologia-nivel {
    font-family: 'Nexa Light', sans-serif;
    color: #f5f5f5ff;
    font-size: 1em;
    margin-left: 50px;
    text-align: left;
  }
  .tecnologia-section {
  perspective: 1200px;
}

.tecnologia-card {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.tecnologia-card.flipped {
  transform: rotateY(180deg);
}

.tecnologia-front, .tecnologia-back {
  position: absolute;
  width: 100%;
  backface-visibility: hidden;
  top: 0;
  left: 0;
}

.tecnologia-front {
  z-index: 2;
}

.tecnologia-back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tecnologia-btn, .voltar-btn {
  background: none;
  border: none;
  color: white;
  font-family: 'Nexa Heavy', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1em;
}

.tecnologia-btn svg, .voltar-btn svg {
  width: 24px;
  height: 24px;
}

.menu-principal, .menu-secundario {
  width: 100%;
  flex-shrink: 0;
}

#btnVoltar {
  background: none;
  color: white;
  border: 1px solid #555;
  padding: 10px 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
}
  .tecnologia-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f5f5f5ff;
  font-family: 'Nexa Heavy', sans-serif;
  font-size: 1.3em;
  }

  .tecnologia-btn svg {
    stroke: #32dee7;
    fill: #32dee7;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    margin-right: 10px; 
  }

  .tecnologia-menu {
  border-radius: 12px;
  padding: 10px 15px;
  width: 100%;
  max-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin: 0 auto;
}

.painel-detalhe {
  display: none;
  background-color: #222;
  padding: 20px;
  margin-top: 20px;
  border-radius: 10px;
  border: 1px solid #444;
  animation: fadeIn 0.4s ease;
}

.painel-detalhe.active {
  display: block;
}

.painel-detalhe button {
  margin-top: 20px;
  background: none;
  color: white;
  border: 1px solid #555;
  padding: 10px 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(10px);}
  to {opacity: 1; transform: translateY(0);}
}

.btn-voltar {
  margin-top: 20px;
  background-color: #32dee7;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
}

.experiencia-section {
  padding: 10px 20px 100px;
  color: white;
  text-align: center;
}

.experiencia-card {
  background-color: #222;
  border: 1px solid #444;
  border-radius: 15px;
  margin: 15px auto;
  max-width: 700px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.experiencia-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-family: 'Nexa Heavy', sans-serif;
  font-size: 1.2em;
  color: #f5f5f5ff;
}

.experiencia-header:hover {
  background-color: #2a2a2a;
}

.experiencia-header svg {
  transition: transform 0.3s ease;
  margin: 0;               
  vertical-align: middle;  
  height: 24px;
  width: 24px;
}

.experiencia-card.active .chevron-icon {
  transform: rotate(180deg);
}

.experiencia-descricao {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.experiencia-card.active .experiencia-descricao {
  padding: 15px 20px;
  max-height: 300px;
}


.experiencia-descricao p {
  margin: 0;
  font-family: 'Nexa Light', sans-serif;
  text-align: left;
}

.experiencia-data {
  font-family: 'Nexa Light', sans-serif; 
  font-size: 0.9em;                     
  color: #cccccc;                       
  margin-left: 10px;                
  margin-bottom: 10px;                
}

.planejamento-section {
  padding: 50px 20px;
  text-align: center;
  background: #121212; 
}

.planejamento-section h2 {
  font-family: 'Nexa Light', sans-serif;
  font-size: 1.3em;
  color: #32dee7; 
  margin-bottom: -20px; 
}

.planejamento-section p {
  font-family: 'Nexa Heavy', sans-serif;
  font-size: 1.8em; 
  color: white;
  margin-bottom: 30px;  
}

.card.flipped .card-front {
  opacity: 0;
  transform: translateY(40px);
}

.card.flipped .card-back {
  opacity: 1;
  transform: translateY(0);
}


.cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

:root {
  --fase-1-color: #32dee7; 
  --fase-2-color: #e73232; 
  --fase-3-color: #32e76d; 
}

.card {
  width: 370px;
  height: 530px;
  border: 2px solid #32dee7;
  border-radius: 32px;
  perspective: 1000px;
  background: #222;
  overflow: hidden;
  position: relative;
}

.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
  transition: all 0.6s ease;
}

.card-front {
  background: #201f1f;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transform: translateY(0);
  z-index: 2;
}

.card-front h3 {
  font-size: 1.8em;
  color: #32dee7;
  margin: 0;
}

.card-inner {
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

.card-front,
.card-back {
  backface-visibility: hidden;
}

.card-back {
  transform: rotateY(180deg);
}

.card-back {
  background-size: 600% 600%;
  animation: gradientBG 8s ease infinite;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  z-index: 3;
  overflow: hidden;
  text-align: center;
  position: relative; 
}

.card-back::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
}

.card-back h3 { 
  font-family: 'Nexa Heavy', sans-serif;
  color: #fff;
  font-size: 1.8em;
  margin-bottom: 10px;
  z-index: 10; 
  position: relative;
}

.card-back p {
  font-family: 'Nexa Heavy', sans-serif;
  font-size: 0.95em;
  color: #fff;
  z-index: 10;
  position: relative;
}

@keyframes moveDots {
  0% {
    background-position:
      0 0,
      4px 4px;
  }
  100% {
    background-position:
      200px 200px,
      204px 204px;
  }
}

.card:hover .card-front {
  opacity: 0;
  transform: translateY(40px);
}

.card:hover .card-back {
  opacity: 1;
  transform: translateY(0);
}

.fase-1 .card-back {
  background-color: var(--fase-1-color);
}

.fase-2 .card-back {
  background-color: var(--fase-2-color);
}

.fase-3 .card-back {
  background-color: var(--fase-3-color);
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.three-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.fase-badge {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  background: #121212;
  border: 1px solid #32dee7;
  border-radius: 8px;
  overflow: hidden;
}

.fase-badge h3 {
  margin: 0;
  font-size: 1.2em;
  color: #32dee7;
  font-family: 'Nexa Heavy', sans-serif;
  letter-spacing: 1px;
}

.fase-badge .shine {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: shine-horizontal 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shine-horizontal {
  0% {
    left: -100%;
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  50% {
    left: 100%;
    opacity: 0;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}


@media (max-width: 768px) {
  .cards-container {
    flex-direction: column;
    align-items: center;   
    gap: 17px;              
  }
  .card-front, .card-back {
    transition: all 0.3s ease;
  }

  .card {
    width: 95vw;     
    max-width: 320px;
    height: auto;    
    min-height: 200px; 
  }
  .card-inner {
    height: 100%; 
  }

  .card-front h3 {
    font-size: 1.2em;
  }

  .card-back h3 { 
    font-size: 1.4em;
    margin-bottom: 2px;  
    line-height: 1.1;  
  }
  .card-back {
    min-height: 200px; 
  }
  .card-back p {
    font-size: 0.85em;
    margin-top: 0;
    line-height: 1.2;  
  }
}

.contato-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #3a3a3a; 
}

.contato-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  gap: 40px;
}

.contato-form-container {
  flex: 1;
  margin-left: 110px;
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.contato-item {
  font-family: 'Nexa Heavy', sans-serif;
  display: flex;
  align-items: center;
  gap: 25px;
  color: white;
  text-decoration: none;
  font-size: 1em;
  cursor: pointer;
}

.contato-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  vertical-align: middle;
}

.contato-item span {
  line-height: 1;
}

.contato-item:hover span {
  text-decoration: underline;
}

.contato-item.instagram svg {
  width: 32px;
  height: 32px;
  margin-left: -6px; 
}


.contato-section h2 {
  font-family: 'Nexa Light', sans-serif;
  font-size: 1.3em;
  color: #32dee7; 
  margin-bottom: -20px; 

}

.contato-section p {
  font-family: 'Nexa Heavy', sans-serif;
  font-size: 1.8em; 
  color: white;
  margin-bottom: 30px;
}


.contato-form {
  font-family: 'Nexa Light', sans-serif;
  font-weight: bold;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contato-form input,
.contato-form textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1em;
  width: 100%;
}

.contato-form input:focus,
.contato-form textarea:focus {
  outline: none;
  border-color: #007bff;
}

.contato-form button {
  font-family: 'Nexa Light', sans-serif;
  font-weight: bold;
  width: auto;    
  padding: 20px 40px;
  background-color: #00adb5;
  color: white;
  border: none;
  border-radius: 50px;    
  font-size: 1.3em;
  cursor: pointer;
  align-self: flex-start;     
  transition: background-color 0.3s, transform 0.2s;
}

.contato-form button:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  background-color: #555;
  color: white;
  border: 1px solid #777;
  padding: 14px 12px;
  border-radius: 8px;
  font-size: 1em;
  width: 100%;
  resize: none;
  overflow: hidden;
  
}

.form-group input.invalid,
.form-group textarea.invalid {
  border-color: #ff4d4d;
}

.form-group input:-webkit-autofill,
.form-group textarea:-webkit-autofill {
  box-shadow: 0 0 0px 1000px #555 inset !important;
  -webkit-text-fill-color: white !important;
  transition: background-color 5000s ease-in-out 0s;
}

.form-group label {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 1em;
  pointer-events: none;
  transition: all 0.2s ease;
  padding: 0 4px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: transparent;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: 1px;
  left: 10px;
  font-size: 0.8em;
  color: #f5f5f5ff;
  background-color: #555;
  padding: 0 4px;
  border-radius: 5px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00adb5;
}

.form-group textarea {
  min-height: 120px;
  font-family: sans-serif;
}

.form-group label[for="mensagem"] {
  top: 12px;
  left: 12px;
  transform: none;
  font-size: 0.9em;
  color: #aaa;
}

.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -8px;
  left: 10px;
  font-size: 0.8em;
  color: #f5f5f5ff;
  background-color: #555;
  padding: 0 4px;
  border-radius: 5px;
}

.notification {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #53b456;
  color: white;
  padding: 12px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  font-family: Arial, sans-serif;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  cursor: default;
  animation-fill-mode: both; 
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(40px);
  }
}

@keyframes piscarAnim {
  0% { opacity: 0; }
  10% { opacity: 1; }
  85% { opacity: 1; }
  100% { opacity: 0; }
}

.piscar {
  animation: piscarAnim 2s ease-in-out 1;
}

footer {
    text-align: center;
    padding: 50px 0px 20px;
    background-color: #1f1f1f;
    color: #f5f5f5ff;
}

.footer-logo img {
    height: 100px;
    margin-bottom: 20px;
    margin-left: -15px;
}

.footer-nav {
  
    margin-bottom: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    display: inline-block;
}

.footer-nav a {
  font-family: 'Nexa Heavy', sans-serif;
    color: #f5f5f5ff;
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #00adb5;
}

.footer-nav .divider {
    color: #888888;
    margin: 0 5px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 10px; 
    position: relative;
    z-index: 0;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #f5f5f5ff; 
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    transition: background-color 0.3s, transform 0.3s;
    cursor: pointer;
    overflow: hidden;
    position: relative; 
    z-index: 1;
}

.social-btn svg {
    width: 24px;
    height: 24px;
    transition: fill 0.3s ease, filter 0.3s ease;
}

.social-btn.email:hover {
  background-color: #353535;
      transform: translateY(-8px);
    z-index: 10;
}

.social-btn.email:hover svg path,
.social-btn.email:hover svg rect {
  stroke: white;
}


.social-btn.github svg {
    width: 32px;
    height: 32px;
}

.social-btn.instagram {
  background: white; 
  transition: background 0.3s, transform 0.3s;
}

.social-btn.instagram svg path {
  fill: url(#instagramGradient);
  transition: fill 0.3s;
}

.social-btn.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  transform: translateY(-8px);
  z-index: 10;
}

.social-btn.instagram:hover svg path {
  fill: white; 
}

.social-btn.linkedin:hover {
    background-color: #0266C8;
    transform: translateY(-8px);
    z-index: 10;
}

.social-btn.linkedin svg path {
    fill: #0266C8;
}

.social-btn.linkedin:hover svg path {
    fill: #f5f5f5ff;
}

.social-btn.github:hover {
    background-color: #6e6e6e;
    transform: translateY(-8px);
    z-index: 10;
}

.social-btn.github svg path {
    fill: #000000;
}

.social-btn.github:hover svg path {
    fill: #f5f5f5ff;
}

hr {
    border: none;
    border-top: 1px solid #555555;
    margin: 20px 0;
    max-width: 100%;
}

footer p {
    font-size: 0.9em;
    color: #aaaaaa;
}

.hero iframe {
  transform: scale(1.9);          
  transform-origin: top left;      
  width: calc(100% / 2);           
  height: calc(100% / 2);         
}

.overlay-msg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px; 
  background-color: black; 
  pointer-events: none;
  z-index: 9999;
}

#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #4F4F4F;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

#scrollTopBtn svg {
  color: white;
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scrollTopBtn:hover {
  transform: translateY(-5px);
}

#sobre {
  scroll-margin-top: 70px; 
}

#portfolio {
  scroll-margin-top: 50px; 
}

#planejamento {
  scroll-margin-top: 65px; 
}

#contato {
  scroll-margin-top: 90px; 
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.setas-mobile {
  position: absolute;
  right: 15px;
  bottom: 10px;
  display: none;
  flex-direction: column;
  align-items: center;
  z-index: 999;
  pointer-events: none;
}

.seta-wrapper {
  position: relative;
  width: 24px;
  height: 40px;
  overflow: hidden; 
}

.seta-wrapper::before,
.seta-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  background: currentColor;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m6 9 6 6 6-6"/></svg>') no-repeat center;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m6 9 6 6 6-6"/></svg>') no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
  animation: setaLoop 2.4s linear infinite; 
  opacity: 0;
}

.seta-wrapper::before {
  animation-delay: 0s;
}

.seta-wrapper::after {
  animation-delay: 1.2s; 
}

@keyframes setaLoop {
  0% {
    transform: translateY(-12px);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateY(12px);
    opacity: 0;
  }
}

[data-anim="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
}

[data-anim="fade-left"] {
  opacity: 0;
  transform: translateX(-30px);
}

[data-anim="zoom-in"] {
  opacity: 0;
  transform: scale(0.8);
}

[data-anim].visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  transition: all 0.6s ease-out;
}

@media (max-width: 768px) {
  html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

 *, *::before, *::after {
  box-sizing: inherit;
}
#scrollTopBtn {
  display: none;
}
header {
   flex-direction: column;
  align-items: center;
  padding: 10px 15px;
   box-sizing: border-box;
   position: fixed;
   top: 0;
   left: 0;
  width: 100%;
   display: flex;
  justify-content: space-between;
   background-color: #1f1f1f;
  z-index: 1000;
}
  .header-row {
  display: flex;
  justify-content: space-between;
  align-items: center; 
  width: 100%;
}
  .logo {
    order: 1;
    margin-bottom: 10px;
  }
  .menu-toggle {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
    cursor: pointer;
    align-self: center;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1000;
  }
  .menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: relative;
  }
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    overflow: hidden;
    max-height: 0;
    background-color: rgba(31, 31, 31, 0.95);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    transition: max-height 0.4s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
}

nav.show {
  max-height: 500px;
}

nav .nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

nav .nav-links a {
  font-size: 20px;
  display: block;
  width: 100%;
  text-align: center;
  padding: 5px 0;      
  margin: 0 0 4px 0; 
  color: white;
  text-decoration: none;
  font-weight: bold;
  background: none;
  border-radius: 0;
  box-sizing: border-box;
  position: relative;
  line-height: 1.2;
}

nav .contato-btn {
  font-size: 20px;
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 0px; 
  color: white;
  text-decoration: none;
  font-weight: bold;
  background: none;
  border-radius: 0;
  box-sizing: border-box;
  position: relative;
  line-height: 1.2;
}

  nav .nav-links a::after {
    content: "";
    display: block;
    width: 20%;  
    height: 1px; 
    background-color: #555;
    margin: 10px auto 0 auto;
    position: relative;
  }

  nav .nav-links a:hover,
  nav .contato-btn:hover {
    color: white;
    background: none;
    transform: none;
  }

  nav .nav-links a:hover::after,
  nav .contato-btn:hover::after {
    background-color: #555;
    width: 20%;
  }

  header nav .nav-links {
  gap: 10px;

}
  .corner-text {
    position: absolute;
    bottom: 0%;
    left: 5%;
    right: auto;
    top: auto;
    font-size: 6em;
    line-height: 0.9;
    text-align: left;
    z-index: 10;
    opacity: 0.7;
  }

  .corner-text .amp {
    top: 0px;
    right: 10px;
  }
  .hero {
      height: 86vh;
  }

  .portfolio-filtros {
    margin: 20px 10px;
    font-size: 0.9em;
    color: transparent;
    position: relative;
    text-align: left;  
    white-space: normal;
  }

  .portfolio-filtros::before {
    content: "Filtrar por:";
    display: block;
    font-weight: bold;
    margin-bottom: 1px;
    color: rgb(165, 165, 165);
    text-align: center;        
    width: 100%;              
    position: relative;      
  }

  .portfolio-filtros span {
    display: inline-block;
    white-space: nowrap;
    color: rgb(165, 165, 165);
    position: relative;
  }

  .filtro-opcoes {
    position: relative;
    top: -10px;
    left: -1px; 
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 5px;
  }


  .filtro-opcao,
  .filtro-separador {
    white-space: nowrap;
  }

  .filtro-separador {
    margin-right: 3px; 
  }

  .filtro-primeiro {
    margin-left: 0;
  }

  .contato-wrapper {
    flex-direction: column;
    align-items: center; 
    gap: 20px; 
  }

  .contato-form-container {
    margin-left: 0; 
    width: 100%; 
    padding: 0 15px; 
  }

  .contato-info {
    text-align: center;
  }

  .contato-item {
    justify-content: center; 
  }

  .contato-section p {
    font-size: 1.5em; 
  }
  .contato-form button {
    align-self: center;
  }
    .logo img {
    height: 70px;
}

  .logo {
    cursor: pointer;
    margin-top : 15px;
}
    .hero {
      height: 88vh;
      top: -25px;
  }
.code-line {
  font-family: 'Fira Code', monospace;
  color: #00ff88; 
  font-size: 1.5em;
  margin-bottom: 10px;
  top: 20px;
  word-break: break-word;  
  white-space: normal;   
  overflow-wrap: anywhere; 
}

    .sobre-card h3 {
    color: #f5f5f5ff;
    font-family: 'Nexa Heavy', sans-serif;
    font-size: 1.4em;
    text-align: center;
    margin-bottom: 10px;  
    margin-top: -5px;
  }
    .sobre-card {
    width: 100%;
    padding: 20px 15px;
    display: flex;
    justify-content: center; 
  }
  
    .sobre-card .tecnologias-grid {
    font-family: 'Nexa Light', sans-serif;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    justify-content: center; 
    gap: 28px;
  }

    .tecnologia-titulo svg {
    stroke: #32dee7;
    fill: #32dee7;
    width: 25px;
    height: 25px;
    margin: 0; 
    flex-shrink: 0;
}

  .tecnologia-item {
  border-radius: 12px;
  padding: 4px 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin: 0 auto;
  background-color: transparent;
}

  .tecnologia-menu {
  border-radius: 12px;
  padding: 4px 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin: 0 auto;
}

  .tecnologia-titulo {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
    margin-left: -10px; 
}
  .tecnologia-titulo span {
    font-size: 0.9em;
}
  .tecnologia-nivel {
    font-family: 'Nexa Light', sans-serif;
    color: #f5f5f5ff;
    font-size: 0.9em;
    margin-left: 20px;
    text-align: left;
    white-space: nowrap;
  }

  .experiencia-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
  }

  .experiencia-header > span {
    display: block;
    line-height: 1.4em;
  }

  .experiencia-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .experiencia-right svg {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    width: 24px;
  }

  .experiencia-data {
    font-size: 0.9em;
    line-height: 1.2em;
    margin: 0;
    white-space: pre-line;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

  .experiencia-header svg {
    transition: transform 0.3s ease;
    margin-top: 10;               
    vertical-align: middle;  
    height: 24px;
    width: 24px;
  }

  .experiencia-header svg {
  transition: transform 0.3s ease;
  margin: 0;               
  vertical-align: middle;  
  height: 24px;
  width: 24px;
}

  .setas-mobile {
    display: flex;
  }

  section {
    position: relative;
  }
  body {
    padding-top: 130px;
  }
}

@media (min-width: 769px) {
  .setas-mobile {
    display: none !important;
  }
}