:root {
  --bg: #080e0f;
  --ink: #ffffff;
  --muted: #cfcfcf;
  --red: #ee2c2c;
  --red-hover: #cc181e;
  --line: #ffffff;
  --max: 440px;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Lato", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
strong {
  margin: 0;
}

h1 {
  font-family: var(--font-body);
  font-size: clamp(26px, 8.2vw, 42px);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}

h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

p,
ul,
ol {
  margin: 0;
}

.hero {
  position: relative;
  background: var(--bg);
}

.hero__bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 90px;
  padding: 0 16px;
  background: transparent;
}

.hero__media {
  height: 78vh;
  min-height: 460px;
  background: url("./hero.jpg") 26% 2% / cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(to top, #080e0f, transparent);
  pointer-events: none;
}

.hero__title {
  position: absolute;
  right: 16px;
  bottom: 22px;
  z-index: 2;
  width: min-content;
  min-width: 12rem;
  text-align: right;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.hero__title h1 {
  font-size: clamp(28px, 8.5vw, 40px);
  letter-spacing: 2px;
}

.hero__title .role {
  margin-top: 6px;
  margin-left: auto;
  font-size: clamp(16px, 4.1vw, 20px);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.hero--book .hero__media {
  background-image: url("./book-hero.jpg");
  background-position: 38% 42%;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero__bar a {
  display: inline-flex;
  align-items: center;
}

.logo {
  width: auto;
  height: 48px;
}

.page {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 48px;
  text-align: center;
}

.brand {
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.role {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.bio {
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 15px;
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 22px;
  padding: 0;
  list-style: none;
}

.proof li {
  padding: 14px 8px 12px;
  border-top: 3px solid #fff;
  background: #0c1416;
  text-align: center;
}

.proof strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1px;
}

.proof span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  line-height: 1.3;
}

.pricing .lede {
  margin-bottom: 4px;
}

.price-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
  padding: 0;
  list-style: none;
}

.price-list li {
  padding: 0;
  margin: 0;
}

.price-card {
  display: block;
  width: 100%;
  padding: 16px 8px 14px;
  border: 0;
  border-top: 3px solid #fff;
  background: #080e0f;
  color: #fff;
  font: inherit;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.price-card:hover,
.price-card.is-selected {
  background: var(--red);
  border-top-color: var(--red);
}

.price-card:hover .price-list__label,
.price-card.is-selected .price-list__label {
  color: #fff;
}

.price-card:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.price-list__label {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.price-list strong {
  display: block;
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 0.9;
}

.price-list__vat {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.cta-stack,
.final-cta__actions {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.btn:focus-visible,
.link-card:focus-visible,
.socials a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.btn--primary {
  background: var(--red);
  color: #fff;
}

.btn--primary:hover {
  background: var(--red-hover);
}

.btn--ghost {
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
}

.btn--ghost:hover {
  background: #fff;
  color: #7c7a7a;
}

.btn--whatsapp {
  background: #25d366;
  color: #fff;
}

.btn--whatsapp:hover {
  background: #1ebe57;
}

.links {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  text-align: left;
}

.link-card,
.panel {
  position: relative;
  padding: 42px 16px 18px;
  border-top: 3px solid #fff;
  background: #0c1416;
}

.flag {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 10px 12px 8px;
  background: #fff;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
}

.flag::after {
  content: "";
  position: absolute;
  top: 0;
  right: -12px;
  width: 24px;
  height: 100%;
  background: #fff;
  transform: skew(-20deg);
}

.link-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.link-card em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
}

.link-card:hover strong {
  color: var(--red);
}

.panel {
  margin-top: 18px;
  text-align: left;
}

.panel h2 {
  margin-top: 4px;
}

.lede {
  margin-top: 12px;
  color: var(--muted);
}

.features,
.steps,
.chips {
  padding: 0;
  list-style: none;
}

.features {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.features li {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.features p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: 16px;
}

.chips li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 4px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.chips li:hover {
  background: #fff;
  border-color: #fff;
  color: #080e0f;
}

.steps {
  display: grid;
  gap: 16px;
  margin-top: 16px;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding-left: 42px;
  color: var(--muted);
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #000;
  font-family: var(--font-display);
  font-size: 18px;
}

.steps strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.final-cta {
  margin-top: 32px;
  text-align: center;
}

.final-cta p {
  margin: 12px auto 0;
  max-width: 38ch;
  color: var(--muted);
}

.book-form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.book-form label,
.book-form fieldset {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  border: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: left;
}

.book-form legend {
  margin-bottom: 8px;
  padding: 0;
}

.book-form input,
.book-form textarea,
.book-form select {
  width: 100%;
  padding: 12px;
  border: 1px solid #fff;
  border-radius: 5px;
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
}

.book-form input::placeholder,
.book-form textarea::placeholder {
  color: #8d8a84;
}

.book-form input:focus-visible,
.book-form textarea:focus-visible,
.book-form select:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.book-form select {
  color-scheme: dark;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23fff' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.book-form .field-hint {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
}

.book-form .choice {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
}

.book-form .choice input {
  width: auto;
}

.calendar-field {
  display: grid;
  gap: 8px;
  text-align: left;
}

.calendar-field__label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.calendar-field__value {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.calendar {
  padding: 12px;
  border: 1px solid #fff;
  background: #080e0f;
}

.calendar__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.calendar__nav p {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.calendar__nav button {
  width: 36px;
  height: 36px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.calendar__nav button:hover {
  background: #fff;
  color: #080e0f;
}

.calendar__weekdays,
.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar__weekdays {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}

.calendar__grid button {
  aspect-ratio: 1;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
}

.calendar__grid button:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.12);
}

.calendar__grid button.is-today:not(.is-selected) {
  border: 1px solid #fff;
}

.calendar__grid button.is-selected {
  background: var(--red);
  color: #fff;
}

.calendar__grid button:disabled {
  color: #5c5c5c;
  cursor: not-allowed;
}

.book-form .btn {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.footer {
  padding: 28px 16px 36px;
  background: #080e0f;
  color: #fff;
  font-size: 12px;
  text-align: center;
}

.socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-bottom: 12px;
}

.socials a {
  position: relative;
  font-size: 14px;
  line-height: 1.875rem;
}

.socials a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

.socials a:hover::after {
  width: 100%;
}

@media (min-width: 720px) {
  :root {
    --max: 520px;
  }

  .hero__bar {
    height: 100px;
    padding: 0 30px;
  }

  .hero__media {
    height: 82vh;
    background-position: 24% 0%;
  }

  .hero__title {
    right: 30px;
    bottom: 36px;
  }

  .hero__title .role {
    font-size: 18px;
  }

  .hero--book .hero__media {
    background-position: 42% 40%;
  }

  .logo {
    height: 60px;
  }

  .role {
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .socials a::after,
  .link-card strong {
    transition: none;
  }
}
