  /* HERO */
  #hero {
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative;
    padding: 0 5%;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 70% at 70% 50%, rgba(0,153,204,0.12) 0%, transparent 60%),
      radial-gradient(ellipse 40% 40% at 20% 80%, rgba(0,212,255,0.06) 0%, transparent 50%),
      linear-gradient(135deg, #050a12 0%, #0d1f35 50%, #050a12 100%);
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
  }
  @keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 650px;
    margin-top: 80px;
  }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,212,255,0.1);
    border: 1px solid rgba(0,212,255,0.3);
    padding: 6px 16px;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--neon);
    margin-bottom: 24px;
    animation: fadeSlideUp 0.8s ease both;
  }
  .hero-tag::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--neon);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon);
    animation: pulse 1.5s infinite;
  }
  @keyframes pulse {
    0%,100% { opacity: 1; } 50% { opacity: 0.3; }
  }
  .hero-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.9;
    letter-spacing: 3px;
    color: var(--text);
    animation: fadeSlideUp 0.8s 0.2s ease both;
  }
  .hero-name .highlight {
    color: var(--neon);
    text-shadow: 0 0 40px rgba(0,212,255,0.5), 0 0 80px rgba(0,212,255,0.2);
    display: block;
  }

  .hero-image-nome {
    /* Ajuste este valor até ficar no tamanho do texto original */
    height: auto; 
    min-height: 100px;
    max-height: 200px;
    width: auto;
    /* Faz a imagem subir junto com a animação do H1 */
    vertical-align: middle; 
  }

  .hero-belt {
    display: flex; align-items: center; gap: 10px;
    margin: 20px 0;
    animation: fadeSlideUp 0.8s 0.4s ease both;
  }
  .belt-bar {
    height: 8px; width: 80px;
    border-radius: 4px;
    background: linear-gradient(90deg, #1a3a6b, #2a5aa8);
    position: relative; overflow: hidden;
  }
  .belt-bar::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
  }
  @keyframes shimmer { 0%{transform:translateX(-100%)} 100%{transform:translateX(100%)} }
  .belt-text {
    font-size: 0.9rem; font-weight: 700;
    color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase;
  }
  .hero-desc {
    font-size: 1.1rem; font-weight: 400; line-height: 1.7;
    color: var(--text-muted); max-width: 500px;
    margin-bottom: 36px;
    animation: fadeSlideUp 0.8s 0.6s ease both;
  }
  .hero-stats {
    display: flex; gap: 2rem; margin-bottom: 40px;
    animation: fadeSlideUp 0.8s 0.7s ease both;
  }
  .stat { text-align: center; }
  .stat-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem; font-weight: 900;
    color: var(--neon);
    text-shadow: 0 0 20px rgba(0,212,255,0.6);
    display: block;
  }
  .stat-label {
    font-size: 0.75rem; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: var(--text-muted);
  }
  .stat-divider { width: 1px; background: rgba(0,212,255,0.2); }
  .hero-buttons {
    display: flex; gap: 16px; flex-wrap: wrap;
    animation: fadeSlideUp 0.8s 0.8s ease both;
  }
  .btn-primary {
    background: var(--neon);
    color: var(--bg-dark);
    padding: 14px 32px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700; font-size: 1rem;
    letter-spacing: 2px; text-transform: uppercase;
    border: none; cursor: none;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary:hover {
    background: white;
    box-shadow: 0 0 40px rgba(0,212,255,0.6);
    transform: translateY(-2px);
  }
  .btn-secondary {
    background: transparent;
    color: var(--text);
    padding: 14px 32px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700; font-size: 1rem;
    letter-spacing: 2px; text-transform: uppercase;
    border: 1.5px solid rgba(255,255,255,0.2);
    cursor: none;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    transition: all 0.3s;
    text-decoration: none;
  }
  .btn-secondary:hover {
    border-color: var(--neon);
    color: var(--neon);
    transform: translateY(-2px);
  }
  .hero-image-side {
    position: absolute; right: 0; top: 0;
    width: 45%; height: 100%;
    z-index: 1;
  }
  .hero-photo {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 0%;
    /* opacity: 0.4; */
    filter: saturate(0.5) contrast(1.2);
  }
  .hero-photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, var(--bg-dark) 0%, transparent 50%, transparent 80%, var(--bg-dark) 100%),
                linear-gradient(0deg, var(--bg-dark) 0%, transparent 30%);
  }
  .hero-neon-line {
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--neon), transparent);
    box-shadow: 0 0 20px var(--neon);
  }
  /* FOTO PLACEHOLDER */
  .photo-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(0,153,204,0.1), rgba(0,212,255,0.05));
    font-size: 8em; 
    /* opacity: 0.3; */
  }

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