@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap");

 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }

 html {
   scroll-behavior: smooth;
 }

 body {
   font-family: 'Inter', sans-serif;
   background: #0a0a0a;
   color: #ffffff;
   overflow-x: hidden;
   padding-top: 0;
 }

 /* Header */
 .header-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  transform: translateY(0);
}

.header-container.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(255, 89, 89, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  transition: padding 0.3s ease;
  min-height: 70px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1002;
  cursor: pointer;
  transition: transform 0.2s ease;
  position: relative;
}

.logo-container:hover {
  transform: translateY(-1px);
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(255, 89, 89, 0.2));
}

.logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(255, 89, 89, 0.3));
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}

.logo-container:hover .logo-text {
  background: linear-gradient(135deg, #ffffff 0%, #ff5959 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav_container {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav_list {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.nav_list:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0.6rem 1rem;
  border-radius: 25px;
  transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: #ff5959;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 80%;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  background: rgba(255, 89, 89, 0.08);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
  transition: transform 0.2s ease;
  padding: 2px;
}

.hamburger:hover {
  transform: scale(1.05);
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  transform-origin: center;
}

.hamburger:hover .hamburger-line {
  background: #ff5959;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: #ff5959;
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  background: #ff5959;
}

/* Hero Banner */
 .hero_banner {
   width: 100%;
   min-height: 100vh;
   background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   padding: 120px 2rem 80px;
   position: relative;
   overflow: hidden;
 }

 .hero_background {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: 1;
 }

 .hero_particles {
   position: absolute;
   width: 100%;
   height: 100%;
 }

 .particle {
   position: absolute;
   width: 4px;
   height: 4px;
   background: #ff5959;
   border-radius: 50%;
   opacity: 0.3;
   animation: float 8s infinite ease-in-out;
 }

 .particle:nth-child(1) {
   top: 20%;
   left: 10%;
   animation-delay: 0s;
 }

 .particle:nth-child(2) {
   top: 40%;
   right: 20%;
   animation-delay: 2s;
 }

 .particle:nth-child(3) {
   bottom: 30%;
   left: 20%;
   animation-delay: 4s;
 }

 .particle:nth-child(4) {
   top: 60%;
   right: 10%;
   animation-delay: 6s;
 }

 .particle:nth-child(5) {
   bottom: 20%;
   right: 30%;
   animation-delay: 1s;
 }

 .hero_content {
   width: 100%;
   max-width: 800px;
   margin: 0 auto;
   text-align: center;
   position: relative;
   z-index: 2;
   animation: fadeInUp 1s ease-out;
 }

 .hero_greeting {
   display: inline-flex;
   align-items: center;
   gap: 0.75rem;
   background: rgba(255, 89, 89, 0.1);
   border: 1px solid rgba(255, 89, 89, 0.3);
   border-radius: 50px;
   padding: 0.75rem 1.5rem;
   margin-bottom: 2rem;
   font-size: 1.1rem;
   color: #ffffff;
   backdrop-filter: blur(10px);
   animation: fadeInUp 1s ease-out 0.2s both;
 }

 .greeting-emoji {
   font-size: 1.5rem;
   animation: wave 2s infinite;
 }

 .greeting-text {
   font-weight: 500;
   letter-spacing: 0.02em;
 }

 .hero_title {
   font-size: clamp(2.5rem, 6vw, 4rem);
   font-weight: 800;
   color: #ffffff;
   margin-bottom: 1rem;
   line-height: 1.1;
   animation: fadeInUp 1s ease-out 0.4s both;
 }

 .title-highlight {
   background: linear-gradient(135deg, #ff5959, #d40d0d);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   position: relative;
 }

 .title-highlight::after {
   content: '';
   position: absolute;
   bottom: -5px;
   left: 0;
   width: 100%;
   height: 3px;
   background: linear-gradient(135deg, #ff5959, #d40d0d);
   border-radius: 2px;
   opacity: 0.6;
 }

 .hero_subtitle {
   font-size: clamp(1.5rem, 4vw, 2.5rem);
   color: #cccccc;
   font-weight: 600;
   margin-bottom: 2rem;
   animation: fadeInUp 1s ease-out 0.6s both;
 }

 .hero_highlight {
   color: #ff5959;
   font-weight: 700;
 }

 .hero_description {
   font-size: 1.2rem;
   color: #aaaaaa;
   line-height: 1.8;
   margin-bottom: 3rem;
   max-width: 600px;
   margin-left: auto;
   margin-right: auto;
   animation: fadeInUp 1s ease-out 0.8s both;
 }

 .hero_tech_stack {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 1rem;
   margin-bottom: 3rem;
   animation: fadeInUp 1s ease-out 1s both;
 }

 .tech_item {
   background: rgba(255, 89, 89, 0.1);
   border: 1px solid rgba(255, 89, 89, 0.3);
   color: #ffffff;
   padding: 0.75rem 1.5rem;
   border-radius: 25px;
   font-size: 0.9rem;
   font-weight: 500;
   transition: all 0.3s ease;
   backdrop-filter: blur(5px);
 }

 .tech_item:hover {
   background: rgba(255, 89, 89, 0.2);
   border-color: #ff5959;
   transform: translateY(-2px);
   box-shadow: 0 5px 15px rgba(255, 89, 89, 0.2);
 }

 .hero_cta_group {
   display: flex;
   gap: 1.5rem;
   justify-content: center;
   margin-bottom: 3rem;
   flex-wrap: wrap;
   animation: fadeInUp 1s ease-out 1.2s both;
 }

 .hero_cta {
   display: inline-flex;
   align-items: center;
   gap: 0.75rem;
   padding: 1rem 2rem;
   border-radius: 50px;
   font-size: 1rem;
   font-weight: 600;
   text-decoration: none;
   transition: all 0.3s ease;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
   min-width: 180px;
   justify-content: center;
 }

 .hero_cta.primary {
   background: linear-gradient(135deg, #ff5959, #d40d0d);
   color: #fff;
   border: 2px solid transparent;
 }

 .hero_cta.primary:hover {
   transform: translateY(-3px);
   box-shadow: 0 6px 25px rgba(255, 89, 89, 0.4);
   background: linear-gradient(135deg, #d40d0d, #ff5959);
 }

 .hero_cta.secondary {
   background: transparent;
   color: #ff5959;
   border: 2px solid #ff5959;
 }

 .hero_cta.secondary:hover {
   background: #ff5959;
   color: #fff;
   transform: translateY(-3px);
   box-shadow: 0 6px 25px rgba(255, 89, 89, 0.3);
 }

 .hero_social {
   display: flex;
   gap: 1.5rem;
   justify-content: center;
   animation: fadeInUp 1s ease-out 1.4s both;
 }

 .social_link {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 50px;
   height: 50px;
   background: rgba(255, 89, 89, 0.1);
   border: 1px solid rgba(255, 89, 89, 0.3);
   border-radius: 50%;
   color: #ffffff;
   font-size: 1.2rem;
   text-decoration: none;
   transition: all 0.3s ease;
   backdrop-filter: blur(5px);
 }

 .social_link:hover {
   background: linear-gradient(135deg, #ff5959, #d40d0d);
   border-color: #ff5959;
   transform: translateY(-3px) scale(1.1);
   box-shadow: 0 5px 20px rgba(255, 89, 89, 0.4);
 }

 .hero_graphic {
   position: absolute;
   left: 50%;
   top: 60%;
   transform: translate(-50%, -40%);
   width: 400px;
   height: 200px;
   background: #ff5959;
   border-radius: 50% 50% 0 0 / 100% 100% 0 0;
   z-index: 1;
   opacity: 0.15;
 }

/* Elementos decorativos */
 .hero_decoration {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   pointer-events: none;
   z-index: 1;
 }

 .floating_element {
   position: absolute;
   opacity: 0.1;
   animation: float 6s ease-in-out infinite;
 }

 .floating_element.code1 {
   top: 20%;
   left: 10%;
   font-family: 'JetBrains Mono', monospace;
   font-size: 1.2rem;
   color: #ff5959;
   animation-delay: 0s;
 }

 .floating_element.code2 {
   top: 60%;
   right: 15%;
   font-family: 'JetBrains Mono', monospace;
   font-size: 1rem;
   color: #d40d0d;
   animation-delay: 2s;
 }

 .floating_element.shape1 {
   top: 15%;
   right: 20%;
   width: 100px;
   height: 100px;
   background: linear-gradient(45deg, #ff5959, #d40d0d);
   border-radius: 50%;
   filter: blur(40px);
   animation-delay: 1s;
 }

 .floating_element.shape2 {
   bottom: 20%;
   left: 15%;
   width: 80px;
   height: 80px;
   background: linear-gradient(45deg, #d40d0d, #840000);
   border-radius: 30%;
   filter: blur(30px);
   animation-delay: 3s;
 }

 /* Scroll indicator */
 .scroll_indicator {
   position: absolute;
   bottom: 2rem;
   left: 50%;
   transform: translateX(-50%);
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 0.5rem;
   opacity: 0;
   animation: fadeIn 1s ease forwards 2s;
 }

 .scroll_text {
   font-size: 0.8rem;
   color: #aaaaaa;
   text-transform: uppercase;
   letter-spacing: 0.1rem;
 }

 .scroll_arrow {
   width: 2px;
   height: 30px;
   background: linear-gradient(to bottom, #ff5959, transparent);
   animation: scrollBounce 2s ease-in-out infinite;
 }

 /* Seção Jornada */
.journey_section {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(26, 26, 26, 0.95));
  padding: 100px 2rem;
  position: relative;
  overflow: hidden;
}

.journey_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 89, 89, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 89, 89, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.journey_container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.journey_header {
  text-align: center;
  margin-bottom: 4rem;
}

.journey_title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ff5959, #d40d0d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.journey_subtitle {
  font-size: 1.2rem;
  color: #cccccc;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.timeline_wrapper {
  position: relative;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #ff5959, #d40d0d);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 4rem;
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeft 0.6s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }
.timeline-item:nth-child(5) { animation-delay: 1s; }

.timeline-item.current {
  animation: slideInLeft 0.6s ease-out forwards, pulse 2s infinite;
}

.timeline-marker {
  position: absolute;
  left: -6.5rem;
  top: 0.5rem;
  z-index: 3;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #ff5959, #d40d0d);
  border-radius: 50%;
  border: 4px solid #0a0a0a;
  box-shadow: 0 4px 20px rgba(255, 89, 89, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.timeline-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.timeline-item:hover .timeline-dot::after,
.timeline-item.current .timeline-dot::after {
  opacity: 1;
}

.timeline-item.current .timeline-dot {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  }
}

.timeline-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 89, 89, 0.2);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  border-color: #ff5959;
  box-shadow: 0 10px 30px rgba(255, 89, 89, 0.2);
}

.timeline-item.current .timeline-content {
  border-color: #25d366;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.1);
}

.timeline-year {
  color: #ff5959;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.timeline-item.current .timeline-year {
  color: #25d366;
}

.timeline-title {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.timeline-description {
  color: #cccccc;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.timeline-achievements {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.achievement {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  font-size: 0.95rem;
}

.achievement i {
  color: #ff5959;
  font-size: 1.1rem;
  min-width: 20px;
}

.timeline-item.current .achievement i {
  color: #25d366;
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.timeline-tag {
  background: rgba(255, 89, 89, 0.1);
  border: 1px solid rgba(255, 89, 89, 0.3);
  color: #ff5959;
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.timeline-tag:hover {
  background: rgba(255, 89, 89, 0.2);
  transform: scale(1.05);
}

.timeline-tag.current {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.3);
  color: #25d366;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Habilidades */
.skills_section {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(26, 26, 26, 0.95));
  padding: 100px 2rem;
  position: relative;
  overflow: hidden;
}

.skills_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 89, 89, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.skills_container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.skills_header {
  text-align: center;
  margin-bottom: 4rem;
}

.skills_title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ff5959, #d40d0d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.skills_subtitle {
  font-size: 1.2rem;
  color: #cccccc;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.skills_categories {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.skill_category {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 89, 89, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.skill_category:hover {
  border-color: rgba(255, 89, 89, 0.3);
  box-shadow: 0 10px 30px rgba(255, 89, 89, 0.1);
}

.category_header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 89, 89, 0.2);
}

.category_header i {
  font-size: 2rem;
  color: #ff5959;
}

.category_header h3 {
  font-size: 1.8rem;
  color: #ffffff;
  font-weight: 700;
  margin: 0;
}

.skills_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.skill_item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 89, 89, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.skill_item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 89, 89, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.skill_item:hover {
  transform: translateY(-5px);
  border-color: #ff5959;
  box-shadow: 0 10px 25px rgba(255, 89, 89, 0.2);
}

.skill_item:hover::before {
  opacity: 1;
}

.skill_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff5959, #d40d0d);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.skill_icon i {
  font-size: 1.8rem;
  color: #ffffff;
}

.skill_info {
  flex: 1;
  position: relative;
  z-index: 2;
}

.skill_info h4 {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.skill_info p {
  color: #cccccc;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.skill_level {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.level_bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.level_fill {
  height: 100%;
  background: linear-gradient(90deg, #ff5959, #d40d0d);
  border-radius: 3px;
  transition: width 2s ease;
  animation: fillLevel 2s ease forwards;
}

.skill_level span {
  color: #ff5959;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

@keyframes fillLevel {
  from {
    width: 0 !important;
  }
  to {
    width: var(--level-width);
  }
}

/* Projetos */
.projects_section {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(26, 26, 26, 0.95));
  padding: 100px 2rem;
  position: relative;
  overflow: hidden;
}

.projects_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 89, 89, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.projects_container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.projects_header {
  text-align: center;
  margin-bottom: 4rem;
}

.projects_title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ff5959, #d40d0d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.projects_subtitle {
  font-size: 1.2rem;
  color: #cccccc;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.projects_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.project_card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 89, 89, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.project_card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 89, 89, 0.3);
  box-shadow: 0 20px 40px rgba(255, 89, 89, 0.1);
}

.project_card.featured {
  border-color: rgba(255, 89, 89, 0.3);
  background: rgba(255, 89, 89, 0.05);
}

.project_card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff5959, #d40d0d);
}

.project_image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.project_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project_card:hover .project_image img {
  transform: scale(1.05);
}

.project_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project_card:hover .project_overlay {
  opacity: 1;
}

.project_links {
  display: flex;
  gap: 1rem;
}

.project_link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #ff5959, #d40d0d);
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.project_link.code {
  background: linear-gradient(135deg, #333333, #555555);
}

.project_link:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 89, 89, 0.3);
}

.project_content {
  padding: 1.5rem;
}

.project_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.project_name {
  font-size: 1.3rem;
  color: #ffffff;
  font-weight: 700;
  margin: 0;
}

.project_status {
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.project_status.featured {
  background: linear-gradient(135deg, #ff5959, #d40d0d);
  color: #ffffff;
}

.project_status.freelance {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
}

.project_status.development {
  background: linear-gradient(135deg, #ffa500, #ff6b35);
  color: #ffffff;
}

.project_status:not(.featured):not(.freelance):not(.development) {
  background: rgba(255, 255, 255, 0.1);
  color: #cccccc;
}

.project_description {
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.project_tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tech_tag {
  background: rgba(255, 89, 89, 0.1);
  border: 1px solid rgba(255, 89, 89, 0.3);
  color: #ff5959;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

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

.stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #aaaaaa;
  font-size: 0.85rem;
}

.stat i {
  color: #ff5959;
  font-size: 1rem;
}

.projects_cta {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 89, 89, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.projects_cta p {
  color: #cccccc;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta_button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #ff5959, #d40d0d);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 89, 89, 0.3);
}

.cta_button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 89, 89, 0.4);
}

/* Contato */
.contato_container {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(26, 26, 26, 0.95));
  padding: 100px 2rem;
  position: relative;
  overflow: hidden;
}

.contato_container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ff5959" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%23ff5959" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23ff5959" opacity="0.1"/></svg>');
  pointer-events: none;
}

.contato_content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contato_header {
  text-align: center;
  margin-bottom: 4rem;
}

.contato_title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ff5959, #d40d0d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contato_subtitle {
  font-size: 1.2rem;
  color: #cccccc;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.contato_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contato_info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info_card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 89, 89, 0.2);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.info_card:hover {
  transform: translateY(-5px);
  border-color: #ff5959;
  box-shadow: 0 10px 30px rgba(255, 89, 89, 0.2);
}

.info_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff5959, #d40d0d);
  border-radius: 50%;
  font-size: 1.5rem;
  color: #ffffff;
  flex-shrink: 0;
}

.info_content h3 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.info_content a {
  color: #ff5959;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.info_content a:hover {
  color: #ffffff;
}

.contato_form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 89, 89, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

.form_group {
  margin-bottom: 2rem;
}

.contato_form label {
  display: block;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.contato_form input, 
.contato_form textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 89, 89, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.contato_form input:focus, 
.contato_form textarea:focus {
  outline: none;
  border-color: #ff5959;
  box-shadow: 0 0 15px rgba(255, 89, 89, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.contato_form textarea {
  resize: vertical;
  min-height: 120px;
}

.contato_form input::placeholder, 
.contato_form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contato_buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contato_btn {
  flex: 1;
  min-width: 200px;
  background: linear-gradient(135deg, #ff5959, #d40d0d);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 1.2rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 4px 15px rgba(255, 89, 89, 0.3);
}

.contato_btn.secondary {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.contato_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 89, 89, 0.4);
}

.contato_btn.secondary:hover {
  background: linear-gradient(135deg, #128c7e, #25d366);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.contato_btn:active {
  transform: translateY(0);
}

/* Footer */
.footer_container {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  border-top: 1px solid rgba(255, 89, 89, 0.1);
  padding: 3rem 2rem 1.5rem;
  position: relative;
}

.footer_container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 89, 89, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.footer_content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer_logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer_logo_img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 89, 89, 0.3);
}

.footer_logo_text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.footer_social {
  display: flex;
  gap: 1rem;
}

.footer_social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 89, 89, 0.1);
  border: 1px solid rgba(255, 89, 89, 0.3);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.footer_social a:hover {
  background: linear-gradient(135deg, #ff5959, #d40d0d);
  border-color: #ff5959;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 89, 89, 0.3);
}

.footer_divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 89, 89, 0.3), transparent);
  margin-bottom: 2rem;
}

.footer_bottom {
  text-align: center;
}

.footer_bottom p {
  color: #cccccc;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer_subtitle {
  color: #aaaaaa;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Notificações */
.notification {
  position: fixed;
  top: 100px;
  right: 2rem;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  animation: slideIn 0.3s ease-out;
  max-width: 400px;
  border-left: 4px solid;
}

.notification.success {
  border-left-color: #25d366;
}

.notification.error {
  border-left-color: #ff5959;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  font-size: 0.95rem;
}

.notification-content i {
  font-size: 1.2rem;
}

.notification.success .notification-content i {
  color: #25d366;
}

.notification.error .notification-content i {
  color: #ff5959;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* BACK BUTTON */
.btn_back {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #ff5959 0%, #ff3030 50%, #d40d0d 100%);
  color: #ffffff;
  border: none;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(255, 89, 89, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  z-index: 1200;
  transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
  transform: translateY(100px) scale(0.8);
  border: 2px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}

.btn_back::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ff5959, #ff3030, #ff5959, #ff3030);
  background-size: 400% 400%;
  border-radius: 22px;
  z-index: -1;
  animation: gradientMove 3s ease infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn_back:hover::before {
  opacity: 1;
}

.btn_back::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: linear-gradient(135deg, #ff5959 0%, #ff3030 50%, #d40d0d 100%);
  border-radius: 16px;
  z-index: -1;
}

.btn_back:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 89, 89, 0.4);
}

.btn_back:active {
  transform: translateY(-2px) scale(0.98);
}

.btn_back.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  animation: slideInUp 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.btn_back.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100px) scale(0.8);
  animation: slideOutDown 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

@keyframes gradientMove {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(100px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes slideOutDown {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(100px) scale(0.8);
  }
}
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(100px) scale(0.8);
  }


/* MEDIA QUERIES CONSOLIDADOS */

/* Tablet e telas médias */
@media (max-width: 900px) {
  /* Header */
  .header-content {
    padding: 0.8rem 1.5rem;
    min-height: 60px;
  }
  
  .logo {
    width: 36px;
    height: 36px;
  }
  
  .logo-text {
    font-size: 1.2rem;
  }
  
  .nav_container {
    display: block;
  }
  
  .nav_list {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 100%;
    max-width: 280px;
    height: calc(100vh - 60px);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 2rem 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
    display: flex;
  }
  
  .nav_list.show {
    right: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  .nav_list::before {
    display: none;
  }
  
  .nav_list li {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .nav_list li::after {
    display: none;
  }
  
  .nav-link {
    width: 100%;
    padding: 1rem 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-weight: 400;
    border: none;
    background: transparent;
    transition: all 0.2s ease;
    text-align: left;
    display: block;
    border-radius: 8px;
    margin-bottom: 0.3rem;
    text-decoration: none;
  }
  
  .nav-link::before {
    display: none;
  }
  
  .nav-link::after {
    display: none;
  }
  
  .nav-link:hover,
  .nav-link.active {
    color: #ffffff;
    background: rgba(255, 89, 89, 0.1);
  }
  
  .hamburger {
    display: flex !important;
  }
  
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }
  
  .nav-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
  }

  /* Hero */
  .hero_banner {
    padding-top: 140px;
  }

  /* Journey */
  .journey_section {
    padding: 80px 1.5rem;
  }
  
  .timeline {
    padding-left: 1rem;
  }
  
  .timeline::before {
    left: 1rem;
  }
  
  .timeline-item {
    padding-left: 3rem;
  }
  
  .timeline-marker {
    left: -4.5rem;
  }
  
  .timeline-dot {
    width: 16px;
    height: 16px;
    border: 3px solid #0a0a0a;
  }
  
  .timeline-dot::after {
    width: 6px;
    height: 6px;
  }
  
  .timeline-content {
    padding: 1.5rem;
  }
  
  /* Skills Tablet */
  .skills_section {
    padding: 80px 1.5rem;
  }
  
  .skills_categories {
    gap: 2.5rem;
  }
  
  .skill_category {
    padding: 2rem;
  }
  
  .skills_grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .skill_item {
    padding: 1.25rem;
  }
  
  .skill_icon {
    width: 50px;
    height: 50px;
  }
  
  .skill_icon i {
    font-size: 1.5rem;
  }
  
  /* Projects Tablet */
  .projects_section {
    padding: 80px 1.5rem;
  }
  
  .projects_grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  
  .project_image {
    height: 180px;
  }
  
  .project_links {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .project_link {
    padding: 0.625rem 1.25rem;
    font-size: 0.85rem;
  }

  /* Contato Tablet */
  .contato_wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }  .contato_form {
    padding: 2rem;
  }
  
  .contato_buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .contato_btn {
    width: 100%;
  }
  
  /* Footer Tablet */
  .footer_container {
    padding: 2.5rem 1.5rem 1.5rem;
  }
  
  .footer_top {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer_logo_text {
    font-size: 1.3rem;
  }
  
  .footer_social {
    justify-content: center;
  }
}

/* Desktop Navigation */
@media (min-width: 901px) {
  .nav_container {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  .nav_list {
    display: flex !important;
    position: static !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 2.5rem !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    background: rgba(45, 45, 45, 0.8) !important;
    border-radius: 50px !important;
    padding: 0.75rem 2rem !important;
    border: 1px solid rgba(255, 89, 89, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
  }
  
  .hamburger {
    display: none !important;
  }
}

/* Mobile */
@media (max-width: 600px) {
  /* Header */
  .header-content {
    padding: 0.7rem 1rem;
    min-height: 56px;
  }
  
  .logo {
    width: 32px;
    height: 32px;
  }
  
  .logo-text {
    font-size: 1.1rem;
  }
  
  .nav_list {
    width: 100%;
    max-width: 260px;
    right: -100%;
    top: 56px;
    padding: 2rem 1.5rem;
    height: calc(100vh - 56px);
  }
  
  .nav_list.show {
    right: 0;
  }
  
  .nav-link {
    padding: 1rem 1rem;
    font-size: 0.95rem;
  }
  
  /* Hero */
  .hero_banner {
    padding: 140px 1.5rem 100px;
    min-height: 100vh;
  }
  
  .hero_content {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .hero_title {
    font-size: clamp(2.2rem, 8vw, 3rem);
    margin-bottom: 1rem;
  }
  
  .hero_subtitle {
    font-size: clamp(1.3rem, 5vw, 1.9rem);
    margin-bottom: 1.5rem;
  }
  
  .hero_description {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0;
    margin-bottom: 2rem;
  }
  
  .hero_cta_group {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .hero_cta {
    width: 100%;
    max-width: 280px;
  }
  
  .hero_tech_stack {
    gap: 0.75rem;
    justify-content: center;
  }
  
  .tech_item {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    flex: 1;
    min-width: 80px;
    max-width: 120px;
    text-align: center;
  }

  /* Journey Mobile - Timeline Horizontal */
  .journey_section {
    padding: 60px 0rem;
    overflow: hidden;
  }
  
  .journey_container {
    padding: 0 1rem;
  }
  
  .journey_header {
    margin-bottom: 3rem;
    padding: 0 1rem;
  }
  
  .journey_title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  
  .journey_subtitle {
    font-size: 1rem;
    padding: 0 0.5rem;
  }
  
  .timeline_wrapper {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2rem 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    --show-indicator: 1;
  }
  
  .timeline_wrapper:active {
    cursor: grabbing;
  }
  
  .timeline_wrapper::-webkit-scrollbar {
    display: none;
  }
  
  /* Indicador de scroll */
  .timeline_wrapper::after {
    content: "👈 Arraste para navegar";
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    background: rgba(255, 89, 89, 0.9);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    animation: pulseHint 3s infinite;
    opacity: var(--show-indicator, 1);
    z-index: 5;
    transition: opacity 0.3s ease;
    pointer-events: none;
    max-width: 140px;
    text-align: center;
  }
  
  @keyframes pulseHint {
    0%, 100% { 
      opacity: 0.7; 
      transform: scale(1) translateY(0); 
    }
    50% { 
      opacity: 0.9; 
      transform: scale(1.02) translateY(-1px); 
    }
  }
  
  .timeline {
    display: flex;
    gap: 2rem;
    padding: 0;
    margin: 0;
    width: max-content;
    min-width: 100%;
  }
  
  .timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: linear-gradient(90deg, #ff5959, #d40d0d);
    border-radius: 2px;
    z-index: 1;
  }
  
  .timeline-item {
    flex: 0 0 280px;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
  }
  
  .timeline-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
  }
  
  .timeline-dot {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #ff5959, #d40d0d);
    border: 3px solid #0a0a0a;
  }
  
  .timeline-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 89, 89, 0.2);
    border-radius: 15px;
    padding: 1.2rem;
    margin-top: 4rem;
    transition: all 0.3s ease;
  }
  
  .timeline-title {
    font-size: 1.1rem;
    line-height: 1.4;
  }
  
  .timeline-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .timeline-achievements {
    gap: 0.5rem;
  }
  
  .achievement {
    font-size: 0.85rem;
    flex-wrap: wrap;
  }
  
  .achievement span {
    flex: 1;
    min-width: 0;
  }
  
  .timeline-tags {
    gap: 0.4rem;
  }
  
  .timeline-tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }

  /* Skills Mobile */
  .skills_section {
    padding: 60px 1rem;
  }
  
  .skills_header {
    margin-bottom: 3rem;
  }
  
  .skills_title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  
  .skills_subtitle {
    font-size: 1rem;
    padding: 0 0.5rem;
  }
  
  .skills_categories {
    gap: 2rem;
  }
  
  .skill_category {
    padding: 1.5rem;
  }
  
  .category_header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .category_header i {
    font-size: 1.5rem;
  }
  
  .category_header h3 {
    font-size: 1.4rem;
  }
  
  .skills_grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .skill_item {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
    gap: 1rem;
  }
  
  .skill_icon {
    width: 45px;
    height: 45px;
  }
  
  .skill_icon i {
    font-size: 1.3rem;
  }
  
  .skill_info h4 {
    font-size: 1.1rem;
  }
  
  .skill_info p {
    font-size: 0.85rem;
  }
  
  .skill_level {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }
  
  .level_bar {
    order: 1;
  }
  
  .skill_level span {
    order: 2;
    font-size: 0.75rem;
  }

  /* Projects Mobile */
  .projects_section {
    padding: 60px 1rem;
  }
  
  .projects_header {
    margin-bottom: 3rem;
  }
  
  .projects_title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  
  .projects_subtitle {
    font-size: 1rem;
    padding: 0 0.5rem;
  }
  
  .projects_grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .project_image {
    height: 160px;
  }
  
  .project_content {
    padding: 1.25rem;
  }
  
  .project_header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .project_name {
    font-size: 1.2rem;
  }
  
  .project_description {
    font-size: 0.9rem;
  }
  
  .project_stats {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
  
  .projects_cta {
    padding: 2rem 1.5rem;
  }
  
  .projects_cta p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .cta_button {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  /* Contato Mobile */
  .contato_container {
    padding: 60px 1rem;
  }
  
  .contato_wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 100%;
  }
  
  .contato_info {
    gap: 1.5rem;
    padding: 0;
  }
  
  .info_card {
    padding: 1.5rem;
    flex-direction: row;
    text-align: left;
    margin: 0;
  }
  
  .info_icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    flex-shrink: 0;
  }
  
  .info_content h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }
  
  .info_content a {
    font-size: 0.9rem;
    word-break: break-word;
  }
  
  .contato_form {
    padding: 1.5rem;
    max-width: 100%;
  }
  
  .form_group {
    margin-bottom: 1.5rem;
  }
  
  .contato_form label {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }
  
  .contato_form input,
  .contato_form textarea {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
  }
  
  .contato_form textarea {
    min-height: 100px;
  }
  
  .contato_buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .contato_btn {
    min-width: 100%;
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }

  /* Footer Mobile */
  .footer_container {
    padding: 2rem 1rem 1.5rem;
  }
  
  .footer_content {
    max-width: 100%;
  }
  
  .footer_top {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .footer_logo {
    justify-content: center;
  }
  
  .footer_logo_img {
    width: 35px;
    height: 35px;
  }
  
  .footer_logo_text {
    font-size: 1.2rem;
  }
  
  .footer_social {
    justify-content: center;
    gap: 0.75rem;
  }
  
  .footer_social a {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .footer_divider {
    margin-bottom: 1.5rem;
  }
  
  .footer_bottom p {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }
  
  .footer_subtitle {
    font-size: 0.8rem;
    padding: 0 1rem;
    line-height: 1.4;
  }

  /* Back Button */
  .btn_back {
    right: 1.5rem;
    bottom: 1.5rem;
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    border-radius: 16px;
  }
}

  /* Extra small screens */
@media (max-width: 480px) {
  /* Header */
  .header-content {
    padding: 0.6rem 1rem;
    min-height: 52px;
  }
  
  .logo {
    width: 28px;
    height: 28px;
  }
  
  .logo-text {
    font-size: 1rem;
    display: none; /* Hide text on very small screens */
  }
  
  .hamburger {
    width: 22px;
    height: 18px;
  }
  
  .hamburger-line {
    height: 2px;
  }
  
  .nav_list {
    width: 100%;
    max-width: 300px;
    right: -100%;
    padding: 2rem 1.5rem;
    top: 52px;
    height: calc(100vh - 52px);
  }
  
  .nav_list.show {
    right: 0;
  }
  
  .nav-link {
    padding: 1.1rem 0.9rem;
    font-size: 1rem;
    background: transparent;
    border: none;
  }

  .hero_tech_stack {
    justify-content: center;
  }

  .tech_item {
    flex: 1;
    min-width: 80px;
    max-width: 120px;
    text-align: center;
  }

  .timeline-item {
    max-width: calc(100vw - 3rem);
    flex: 0 0 260px;
  }

  .timeline-content {
    padding: 1rem;
  }
  
  .timeline-title {
    font-size: 1rem;
  }
  
  .timeline-description {
    font-size: 0.85rem;
  }
  
  /* Skills Extra Small */
  .skills_section {
    padding: 40px 0.75rem;
  }
  
  .skills_header {
    margin-bottom: 2.5rem;
  }
  
  .skills_title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
  }
  
  .skills_subtitle {
    font-size: 0.9rem;
  }
  
  .skills_categories {
    gap: 1.5rem;
  }
  
  .skill_category {
    padding: 1.25rem;
  }
  
  .category_header h3 {
    font-size: 1.2rem;
  }
}

/* Extra small screens - 360px and below */
@media (max-width: 360px) {
  .header-content {
    padding: 0.5rem 0.75rem;
    min-height: 48px;
  }
  
  .logo {
    width: 26px;
    height: 26px;
  }
  
  .hamburger {
    width: 20px;
    height: 16px;
  }
  
  .nav_list {
    max-width: 280px;
    right: -100%;
    top: 48px;
    height: calc(100vh - 48px);
    padding: 1.8rem 1.2rem;
  }
  
  .nav-link {
    padding: 1rem 0.8rem;
    font-size: 0.95rem;
    background: transparent;
    border: none;
  }
  }
  
  .skill_item {
    padding: 1rem;
  }
  
  .skill_icon {
    width: 40px;
    height: 40px;
  }
  
  .skill_icon i {
    font-size: 1.1rem;
  }
  
  .skill_info h4 {
    font-size: 1rem;
  }
  
  .skill_info p {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
  }

  /* Projects Extra Small */
  .projects_section {
    padding: 40px 0.75rem;
  }
  
  .projects_header {
    margin-bottom: 2.5rem;
  }
  
  .projects_title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
  }
  
  .projects_subtitle {
    font-size: 0.9rem;
  }
  
  .projects_grid {
    gap: 1.25rem;
  }
  
  .project_image {
    height: 140px;
  }
  
  .project_content {
    padding: 1rem;
  }
  
  .project_name {
    font-size: 1.1rem;
  }
  
  .project_description {
    font-size: 0.85rem;
  }
  
  .tech_tag {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
  }
  
  .project_links {
    gap: 0.5rem;
  }
  
  .project_link {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  
  .projects_cta {
    padding: 1.5rem 1rem;
  }

  /* Contato Extra Small */
  .contato_container {
    padding: 40px 0.75rem;
  }
  
  .contato_header {
    margin-bottom: 2.5rem;
  }
  
  .contato_title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  
  .contato_subtitle {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }
  
  .info_card {
    padding: 1.25rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .info_icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .info_content h3 {
    font-size: 0.95rem;
  }
  
  .info_content a {
    font-size: 0.85rem;
  }
  
  .contato_form {
    padding: 1.25rem;
  }
  
  .contato_form input,
  .contato_form textarea {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
  
  .contato_btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
  }
  
  /* Footer Extra Small */
  .footer_container {
    padding: 1.5rem 0.75rem 1.25rem;
  }
  
  .footer_top {
    gap: 1.25rem;
  }
  
  .footer_logo_img {
    width: 32px;
    height: 32px;
  }
  
  .footer_logo_text {
    font-size: 1.1rem;
  }
  
  .footer_social {
    gap: 0.5rem;
  }
  
  .footer_social a {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  
  .footer_bottom p {
    font-size: 0.85rem;
    padding: 0 0.5rem;
  }
  
  .footer_subtitle {
    font-size: 0.75rem;
    padding: 0 1.5rem;
  }


/* Animações */
@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes menuItemFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(255, 89, 89, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 89, 89, 0.6), 0 0 30px rgba(255, 89, 89, 0.4);
  }
}

@keyframes borderExpand {
  0% {
    width: 0%;
    opacity: 0;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}

 @keyframes wave {
   0%, 50%, 100% {
     transform: rotate(0deg);
   }
   10%, 30% {
     transform: rotate(14deg);
   }
   20% {
     transform: rotate(-8deg);
   }
   40% {
     transform: rotate(-4deg);
   }
 }

 @keyframes fadeInUp {
   from {
     opacity: 0;
     transform: translateY(30px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 @keyframes fadeIn {
   from {
     opacity: 0;
   }

   to {
     opacity: 1;
   }
 }

 @keyframes float {

   0%,
   100% {
     transform: translateY(0) rotate(0deg);
   }

   50% {
     transform: translateY(-20px) rotate(10deg);
   }
 }

 @keyframes scrollBounce {

   0%,
   20%,
   50%,
   80%,
   100% {
     transform: translateY(0);
   }

   40% {
     transform: translateY(10px);
   }

   60% {
     transform: translateY(5px);
   }
 }