/* Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Font */
@font-face {
  font-family: "Source Sans 3";
  src: url("./assets/fonts/SourceSans3-Regular.woff2") format("woff2"),
    url("./assets/fonts/SourceSans3-Regular.woff") format("woff"),
    url("./assets/fonts/SourceSans3-Regular.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
}

/* Common */
body {
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  font-family: "Source Sans 3", sans-serif;
  cursor: url("./assets/icones/star-cursor.png"), auto;
}

* {
  box-sizing: border-box;
}

/* Página */
.catalogo-de-links {
  min-height: 100dvh;
  background-image: url("./assets/imagens/background.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 28px;
}

/* Cabeçalho */
.cabecalho {
  margin-bottom: 20px;
}

.cabecalho .titulo {
  width: 181px;
  height: 68px;
}

.cabecalho .titulo .logo {
  object-fit: contain;
}

@media (min-width: 600px) {
  .cabecalho {
    margin-bottom: 24px;
  }
}

/* Janela */
.janela {
  position: relative;
  width: 100%;
  max-width: 425px;
  margin: 0 auto 24px;
}

.janela .topo {
  padding: 4px 4px 4px 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f169df;
  box-shadow: inset 0px 2px 1px #fd84ed, inset 0px -2px 1px #f352de,
    inset 0px 3px 6px #fd84ed, inset 0px -3px 16px #fd84ed;
  border-radius: 8px 8px 0px 0px;
  height: 33px;
}

.janela .topo .info {
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  text-shadow: 1px 0px 0px #ac029a;
}

.janela .topo .icones {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.janela .topo .icones .icone {
  height: 100%;
  width: auto;
}

.janela .conteudo {
  padding: 21px 32px;
  background-color: #f0ede2;
  box-shadow: inset 0px -2px 0px #c828b3, inset -2px 0px 0px #c429af,
    inset 0px -3px 0px #f169df, inset -3px 0px 0px #e554d2,
    inset 1px 0px 0px #f169df, inset 3px 0px 0px #fc7fec;
}

/* Links */
.links {
  max-width: 436px;
  display: grid;
  align-items: flex-start;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.links .link {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #000000;
  -webkit-text-stroke: 0.1px #000000;
  border: 1.5px solid transparent;
  padding-bottom: 2px;
  transition: border, background 200ms linear;
  outline: 0;
}

.links .link:focus,
.links .link:hover,
.links .link:active {
  border: 1.5px solid #fa2ba7;
  background-color: #fa2ba73d;
}

.links .link .link-icone {
  display: block;
  margin: 0 auto 4px;
}

@media (min-width: 360px) {
  .links {
    gap: 36px;
  }
}

@media (min-width: 600px) {∆
  .links {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px 36px;
  }
}
