/* Fundo em gradiente */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Garante que o body ocupe toda a tela */
    background: url('../css/imagens/background-upvip.png') no-repeat center center fixed #f5f4f9; /* Imagem para desktop */
    background-size: contain; 
    font-family: Arial, sans-serif;
    margin: 0;
    color: white;
    position: relative;
    overflow: hidden; /* Evita rolagem desnecessária */
}

/* Evita rolagem extra no celular */
html, body {
    height: 100%;
    overflow: hidden;
}

/* Logo à esquerda */
.logo-left {
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 100;
}

.logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #333;
    background-image: url('../css/imagens/logo-upvip.jpeg'); /* Imagem da logo */
    background-size: cover;
    background-position: center;
}

/* Botão de menu hambúrguer */
.hamburger-menu {
    position: fixed;
    top: 15px;
    right: 15px;
    font-size: 1.5em;
    color: white;
    cursor: pointer;
    z-index: 100;
}

/* Menu oculto com o botão de login à frente do hambúrguer */
.hidden-menu {
    position: fixed;
    top: 15px;
    right: 90px;
    z-index: 200;
    display: none;
}

.hidden-menu.active {
    display: block;
}

/* Botão de login */
.login-button {
    font-size: 0.9em;
    background-color: #555;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.login-button:hover {
    background-color: #403A34;
}

/* Container */
.container {
    text-align: center;
    /* max-width: 320px; */
    width: 90%; /* Melhor ajuste em telas menores */
    padding: 20px;
    background-color: #55259f;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 50;
    position: relative;
}

/* Responsividade para telas menores */
/* Responsividade para telas menores */
@media (max-width: 768px) {
	body {
		background-size: cover;
	}
    .container {
        font-size: 15px;
		width: 80%;
    }

    .hamburger-menu {
        top: 30px;
    }

    .hidden-menu {
        top: 30px;
        right: 50px;
    }

	.logo {
		box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
	}

    .logo-left {
        position: absolute;
        top: 5%;
        left: 50%;
        transform: translateX(-50%);
    }


	.whatsapp-button {
		padding: 15px 0 !important;
	}
	
	#whatsapp-button-oficial .whatsapp-button {
		width: 82px !important;
	}


}


/* Título */
h1 {
    font-size: 1.8em;
    margin: 10px 0;
}

/* Descrição */
.description {
    font-size: 1em;
    color: #e0e0e0;
    margin-bottom: 20px;
}


/* Rodapé fixo na parte inferior */
.footer {
    position: fixed; 
    bottom: 0; 
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    font-size: 0.8em;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    padding: 5px 0;
    background: rgb(148 160 238)/* Fundo levemente escuro para destacar */
}


.footer a {
    color: inherit;
    font-style: italic;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}


.isDisabled {
    color: currentColor;
    cursor: not-allowed;
    opacity: 0.5;
    text-decoration: none;
  }
