:root {
  --navy-950: #06131e;
  --navy-900: #08283d;
  --navy-800: #0b3a53;
  --navy-700: #12536d;
  --teal-600: #168d95;
  --teal-500: #20a4aa;
  --teal-100: #e8f7f7;
  --green-700: #117c35;
  --green-600: #168d3e;
  --green-500: #22b855;
  --blue-100: #eaf5f9;
  --paper: #f5f8fa;
  --white: #ffffff;
  --ink: #102b3b;
  --muted: #5c7380;
  --line: #dce7ec;
  --focus: #ffce45;
  --radius-xl: 30px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-lg: 0 30px 80px rgba(7, 30, 45, 0.18);
  --shadow-md: 0 18px 46px rgba(7, 30, 45, 0.1);
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Geist", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea,
select {
  font: inherit;
}

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

img {
  height: auto;
}

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

::selection {
  color: var(--white);
  background: var(--teal-600);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 11px 16px;
  border-radius: 10px;
  color: var(--navy-950);
  background: var(--focus);
  font-weight: 850;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.topbar {
  min-height: 35px;
  color: rgba(255, 255, 255, 0.9);
  background: var(--navy-900);
  font-size: 12px;
  font-weight: 740;
  letter-spacing: 0.01em;
}

.topbar .container {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar p {
  margin: 0;
}

.topbar strong {
  color: var(--white);
}

.topbar a {
  min-height: 35px;
  display: inline-flex;
  align-items: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(13, 57, 81, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 25px rgba(7, 30, 45, 0.035);
  backdrop-filter: blur(18px);
}

.header-row {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand {
  min-width: 230px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand img {
  width: 167px;
}

.brand-badge {
  padding: 6px 8px;
  border: 1px solid #cfe7ef;
  border-radius: 8px;
  color: #11738c;
  background: #eef8fb;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.2vw, 34px);
  color: #324e5e;
  font-size: 13px;
  font-weight: 750;
}

.main-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 7px;
  left: 50%;
  height: 2px;
  border-radius: 10px;
  background: var(--teal-500);
  transition: right 0.2s ease, left 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  right: 0;
  left: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}

.button,
.header-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.header-cta,
.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  box-shadow: 0 12px 24px rgba(22, 141, 62, 0.23);
}

.header-cta {
  white-space: nowrap;
}

.header-cta:hover,
.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(22, 141, 62, 0.3);
}

.button-secondary {
  color: var(--navy-900);
  border-color: rgba(255, 255, 255, 0.38);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.button-ghost {
  color: var(--navy-900);
  border-color: #cddde4;
  background: transparent;
}

.button-ghost:hover {
  color: var(--white);
  border-color: var(--navy-900);
  background: var(--navy-900);
}

.page-evento .hero .button-secondary,
.page-evento .final-cta .button-secondary {
  color: var(--navy-900);
  border-color: rgba(255, 255, 255, 0.38);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-evento .hero .button-secondary:hover,
.page-evento .final-cta .button-secondary:hover {
  color: var(--white);
  border-color: var(--teal-500);
  background: var(--teal-600);
}

.mobile-menu {
  display: none;
}

.mobile-menu > summary {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid #d8e5ea;
  border-radius: 11px;
  color: var(--navy-900);
  background: var(--white);
  cursor: pointer;
  list-style: none;
}

.mobile-menu > summary::-webkit-details-marker {
  display: none;
}

.mobile-menu > summary svg {
  width: 21px;
  height: 21px;
}

.mobile-menu[open] > summary {
  color: var(--white);
  border-color: var(--navy-900);
  background: var(--navy-900);
}

.mobile-menu nav {
  position: absolute;
  top: calc(100% + 1px);
  right: 18px;
  left: 18px;
  overflow: hidden;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 0 0 18px 18px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.mobile-menu nav a {
  min-height: 49px;
  display: flex;
  align-items: center;
  padding: 0 13px;
  border-bottom: 1px solid #edf2f4;
  color: #2e4b5b;
  font-size: 14px;
  font-weight: 760;
}

.mobile-menu nav a:last-child {
  justify-content: center;
  margin-top: 8px;
  border: 0;
  border-radius: 10px;
  color: var(--white);
  background: var(--green-600);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 10%, rgba(127, 207, 219, 0.27), transparent 28%),
    radial-gradient(circle at 5% 90%, rgba(28, 160, 166, 0.2), transparent 32%),
    linear-gradient(122deg, #07131f 0%, #081a2b 48%, #0a354a 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.75), transparent 82%);
}

.hero-grid {
  position: relative;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: clamp(42px, 6vw, 86px);
  padding-top: 52px;
  padding-bottom: 74px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
}

.breadcrumb a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
}

.breadcrumb a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumb strong {
  color: rgba(255, 255, 255, 0.92);
}

.eyebrow {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid rgba(168, 226, 232, 0.2);
  border-radius: 999px;
  color: #bcecf0;
  background: rgba(92, 193, 202, 0.1);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #72d1d7;
  box-shadow: 0 0 0 5px rgba(114, 209, 215, 0.11);
}

.hero h1 {
  max-width: 760px;
  margin: 23px 0 20px;
  font-size: clamp(45px, 5vw, 67px);
  font-weight: 850;
  line-height: 0.99;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  color: #99dfe4;
}

.hero-lead {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.65;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 26px 0 30px;
}

.meta-pill {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.055);
  font-size: 12px;
  font-weight: 760;
}

.meta-pill svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: #8bd7dd;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 11px;
  font-weight: 750;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-trust span::before {
  content: "✓";
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #071f2d;
  background: #78d8aa;
  font-size: 10px;
  font-weight: 950;
}

.hero-art {
  position: relative;
  justify-self: end;
  width: min(100%, 480px);
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 8% -8% -6% 13%;
  border-radius: 40px;
  background: linear-gradient(140deg, rgba(141, 51, 71, 0.55), rgba(38, 121, 142, 0.32));
  filter: blur(35px);
  opacity: 0.75;
}

.poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.79;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  transform: rotate(1.1deg);
}

.poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 -100px 100px rgba(6, 19, 29, 0.16);
}

.date-card {
  position: absolute;
  right: -25px;
  bottom: 35px;
  z-index: 3;
  min-width: 168px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 17px;
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  transform: rotate(-2.2deg);
}

.date-card strong {
  display: block;
  font-size: 27px;
  letter-spacing: -0.04em;
}

.date-card span {
  display: block;
  margin-top: 2px;
  color: #57717f;
  font-size: 11px;
  font-weight: 750;
}

.quick-facts {
  position: relative;
  z-index: 5;
  margin-top: -38px;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.fact {
  min-height: 116px;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 14px;
  padding: 22px 23px;
  border-right: 1px solid var(--line);
}

.fact:last-child {
  border-right: 0;
}

.icon-box {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #117e89;
  background: var(--teal-100);
}

.icon-box svg {
  width: 20px;
  height: 20px;
}

.fact-label {
  color: #728792;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fact-value {
  margin-top: 5px;
  color: var(--navy-900);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.section {
  padding: 92px 0;
}

.section-soft {
  background: var(--paper);
}

.section-blue {
  background: var(--blue-100);
}

.section-heading {
  max-width: 750px;
  margin-bottom: 38px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  color: #198992;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section h2 {
  margin: 12px 0;
  color: var(--navy-900);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.section h3 {
  color: var(--navy-900);
}

.section-heading p,
.lead-copy {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.intro-copy {
  max-width: 920px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.essentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.essential-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 12px 35px rgba(7, 30, 45, 0.055);
}

.essential-card.featured {
  color: var(--white);
  border-color: transparent;
  background:
    radial-gradient(circle at 90% 0, rgba(132, 221, 226, 0.2), transparent 35%),
    var(--navy-900);
}

.essential-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #177f88;
  background: #e8f7f7;
  font-size: 12px;
  font-weight: 950;
}

.essential-card h3 {
  margin: 25px 0 10px;
  font-size: 21px;
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.essential-card.featured h3 {
  color: var(--white);
}

.essential-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.essential-card.featured p {
  color: rgba(255, 255, 255, 0.7);
}

.card-link {
  width: max-content;
  max-width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
  color: #16858d;
  font-size: 12px;
  font-weight: 850;
}

.essential-card.featured .card-link {
  color: #9be4e8;
}

.event-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.event-details,
.venue-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(7, 30, 45, 0.06);
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.detail-item {
  min-height: 102px;
  padding: 18px;
  border: 1px solid #e0eaee;
  border-radius: 15px;
  background: #f8fbfc;
}

.detail-item span {
  display: block;
  color: #718590;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-item strong {
  display: block;
  margin-top: 5px;
  color: var(--navy-900);
  font-size: 18px;
  line-height: 1.25;
}

.venue-card {
  position: relative;
  overflow: hidden;
  color: var(--white);
  border: 0;
  background:
    radial-gradient(circle at 100% 0, rgba(92, 193, 202, 0.35), transparent 42%),
    var(--navy-900);
}

.venue-card h3 {
  margin: 10px 0 14px;
  color: var(--white);
  font-size: 31px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.venue-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.venue-card .button {
  margin-top: 26px;
}

.pricing-shell {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 34px;
  align-items: start;
}

.price-intro {
  position: sticky;
  top: 105px;
  padding: 30px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(141, 51, 71, 0.5), transparent 40%),
    var(--navy-900);
  box-shadow: var(--shadow-md);
}

.price-intro .section-kicker {
  color: #a3e4e8;
}

.price-intro h2 {
  color: var(--white);
  font-size: 40px;
}

.price-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

.price-highlight {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
}

.price-highlight span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 750;
}

.price-highlight strong {
  display: block;
  margin-top: 4px;
  font-size: 33px;
  letter-spacing: -0.05em;
}

.table-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(7, 30, 45, 0.07);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.price-table th,
.price-table td {
  padding: 19px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

.price-table thead th {
  color: #6a808c;
  background: #f6f9fa;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-table tbody th {
  color: var(--navy-900);
  font-weight: 850;
}

.price-table td:nth-child(2) {
  color: var(--green-600);
  font-weight: 900;
}

.price-table tr:last-child > * {
  border-bottom: 0;
}

.table-note {
  margin: 18px 5px 0;
  color: #687d88;
  font-size: 11px;
  line-height: 1.6;
}

.conversion {
  padding: 34px;
  border-radius: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 95% 15%, rgba(114, 209, 215, 0.3), transparent 28%),
    linear-gradient(125deg, #0a2436, #0d4855);
  box-shadow: var(--shadow-lg);
}

.conversion-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 38px;
}

.conversion .section-kicker {
  color: #a9e7ea;
}

.conversion h2 {
  color: var(--white);
  font-size: 44px;
}

.conversion p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.conversion .button {
  margin-top: 24px;
}

.product-image {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.product-image img {
  width: 100%;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.step-card {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.step-card::before {
  content: attr(data-step);
  display: block;
  margin-bottom: 18px;
  color: var(--teal-600);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.step-card h3 {
  margin: 0 0 9px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.notice {
  margin-top: 24px;
  padding: 19px 21px;
  border-left: 4px solid var(--teal-500);
  border-radius: 0 14px 14px 0;
  color: #3f5967;
  background: #edf8fa;
  font-size: 13px;
  line-height: 1.65;
}

.tutorial-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: clamp(40px, 6vw, 78px);
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  background: var(--navy-950);
  box-shadow: var(--shadow-lg);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.tutorial-copy h2 {
  font-size: 44px;
}

.tutorial-copy > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 24px 0 28px;
}

.check-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #395565;
  font-size: 13px;
  font-weight: 750;
}

.check-list span::before {
  content: "✓";
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #0f7b39;
  background: #def4e7;
  font-size: 11px;
  font-weight: 950;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--teal-600);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.code-shell {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  gap: 58px;
  padding: 54px;
  border: 1px solid #cfe5ec;
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 30%, rgba(28, 160, 166, 0.17), transparent 30%),
    #f0f9fb;
}

.code-copy h2 {
  font-size: 45px;
}

.code-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.mini-tags span {
  padding: 8px 10px;
  border: 1px solid #cbe3ea;
  border-radius: 9px;
  color: #23677b;
  background: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 800;
}

.cie-visual {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 30px 65px rgba(7, 30, 45, 0.18);
  transform: rotate(1.5deg);
}

.cie-visual img {
  width: 100%;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.info-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.info-card h2 {
  font-size: 34px;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.info-card .text-link {
  margin-top: 14px;
}

.faq-list {
  max-width: 900px;
  display: grid;
  gap: 10px;
  margin: 0 auto;
}

.faq-list details {
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
}

.faq-list summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--navy-900);
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 850;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: #1a9098;
  font-size: 22px;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -2px 0 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.sources-shell {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.sources,
.continue-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.sources h2,
.continue-card h2 {
  margin-top: 8px;
  font-size: 30px;
}

.updated {
  color: #6f838e;
  font-size: 12px;
}

.sources ul,
.continue-links {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.sources a,
.continue-links a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 10px;
  color: #22687a;
  background: #f1f8fa;
  font-size: 12px;
  font-weight: 760;
}

.sources a:hover,
.continue-links a:hover {
  color: var(--white);
  background: var(--navy-900);
}

.disclaimer {
  padding: 24px 0;
  color: #6a7e89;
  background: #edf2f4;
  font-size: 11px;
  line-height: 1.65;
}

.final-cta {
  padding: 52px 0;
  color: var(--white);
  background: linear-gradient(120deg, var(--green-600), #0d754f);
}

.final-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.final-cta h2 {
  margin: 0 0 7px;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.final-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.final-cta .button-secondary {
  flex: 0 0 auto;
  color: #0f7639;
  border-color: transparent;
}

.site-footer {
  padding: 56px 0 30px;
  color: rgba(255, 255, 255, 0.68);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 0.72fr);
  gap: 44px;
}

.footer-logo {
  width: 178px;
  padding: 9px;
  border-radius: 12px;
  background: var(--white);
}

.footer-about p {
  max-width: 350px;
  margin: 17px 0 8px;
  font-size: 12px;
  line-height: 1.65;
}

.footer-about strong {
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
}

.site-footer h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.03em;
}

.footer-links {
  display: grid;
  gap: 7px;
}

.footer-links a {
  min-height: 36px;
  display: flex;
  align-items: center;
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.store-links {
  display: grid;
  gap: 9px;
}

.store-link {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  font-size: 11px;
  font-weight: 800;
}

.store-link svg {
  width: 22px;
  height: 22px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
}

.page-evento .ncie-footer .footer-apps {
  grid-column: auto;
  grid-row: auto;
}

.page-evento .ncie-footer .footer-links {
  gap: 0;
}

.page-evento .ncie-footer .footer-links a {
  min-height: 0;
  display: block;
}

@media (max-width: 1060px) {
  .header-row {
    gap: 16px;
  }

  .brand {
    min-width: 170px;
  }

  .brand-badge {
    display: none;
  }

  .main-nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.75fr);
    gap: 34px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .date-card {
    right: -8px;
  }

  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact:nth-child(2) {
    border-right: 0;
  }

  .fact:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .pricing-shell {
    grid-template-columns: 1fr;
  }

  .price-intro {
    position: static;
  }

  .conversion-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
  }

  .footer-apps {
    grid-column: 2 / 4;
    grid-row: 2;
  }

  .store-links {
    grid-template-columns: repeat(2, minmax(0, 220px));
  }
}

@media (max-width: 860px) {
  .main-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .header-row {
    grid-template-columns: 1fr auto;
  }

  .header-actions {
    grid-column: 2;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-art {
    justify-self: center;
    width: min(100%, 560px);
  }

  .poster {
    aspect-ratio: 1.05;
    transform: none;
  }

  .poster img {
    object-position: center 39%;
  }

  .date-card {
    right: 16px;
    bottom: 18px;
  }

  .essentials-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .essential-card {
    min-height: 230px;
  }

  .event-panel,
  .tutorial-grid,
  .code-shell,
  .sources-shell {
    grid-template-columns: 1fr;
  }

  .tutorial-grid {
    gap: 40px;
  }

  .code-shell {
    gap: 35px;
    padding: 42px;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 80px;
  }

  .container {
    width: calc(100% - 36px);
  }

  .topbar {
    min-height: 32px;
    font-size: 9px;
  }

  .topbar .container {
    min-height: 32px;
  }

  .topbar a {
    font-size: 0;
    text-decoration: none;
  }

  .topbar a::after {
    content: "WhatsApp";
    font-size: 9px;
  }

  .header-row {
    min-height: 66px;
    gap: 7px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 114px;
  }

  .header-actions {
    gap: 7px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 10px;
    border-radius: 9px;
    font-size: 10px;
  }

  .mobile-menu > summary {
    width: 40px;
    height: 40px;
    border-radius: 9px;
  }

  .hero-grid {
    min-height: 0;
    gap: 32px;
    padding-top: 26px;
    padding-bottom: 62px;
  }

  .breadcrumb {
    margin-bottom: 21px;
    font-size: 10px;
  }

  .breadcrumb a:first-child,
  .breadcrumb .first-separator {
    display: none;
  }

  .eyebrow {
    padding: 7px 10px;
    font-size: 9px;
  }

  .hero h1 {
    margin: 18px 0 15px;
    font-size: 38px;
    line-height: 1.01;
    letter-spacing: -0.048em;
  }

  .hero-lead {
    font-size: 14px;
    line-height: 1.6;
  }

  .hero-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin: 21px 0 23px;
  }

  .meta-pill {
    min-height: 37px;
    padding: 0 9px;
    font-size: 9.5px;
  }

  .meta-pill:last-child {
    grid-column: 1 / -1;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 13px;
    margin-top: 20px;
    font-size: 9.5px;
  }

  .poster {
    aspect-ratio: 1.02;
    border-radius: 21px;
  }

  .date-card {
    right: 12px;
    bottom: 14px;
    min-width: 137px;
    padding: 12px 14px;
    border-radius: 13px;
  }

  .date-card strong {
    font-size: 22px;
  }

  .date-card span {
    font-size: 9px;
  }

  .quick-facts {
    margin-top: -27px;
  }

  .facts-grid {
    border-radius: 16px;
  }

  .fact {
    min-height: 94px;
    grid-template-columns: 30px 1fr;
    gap: 8px;
    padding: 14px 12px;
  }

  .icon-box {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }

  .icon-box svg {
    width: 15px;
    height: 15px;
  }

  .fact-label {
    font-size: 8px;
  }

  .fact-value {
    font-size: 13px;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading {
    margin-bottom: 27px;
  }

  .section-kicker {
    font-size: 9.5px;
  }

  .section h2,
  .price-intro h2,
  .conversion h2,
  .tutorial-copy h2,
  .code-copy h2,
  .info-card h2 {
    margin-top: 10px;
    font-size: 32px;
    line-height: 1.05;
  }

  .section-heading p,
  .intro-copy,
  .conversion p,
  .tutorial-copy > p,
  .code-copy p {
    font-size: 14px;
  }

  .essential-card {
    min-height: 220px;
    padding: 23px;
  }

  .event-details,
  .venue-card {
    padding: 25px;
    border-radius: 22px;
  }

  .detail-list {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .detail-item {
    min-height: 86px;
  }

  .price-intro {
    padding: 24px;
    border-radius: 22px;
  }

  .table-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .price-table,
  .price-table tbody,
  .price-table tr,
  .price-table th,
  .price-table td {
    display: block;
    width: 100%;
  }

  .price-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .price-table tbody {
    display: grid;
    gap: 10px;
  }

  .price-table tr {
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 9px 23px rgba(7, 30, 45, 0.045);
  }

  .price-table tbody th {
    padding: 0 0 10px;
    border: 0;
    font-size: 14px;
  }

  .price-table td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 0;
    border: 0;
    color: #5f7682;
    text-align: right;
    white-space: normal;
  }

  .price-table td::before {
    content: attr(data-label);
    color: #6a808c;
    font-size: 11px;
    font-weight: 700;
    text-align: left;
  }

  .conversion {
    padding: 24px;
    border-radius: 23px;
  }

  .conversion-grid {
    gap: 24px;
  }

  .product-image {
    border-radius: 13px;
  }

  .step-card,
  .info-card {
    padding: 23px;
  }

  .video-frame {
    border-radius: 22px;
  }

  .code-shell {
    padding: 25px;
    border-radius: 24px;
  }

  .cie-visual {
    border-radius: 15px;
    transform: none;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .faq-list {
    gap: 8px;
  }

  .faq-list details {
    padding: 0 17px;
  }

  .faq-list summary {
    min-height: 62px;
    font-size: 12px;
  }

  .sources,
  .continue-card {
    padding: 23px;
  }

  .final-cta {
    padding: 42px 0;
  }

  .final-cta .container {
    display: grid;
    gap: 24px;
  }

  .final-cta h2 {
    font-size: 29px;
  }

  .final-cta p {
    font-size: 13px;
    line-height: 1.55;
  }

  .final-cta .button {
    width: 100%;
  }

  .site-footer {
    padding-top: 44px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-apps {
    grid-column: auto;
    grid-row: auto;
  }

  .store-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }
}

@media (max-width: 390px) {
  .container {
    width: calc(100% - 28px);
  }

  .brand img {
    width: 102px;
  }

  .header-cta {
    min-height: 38px;
    padding-inline: 8px;
    font-size: 9px;
  }

  .mobile-menu > summary {
    width: 38px;
    height: 38px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-meta,
  .hero-trust {
    grid-template-columns: 1fr;
  }

  .meta-pill:last-child {
    grid-column: auto;
  }

  .facts-grid {
    grid-template-columns: 1fr;
  }

  .fact {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fact:nth-child(2) {
    border-right: 0;
  }

  .fact:last-child {
    border-bottom: 0;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .topbar,
  .site-header,
  .hero-actions,
  .final-cta,
  .site-footer,
  .video-frame {
    display: none !important;
  }

  .hero {
    color: var(--ink);
    background: var(--white);
  }

  .hero h1,
  .hero h1 span {
    color: var(--ink);
  }

  .hero-lead,
  .breadcrumb {
    color: var(--muted);
  }

  .section {
    padding: 35px 0;
  }
}

/* Ajustes exclusivos da página ROSALÍA. O shell global de header/footer permanece intacto. */
.rosalia-page .hero {
  background:
    radial-gradient(circle at 86% 10%, rgba(212, 227, 238, 0.24), transparent 29%),
    radial-gradient(circle at 5% 90%, rgba(28, 160, 166, 0.2), transparent 32%),
    linear-gradient(122deg, #07131f 0%, #081a2b 48%, #0a354a 100%);
}

.rosalia-page .hero-art {
  width: min(100%, 560px);
}

.rosalia-page .hero-art::before {
  inset: 3% -6% -7% 10%;
  background: linear-gradient(140deg, rgba(190, 213, 229, 0.48), rgba(38, 121, 142, 0.34));
}

.rosalia-page .poster {
  aspect-ratio: 16 / 9;
  transform: rotate(0.8deg);
}

.rosalia-page .poster img {
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.rosalia-page .date-card {
  right: -18px;
  bottom: -26px;
  min-width: 212px;
}

.rosalia-page .date-card strong {
  font-size: 22px;
}

.dates-show-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
}

.dates-show-grid.two-dates {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.event-date-card {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border: 1px solid #e0eaee;
  border-radius: 15px;
  background: #f8fbfc;
}

.event-date-card span {
  color: #718590;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-date-card strong {
  display: block;
  margin-top: 5px;
  color: var(--navy-900);
  font-size: 19px;
  line-height: 1.2;
}

.event-date-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.event-date-card b {
  width: max-content;
  margin-top: auto;
  padding: 5px 8px;
  border-radius: 999px;
  color: #a82135;
  background: #ffe8ec;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.availability-note {
  margin-top: 18px;
  padding: 15px 17px;
  border-left: 4px solid var(--teal-500);
  border-radius: 0 13px 13px 0;
  color: #485f6d;
  background: #edf8fa;
  font-size: 12px;
  line-height: 1.65;
}

.availability-note strong {
  color: #116f77;
}

.rosalia-page .cie-visual img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.rosalia-page .tour-shell .cie-visual {
  width: min(100%, 470px);
  justify-self: center;
  transform: rotate(-1deg);
}

.rosalia-page .tour-shell .cie-visual img {
  aspect-ratio: 1;
  object-fit: cover;
}

.rosalia-page .hero-trust span,
.rosalia-page .check-list span {
  position: relative;
}

.rosalia-page .hero-trust span::before,
.rosalia-page .check-list span::before {
  content: "";
}

.rosalia-page .hero-trust span::after,
.rosalia-page .check-list span::after {
  content: "";
  position: absolute;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-60%) rotate(45deg);
}

.rosalia-page .hero-trust span::after {
  top: 50%;
  left: 6px;
  width: 4px;
  height: 7px;
  color: #071f2d;
}

.rosalia-page .check-list span::after {
  top: 50%;
  left: 8px;
  width: 5px;
  height: 9px;
  color: #0f7b39;
}

.emission-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  line-height: 1.55;
}

@media (max-width: 860px) {
  .rosalia-page .hero-art {
    width: min(100%, 650px);
  }

  .rosalia-page .poster {
    aspect-ratio: 16 / 9;
    transform: none;
  }

  .rosalia-page .date-card {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 700px) {
  .dates-show-grid,
  .dates-show-grid.two-dates {
    grid-template-columns: 1fr;
  }

  .event-date-card {
    min-height: 128px;
  }

  .rosalia-page .date-card {
    right: 12px;
    bottom: 12px;
    min-width: 168px;
  }

  .rosalia-page .date-card strong {
    font-size: 18px;
  }
}
