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

    :root {
      --black: #0f0f0f;
      --yellow: #c99700;
      --white: #f5f5f5;
      --gray: rgba(255, 255, 255, 0.75);
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--black);
      color: var(--white);
      overflow: hidden;
    }

    .hero {
      position: relative;
      width: 100%;
      height: 100vh;

      background-image:
        linear-gradient(
          rgba(0, 0, 0, 0.65),
          rgba(0, 0, 0, 0.65)
        ),
        url('bg-aguarde-site.jpg');

      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;

      display: flex;
      align-items: center;
      justify-content: center;

      padding: 40px;
    }

    .content {
      text-align: center;
      max-width: 900px;
    }

    .logo {
      width: 360px;
      margin-bottom: 40px;
    }

    h1 {
      font-size: clamp(2.6rem, 6vw, 5.5rem);
      font-weight: 700;
      line-height: .9;
      margin-bottom: 24px;
      letter-spacing: -2px;
      color: #ffac02;
    }

    .highlight {
      color: var(--yellow);
    }

    p {
      font-size: 1.1rem;
      line-height: 1.4;
      color: var(--gray);
      max-width: 720px;
      margin: 0 auto;
    }

    .footer {
      position: absolute;
      bottom: 30px;
      left: 0;
      width: 100%;

      display: flex;
      justify-content: center;
      align-items: center;

      padding: 0 30px;
    }

    .footer-content {
      width: 100%;
      max-width: 1300px;

      display: flex;
      justify-content: space-between;
      align-items: center;

      border-top: 1px solid rgba(255,255,255,0.12);

      padding-top: 20px;

      font-size: 0.95rem;
      color: rgba(255,255,255,0.6);
    }

    .footer a {
      color: var(--white);
      text-decoration: none;
      transition: 0.3s ease;
    }

    .footer a:hover {
      color: var(--yellow);
    }

    @media (max-width: 768px) {
      .hero {
        padding: 30px;
      }

      h1 {
        font-size: 2.7rem;
      }

      p {
        font-size: 1rem;
      }

      .footer-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
      }

      .logo {
        width: 244px;
      }
    }