  body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
      color: #ffffff;
      scroll-behavior: smooth;
      overflow-x: hidden;
  }

  .container,
  .card,
  .section {
      max-width: 100%;
      overflow-x: hidden;
  }

  nav {
      background: linear-gradient(to right, #0f1e2e, #0c2d3d);
      backdrop-filter: blur(8px);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
      border-bottom: 1px solid rgba(0, 255, 242, 0.2);
      transition: background 0.3s, box-shadow 0.3s;
  }

  .navbar-nav .nav-link {
      font-size: 1rem;
      color: #ccc;
      padding: 0.5rem 1rem;
  }

  .nav-link:hover {
      color: #00fff2;
      background: rgba(0, 255, 242, 0.1);
      border-radius: 5px;
  }

  .navbar-brand {
      font-size: 1.3rem;
      font-weight: 600;
  }

  .brand-text {
      font-weight: 600;
      font-size: 1.3rem;
      background: linear-gradient(to right, #ffffff, #00fff2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }


  .hero {
      background: url('https://www.transparenttextures.com/patterns/stardust.png'), radial-gradient(circle at top left, #00fff2 0%, #0f2027 100%);
      padding: 100px 20px;
      color: #fff;
  }

  .hero-img {
      width: 200px;
      border-radius: 50%;
      border: 4px solid #00fff2;
      box-shadow: 0 0 20px #00fff2;
  }

  .hero h1 {
      font-size: 3rem;
      font-weight: bold;
      background: linear-gradient(to right, #ffffff, #00fff2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }

  .hero p {
      font-size: 1.2rem;
      color: #ccc;
  }

  .hero-icons a {
      margin: 0 10px;
      font-size: 1.5rem;
      color: #00fff2;
      border: 1px solid #00fff2;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: 0.3s;
  }

  .hero-icons a:hover {
      background: #00fff2;
      color: #000;
  }

  .btn-glow {
      background-color: #00fff2;
      color: #000;
      border: none;
      padding: 10px 25px;
      border-radius: 25px;
      font-weight: 600;
      box-shadow: 0 0 10px #00fff2, 0 0 30px #00fff2;
      transition: 0.3s;
      margin: 5px;
  }

  .btn-glow:hover {
      transform: scale(1.05);
      box-shadow: 0 0 20px #00fff2, 0 0 40px #00fff2;
  }

  .section {
      padding: 80px 20px;
  }

  .section h2 {
      font-size: 2.2rem;
      border-left: 5px solid #00fff2;
      padding-left: 15px;
      margin-bottom: 40px;
  }

  .tech-icon {
      font-size: 48px;
      color: #00fff2;
      margin: 15px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .tech-icon:hover {
      animation: bounce 0.6s;
      box-shadow: 0 8px 20px rgba(0, 255, 242, 0.3);
  }

  @keyframes bounce {

      0%,
      100% {
          transform: translateY(0);
      }

      50% {
          transform: translateY(-8px);
      }
  }

  .timeline {
      border-left: 3px solid #00fff2;
      padding-left: 20px;
  }

  .timeline .item {
      position: relative;
      margin-bottom: 30px;
  }

  .timeline .item::before {
      content: '';
      width: 12px;
      height: 12px;
      background: #00fff2;
      border-radius: 50%;
      position: absolute;
      left: -28px;
      top: 4px;
  }

  .skills .bar {
      position: relative;
      background: #222;
      border-radius: 30px;
      margin-bottom: 15px;
      height: 24px;
      overflow: hidden;
  }

  .skills .bar-fill {
      --bar-color: #00d2c0;
      position: relative;
      height: 100%;
      width: 0;
      background: var(--bar-color);
      border-radius: 30px;
      animation: fill 2s forwards;
      display: flex;
      align-items: center;
      padding-left: 12px;
      font-size: 0.9rem;
      font-weight: 500;
      color: #000;
  }

  .skills .bar-fill::before {
      content: attr(data-label);
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 0.9rem;
      font-weight: 500;
      color: #fff;
  }

  /* Delay efecto progresivo */
  .skills .bar:nth-child(1) .bar-fill {
      animation-delay: 0s;
  }

  .skills .bar:nth-child(2) .bar-fill {
      animation-delay: 0.1s;
  }

  .skills .bar:nth-child(3) .bar-fill {
      animation-delay: 0.2s;
  }

  .skills .bar:nth-child(4) .bar-fill {
      animation-delay: 0.3s;
  }

  .skills .bar:nth-child(5) .bar-fill {
      animation-delay: 0.4s;
  }

  .skills .bar:nth-child(6) .bar-fill {
      animation-delay: 0.5s;
  }

  .skills .bar:nth-child(7) .bar-fill {
      animation-delay: 0.6s;
  }

  .skills .bar:nth-child(8) .bar-fill {
      animation-delay: 0.7s;
  }

  .skills .bar:nth-child(9) .bar-fill {
      animation-delay: 0.8s;
  }

  @keyframes fill {
      100% {
          width: var(--value);
      }
  }


  .project-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid #00fff244;
      border-radius: 15px;
      padding: 20px;
      transition: transform 0.3s ease;
  }

  .project-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 0 20px #00fff266;
  }

  .card p,
  .card li,
  .card div,
  .card section {
      color: #ffffff !important;
  }


  footer {
      background: #0f1e2e;
      text-align: center;
      padding: 40px 20px;
      font-size: 0.9rem;
      color: #bbbbbb;
  }

