		* {
		    margin: 0;
		    padding: 0;
		    box-sizing: border-box;
		    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
		}

		:root {
		    --azul-logo: #2b82c9;
		    --azul-escuro: #1c6eb0;
		    --laranja-logo: #ed7d31;
		    --laranja-escuro: #d86a20;
		    --bg-color: #0d1829;
		    --card-bg: rgba(18, 33, 53, 0.5);
		}

		body {
		    background-color: #0d1829;
		    display: flex;
		    flex-direction: column;
		    align-items: center;
		    padding: 40px 20px;
		    min-height: 100vh;
		    color: white;
		    background-image:
		        radial-gradient(circle at 15% 15%, rgba(43, 130, 201, 0.08) 0%, transparent 25%),
		        radial-gradient(circle at 85% 85%, rgba(237, 125, 49, 0.08) 0%, transparent 25%);
		}

		.container {
		    max-width: 600px;
		    width: 100%;
		}

		.profile {
		    display: flex;
		    flex-direction: column;
		    align-items: center;
		    margin-bottom: 30px;
		}

		.logo {
		    width: 120px;
		    height: 120px;
		    border-radius: 50%;
		    margin-bottom: 20px;
		    border: 3px solid var(--azul-logo);
		}

		.profile-name {
		    font-size: 1.8rem;
		    font-weight: 700;
		    margin-bottom: 8px;
		    color: white;
		}

		.profile-description {
		    font-size: 1rem;
		    color: #cccccc;
		    text-align: center;
		    margin-bottom: 25px;
		    max-width: 400px;
		}

		/* Menu de navegação em abas */
		.tabs-container {
		    width: 100%;
		    margin-bottom: 20px;
		}

		.tabs-nav {
		    display: flex;
		    justify-content: space-around;
		    width: 100%;
		}

		.tab-button {
		    color: white;
		    border-radius: 10px;
		    padding: 15px 10px;
		    text-align: center;
		    text-decoration: none;
		    font-weight: 500;
		    font-size: 0.9rem;
		    display: flex;
		    flex-direction: column;
		    align-items: center;
		    justify-content: center;
		    width: 31%;
		    transition: transform 0.2s, box-shadow 0.2s;
		    cursor: pointer;
		    border: 1px solid rgba(255, 255, 255, 0.1);
		    outline: none;
		    backdrop-filter: blur(5px);
		    background-color: var(--card-bg);
		}

		.tab-button:nth-child(1) {
		    background: linear-gradient(to right, var(--azul-logo), rgba(43, 130, 201, 0.7));
		}

		.tab-button:nth-child(2) {
		    background: linear-gradient(to right, var(--laranja-logo), rgba(237, 125, 49, 0.7));
		}

		.tab-button:nth-child(3) {
		    background: linear-gradient(145deg, var(--azul-logo), rgba(237, 125, 49, 0.8));
		}

		.tab-button i {
		    font-size: 1.5rem;
		    margin-bottom: 8px;
		}

		.tab-button:hover {
		    transform: translateY(-3px);
		    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
		}

		.tab-button.active {
		    box-shadow: 0 0 15px rgba(43, 130, 201, 0.4);
		    transform: translateY(-3px);
		    border-color: rgba(43, 130, 201, 0.3);
		}

		/* Conteúdo das abas */
		.tabs-content {
		    position: relative;
		    overflow: hidden;
		    width: 100%;
		    margin-top: 20px;
		}

		.tab-pane {
		    display: none;
		    animation: fadeEffect 0.5s;
		    width: 100%;
		}

		@keyframes fadeEffect {
		    from {
		        opacity: 0;
		        transform: translateY(10px);
		    }

		    to {
		        opacity: 1;
		        transform: translateY(0);
		    }
		}

		.tab-pane.active {
		    display: block;
		}

		/* Links dentro das abas */
		.links-container {
		    width: 100%;
		    display: flex;
		    flex-direction: column;
		    gap: 15px;
		}

		.link-item {
		    width: 100%;
		    padding: 16px 20px;
		    border-radius: 12px;
		    text-align: left;
		    font-size: 1rem;
		    font-weight: 500;
		    text-decoration: none;
		    color: white;
		    display: flex;
		    align-items: center;
		    justify-content: space-between;
		    transition: transform 0.2s, box-shadow 0.2s;
		    border: 1px solid rgba(255, 255, 255, 0.1);
		    backdrop-filter: blur(5px);
		    background-color: var(--card-bg);
		}

		.link-item:hover {
		    transform: translateY(-3px);
		    box-shadow: 0 5px 15px rgba(43, 130, 201, 0.2);
		    border-color: rgba(43, 130, 201, 0.3);
		}

		.link-item i {
		    font-size: 1.3rem;
		}

		.primary-gradient {
		    background: linear-gradient(to right, var(--azul-logo), rgba(43, 130, 201, 0.7));
		}

		.secondary-gradient {
		    background: linear-gradient(to right, var(--laranja-logo), rgba(237, 125, 49, 0.7));
		}

		.mixed-gradient-1 {
		    background: linear-gradient(145deg, var(--azul-logo), rgba(237, 125, 49, 0.65));
		}

		.mixed-gradient-2 {
		    background: linear-gradient(145deg, var(--laranja-logo), rgba(43, 130, 201, 0.65));
		}

		.footer {
		    margin-top: 40px;
		    font-size: 0.8rem;
		    color: #999999;
		    text-align: center;
		}

		/* Ícones usando emojis ou caracteres unicode */
		.icon {
		    font-style: normal;
		    font-size: 24px;
		}

		/* Responsividade */
		@media (max-width: 480px) {
		    .container {
		        width: 100%;
		    }

		    .tab-button {
		        font-size: 0.8rem;
		        padding: 12px 8px;
		    }

		    .profile-name {
		        font-size: 1.5rem;
		    }

		    .profile-description {
		        font-size: 0.9rem;
		    }

		    .link-item {
		        padding: 14px 16px;
		        font-size: 1rem;
		    }
		}