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

  :root {
    --black: #000;
    --white: #f5f5f5;
    --pink: #e040b5;
    --gray: #1a1a1a;
    --gray2: #2a2a2a;
  }

  body { background: var(--black); color: var(--white); font-family: 'Inter', sans-serif; overflow-x: hidden; }
  a { color: inherit; text-decoration: none; }

  header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
  }

  .nav-links-desktop {
    display: flex;
    gap: 24px;
    list-style: none;
  }

  /* Hamburguer */
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
  }

  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
  }

  /* HERO */
  .hero {
    display: flex;
    align-items: center;
    gap: 64px;
    padding: 80px 48px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .hero-illustration { flex-shrink: 0; width: 200px; }
  .hero-illustration svg { width: 100%; height: auto; opacity: 0.9; }

  .hero-text h1 {
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -1px;
  }

  .hero-text p {
    font-size: 17px;
    line-height: 1.65;
    opacity: 0.85;
    max-width: 520px;
    margin-bottom: 32px;
  }

  .hero-text p span { color: var(--pink); font-weight: 600; }

  .btn-group { 
    display: inline;

   }

  @media (min-width: 769px ) {
    .h-mobile {
      display: none;
    }

  }

  @media (max-width: 768px) {
    header {
      display: flex;
      flex-direction:row;
      padding: 4px 16px;
    }

    .nav-links-desktop {
     display: none;
    }
    .nav-toggle{
      display: flex;
    }

    .h-mobile {
      display: none;
      position: fixed;
      z-index: 100;
      top:0;
      bottom:0;
      left: 0px;
      right: 0px;
      background-color: #e040b5;
      width: 100vw;
      height:100vh;
    }

    .h-mobile.abertinho{
      display: block; 
    }

    .nav-links-mobile {
      display: flex;
      list-style: none;
      padding: 0%;
      flex-direction: column;
      align-items: center;
     }

    .btn-group { 
    display: flex; 
    flex-direction: column; 
    gap: 14px; 
    flex-wrap: wrap; 
  }
  }
