:root {
  --primary: rgb(104, 66, 135);
  --primary-transparent: rgba(104, 66, 135, 0.1);

  --secondary: rgb(255, 205, 30);
  --secondary-transparent: rgba(255, 205, 30, 0.1);

  --success: rgb(112, 224, 0);
  --success-transparent: rgba(112, 224, 0, 0.1);

  --danger: rgb(231, 29, 54);
  --danger-transparent: rgba(231, 29, 54, 0.1);

  --manager: rgb(182, 129, 228);
  --manager-transparent: rgba(182, 129, 228, 0.1);

  --plus: #f58424;

  --banner-deg: 90deg;
  --banner-color-one: rgba(104, 66, 135, 0.7);
  --banner-color-two: rgba(104, 66, 135, 0.7);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  font-family: "Roboto", sans-serif;
}

::selection {
  background: var(--plus);
  color: #fff;
}

html {
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

.container {
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
  max-width: 1230px;
}

.propaganda {
  margin-top: 50px;
  height: 200px;

}

.propaganda img {
  width: 100%;
  height: 100%;
  background-size: cover;
}

a {
  cursor: pointer;
}

.privacidade {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 999;
  padding: 20px 0;
  background: rgba(0,0,0,0.5);
}

.privacidade .container > div {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.privacidade p {
  font-size: 18px;
}

.privacidade a {
  margin-right: 50px;
  color: var(--plus);
}

.privacidade button {
  cursor: pointer;
  border: none;
  padding: 10px 30px;
  border-radius: 4px;
  font-size: 18px;
  letter-spacing: 1px;
  background: var(--primary);
  color: #fff;
}

.privacidade button:hover {
  filter: brightness(1.2);
}

@media (max-width: 800px) {
  .privacidade .container > div {
    flex-direction: column;
    gap: 20px;
  }
  
  .privacidade .container > div > div {
    width: 100%;
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }

  .privacidade p {
    text-align: center;
  }

  .privacidade button {
    width: 100%;
  }

  .privacidade a {
    margin-right: 0;
    color: var(--plus);
  }
}
