/* Estilo global do corpo */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f4f8;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    color: #000;
}

/* Estilo da Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0052A4;
    height: 56px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    position: fixed; /* Navbar fixada no topo */
    top: 0;
    z-index: 1000; /* Garante que ela fique acima do conteúdo */
}

/* Espaço para o conteúdo não sobrepor a navbar */
.container {
    margin-top: 70px; /* Adiciona espaço para o conteúdo abaixo da navbar */
}

/* Logo */
.logo {
    margin-right: auto;
    padding: 16px;
}

.logo img {
    max-height: 40px;
    height: auto;
}

.navbar a[role="button"] {
  text-decoration: none;
  padding: 10px 20px;
  border: 2px solid #1976d2;
  border-radius: 25px;
  background-color: #ffffff;
  color: #1976d2;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.navbar a[role="button"]:hover {
  background-color: #e3f2fd;
  color: #0d47a1;
  transform: scale(1.05);
}

/* Estilo de Títulos e Textos */
h1 {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin: 0 auto;
    margin-top: 80px;
    margin-bottom: 16px;
    padding: 0 16px;
}

.paragrafo1 {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-align: center;
    margin: 0 auto;
    padding: 0 16px;
}


.info-text {
    font-size: 14px;
    color: #000;
    text-align: center;
}

/* Contêiner Principal */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Contêiner de Botões e Vídeos */
.button-container,
.video-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 20px auto;
    max-width: 500px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Botão Afiliado */
.affiliate-button {
    background-color: #0052A4;
    font-size: 14px;
    font-weight: 700;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 90px;
    cursor: pointer;
    margin: 8px auto;
    width: 80%;
    border: none;
    text-align: center;
}

.affiliate-button:hover {
    background-color: #007bff;
}

/* Estilo do Footer */
footer {
    color: #FFFFFF;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0052A4;
    height: 56px;
    width: 100vw;
    position: relative;
    left: 0;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}
