/*
Theme Name: EON Default
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: system-ui, sans-serif;
    background-color: #0b0b0b;
    color: #fff;
  
    background-image: 
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
  }
  
  /* Glow */
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(60, 60, 255, 0.12), transparent 40%);
    pointer-events: none;
  }
  
  /* HEADER */
  .site-header {
    position: absolute;
    top: 40px;
    left: 60px;
    z-index: 10;
  }
  
  .logo {
    height: 32px;
    opacity: 0.95;
  }
  
  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-container {
    position: relative; /* 👈 importante */
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    padding: 40px;
  }
  
  /* LEFT */
  .hero-left h1 {
    font-size: 72px;
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: -2px;
  }
  
  /* RIGHT */
  .hero-right {
    max-width: 340px;
  }
  
  .hero-right h2 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 16px;
    font-weight: 600;
  }
  
  .hero-right p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 24px;
    line-height: 1.5;
  }
  
  /* CTA */
  .cta {
    display: inline-block;
    padding: 14px 26px;
    background: linear-gradient(135deg, #2f2fff, #5a5aff);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    transition: 0.3s;
    font-size: 15px;
  }
  
  .cta:hover {
    transform: translateY(-2px);
  }
  
  /* 🔥 HERO LINE (AGORA PRO DE VERDADE) */
  .hero-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    
    display: flex;
    justify-content: center;
    pointer-events: none;
  }
  
  /* seta */
  .arrow-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    opacity: 1;
  }
  
  /* FOOTER */
  footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 80px 60px;
    margin-top: 120px;
  }
  
  .footer-content {
    max-width: 900px;
  }
  
  .footer-content img {
    height: 24px;
    margin-bottom: 16px;
  }
  
  .footer-content p {
    font-size: 14px;
    opacity: 0.6;
    max-width: 420px;
  }