@charset "UTF-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
  scrollbar-gutter: stable;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

* {
  box-sizing: border-box;
}

/* Fonts */
@font-face {
  font-family: "NEM";
  src: url("../fonts/SharpGrotesk-Light20.woff2") format("woff2");
  font-display: swap;
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "NEM";
  src: url("../fonts/SharpGrotesk-BookItalic20.woff2") format("woff2");
  font-display: swap;
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "NEM";
  src: url("../fonts/SharpGrotesk-MediumItalic20.woff2") format("woff2");
  font-display: swap;
  font-weight: 500;
  font-style: italic;
}
/* Colors */
/* Fonts */
/* structure */
*::-webkit-scrollbar {
  width: 1em;
  height: 1em;
  background: #021e27;
}
*::-webkit-scrollbar-track {
  box-shadow: none;
  background: transparent;
}
*::-webkit-scrollbar-thumb {
  background: #d1c3b8;
  border: 5px solid #021e27;
  border-radius: 20px;
}

::selection {
  background-color: #021e27;
  color: #d1c3b8;
}

h1 {
  font-weight: normal;
  font-style: italic;
  font-size: 1.2em;
  line-height: 100%;
}

h2 {
  font-weight: 100;
  font-style: italic;
}

small {
  font-size: 0.8em;
  font-style: italic;
}

body {
  background-color: #d1c3b8;
  color: #021e27;
  font-family: "NEM", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-optical-sizing: auto;
  line-height: 130%;
  padding: 40px;
  font-size: 18px;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 60px;
  padding-left: 120px;
  z-index: 1;
}
@media only screen and (max-width: 1200px) {
  header {
    padding-left: 80px;
  }
}
@media only screen and (max-width: 800px) {
  header {
    padding-left: 30px;
    padding-top: 30px;
  }
}
header .logo svg {
  height: 160px;
}

.date {
  padding-bottom: 120px;
  padding-right: 120px;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  font-size: 1.5em;
  line-height: 120%;
  height: 100vh;
}
.date a {
  color: inherit;
}
.date a:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 1200px) {
  .date {
    padding-right: 80px;
    padding-bottom: 80px;
    font-size: 1.2em;
  }
}
@media only screen and (max-width: 800px) {
  .date {
    padding-right: 30px;
    padding-bottom: 30px;
    font-size: 1em;
    height: 100svh;
  }
}

.fondo {
  position: fixed;
  z-index: -1;
  inset: -200vh 0px;
  background: url("/img/icon.svg") repeat-y center;
  background-size: 100% auto;
}
@media only screen and (max-width: 800px) {
  .fondo {
    inset: -400vh 0px;
  }
}

.ball {
  width: 40px;
  height: 40px;
  overflow: hidden;
  transition: width 0.5s cubic-bezier(0.15, 0.9, 0.34, 0.95), height 0.5s cubic-bezier(0.15, 0.9, 0.34, 0.95);
  position: fixed;
  top: 0;
  left: -20px;
  z-index: 100000;
  background-color: rgba(234, 86, 70, 0.8);
  border: 1px dashed #ea5646;
  border-radius: 50%;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  mix-blend-mode: difference;
}
.ball:after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 3px;
  background-color: #021e27;
}
@media only screen and (max-width: 800px) {
  .ball {
    display: none;
  }
}
.ball.hide {
  width: 5px;
  height: 5px;
  left: -5px;
}

footer {
  padding: 80px 120px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1200px) {
  footer {
    padding: 60px 80px;
  }
}
@media only screen and (max-width: 800px) {
  footer {
    padding: 40px 30px;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}
footer img {
  height: 80px;
  width: auto;
}
@media only screen and (max-width: 1200px) {
  footer img {
    height: 60px;
  }
}

.agenda {
  padding: 80px 40px;
  color: #d1c3b8;
  background-color: rgba(2, 30, 39, 0.9);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  backdrop-filter: invert(1);
}
@media only screen and (max-width: 1200px) {
  .agenda {
    padding: 60px 30px;
  }
}
@media only screen and (max-width: 800px) {
  .agenda {
    padding: 40px 20px;
    min-height: 100svh;
  }
}
.agenda .head .title {
  font-size: 2em;
  margin-bottom: 30px;
}
.agenda .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
@media only screen and (max-width: 1200px) {
  .agenda .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}
@media only screen and (max-width: 800px) {
  .agenda .grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.agenda .grid article .meta {
  font-size: 0.9em;
  margin-bottom: 10px;
}
.agenda .grid article .meta h3 {
  font-weight: 100;
  font-style: italic;
}
.agenda .grid article > .images {
  overflow: hidden;
}
.agenda .grid article > .images img {
  width: 100%;
  height: auto;
  display: block;
}
.agenda .grid article details {
  margin-top: 10px;
}
.agenda .grid article details summary {
  font-size: 0.6em;
  margin-top: 10px;
  cursor: pointer;
  line-height: 120%;
  text-wrap: balance;
}
.agenda .grid article details .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.agenda .grid article details .content p {
  font-size: 0.9em;
  margin-top: 10px;
}
.agenda .grid article details .content .images {
  display: flex;
  flex-direction: column;
  gap: 0px;
  margin-top: 10px;
  background-color: #b2dac5;
}
.agenda .grid article details .content .images .image {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.agenda .grid article details .content .images img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  mix-blend-mode: multiply;
  filter: grayscale(1);
}
.agenda .grid article details[open] summary {
  position: relative;
}
.agenda .grid article details[open] summary:after {
  content: "✕";
  color: #021e27;
  background-color: #ea5646;
  width: 47px;
  height: 44px;
  border-radius: 50%;
  padding-top: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 1.8em;
  transition: background-color 0.3s ease;
}
.agenda .grid article details[open] summary:hover::after {
  background-color: #d1c3b8;
}
.agenda .grid article:has(details[open]) {
  grid-column: span 4;
  display: grid;
  grid-template-columns: 2fr 5fr;
  gap: 20px;
}
@media only screen and (max-width: 1200px) {
  .agenda .grid article:has(details[open]) {
    grid-template-columns: 0.75fr 2fr;
  }
}
@media only screen and (max-width: 800px) {
  .agenda .grid article:has(details[open]) {
    grid-template-columns: 1fr;
  }
  .agenda .grid article:has(details[open]) > .images {
    display: none;
  }
}
.agenda .grid article:has(details[open]) .meta {
  grid-column: 1/-1;
}
.agenda .grid article:has(details[open]) details {
  margin-top: 0;
}
@media only screen and (max-width: 800px) {
  .agenda .grid article:has(details[open]) details .content {
    grid-template-columns: 1fr;
  }
}
.agenda .grid:has(details[open]) article:not(:has(details[open])) {
  display: none;
}

/*# sourceMappingURL=styles.css.map */
