@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
	 font-family: 'Poppins', sans-serif;
	 background: #1f1f1e;
	 /*background-image: url('https://ubbar.com.br/assets/images/ubbar/bg-ubbar.png');*/
	 background-size: cover;
	 background-repeat: no-repeat;
	 background-position: center;
	 background-attachment: fixed;
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 min-height: 100dvh;
	 margin: 0;
	 padding: 20px;
	 color: #fff;
	 
}
 .container {
	 display: flex;
	 flex-direction: column;
	 align-items: center;
	 width: 100%;
	 max-width: 400px;
	 border-radius: 15px;
	 overflow: hidden;
	 box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
	 background: #1f1f1e;
	 padding: 20px;
}
 .profile-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 30px 20px;
	text-align: center;
	width: 100%;
	margin-bottom: 0;
}
.profile-card .img-logo{
	height: 60px;
	object-fit: contain;
	width: 100%;
	padding: 20px;
	filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(23deg) brightness(105%) contrast(104%);
}
 .profile-content h1 {
	 font-size: 1.8em;
	 margin-bottom: 10px;
	 color: #f0f0e0;
}
 .profile-content p {
	 font-size: 0.9em;
	 color: #d0d0c0;
	 line-height: 1.4;
}
 .social-icons {
	 display: flex;
	 justify-content: center;
}
 .social-icons a {
	 color: #f0f0e0;
	 font-size: 1.2em;
	 margin: 0 10px;
	 text-decoration: none;
	 transition: color 0.3s ease, box-shadow 0.3s ease;
}
 .social-icons a:hover {
	 color: #12b453;
	 box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
 .buttons {
	 display: flex;
	 flex-direction: column;
	 width: 100%;
	 padding: 0 20px;
	 margin-bottom: 20px;
}
 .button {
	 color: #f0f0e0;
	 padding: 15px 20px;
	 margin-bottom: 10px;
	 border-radius: 8px;
	 cursor: pointer;
	 font-size: 1em;
	 transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
	 display: flex;
	 align-items: center;
	 position: relative;
	 overflow: hidden;
	 /*background-image: url('https://ubbar.com.br/assets/images/ubbar/bg-ubbar.png');*/
	 background-size: 200% auto;
	 background-position: center;
	 background-repeat: no-repeat;
	 border: none;
	 text-decoration: none;
}
 .button:hover {
	 background-color: rgba(0, 0, 0, 0.2);
	 box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
 .button::before {
	 content: '';
	 position: absolute;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
	 background: rgba(255, 255, 255, 0.05);
	 opacity: 0;
	 transition: opacity 0.3s ease;
}
 .button:hover::before {
	 opacity: 1;
}
 .button .button-content {
	 display: flex;
	 align-items: center;
}
 .button i {
	 margin-right: 10px;
	 font-size: 2em;
	 color: #2a523a;
}
.button:hover i{
	color: #12b453;
}
 .button .button-text {
	 text-align: left;
	 margin-left: 10px;
}
 .button .button-text h3 {
	 font-size: 1.125em;
	 margin: 0;
	 margin-bottom: 2px;
}
 .button .button-text p {
	 font-size: 0.7em;
	 line-height: 16px;
	 color: #ddd;
	 margin: 0;
}
 .message-section {
	 text-align: center;
	 margin-bottom: 20px;
}
 .message-section p {
	 font-size: 0.9em;
	 color: #d0d0c0;
	 margin-bottom: 10px;
}
 .message-button {
	 background-color: #4caf50;
	 color: #fff;
	 border: none;
	 padding: 14px 20px;
	 border-radius: 8px;
	 cursor: pointer;
	 font-size: 1em;
	 transition: background-color 0.3s ease, box-shadow 0.3s ease;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 position: relative;
	 overflow: hidden;
	 text-decoration: none;
}
 .message-button i {
	 margin-right: 10px;
	 font-size: 1.2em;
}
 .message-button:hover {
	 background-color: #43a047;
	 box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
 .message-button::before {
	 content: '';
	 position: absolute;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
	 background: rgba(255, 255, 255, 0.1);
	 opacity: 0;
	 transition: opacity 0.3s ease;
}
 .message-button:hover::before {
	 opacity: 1;
}
 .footer {
	 text-align: center;
	 color: #f0f0e0;
	 font-size: 1em;
	 padding: 10px 0;
	 width: 100%;
}


@media(max-width: 576px){
	body{
		padding: 0;
	}
	.container {
		width: 100% !important;
		height: 100vh;
		max-width: 100%;
		justify-content: center;
		border-radius: 0 !important;
		/*background-image: url('https://ubbar.com.br/assets/images/ubbar/bg-ubbar.png');*/
        background-position: -300px center !important;
		background-repeat: no-repeat;
		background-position: center;
		background-attachment: fixed;
	}
}