/* Reset de estilos básicos */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'League Spartan';
    src: url('/css/fontes/League-Spartan/LeagueSpartan-Regular.ttf');
    font-weight: 400;
}

@font-face {
    /* não está sendo usado */
    font-family: 'League Spartan';
    src: url('/css/fontes/League-Spartan/LeagueSpartan-Bold.ttf');
    font-weight: 700;
}

@font-face {
    font-family: 'League Spartan';
    src: url('/css/fontes/League-Spartan/LeagueSpartan-ExtraBold.ttf');
    font-weight: 800;
}


/* Estilos gerais */

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    font-size: 17px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

nav {
    position: relative;
    z-index: 999;
}

nav #btnAtivaMenu {
    cursor: pointer;
    text-decoration: none;
    color: #333;
    padding: 5px;
}

nav ul {
    display: none;
    list-style-type: none;
    position: absolute;
    right: 0;
    top: 0;
    background: #ededed;
    border: 1px solid #d5d5d5;
    padding: 5px;
}

nav ul li {
    /*margin-right: 30px;*/
    padding: 5px;
    white-space: nowrap;
}

nav ul li:first-child {
    cursor: pointer;
    font-weight: bold;
    margin: 0;
    padding: 5px 10px;
    position: absolute;
    right: 0;
    top: 0;
}

nav ul li a {
    font-family: 'League Spartan', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    color: #333;
}

main {
    text-align: center;
}

main section {
    margin: 50px 0;
}

header h1 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1em;
    background: url('/imgs/logo-esoccer-tips-palpites-fifa-bet365.png') no-repeat;
    background-size: auto 100%;
    padding-left: 25px;
    height: 20px;
    line-height: 23px;
    vertical-align: middle;
    text-transform: uppercase;
    font-weight: 800;
}

header h1 a {
    text-decoration: none;
    color: #333;
}

h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    font-family: 'League Spartan', sans-serif;
    font-weight: 300;
}

p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5em;
}

a {
    color: #000;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4285F4;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-family: 'League Spartan', sans-serif;
    font-size: 1.1em;
    border: none;
}

.cta-button:hover {
    background-color: #3367D6;
}

.cta-button-apagado {
    background-color: #b9b9b9;
}

.cta-button-apagado:hover {
    background-color: #7d7d7d;
}

footer {
    text-align: center;
    margin-top: 20px;
}


/*.*/

#tipsters {
    /*margin-top: 50px;*/
}

.tipsters-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.tipster {
    background-color: #e8e8e8;
    border-radius: 8px;
    padding: 15px;
    width: 100%;
}

.tipster h3 {
    color: #4285F4;
    margin-bottom: 5px;
    font-size: 19px;
}

.tipster p {
    font-size: 14px;
    color: #666;
    line-height: 1.5em;
}


/* Estilo para a barra de rolagem */

::-webkit-scrollbar {
    width: 8px;
    /* Largura da barra de rolagem */
    height: 8px;
    /* Altura da barra de rolagem horizontal */
}


/* Estilo para o track da barra de rolagem */

::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Cor de fundo do track 
    border-radius: 10px;*/
    /* Bordas arredondadas */
}


/* Estilo para o handle da barra de rolagem (o que você puxa) */

::-webkit-scrollbar-thumb {
    background: #888;
    /* Cor do handle 
    border-radius: 10px;*/
    /* Bordas arredondadas */
    transition: background 0.3s ease;
    /* Transição suave */
}


/* Estilo para o handle da barra de rolagem quando estiver sendo clicado */

::-webkit-scrollbar-thumb:active {
    background: #555;
    /* Cor do handle ao clicar */
}


/* Estilo para o handle da barra de rolagem quando estiver sendo passado o mouse por cima */

::-webkit-scrollbar-thumb:hover {
    background: #555;
    /* Cor do handle ao passar o mouse por cima */
}