.il-metodo {
  width: 100%;
  text-align: center;
  padding: 0;
  margin: 0 0 12px;
}

.il-metodo__title {
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.25em;
  font-size: clamp(0.9rem, 2.5vw, 1.8rem);
  color: var(--fg, #F6F5F3);
  margin: 0;
  opacity: 0.85;
}

.district {
  --bg: transparent;
  --fg: #F6F5F3;
  --sheet-bg: rgba(255, 255, 255, 0.55);
  --sheet-fg: #4A4A4A;

  position: relative;
  width: 100%;
  display: block;
  padding-block: clamp(8px, 4vw, 16px);
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: Futura, "Futura PT", "Century Gothic", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

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

.district__word {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
  user-select: none;
}

.district__letter {
  position: relative;
  display: inline-grid;
  place-items: center;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.5rem, 18vw, 40vh);
}

.cinema {
  --bg: transparent;
  --card: #ffffff;
  --ink: #F6F5F3;
  --muted: #6b7280;
  --line: #e5e7eb;
  --neuDark: #d9d9d9;
  --neuLight: #ffffff;
  --veil1: rgba(168, 173, 179, 0.18);
  --veil2: rgba(168, 173, 179, 0.12);
  --glass1: rgba(255, 255, 255, 0.58);
  --glass2: rgba(255, 255, 255, 0.3);
  --shadow: rgba(17, 24, 39, 0.08);
  --shadow-hover: rgba(17, 24, 39, 0.12);
  --glass-stroke: rgba(255, 255, 255, 0.62);
}

.cinema {
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #F6F5F3;
  background: var(--bg);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  background: #111;
  color: #fff;
  border-radius: 8px;
  z-index: 1000;
}

.cinema .banner {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.cinema .tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 8px 12px;
}

.cinema .tabs button {
  padding: 10px 16px;
  min-height: 40px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.5px;
  text-transform: lowercase;
  color: #111;
  background: transparent;
  border: 1px solid rgba(17, 24, 39, 0.1);
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04), 0 3px 8px rgba(17, 24, 39, 0.04);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cinema .tabs button[aria-selected="true"] {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.22));
  border-color: rgba(17, 24, 39, 0.16);
  box-shadow: 0 2px 6px rgba(17, 24, 39, 0.08), 0 8px 16px rgba(17, 24, 39, 0.06);
}

.cinema .tabs button:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(17, 24, 39, 0.08), 0 8px 16px rgba(17, 24, 39, 0.06);
}

.cinema .tabs button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.24), 0 1px 2px rgba(17, 24, 39, 0.04), 0 3px 8px rgba(17, 24, 39, 0.04);
}

.cinema {
  background: transparent;
  padding: 0 0 40px;
  color: #F6F5F3;
}

.cinema .container {
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0;
}

.cinema .cards {
  display: grid;
  gap: clamp(16px, 2vw, 32px);
  grid-template-columns: 1fr;
  padding: 0;
}

.cinema section {
  scroll-margin-top: 88px;
}

.cinema .card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--veil1), var(--veil2)),
    linear-gradient(180deg, var(--glass1), var(--glass2));
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  backdrop-filter: blur(18px) saturate(120%);
  border: 1px solid var(--glass-stroke);
  border-radius: 28px;
  padding: 24px;
  color: #F6F5F3;
  box-shadow: 0 8px 24px var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.cinema .card:hover {
  transform: none;
  box-shadow: 0 8px 24px var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  border-color: var(--glass-stroke);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  backdrop-filter: blur(18px) saturate(120%);
}

.cinema .card h2 {
  margin: 0 0 8px;
  text-align: center;
  font-size: clamp(22px, 4.2vw, 32px);
  font-weight: 700;
  color: var(--ink);
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.cinema .card p {
  margin: 0 0 16px;
  text-align: center;
  color: #F6F5F3;
  font-size: clamp(16px, 1.4vw, 18px);
}

.cinema .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 9999px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  color: #F6F5F3;
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.5px;
  text-transform: lowercase;
  text-decoration: none;
  width: fit-content;
  align-self: center;
  margin-top: auto;
  background: var(--bg);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06), 0 4px 10px rgba(17, 24, 39, 0.05);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease, filter 0.2s ease;
}

.cinema .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-120%);
  transition: transform 0.45s ease;
}

.cinema .btn:hover::before {
  transform: translateX(120%);
}

.intro-block {
  --ink: #F6F5F3;
  --muted: #F6F5F3;
  --veil1: rgba(168, 173, 179, 0.18);
  --veil2: rgba(168, 173, 179, 0.12);
  --glass1: rgba(255, 255, 255, 0.58);
  --glass2: rgba(255, 255, 255, 0.3);
  --glass-stroke: rgba(255, 255, 255, 0.62);
  --shadow: rgba(17, 24, 39, 0.08);
  --shadow-hover: rgba(17, 24, 39, 0.12);
}

.intro-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

.side-title {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif !important;
  font-weight: 700 !important;
  font-size: 32px !important;
  letter-spacing: 1.5px !important;
  line-height: 1.25;
  color: #F6F5F3;
}

#pricing-title {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 1.5px;
  line-height: 1.25;
  color: #F6F5F3;
}

.glass-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  padding: 28px;
  background:
    linear-gradient(180deg, var(--veil1), var(--veil2)),
    linear-gradient(180deg, var(--glass1), var(--glass2));
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  backdrop-filter: blur(18px) saturate(120%);
  border: 1px solid var(--glass-stroke);
  box-shadow: 0 8px 24px var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  display: grid;
  grid-template-rows: auto 1fr auto;
  row-gap: 16px;
}

.glass-card:hover {
  box-shadow: 0 8px 24px var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  border-color: var(--glass-stroke);
}

