@charset "UTF-8";
/* CSS Document */

/*===========================================================
# Variáveis Globais
===========================================================*/
:root {
	--bg: #080B12;
    --main-bg-color: #0C0C0C; /* Cor de fundo principal */
	--nav-bg-color: rgba(0, 0, 0, 0.925); /* Cor de fundo da navegação */
    --secondary-bg-color: #000000; /* Cor de fundo secundária */
    --font-size-primary: 28px; /* Tamanho do texto principal */
    --font-size-secondary: 21px; /* Tamanho do texto secundário */
    --mvx-text-color-base: #FFFFFF; /* Cor base do texto */
    --mvx-text-color-a-link: #D11317; /* Cor dos links */
    --mvx-font-primary: 'Nexa', sans-serif; /* Fonte principal Nexa */
    --mvx-font-secondary: 'Roboto', sans-serif; /* Fonte secundária Roboto */
    
    --btn-font-size: 14pt; /* Tamanho do texto dos botões */
    --btn-bg-color: #0C0C0C; /* Cor de fundo dos botões */
    --btn-bg-color-hover: rgba(225, 225, 225, 0.14); /* Fundo hover dos botões */
    --btn-text-color: #FFFFFF; /* Cor do texto dos botões */
    --btn-border-color: #FFFFFF; /* Cor da borda dos botões */
    --btn-border-color-hover: #fff; /* Cor da borda dos botões no hover */
	--social-icons-color-hover: rgba(225, 225, 225, 0.14); /* Cor hover social icones */
}

