section {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

body {
    color: white;
    min-height: 100vh;
    margin: 0;
    background:  linear-gradient(
    135deg,
    #0f0518,
    #1a0b2e,
    #2a0d3a,
    #ff2a8a
  );
    font-family: 'Rajdhani', sans-serif;
      background-attachment: fixed;
}

h1, h2 {
    letter-spacing: 2px;
}

.sobre-mim h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;    
}

.navbar nav {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    z-index: 100;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: 0;
    padding-right: 60px;
    box-sizing: border-box;
    animation: breatheGlow 3s ease-in-out infinite;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}

.navbar nav a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: #821faa;
    transition: 0.3s;
    box-shadow: 0 0 0 rgba(185, 79, 227, 0);
    font-family: 'Quicksand', sans-serif;
    
}

@keyframes ledPulse {
    0% {
        box-shadow: 0 0 5px rgba(185, 79, 227, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(185, 79, 227, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(185, 79, 227, 0.3);
    }
}

.navbar a::before {
    content:"";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(185, 79, 227, 0.5),
        transparent
    );
    transition: 0.5s;
}

.navbar a:hover::before {
    left: 100%;
}

.navbar a:hover {
    color: #b94fe3;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(185, 79, 227, 0.4);
    transform: translateY(-2px);
    animation: ledPulse 1.2s infinite;
    background: rgba(185, 79, 227, 0.15);
    transform: translateY(-2px);
}

.intro-about {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    min-height: 100vh;
    padding: 20px;
    width: 100%;
    background: linear-gradient(
    135deg,
    #0f0518,
    #1a0b2e,
    #2a0d3a,
    #ff2a8a
  );

  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;;
}

.intro-about::after {
     content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #ff2a8a;
  filter: blur(150px);
  opacity: 0.2;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%); 
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #b94fe3;
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 30px;
    padding: 20px;
    width: 50%;
    box-sizing: border-box;
    background: #2a0d3a;
    border-radius: 12px;
    box-shadow: 
    0 0 5px rgba(255, 0, 150, 0.4),
    0 0 15px rgba(255, 0, 150, 0.3),
    0 0 25px rgba(255, 0, 150, 0.2);
    transition: 0.3s;
    animation: neonPulse 2.35s ease-in-out infinite;
    color: white;
    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s ease;
    border: 1px solid rgba(255, 42, 138, 0.3);
}

.timeline-item.show {
    opacity: 1;
    transform: translateY(0);
}

@keyframes neonPulse {
    0% {
        box-shadow: 
        0 0 5px rgba(255, 0, 150, 0.3),
        0 0 15px rgba(255, 0, 150, 0.2);
    }
    50% {
        box-shadow:
        0 0 10px rgba(255, 0, 150, 0.8),
        0 0 25px rgba(255, 0, 150, 0.6);
    }
    100% {
        box-shadow:
        0 0 5px rgba(255, 0, 150, 0.3),
        0 0 15px rgba(255, 0, 150, 0.2);
    }
}

timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 40px;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 40px;
}

.timeline-item::before {
    position: absolute;
    left: 12px;
    top: 30px;
    width: 12px;
    height: 12px;
    background: #b94fe3;
    box-shadow: 
        0 0 10px rgba(185, 79, 227, 0.6),
        0 0 20px rgba(185, 79, 227, 0.4);
    border-radius: 50%;

}

.timeline-item:nth-child(odd)::before {
  right: -10px;
}

.timeline-item:nth-child(even)::before {
  left: -10px;
}

.year {
    font-weight: bold;
    color:#ff66cc;
}

.card {
    padding: 25px;
    border-radius: 12px;
    max-width: 800px;
    margin: 30px auto;
}

.identidade-card {
    background: linear-gradient(
        135deg,
    #2a0d3a,
    #3a0f4f,
    #ff2a8a        
    );

    color: white;
    box-shadow: 0 0 10px rgba(255, 42, 138, 0.4),
    0 0 25px rgba(185, 79, 227, 0.3);

    transition: 0.3s;
    margin-bottom: 30px;
}

.identidade-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 0 15px rgba(255, 42, 138, 0.7),
    0 0 35px rgba(185, 79, 227, 0.5);    
}

.euhj-card {
    background: linear-gradient(
        135deg,
    #2a0d3a,
    #3a0f4f,
    #ff2a8a        
    );

    color: white;
    box-shadow: 0 0 10px rgba(255, 42, 138, 0.4),
    0 0 25px rgba(185, 79, 227, 0.3);

    transition: 0.3s;
}

.euhj-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 0 15px rgba(255, 42, 138, 0.7),
    0 0 35px rgba(185, 79, 227, 0.5);    
}

@media (max-width: 768px) {
  .timeline-item {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding-left: 20px;
  }

  .timeline::before {
    left: 10px;
  }
}

@media (max-width: 768px) {
  .texto-intro h1 {
    font-size: 32px;
  }

  .texto {
    font-size: 14px;
  }

  .scroll {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .cards {
    flex-direction: column;
    gap: 15px;
  }

  .card {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 10px;
    padding: 15px 20px;
  }

  .navbar a {
    margin-left: 0;
    display: block;
    text-align: center;
  }
}

.footer-sbr {
 display: flex;
 justify-content: center;
 align-items: center;
 text-align: center;
 margin-top: 40px ;
 border-radius: 12px;
 background-color: #df8ae51c;
 width: 90%;
 max-width: 800px;
 margin: 30px auto; 
}