@import './mouseEffects.css';
  
  :root {
      --primary-cyan: #00ffff;
      --primary-cyan-rgb: 0, 255, 255;
      --secondary-magenta: #ff00ff;
      --secondary-magenta-rgb: 255, 0, 255;
      --accent-purple: #8b5cf6;
      --accent-purple-rgb: 139, 92, 246;
      --text-primary: #ffffff;
      --text-secondary: rgba(255, 255, 255, 0.8);
      --text-muted: rgba(255, 255, 255, 0.6);
      --background-dark: #0a0a0f;
      --background-darker: #050507;
      --surface: rgba(255, 255, 255, 0.03);
      --surface-hover: rgba(255, 255, 255, 0.08);
      --border: rgba(255, 255, 255, 0.1);
      
      --font-mono: 'JetBrains Mono', monospace;
      --font-display: 'Press Start 2P', monospace;
      --font-body: 'Space Grotesk', sans-serif;
      
      --shadow-glow: 0 0 40px rgba(var(--primary-cyan-rgb), 0.3);
      --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      background: linear-gradient(135deg, var(--background-darker) 0%, var(--background-dark) 50%, #0f0f1a 100%);
      color: var(--text-primary);
      font-family: var(--font-body);
      overflow-x: hidden;
      line-height: 1.6;
    }

    body::before {
      content: '';
      position: fixed;
      top: 0; left: 0; width: 100vw; height: 100vh;
      background: 
        radial-gradient(circle at 20% 30%, rgba(var(--primary-cyan-rgb), 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(var(--secondary-magenta-rgb), 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(var(--accent-purple-rgb), 0.05) 0%, transparent 50%);
      pointer-events: none;
      z-index: 1;
    }

    body::after {
      content: '';
      position: fixed;
      top: 0; left: 0; width: 100vw; height: 100vh;
      background: 
        repeating-linear-gradient(
          0deg, 
          transparent, 
          transparent 2px, 
          rgba(var(--primary-cyan-rgb), 0.03) 2px, 
          rgba(var(--primary-cyan-rgb), 0.03) 4px
        );
      pointer-events: none;
      z-index: 2;
      opacity: 0.5;
    }

    .page-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      padding: 20px 40px;
      background: rgba(var(--background-darker), 0.8);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      z-index: 100;
      transition: all 0.3s ease;
    }

    .back-to-home-link {
      color: var(--text-secondary);
      text-decoration: none;
      font-family: var(--font-mono);
      font-size: 0.9rem;
      transition: all 0.3s ease;
      position: relative;
    }

    .back-to-home-link:hover {
      color: var(--primary-cyan);
      text-shadow: 0 0 10px rgba(var(--primary-cyan-rgb), 0.8);
    }

    .back-to-home-link::before {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--primary-cyan);
      transition: width 0.3s ease;
    }

    .back-to-home-link:hover::before {
      width: 100%;
    }

    main {
      position: relative;
      z-index: 10;
      padding-top: 80px;
    }

    .snap-section {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 60px 40px;
      position: relative;
    }

    /* Hero Section Mejorada */
    .hero-section {
      background: 
        radial-gradient(circle at center, rgba(var(--primary-cyan-rgb), 0.1) 0%, transparent 70%);
    }

    .hero-content {
      max-width: 1000px;
      text-align: center;
      position: relative;
    }

    .hero-avatar {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      border: 3px solid var(--primary-cyan);
      box-shadow: 
        0 0 40px rgba(var(--primary-cyan-rgb), 0.6),
        0 0 80px rgba(var(--secondary-magenta-rgb), 0.2);
      margin-bottom: 40px;
      object-fit: cover;
      position: relative;
      animation: float 6s ease-in-out infinite;
    }

    .hero-avatar::before {
      content: '';
      position: absolute;
      inset: -10px;
      border-radius: 50%;
      background: conic-gradient(
        from 0deg,
        var(--primary-cyan),
        var(--secondary-magenta),
        var(--accent-purple),
        var(--primary-cyan)
      );
      opacity: 0.3;
      animation: rotate 8s linear infinite;
      z-index: -1;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }

    @keyframes rotate {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 6vw, 3rem);
      margin-bottom: 20px;
      background: linear-gradient(45deg, var(--primary-cyan), var(--secondary-magenta));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 0 20px rgba(var(--primary-cyan-rgb), 0.5));
    }

    .hero-subtitle {
      font-size: clamp(1.2rem, 3vw, 1.8rem);
      color: var(--secondary-magenta);
      text-shadow: 0 0 20px rgba(var(--secondary-magenta-rgb), 0.8);
      margin-bottom: 40px;
      font-weight: 300;
      font-style: italic;
      font-family: var(--font-body);
    }

    .hero-description {
      font-size: clamp(1.1rem, 2.5vw, 1.3rem);
      line-height: 1.2;
      color: var(--text-secondary);
      text-align: left;
      margin-bottom: 30px;
      max-width: 800px;
    }

    .highlight-tech {
      color: var(--primary-cyan);
      font-weight: 600;
      text-shadow: 0 0 10px rgba(var(--primary-cyan-rgb), 0.5);
    }

    .highlight-passion {
      color: var(--secondary-magenta);
      font-weight: 600;
      text-shadow: 0 0 10px rgba(var(--secondary-magenta-rgb), 0.5);
    }

    img:hover{
      scale: 1.05;
      transition: scale 0.3s ease-in-out;
      cursor: pointer;
    }

    .timeline-section {
      background: 
        radial-gradient(circle at 30% 40%, rgba(var(--accent-purple-rgb), 0.1) 0%, transparent 70%);
      padding: 100px 40px;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      text-align: center;
      margin-bottom: 80px;
      background: linear-gradient(45deg, var(--text-primary), var(--primary-cyan));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .timeline-container {
      max-width: 1200px;
      position: relative;
    }

    .timeline-connector {
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(
        to bottom,
        transparent,
        var(--primary-cyan),
        var(--secondary-magenta),
        var(--accent-purple),
        transparent
      );
      transform: translateX(-50%);
    }

    .timeline-item {
      display: flex;
      margin-bottom: 60px;
      position: relative;
      opacity: 0;
      animation: slideInUp 0.8s ease forwards;
    }

    .timeline-item:nth-child(even) {
      flex-direction: row-reverse;
    }

    .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; }

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

    .timeline-content {
      width: calc(50% - 40px);
      padding: 40px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 20px;
      backdrop-filter: blur(20px);
      position: relative;
      transition: all 0.4s ease;
    }

    .timeline-content:hover {
      background: var(--surface-hover);
      border-color: var(--primary-cyan);
      transform: translateY(-10px);
      box-shadow: var(--shadow-glow);
    }

    .timeline-content::before {
      content: '';
      position: absolute;
      top: 50%;
      width: 20px;
      height: 20px;
      background: var(--primary-cyan);
      border-radius: 50%;
      transform: translateY(-50%);
      box-shadow: 0 0 20px rgba(var(--primary-cyan-rgb), 0.8);
    }

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

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

    .timeline-date {
      font-family: var(--font-mono);
      font-size: 0.9rem;
      color: var(--secondary-magenta);
      margin-bottom: 15px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .timeline-title {
      font-size: 1.6rem;
      color: var(--text-primary);
      margin-bottom: 15px;
      font-weight: 600;
    }

    .timeline-description {
      color: var(--text-secondary);
      line-height: 1.7;
    }

    .skills-section {
      background: 
        radial-gradient(circle at 70% 30%, rgba(var(--secondary-magenta-rgb), 0.1) 0%, transparent 70%);
      text-align: center;
    }

    .skills-placeholder {
      max-width: 600px;
      padding: 60px 40px;
      background: var(--surface);
      border: 2px dashed var(--border);
      border-radius: 20px;
      backdrop-filter: blur(20px);
    }

    .skills-placeholder h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      color: var(--primary-cyan);
      margin-bottom: 20px;
    }

    .skills-placeholder p {
      color: var(--text-muted);
      font-size: 1.1rem;
    }

    .cta-section {
      background: 
        radial-gradient(circle at center, rgba(var(--primary-cyan-rgb), 0.15) 0%, transparent 70%);
      text-align: center;
      gap: 30px;
    }

    .cta-title {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      margin-bottom: 20px;
      background: linear-gradient(45deg, var(--text-primary), var(--primary-cyan), var(--secondary-magenta));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .cta-subtitle {
      font-size: clamp(1.1rem, 2vw, 1.4rem);
      color: var(--text-secondary);
      margin-bottom: 40px;
    }

    .cta-button {
      display: inline-block;
      font-family: var(--font-mono);
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--background-dark);
      background: linear-gradient(45deg, var(--primary-cyan), var(--secondary-magenta));
      padding: 20px 50px;
      text-decoration: none;
      border-radius: 50px;
      position: relative;
      overflow: hidden;
      transition: all 0.4s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .cta-button::before {
      content: '';
      position: absolute;
      inset: 2px;
      background: var(--background-dark);
      border-radius: 48px;
      transition: all 0.4s ease;
    }

    .cta-button span {
      position: relative;
      z-index: 2;
      background: linear-gradient(45deg, var(--primary-cyan), var(--secondary-magenta));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .cta-button:hover {
      transform: translateY(-5px);
      box-shadow: 
        0 10px 40px rgba(var(--primary-cyan-rgb), 0.5),
        0 0 60px rgba(var(--secondary-magenta-rgb), 0.3);
    }

    .cta-button:hover::before {
      background: transparent;
    }

    .cta-button:hover span {
      -webkit-text-fill-color: var(--background-dark);
    }

    .scroll-hint {
      position: absolute;
      bottom: -100px;
      left: 50%;
      transform: translateX(-50%);
      color: var(--primary-cyan);
      text-align: center;
      animation: pulse 2s infinite;
    }

    .scroll-hint span {
      font-family: var(--font-mono);
      font-size: 0.9rem;
      display: block;
      margin-bottom: 10px;
    }

    @keyframes pulse {
      0%, 100% { opacity: 0.6; }
      50% { opacity: 1; }
    }

    .page-footer {
      text-align: center;
      padding: 40px;
      color: var(--text-muted);
      font-family: var(--font-mono);
      font-size: 0.9rem;
      border-top: 1px solid var(--border);
      background: rgba(var(--background-darker), 0.8);
      backdrop-filter: blur(20px);
    }

    @media (max-width: 768px) {
      .snap-section {
        padding: 40px 20px;
      }

      .page-header {
        padding: 15px 20px;
      }

      .hero-description {
        text-align: center;
      }

      .timeline-connector {
        left: 20px;
      }

      .timeline-item {
        flex-direction: column !important;
        margin-left: 40px;
      }

      .timeline-content {
        width: 100%;
      }

      .timeline-content::before {
        left: -30px !important;
        right: auto !important;
      }

      .timeline-section {
        padding: 60px 20px;
      }
    }

    @keyframes upAndDown {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    .scroll-hint > svg{
      animation: upAndDown 2s infinite;
    }

    .scroll-hint{
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
    }