/*===========================================================
# Fontes Customizadas
===========================================================*/
/* Nexa Thin - Peso 100 */
@font-face {
    font-family: 'Nexa';
    src: url('assets/font/Nexa-Font/NexaThin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}
/* Nexa Light - Peso 300 */
@font-face {
    font-family: 'Nexa';
    src: url('assets/font/Nexa-Font/NexaLight.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}
/* Nexa Regular - Peso 400 */
@font-face {
    font-family: 'Nexa';
    src: url('assets/font/Nexa-Font/NexaRegular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
/* Nexa Book - Peso 500 */
@font-face {
    font-family: 'Nexa';
    src: url('assets/font/Nexa-Font/NexaBook.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}
/* Nexa Bold - Peso 700 */
@font-face {
    font-family: 'Nexa';
    src: url('assets/font/Nexa-Font/NexaBold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}
/* Nexa Heavy - Peso 800 */
@font-face {
    font-family: 'Nexa';
    src: url('assets/font/Nexa-Font/NexaHeavy.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}
/* Nexa Black - Peso 900 */
@font-face {
    font-family: 'Nexa';
    src: url('assets/font/Nexa-Font/NexaBlack.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

/*===========================================================
# Estilos Gerais
===========================================================*/
body {
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	color: var(--mvx-text-color-base);
    background-color: var(--bg); /* Cor de fundo da página */
    font-family: var(--mvx-font-primary); /* Fonte principal */
    margin: 0;
    padding: 0;
}

body.locked {
    overflow: hidden; /* Impede o scroll quando o menu está aberto */
}

body::before,
body::after {
  position:fixed;
  left: 0;
  top: 0;
  content: '';
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 10%;
}

body::before {
  background: #0C101B;
  filter: url(#noiseFilter); /* Efeito de ruído */
}

/*===========================================================
# Efeitos de Fundo
===========================================================*/
.circle {
  height: 150px;
  width: 150px;
  position: absolute;
  background-color: #AD9BFF;
  filter: blur(150px);
  border-radius: 100px;
}
.one { left: 0; top: 0; }
.two { bottom: 0; right: 0; }

/*===========================================================
# Links e Placeholders
===========================================================*/
a {
    color: var(--mvx-text-color-base); /* Cor padrão dos links */
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
	color: inherit; /* Herda a cor padrão */
}

/* Placeholder para input */
::placeholder {
    color: inherit;
    opacity: 1;
}

/*===========================================================
# Cabeçalhos e Parágrafos
===========================================================*/
h1, h2, h3, h4, h5, h6 {
    color: var(--mvx-text-color-base);
    margin: 0;
    font-family: var(--mvx-font-primary);
}
p { margin: 0; }

/* Remove margens de listas */
dl, ol, ul {
    margin-top: 0;
    margin-bottom: 0;
}

/*===========================================================
# Header e Navbar
===========================================================*/
/* Logo e Cabeçalho */
header {
    text-align: center;
    padding-top: 5vh;
}
.logo-container {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    border: 0.25pt solid #FFFFFF;
    margin: 70px auto 50px;
}
.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navbar fixa no topo */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: var(--main-bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Estilos do menu hambúrguer */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--mvx-text-color-base);
    transition: all 0.3s ease;
}

/* Efeito visual no ícone do hambúrguer (transformação para X) */
.hamburger-menu.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger-menu.active span:nth-child(2) {
    opacity: 0; /* Desaparece */
}
.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/*===========================================================
# Menu Lateral
===========================================================*/
.nav-menu {
    position: fixed;
    top: 0;
    left: -100%; /* Menu fora da tela inicialmente */
    height: 100vh;
    width: 250px;
    background-color: var(--nav-bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 20px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-menu.active {
    left: 0; /* Menu aparece da esquerda */
}

/* Ícone de fechar o menu ("X") */
.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.close-menu span {
    width: 30px;
    height: 3px;
    background-color: var(--mvx-text-color-base);
    transition: all 0.3s ease;
}

.close-menu span:nth-child(1) {
    transform: rotate(45deg);
    position: absolute;
}

.close-menu span:nth-child(2) {
    transform: rotate(-45deg);
    position: absolute;
}

/* Links do menu */
.nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.nav-menu ul li {
    margin: 20px 0;
}

.nav-menu ul li a {
    text-decoration: none;
    color: var(--mvx-text-color-base);
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu ul li a:hover {
    color: var(--mvx-text-color-a-link);
}

.nav-menu ul li a i {
    margin-right: 12px; /* Espaço entre o ícone e o texto */
}


/* Sombra quando o menu está aberto */
body.menu-open::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    cursor: pointer;
}

/*===========================================================
# Seções e Botões de Download
===========================================================*/
.title {
	margin: 50px 25px 0 25px;
	text-align: center;
}

.title h1 {
	font-size: var(--font-size-primary);
	color: var(--mvx-text-color-base);
	line-height: 30px;
	font-weight: 600;
	letter-spacing: 0.05rem;
	margin: 25px 0 12.5px 0;
	padding: 0 25px;
}
.title h2 {
	font-size: 21px;
	color: var(--mvx-text-color-base);
	line-height: 30px;
	font-weight: 600;
	letter-spacing: 0.05rem;
	margin: 25px 0 12.5px 0;
	padding: 0 25px;
}

.title p {
	font-size: var(--font-size-secondary);
	letter-spacing: 0.05rem;
	color: var(--mvx-text-color-base);
	margin: 12.5px 0;
	padding: 0 25px;
}

.icon-arrow-down span i {
	font-size: 33px;
	color: var(--mvx-text-color-base);
	margin: 25px 0;
}

/* Seção de Download */
.biolink-section {
	margin: 12.5px 0 70px 0;
    text-align: center;
    padding: 0 25px;
}

.biolink-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Estilos dos Botões de Download */
.link-btn {
	text-decoration: none;
    background-color: var(--btn-bg-color);
	font-family: var(--mvx-font-secondary);
    color: var(--btn-text-color);
    border: 0.75px solid var(--btn-border-color);
    width: 700px;
    height: 60px;
    font-size: var(--btn-font-size);
	letter-spacing: 0.05rem;
    margin: 15px 0;
	padding: 5px 25px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.link-btn span {
    flex: 0 0 80%;
	text-align: left;
}

.link-btn i {
    flex: 0 0 20%;
    text-align: right;
    margin-right: 10px;
}

/* Efeito hover nos botões */
.link-btn:hover {
    background-color: var(--btn-bg-color-hover);
	border: 0.75px solid var(--btn-border-color-hover);
    transform: scale(1.001);
    opacity: 1;
}

/*===========================================================
# Footer
===========================================================*/
footer {
    margin: 12.5px 0;
    text-align: center;
    padding: 0 25px;
}

/* Ícones das redes sociais */
.social-icons {
	margin: 25px 0 150px 0;
	display: flex;
    justify-content: center;
    gap: 50px;
    padding: 10px;
}

.social-icons a {
	font-size: 22px;
	color: inherit;
    text-decoration: none;
	transition: all 0.5s ease-in-out;
}

/* Efeito hover nos ícones */
.social-icons a:hover {
    color: var(--social-icons-color-hover);
	transform: scale(1.05);
}

.copywriter {
	margin: 100px 0 25px 0;
	padding: 25px 0;
}

.copywriter p a {
	margin-top: 15px;
	transition: all 0.5s ease-in-out;
}

.copywriter p a:hover {
    color: var(--mvx-text-color-a-link);
	transform: scale(1.15);
}


/* Formulário - Estilos personalizados */


.biolink-section h1 {
    font-family: var(--mvx-font-primary);
    font-size: 28px;
    margin-bottom: 10px;
}

.biolink-section p {
    font-size: 18px;
    margin-bottom: 50px;
    font-family: var(--mvx-font-secondary);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: none; /* none tira a visualização! */
    font-size: 14px;
    margin-bottom: 5px;
    font-family: var(--mvx-font-secondary);
}

.form-group input {
    width: 100%;
    font-size: 14px;
    color: var(--mvx-text-color-base);
	flex: 1;
    padding: 21px;
	background-color: rgba(51, 51, 51, 0.2);
    border: 0.01px solid rgba(128, 128, 128, 0.7);
    border-radius: 4px;
    max-width: 600px;
    box-sizing: border-box;
    text-align: left; /* Placeholder alinhado à esquerda em telas grandes */
	margin-bottom: 15px;
}

.form-group input::placeholder {
    color: var(--mvx-text-color-base);
    opacity: 0.7;
}

.form-group input:focus {
    border-color: var(--btn-border-color-hover);
    outline: none;
    background: var(--btn-bg-color-hover);
}

.link-btn {
    width: 100%;
    text-align: center;
	
}


/*===========================================================
# botão Black Friday
===========================================================*/

/* Estilo atualizado para o botão Black Friday */
.black-friday-btn {
    /* background-color: #FF0000; # Vermelho chamativo */
	background: linear-gradient(45deg, #000, #232326);
    border: 2px solid #FF0000; /* Borda dourada */
    color: #FFFFFF; /* Texto branco */
    font-weight: 500;
    font-size: 18px; /* Ajuste de tamanho do texto */
    text-align: center;
   
    height: 60px; /* Altura fixa para consistência */
    display: block;
    width: 600px; /* Mesma largura dos outros botões */
    margin: 15px auto; /* Centraliza horizontalmente */
    border-radius: 5px; /* Bordas arredondadas */
    transition: all 0.5s ease-in-out;
    animation: pulsate 1.5s infinite; /* Animação de pulsar */
}

.black-friday-btn:hover {
   
    color: #FF0000; /* Texto vermelho no hover */
}

/* Animação de pulsar */
@keyframes pulsate {
    0% {
        box-shadow: 0 0 10px #FF0000, 0 0 20px #FF0000;
    }
	25% {
        box-shadow: 0 0 20px #FFD700, 0 0 40px #FFD700;
    }
	50% {
        box-shadow: 0 0 10px #00FF06, 0 0 20px #00FF06;
    }
	75% {
        box-shadow: 0 0 10px #6060EA, 0 0 20px #6060EA;
    }
	100% {
        box-shadow: 0 0 10px #FF0000, 0 0 20px #FF0000;
    }
}

/*===========================================================
# botão Black Friday
===========================================================*/


.message {
    margin-top: 20px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    font-family: var(--mvx-font-secondary);
}

.message {
   
    color: #a00; /* Cor do texto para erro */
}

.message.success {
    
    color: #0a0; /* Cor do texto para sucesso */
}





/*===========================================================
# Responsividade
===========================================================*/
/* Ajustes para dispositivos menores */
@media (max-width: 1024px) {
    .link-btn {
        width: 100%;
        height: 60px;
		padding: 10px;
    }
    .logo-container {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .link-btn {
        width: 100%;
        height: 60px;
    }
    .logo-container {
        width: 170px;
        height: 170px;
    }
    .social-icons {
        gap: 20px;
        margin-bottom: 100px;
    }
    .copywriter {
        padding: 15px 0;
    }
}

@media (max-width: 480px) {
    .link-btn {
        width: 100%;
        height: 50px;
        font-size: 18px;
    }
    .title h1,
    .title p {
        padding: 0 15px;
    }
    .biolink-section {
        padding: 0 10px;
    }
    .social-icons {
        gap: 30px;
        margin-bottom: 50px;
    }
    .copywriter p {
        font-size: 14px;
    }
}
