@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
html {
  width: 100%;
  height: 100%;
}
:root{
    font-family: 'Source Sans 3',sans-serif;
}
* {
  padding: 0;
  margin: 0;
}
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  height: 100%;
  background: #f9e5e9;
}
.container {
  flex: 1 1 0;
  padding-top: 2.5rem;
  width: 580px;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.image-brand img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 4px solid white;
}
.icon-wrap {
  text-align: left;
  display: grid;
  grid-template-columns: 48px auto;
  gap: 1rem;
  align-items: center;
}
.image-brand {
  width: 100%;
  text-align: center;
}
.icon-wrap {
  background-color: #fafafa;
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.16);
  color: inherit;
  text-decoration: none;
  font-size: rem;
}
.link a {
  text-decoration: none;
  color: inherit;
  font-size: 1.125rem;
}
.icon {
  text-align: center;
  background-color: #ffd5dc;
  stroke: #ac1830;
  padding: 0.25rem;
  border-radius: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.links-container {
  width: 100%;
  flex: 1;
}
.container > footer {
  padding: 2rem;
}
.hashtag {
  font-size: 1.5rem;
  margin: 0.5rem;
}
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-conteudo {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  width: 90%;
  max-width: 420px;
  text-align: left;
}

.oculto { display: none; }

.switch-group {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.switch {
  display: flex;
  align-items: center;
  gap: 10px;
}

.switch input {
  display: none;
}

.slider {
  width: 42px;
  height: 22px;
  background: #ccc;
  border-radius: 22px;
  position: relative;
  transition: 0.3s;
}

.slider::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}

input:checked + .slider {
  background: #15c6cf;
}

input:checked + .slider::before {
  transform: translateX(20px);
}

.botoes {
  margin-top: 1.5rem;
  text-align: right;
}

button {
  background: #ac1830;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: .6rem 1rem;
  margin-left: 5px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111;
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: .9rem;
  z-index: 1000;
  flex-direction: row;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-banner button {
  background: #ac1830;
  color: #fff;
  border: none;
  margin-left: 10px;
  padding: .5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
}

.cookie-banner a {
  color: #ff0029;
}
.opcoes-cookies {
  margin: 1rem 0;
}
.modal-conteudo p {
  margin: 1rem 0;
}

.container > footer a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
@media (max-width:767px) {
.container {
  width:90%;
}
}