:root {
    --primary-text: #2a225a;
    --text: #7f73a1;
    --form-bg: #fafbff;
    --bg: #eaeefd;
  }
  
  [data-theme="light"] {
    --primary-text: #fbf9ff;
    --text: #b8bcd2;
    --form-bg: #210856;
    --bg: #493c65;
  }

 * {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
body {
  line-height: 1;
  font-family: 'Space Grotesk', sans-serif;
  min-height: 100vh;
  background: var(--bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.logo-menu{
  height: 48px;
  width: 48px;
}

.navbar.navbar-dark.bg-dark {
  background-color: var(--bg) !important; /* Substitua pela cor desejada */
}
.banner {
  width: auto;
  position: relative;
  margin-bottom: 1.5rem;
}
.rodape {
    background-color: var(--bg);
    width: 100%;
    padding: 1.5rem 3rem;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    color: var(--primary-text);
    position: relative; /* Ou absolute, dependendo do contexto */
    bottom: 0;
    width: 100%;
}


.rodape__texto {
  font-size: 1.1rem;
}

.rodape__icones {
  width: 80px;
  display: flex;
  justify-content: space-between;
}

