:root {
  --bg: #06131e;
  --bg2: #0b1d2a;
  --panel: #102837;
  --panel2: #152f40;
  --text: #edf2f3;
  --muted: #94a6af;
  --gold: #d5a94d;
  --blue: #57a8d2;
  --terra: #c85e3d;
  --line: #ffffff18;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
.shell {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.header {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  z-index: 50;
  left: 0;
  right: 0;
  top: 0;
  padding: 0 max(20px, calc((100vw - 1600px) / 2));
  color: #fff;
}
.header.solid {
  position: relative;
  background: #071722;
  border-bottom: 1px solid var(--line);
}
.brand {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.17em;
}
.brand b {
  color: var(--terra);
}
.menu {
  width: 44px;
  height: 44px;
  border: 1px solid #ffffff42;
  border-radius: 50%;
  background: #071722aa;
  display: grid;
  place-content: center;
  gap: 6px;
  color: #fff;
}
.menu i {
  display: block;
  width: 19px;
  height: 1px;
  background: currentColor;
}
.nav {
  display: none;
  position: absolute;
  top: 76px;
  left: 0;
  right: 0;
  background: #071722;
  padding: 14px 20px 22px;
  flex-direction: column;
}
.nav.open {
  display: flex;
}
.nav a {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.hero {
  width: 100%;
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg);
  color: #fff;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 20%;
  filter: saturate(0.75) contrast(1.04);
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, #07172518 15%, #07172566 48%, #071725 96%),
    linear-gradient(90deg, #07172580 0%, transparent 70%);
  z-index: 1;
}
.hero-inner {
  min-height: 100svh;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 115px 0 20px;
}
.hero-copy {
  width: 100%;
}
.eyebrow,
.label {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero h1,
.display {
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}
.hero h1 {
  font-size: clamp(48px, 14vw, 78px);
  line-height: 0.96;
  margin: 18px 0;
}
.hero h1 em {
  font-weight: 400;
  color: #f4efe7;
}
.display em {
  font-weight: 400;
  color: var(--terra);
}
.hero-copy > p:last-of-type {
  max-width: 570px;
  color: #d4dee2;
  line-height: 1.65;
}
.hero-actions {
  display: grid;
  gap: 6px;
  /*margin-top: 26px;*/
}
.btn {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff55;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.btn.primary {
  background: var(--terra);
  border-color: var(--terra);
}
.scroll {
  display: none;
}
.section {
  padding: 82px 0;
}
.display {
  font-size: clamp(42px, 11vw, 72px);
  line-height: 1.02;
  margin: 25px 0 35px;
}
.about {
  background: var(--bg2);
}
.about-copy {
  color: #b2c0c7;
  font-size: 16px;
  line-height: 1.8;
}
.about-copy .lead {
  font:
    22px/1.5 Georgia,
    serif;
  color: var(--text);
}
.facts {
  display: grid;
  gap: 10px;
  margin-top: 36px;
}
.fact {
  background: var(--panel);
  padding: 22px;
}
.fact strong {
  display: block;
  color: var(--gold);
  font:
    40px Georgia,
    serif;
}
.fact span {
  font-size: 12px;
  color: #b2c0c7;
}
.tracks {
  background: #081824;
}
.track-grid {
  display: grid;
  gap: 18px;
}
.track {
  background: var(--panel);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.track-img {
  height: 210px;
}
.track-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.track-body {
  padding: 25px;
}
.track.fe {
  border-top: 3px solid var(--gold);
}
.track.tech {
  border-top: 3px solid var(--blue);
}
.track h3 {
  font:
    34px/1.05 Georgia,
    serif;
  margin: 12px 0;
}
.track p {
  color: var(--muted);
  line-height: 1.65;
}
.track .tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.track.fe .tag {
  color: var(--gold);
}
.track.tech .tag {
  color: var(--blue);
}
.latest {
  background: var(--bg2);
}
.section-head {
  margin-bottom: 35px;
}
.post-grid {
  display: grid;
  gap: 12px;
}
.post-card {
  background: var(--panel);
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  border: 1px solid transparent;
  transition: 0.2s;
}
.post-card:hover {
  transform: translateY(-3px);
  border-color: #ffffff26;
}
.post-card .cat {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.post-card.fe .cat {
  color: var(--gold);
}
.post-card.tecnologia .cat {
  color: var(--blue);
}
.post-card h3 {
  font:
    27px/1.1 Georgia,
    serif;
  margin: 16px 0;
}
.post-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.post-card .read {
  margin-top: auto;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.all-link {
  margin-top: 28px;
}
.contact {
  background: #040d14;
}
.contact p {
  color: var(--muted);
  line-height: 1.7;
}
.form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 38px;
}
.form label {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.form input,
.form textarea {
  display: block;
  width: 100%;
  padding: 13px 0;
  background: transparent;
  color: #fff;
  border: 0;
  border-bottom: 1px solid #ffffff38;
  outline: 0;
  font-size: 16px;
  resize: vertical;
}
.form input:focus,
.form textarea:focus {
  border-color: var(--gold);
}
footer {
  background: #02090e;
  border-top: 1px solid var(--line);
  padding: 34px 0;
  color: var(--muted);
  font-size: 11px;
}
.foot {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}
.listing-hero {
  padding: 92px 0 50px;
  background: var(--bg2);
}
.listing-hero .display {
  margin-bottom: 18px;
}
.listing-hero p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.65;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}
.filter {
  padding: 11px 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
}
.filter.active {
  border-color: var(--terra);
  color: #fff;
}
.listing {
  padding: 55px 0 90px;
}
.listing-grid {
  display: grid;
  gap: 12px;
}
.article {
  padding: 95px 0;
  background: var(--bg2);
}
.article-wrap {
  width: min(760px, calc(100% - 40px));
  margin: auto;
}
.article .cat {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.article.tech .cat {
  color: var(--blue);
}
.article h1 {
  font:
    400 clamp(44px, 10vw, 70px)/1 Georgia,
    serif;
  letter-spacing: -0.045em;
  margin: 22px 0;
}
.article .summary {
  font:
    21px/1.55 Georgia,
    serif;
  color: #b9c7ce;
}
.article time {
  display: block;
  margin: 24px 0;
  color: var(--muted);
  font-size: 12px;
}
.article-body {
  padding: 48px 0 90px;
}
.article-body p,
.article-body li {
  color: #bbc7cd;
  font-size: 17px;
  line-height: 1.8;
}
.article-body h2 {
  font:
    35px/1.1 Georgia,
    serif;
  margin: 48px 0 15px;
  color: #fff;
}
.article-body h3 {
  font:
    27px Georgia,
    serif;
  margin-top: 38px;
}
.article-body blockquote {
  border-left: 3px solid var(--gold);
  margin: 35px 0;
  padding: 6px 0 6px 24px;
  color: #fff;
  font:
    21px/1.6 Georgia,
    serif;
}
.article.tech .article-body blockquote {
  border-color: var(--blue);
}
.article-body hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 36px 0;
}
.article-body strong {
  color: #fff;
}
.back {
  display: inline-block;
  margin-top: 35px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
@media (min-width: 820px) {
  .header {
    height: 90px;
  }
  .brand {
    font-size: 20px;
  }
  .menu {
    display: none;
  }
  .nav {
    display: flex;
    position: static;
    padding: 0;
    background: none;
    flex-direction: row;
    gap: 36px;
  }
  .nav a {
    border: 0;
    padding: 10px 0;
  }
  .hero-photo {
    object-position: 70% 18%;
  }
  .hero:after {
    background:
      linear-gradient(90deg, #071725f2 0%, #071725aa 37%, #07172511 72%),
      linear-gradient(180deg, transparent 60%, #071725 100%);
  }
  .hero-inner {
    align-items: center;
    padding: 360px 0 0px;
  }
  .hero-copy {
    width: min(720px, 55vw);
  }
  .hero h1 {
    font-size: clamp(72px, 6vw, 108px);
    max-width: 800px;
  }
  .hero-actions {
    display: flex;
  }
  .scroll {
    display: block;
    position: absolute;
    right: 0;
    bottom: 46px;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
  }
  .section {
    padding: 120px 0;
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 9vw;
  }
  .about-copy {
    padding-top: 50px;
  }
  .facts {
    grid-template-columns: repeat(3, 1fr);
  }
  .track-grid {
    grid-template-columns: 1fr 1fr;
  }
  .track-img {
    height: 310px;
  }
  .track-body {
    padding: 34px;
  }
  .track h3 {
    font-size: 46px;
  }
  .post-grid,
  .listing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10vw;
  }
  .form {
    margin-top: 0;
  }
  .foot {
    flex-direction: row;
    justify-content: space-between;
  }
  .listing-hero {
    padding: 130px 0 70px;
  }
  .listing {
    padding: 75px 0 120px;
  }
}
@media (min-width: 1800px) {
  .shell {
    width: min(1540px, calc(100% - 9vw));
  }
  .hero h1 {
    font-size: 112px;
  }
}
.btn.is-loading {
      position: relative;
      pointer-events: none;
      opacity: 0.85;
    }
    .btn.is-loading::after {
      content: "";
      width: 14px;
      height: 14px;
      margin-left: 8px;
      border: 2px solid rgba(255, 255, 255, 0.45);
      border-top-color: #fff;
      border-radius: 50%;
      display: inline-block;
      animation: spin 0.8s linear infinite;
      vertical-align: middle;
    }
    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }
    .noty_bar.noty_type__success {
      background-color: #1f8f4e !important;
      border-left: 5px solid #17693a !important;
    }
    .noty_bar.noty_type__error {
      background-color: #b32929 !important;
      border-left: 5px solid #7a1a1a !important;
    }
    .noty_bar.noty_type__warning {
      background-color: #c98100 !important;
      border-left: 5px solid #8a5b00 !important;
    }
    .noty_theme__mint.noty_bar .noty_body,
    .noty_theme__mint.noty_bar .noty_buttons {
      color: #fff !important;
    }

.post-meta {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  margin: 4px 0 18px;
}
.pagination {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 12px;
}
.pagination a {
  color: var(--gold);
}
.empty-state {
  color: var(--muted);
}
.article h4 {
  margin: 0;
  color: var(--text);
  font-size: 14px;
}
.rating-block,
.comments-block {
  margin-top: 36px;
}
.rating-block h2,
.comments-block h2 {
  margin-top: 0;
}
.rating-summary,
.privacy-note,
.comment-form small,
.form-feedback {
  color: var(--muted);
  font-size: 14px;
}
.stars {
  border: 0;
  padding: 0;
  margin: 24px 0;
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 4px;
}
.stars legend {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.stars input {
  position: absolute;
  opacity: 0;
}
.stars label {
  width: 38px;
  height: 38px;
  cursor: pointer;
  color: #52646e;
  font-size: 0;
}
.stars label::before {
  content: "★";
  font-size: 34px;
  line-height: 1;
}
.stars input:checked ~ label,
.stars label:hover,
.stars label:hover ~ label {
  color: var(--gold);
}
.stars input:focus-visible + label {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}
.btn.compact {
  min-height: 44px;
  width: auto;
}
.comment-form {
  display: grid;
  gap: 10px;
  margin: 28px 0 44px;
}
.comment-form label:not(.consent) {
  margin-top: 12px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid #ffffff38;
  background: var(--panel);
  color: var(--text);
}
.comment-form input:focus,
.comment-form textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  line-height: 1.5;
}
.consent input {
  width: auto;
  margin-top: 4px;
}
.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.field-error {
  color: #ff9e8c;
  font-size: 13px;
}
.flash {
  padding: 14px 16px;
  border-left: 4px solid var(--blue);
  background: var(--panel);
}
.flash.success {
  border-color: #58b982;
}
.flash.warning {
  border-color: var(--gold);
}
.comment-list {
  display: grid;
  gap: 14px;
}
.comment {
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
}
.comment header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  color: var(--text);
}
.comment time {
  margin: 0;
}
.comment p {
  margin-bottom: 0;
  white-space: pre-wrap;
}
