:root {
      --gold: #ff0000;
      --gold-dark: #543333;
      --dark: #0d0d0d;
      --light: #ffffff;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: 'Montserrat', sans-serif;
      background: url('imagens/fundo.jpg') no-repeat center center fixed;
      background-size: cover;
      color: var(--light);
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      padding: 20px;
    }

    .container {
      background: rgba(0, 0, 0, 0.85);
      padding: 2.5rem;
      border-radius: 20px;
      box-shadow: 0 0 25px rgba(201, 164, 77, 0.4);
      text-align: center;
      max-width: 450px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .logo-img {
      width: 150px;
      height: 150px;
      margin-bottom: 1rem;
      object-fit: contain;
      border-radius: 50%;
      border: 3px solid var(--gold);
      padding: 5px;
      background: rgba(0, 0, 0, 0.7);
    }

    h1 {
      font-size: 2.2rem;
      font-weight: 700;
      margin: 0.5rem 0;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    p {
      font-size: 1.1rem;
      font-weight: 300;
      margin-bottom: 2rem;
      color: #e0e0e0;
      line-height: 1.5;
      max-width: 100%;
    }

    .link-list {
      list-style: none;
      padding: 0;
      margin: 0;
      width: 100%;
    }

    .link-list li {
      margin-bottom: 1.2rem;
      width: 100%;
    }

    .link-button {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding: 1rem;
      border-radius: 10px;
      text-decoration: none;
      font-weight: 500;
      font-size: 1rem;
      background: var(--gold);
      color: var(--dark);
      transition: 0.3s ease;
      box-shadow: 0 5px 15px rgba(201, 164, 77, 0.3);
      gap: 10px;
    }

    .link-button:hover {
      background: var(--gold-dark);
      transform: translateY(-4px);
      box-shadow: 0 10px 25px rgba(201, 164, 77, 0.5);
    }

    .social-links {
      margin-top: 2rem;
      display: flex;
      justify-content: center;
      width: 100%;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 45px;
      height: 45px;
      color: var(--gold);
      background: rgba(201, 164, 77, 0.1);
      margin: 0 0.7rem;
      font-size: 1.5rem;
      transition: 0.3s;
      border-radius: 50%;
      border: 1px solid var(--gold);
    }

    .social-links a:hover {
      color: var(--light);
      background: var(--gold);
      transform: scale(1.1);
    }

    @media (max-width: 480px) {
      .container {
        padding: 2rem 1.5rem;
      }
      
      h1 {
        font-size: 1.8rem;
      }
      
      p {
        font-size: 1rem;
      }
      
      .logo-img {
        width: 120px;
        height: 120px;
      }
    }