.glass-card h3 {
  margin: 0 0 12px;
  font: 700 20px/1.35 'Montserrat', system-ui;
  color: var(--ink);
}

.glass-card p {
  margin: 0 0 12px;
  font: 400 16px/1.65 'Montserrat', system-ui;
  color: var(--muted);
}

.glass-card .panel > :last-child {
  margin-bottom: 0;
}

.glass-card a.text {
  color: #F6F5F3;
  text-decoration: none;
}

.glass-card a.text:hover,
.glass-card a.text:focus {
  color: #ffffff;
}

.intro-block .btn,
.intro-block .intro-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 9999px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  color: #F6F5F3;
  background: transparent;
  font: 600 12px/1 'Montserrat', system-ui;
  letter-spacing: -0.5px;
  text-transform: lowercase;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06), 0 4px 10px rgba(17, 24, 39, 0.05);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.intro-block .btn::before,
.intro-block .intro-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-120%);
  transition: transform 0.45s ease;
}

.intro-block .btn::after,
.intro-block .intro-toggle::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 0 rgba(17, 24, 39, 0.14);
  transition: box-shadow 0.25s ease;
}

.intro-block .btn:hover,
.intro-block .intro-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(17, 24, 39, 0.1), 0 8px 16px rgba(17, 24, 39, 0.08);
  border-color: rgba(17, 24, 39, 0.14);
}

.intro-block .btn:hover::before,
.intro-block .intro-toggle:hover::before {
  transform: translateX(120%);
}

.intro-block .btn:hover::after,
.intro-block .intro-toggle:hover::after {
  box-shadow: inset 0 0 0 2px rgba(17, 24, 39, 0.14);
}

.intro-block .btn:focus-visible,
.intro-block .intro-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.24), 0 1px 2px rgba(17, 24, 39, 0.06), 0 4px 10px rgba(17, 24, 39, 0.05);
}

.intro-block .intro-toggle {
  position: static;
  justify-self: start;
  align-self: end;
  margin-top: 4px;
}

.intro-toggle span {
  font-size: 20px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.intro-block .intro-toggle:hover span,
.pricing-toggle:hover span {
  transform: translateX(4px);
}

.pricing-block {
  --ink: #F6F5F3;
  --muted: #F6F5F3;
  --veil1: rgba(168, 173, 179, 0.18);
  --veil2: rgba(168, 173, 179, 0.12);
  --glass1: rgba(255, 255, 255, 0.58);
  --glass2: rgba(255, 255, 255, 0.3);
  --glass-stroke: rgba(255, 255, 255, 0.62);
  --shadow: rgba(17, 24, 39, 0.08);
  --shadow-hover: rgba(17, 24, 39, 0.12);
  background: transparent;
}

.pricing-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

.pricing-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  padding: 28px 28px 88px 28px;
  background:
    linear-gradient(180deg, var(--veil1), var(--veil2)),
    linear-gradient(180deg, var(--glass1), var(--glass2));
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  backdrop-filter: blur(18px) saturate(120%);
  border: 1px solid var(--glass-stroke);
  box-shadow: 0 8px 24px var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

.pricing-card h3 {
  margin: 0 0 16px;
  font: 700 20px/1.35 'Montserrat', system-ui;
  color: var(--ink);
}

.pricing-card p {
  margin: 0 0 14px;
  font: 400 16px/1.65 'Montserrat', system-ui;
  color: var(--muted);
}

.pricing-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.pricing-btn,
.pricing-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 9999px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  color: #F6F5F3;
  background: transparent;
  font: 600 12px/1 'Montserrat', system-ui;
  letter-spacing: -0.5px;
  text-transform: lowercase;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06), 0 4px 10px rgba(17, 24, 39, 0.05);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  text-decoration: none;
}

.pricing-btn::before,
.pricing-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-120%);
  transition: transform 0.45s ease;
}

.pricing-btn::after,
.pricing-toggle::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 0 rgba(17, 24, 39, 0.14);
  transition: box-shadow 0.25s ease;
}

.pricing-btn:hover,
.pricing-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(17, 24, 39, 0.1), 0 8px 16px rgba(17, 24, 39, 0.08);
  border-color: rgba(17, 24, 39, 0.14);
}

.pricing-btn:hover::before,
.pricing-toggle:hover::before {
  transform: translateX(120%);
}

.pricing-btn:hover::after,
.pricing-toggle:hover::after {
  box-shadow: inset 0 0 0 2px rgba(17, 24, 39, 0.14);
}

.pricing-btn:focus-visible,
.pricing-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.24), 0 1px 2px rgba(17, 24, 39, 0.06), 0 4px 10px rgba(17, 24, 39, 0.05);
}

.pricing-toggle {
  position: absolute;
  left: 24px;
  bottom: 24px;
}

.pricing-toggle span {
  font-size: 20px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.panel[hidden] {
  display: none;
}

@media (hover: none), (pointer: coarse) {
  .district {
    padding-block: 0 !important;
  }
}

@media (hover: hover) and (min-width: 768px) {
  .district {
    padding-block: clamp(20px, 6vh, 64px);
  }
}

@media (min-width: 768px) {
  .cinema .banner {
    display: none;
  }

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

@media (min-width: 1024px) {
  .cinema .cards {
    max-width: 980px;
    margin: 0 auto;
    gap: 24px;
    padding: 0 16px;
  }

  .cinema .card {
    min-height: 320px;
    padding: 22px;
  }
}

@media (max-width: 900px) {
  .intro-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 767.98px) {
  .cinema .cards > section {
    display: none;
  }

  .cinema .cards > section.is-active {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-block .btn::before,
  .intro-block .intro-toggle::before,
  .pricing-btn::before,
  .pricing-toggle::before {
    transition: none !important;
    transform: none;
  }
}
