
@font-face {
    font-family: 'Friz Quadrata';
    src: url('path-to-your-font/FrizQuadrata-Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
body {

    background: url('../img/bg-premium.jpg') no-repeat center;
    background-size: cover;
    background-attachment: relative;
    margin: 0;
    padding: 0;
    height: 1845px; /* Garante que a altura seja sempre 100% da tela */
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center; /* Centraliza o conteúdo na tela */
 
}
.blue-light {
	background: url(../img/blue-light.png);
	width: 300px;
	height: 300px;
	top: calc(50% - 135px); /* 50% do elemento pai menos metade da altura do elemento */
	left: calc(50% - -440px); /* 50% do elemento pai menos metade da largura do elemento */
	position: absolute;
	animation: 12s p-next linear infinite;
	opacity: 0.7;
}

.yellow-light {
	background: url(../img/yellow-light.png);
	width: 300px;
	height: 300px;
	top: calc(50% - 135px); /* 50% do elemento pai menos metade da altura do elemento */
	left: calc(50% - -440px); /* 50% do elemento pai menos metade da largura do elemento */
	position: absolute;
	animation: 12s p-prev linear infinite;
	opacity: 0.7;
}


  @keyframes p-next {
	0% {
	  transform: rotate(0deg);
	}
	50% {
	  transform: rotate(180deg);
	}
	100% {
	  transform: rotate(360deg);
	}
  }
  @keyframes p-prev {
	0% {
	  transform: rotate(0deg);
	}
	50% {
	  transform: rotate(-180deg);
	}
	100% {
	  transform: rotate(-360deg);
	}
  }
  /* Logo Brand */
  .brand {

    max-width: 100%;
    right: 290px;
    left: unset;
    background: url(../img/Logo.png) no-repeat;
    margin-top:-1380px;
    cursor: pointer;

  }
  .brand:hover {
    filter: brightness(110%);
  
    }


    
  .custom-link {
    
    position: absolute; /* Permite o posicionamento livre */
	top: calc(50% - -180px); /* 50% do elemento pai menos metade da altura do elemento */
	left: calc(50% - -90px); /* 50% do elemento pai menos metade da largura do elemento */
    z-index: 999; /* Garante que a div fique acima de outros elementos */
}

.custom-link a {
    font-family: Arial, sans-serif;
    text-decoration: none;
    padding: 10px 20px;
    background-color: none;
    color: white;
    border-radius: 5px;
    font-size: 18px;
    color: #e7dec0;
}

.custom-link a:hover {
    filter: drop-shadow(0 0 10px rgb(3, 176, 134));
    color: #e7dec0;

}


h1, h2 {
        
            font-family: 'Friz Quadrata', serif;
            letter-spacing: 5px;
        }

        h1 {
            font-size: 2.5em;
        }

        h2 {
            font-size: 2em;
        }

        p {
            font-family: 'Roboto', sans-serif;
            font-size: 1em;
            line-height: 1.6;
            letter-spacing: 5px;
        }

        a {
            font-family: 'Friz Quadrata', sans-serif, Arial, sans-serif;
            color: #e7dec0;;
            text-decoration: none;
            letter-spacing: 5px;
        }

        a:hover {
            filter: drop-shadow(0 0 10px rgb(3, 176, 134));
        }


.button-container {
    position: relative; /* Permite posicionar os botões em relação a este contêiner */
}

.btn {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.btn1 {
    background: url(../img/btn-1.png) no-repeat;
    width: 219px;
    height: 59px;
    color: white;
    position: absolute;
    top: 280px; /* Ajuste o valor conforme necessário */
    left: -329px; /* Ajuste o valor conforme necessário */
}

.btn2 {
    background: url(../img/btn-1-forum.png) no-repeat;
    width: 219px;
    height: 59px;
    color: white;
    position: absolute;
    top: 350px; /* Ajuste o valor conforme necessário */
    left: -329px; /* Ajuste o valor conforme necessário */
}

.btn:hover {
    filter: drop-shadow(0 0 10px rgb(3, 176, 134));
}

.btn1:hover {
    background: url(../img/btn-1.png) no-repeat;
    width: 219px;
    height: 59px;
}

.btn2:hover {
    background: url(../img/btn-1-forum.png) no-repeat;
    width: 219px;
    height: 59px;
}

/* Estilo do footer */
.footer {
    position: absolute;
    top: 1700px;
    bottom: 0;
    left: 0;
    width: 100%;
    background: transparent; /* Remove o fundo do footer */
    color: #e7dec0; /* Cor do texto do footer, ajuste conforme necessário */
    text-align: center; /* Alinha o texto ao centro */
    padding: 10px; /* Espaçamento interno */
    box-shadow: none; /* Remove a sombra */
    border-top: none; /* Adiciona uma borda sutil no topo do footer */
}


@media only screen and (min-width: 360px) and (max-width: 1199px) {

   body {
    background: url('../img/bg-premium-mobile.jpg') no-repeat top center;

    background-size: cover;
    background-attachment: relative;
    margin: 0;
    padding: 0;
    height: 2259px; /* Garante que a altura seja sempre 100% da tela */
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center; /* Centraliza o conteúdo na tela */
   }
   .blue-light {
 display: none;
}

.yellow-light {
    display: none;
}
/* Estilo do footer */
.footer {
    font-size: 2em;
    letter-spacing: 4px;
    position: absolute;
    top: 1950px;
    bottom: 0;
    left: 0;
    width: 100%;
    background: transparent; /* Remove o fundo do footer */
    color: #e7dec0; /* Cor do texto do footer, ajuste conforme necessário */
    text-align: center; /* Alinha o texto ao centro */
    padding: 10px; /* Espaçamento interno */
    box-shadow: none; /* Remove a sombra */
    border-top: none; /* Adiciona uma borda sutil no topo do footer */
}
.brand {
    position: absolute; /* Permite o posicionamento livre */
    max-width: 500px;
    right: 290px;
    left: unset;
    background: url(../img/Logo.png) no-repeat;
    margin-top: -1850px

  }
  .custom-link {
    
    position: absolute; /* Permite o posicionamento livre */
    top: 840px; /* Altere este valor para ajustar a posição vertical */
    left: 689px; /* Altere este valor para ajustar a posição horizontal */
    z-index: 999; /* Garante que a div fique acima de outros elementos */
}

.btn1 {
    background: url(../img/btn-1-mobile.png) no-repeat;
    width: 450px;
    height: 133px;
    color: white;
    position: absolute;
    top: 450px; /* Ajuste o valor conforme necessário */
    left: -230px; /* Ajuste o valor conforme necessário */
}

.btn2 {
    background: url(../img/btn-1-mobile-forum.png) no-repeat;
    width: 450px;
    height: 133px;
    color: white;
    position: absolute;
    top: 585px; /* Ajuste o valor conforme necessário */
    left: -230px; /* Ajuste o valor conforme necessário */
}

.btn:hover {
    filter: drop-shadow(0 0 10px rgb(3, 176, 134));
}

.btn1:hover {
    background: url(../img/btn-1-mobile.png) no-repeat;
    width: 450px;
    height: 133px;
}

.btn2:hover {
    background: url(../img/btn-1-mobile-forum.png) no-repeat;
    width: 450px;
    height: 133px;
}

}
