/* ==========================================================
   responsive.css — AJUSTES DE RESPONSIVIDADE
   Carregado por último para poder sobrescrever os outros
   arquivos em telas menores.
   ========================================================== */

@media (orientation: landscape){
 
  .hero h1{
    font-size: 8vw;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 1.5rem 1.2rem;
  }

  .hero {
    min-height: 60vh;
    margin-bottom: 2rem;
  }

  .hero .logo {
    width: 140px;
  }

  .glass-panel {
    padding: 1.5rem 1.4rem;
  }

  .bio-grid {
    gap: 1.4rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .logs-grid {
    grid-template-columns: 1fr;
  }

  .terminal {
    margin-top: 3rem;
    padding: 1.2rem;
    font-size: 0.85rem;
    word-break: break-word;
  }
}

@media (max-width: 480px) {
  .hero .subtitle {
    font-size: 1rem;
    max-width: 100%;
  }

  .status-badge {
    font-size: 0.75rem;
    padding: 0.35rem 1rem;
  }

  .bio-value {
    font-size: 1.1rem;
  }

  .contact-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
}

@media (max-width: 380px) {
  .container {
    padding: 1.5rem 1rem;
  }

  .hero h1 {
    letter-spacing: -0.01em;
  }
}

/* Respeita preferência de menos movimento */
@media (prefers-reduced-motion: reduce) {
  .hero h1.glitch-active,
  .hero h1.glitch-active::before,
  .hero h1.glitch-active::after,
  .status-dot,
  .log-card {
    animation: none !important;
    transition: none !important;
  }
}