/* Reset CSS */

/* Box sizing border-box por padrão */
html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

/* Remover margens e preenchimentos padrão */
body, h1, h2, h3, h4, h5, h6, p, ul, ol, dl, figure, blockquote {
  margin: 0;
  padding: 0;
}

/* Estilos padrão para o corpo */
body {
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1.6;
}

/* Listas sem estilos padrão */
ul, ol {
  list-style: none;
}

/* Estilos de links padrão */
a {
  text-decoration: none;
  color: inherit;
}

/* Estilos padrão para elementos de cabeçalho */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

/* Estilos padrão para elementos de formulário */
input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Remover decoração de lista em navegadores */
ul, ol {
  padding-left: 0;
}

/* Remover estilo de botão padrão */
button {
  border: none;
  background: none;
  cursor: pointer;
}

/* Estilos padrão para elementos de formulário */
input[type="text"], input[type="email"], input[type="password"], textarea, select {
  border: 1px solid #ccc;
  padding: 8px;
  margin: 4px 0;
}

/* Estilos padrão para imagens */
img {
  max-width: 100%;
  height: auto;
}

/* Adicione sua própria personalização de estilo abaixo deste ponto */

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background-image: url('backGround.jpg'); /* Substitua 'sua-imagem.jpg' pelo caminho da sua imagem */
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Isso mantém a imagem fixa à medida que você rola a página */
  font-family: Arial, sans-serif; /* Exemplo de fonte para o conteúdo da página */
  color: #ffffff; /* Cor do texto da página, se necessário */
}

.container {
  max-width: 760px;
  margin: 0 auto; /* Centraliza o conteúdo horizontalmente */
  padding: 20px;
}

/* Estilos para telas maiores que 1140px */
@media screen and (min-width: 1141px) {
  .container {
    width: 40%;
  }
}



.header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 6rem;
}

/* Estilo para o wrapper */
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.content {
  flex: 1;
  padding: 20px; /* Ajuste conforme necessário */
  box-sizing: border-box;
}

.header-sub {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
}

.brands-content {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  
}

.brand-area a {
  text-align: center;
}

.brand-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

 
}

.footer {
  display: flex;
  justify-content: center;
  margin-top: 20rem;

  box-sizing: border-box;
  text-align: center;
  font-weight: bold;
}

/* Estilos para telas menores que 768px (por exemplo, dispositivos móveis) */
@media screen and (max-width: 768px) {
  .container {
    padding: 10px;
  }
  .brands-content {
    flex-direction: column;
    gap: 2rem;
  }
  .footer {
   
    margin-top: 10rem;
    text-align: center;
  }
}