/* === HERO === */
.hero-banner {
    background: radial-gradient(circle at center, #111 0%, #000 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
  }
  
  .lead {
    font-size: 1.2em;
    color: #ccc;
    margin-bottom: 20px;
  }
  
  .highlight {
    font-size: 1.1em;
    color: #ff0033;
    font-weight: bold;
    animation: pulseHighlight 2s infinite;
  }
  
  /* === SECTIONS === */
  .section-alt {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 60px 40px;
    gap: 40px;
  }
  
  .left-image .image-block {
    order: 1;
  }
  .left-image .text-block {
    order: 2;
  }
  
  .right-image .image-block {
    order: 2;
  }
  .right-image .text-block {
    order: 1;
  }
  
  .image-block {
    flex: 1 1 0%;
    text-align: center;
  }
  .image-block img {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(255,0,51,0.3);
  }
  
  .text-block {
    flex: 1 1 55%;
    color: #eee;
  }
  
  .text-block h2 {
    font-size: 1.8em;
    color: #ff0033;
    margin-bottom: 20px;
  }
  
  .timeline {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
  }
  .timeline li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
  }
  .timeline li::before {
    content: "🎵";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
    color: #ff0033;
  }
  .timeline li span {
    font-weight: bold;
    color: #ff9900;
    margin-right: 10px;
  }
  
  /* === GRADIENT BLOCK === */
  .full-gradient {
    background: linear-gradient(135deg, #ff0033, #ff9900);
    color: #000;
    text-align: center;
    padding: 60px 40px;
    border-radius: 20px;
  }
  
  /* === PROYECTOS === */
  .project-links {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    justify-content: center;
  }
  .project-links a {
    padding: 12px 24px;
    background-color: #ff0033;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  .project-links a:hover {
    background-color: #000;
  }
  
  /* === ANIMACIONES === */
  @keyframes pulseHighlight {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
  }
  
  /* === RESPONSIVE === */
  @media (max-width: 768px) {
    .section-alt {
      flex-direction: column;
      text-align: center;
    }
    .image-block, .text-block {
      order: unset !important;
    }
  }
  