.container-home {
      width: 100%;
      max-width: 800px; /* Largura maior para mais espaço */
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 20px;
    }

    /* Título */
    .title-home {
      font-size: 4rem;
      font-weight: bold;
      text-align: center;
      margin: 40px auto;
      padding: 20px;
      background-color: #000;
      color: white;
      border-radius: 10px;
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
      text-transform: uppercase;
      letter-spacing: 2px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      white-space: nowrap;
      overflow: hidden;
    }

    .title-home:hover {
      transform: scale(1.05);
      box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
    }

    /* Mensagem de boas-vindas */
    .welcome-message-home {
      font-size: 58px;
      color: #555;
      margin-bottom: 20px;
      text-align: center;
    }

    /* Botão de logout */
    .btn-danger-home {
      display: inline-block;
      padding: 12px 25px;
      text-align: center;
      text-decoration: none;
      font-size: 16px;
      background-color: #dc3545;
      color: white;
      border-radius: 10px;
      transition: background-color 0.3s ease, transform 0.2s ease;
      margin-bottom: 15px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      border: none;
      cursor: pointer;
    }

    .btn-danger-home:hover {
      background-color: #c82333;
      transform: scale(1.05);
    }

    /* Lista de opções de login */
    .login-options-home {
      display: flex;
      flex-wrap: wrap; /* Permite que os botões quebrem linha se necessário */
      justify-content: center; /* Centraliza os botões */
      gap: 20px; /* Espaçamento entre as caixas */
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .col {
      font-size: 25pt;
      text-align: center;
    }

    .btn-home {
      width: 240px; 
      height: 240px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background-color: #010101;
      text-align: center;
      font-size: 16px;
      color: #fff;
      border: 3px solid #010101;
      border-radius: 10px;
      text-decoration: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s, color 0.3s;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      cursor: pointer;
    }

    /* Efeito ao passar o mouse */
    .btn-home:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
      background-color: #333;
      color: #fff;
    }

    /* Texto dentro das opções */
    .btn-home span {
      font-weight: bold;
      color: #fff !important;
    }

    /* Responsividade */
    @media (max-width: 768px) {
      .title-home {
        font-size: 1.5rem;
        padding: 15px;
      }

      .welcome-message-home {
        font-size: 42px;
      }

      .btn-home {
        width: 150px;
        height: 150px;
        font-size: 14px;
      }

      .login-options-home {
        gap: 15px;
      }
    }

    @media (max-width: 480px) {
      .title-home {
        font-size: 1.5rem;
        padding: 10px;
      }

      .welcome-message-home {
        font-size: 32px;
      }

      .btn-home {
        width: 130px;
        height: 130px;
        font-size: 12px;
      }

      .login-options-home {
        flex-wrap: wrap;
        justify-content: center;
      }
    }
