:root {
  --color-page: #f7f7f4;
  --color-surface: #ffffff;
  --color-text: #1f2933;
  --color-muted: #65717f;
  --color-border: #d9ded8;
  --color-accent: #2f6f5e;
  --color-blue-main: #001a7f;
  --color-orange-main: #ff9100;
  --color-off-white: #f5f5f5;
  --color-cta-green: #b6ff00;
  --container-width: 1120px;
  --section-padding: clamp(64px, 9vw, 120px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--color-text);
  background: var(--color-page);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

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

.landing-page {
  width: 100%;
  overflow: hidden;
}

.bloco {
  min-height: 520px;
  padding: var(--section-padding) 24px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
}

.bloco:nth-child(even) {
  background: var(--color-surface);
}

.container {
  width: min(100%, var(--container-width));
  margin: 0 auto;
}

.bloco__numero {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  margin-bottom: 20px;
  border: 1px solid color-mix(in srgb, var(--color-accent) 35%, transparent);
  border-radius: 999px;
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
p {
  margin-top: 0;
}

h1,
h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-weight: 800;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.75rem, 8vw, 5.75rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
}

.bloco-01 {
  position: relative;
  min-height: 100vh;
  padding-top: clamp(48px, 7vw, 88px);
  padding-bottom: clamp(48px, 7vw, 88px);
  color: var(--color-off-white);
  background:
    radial-gradient(circle at 72% 46%, rgba(255, 145, 0, 0.34), transparent 28%),
    radial-gradient(circle at 50% 18%, rgba(255, 145, 0, 0.18), transparent 24%),
    linear-gradient(135deg, #000a34 0%, var(--color-blue-main) 48%, #00071f 100%);
  border-bottom: 0;
}

.bloco-01::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.36), transparent 46%),
    radial-gradient(circle at 76% 50%, rgba(255, 145, 0, 0.2), transparent 38%);
  pointer-events: none;
}

.bloco-01__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.bloco-01__content {
  max-width: 580px;
}

.bloco-01 h1 {
  max-width: 620px;
  margin-bottom: 22px;
  color: var(--color-off-white);
  font-size: clamp(1.18rem, 2.4vw, 2.13rem);
  letter-spacing: 0;
  text-wrap: balance;
}

.bloco-01 h1 span {
  color: var(--color-orange-main);
  text-shadow: 0 0 28px rgba(255, 145, 0, 0.55);
}

.bloco-01__headline {
  max-width: 660px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  font-weight: 400;
  line-height: 1.45;
}

.bloco-01__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 24px;
}

.bloco-01__benefits span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 145, 0, 0.72);
  border-radius: 999px;
  color: var(--color-off-white);
  background: rgba(255, 145, 0, 0.08);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.1;
}

.bloco-01__benefits span::before,
.bloco-01__security span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--color-orange-main);
  font-weight: 900;
}

.bloco-01__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 520px);
  min-height: 72px;
  padding: 18px 28px;
  border-radius: 10px;
  color: #071000;
  background: var(--color-cta-green);
  box-shadow: 0 0 32px rgba(182, 255, 0, 0.42);
  font-size: clamp(0.96rem, 1.4vw, 1.08rem);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.bloco-01__cta::before {
  content: "✦";
  margin-right: 10px;
  color: #ff2b00;
}

.bloco-01__security {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: 18px;
  color: var(--color-off-white);
  font-size: 0.88rem;
  font-weight: 700;
}

.bloco-01__security span {
  display: inline-flex;
  align-items: center;
}

.bloco-01__media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bloco-01__media::before {
  content: "";
  position: absolute;
  width: min(82%, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 145, 0, 0.32), transparent 66%);
  filter: blur(18px);
}

.bloco-01__media img {
  position: relative;
  width: min(125%, 775px);
  filter: drop-shadow(0 28px 46px rgba(0, 0, 0, 0.45));
}

@media (min-width: 721px) {
  .bloco-01__grid {
    grid-template-rows: auto auto;
    column-gap: clamp(28px, 5vw, 72px);
    row-gap: clamp(10px, 1.6vw, 20px);
  }

  .bloco-01__content {
    display: contents;
  }

  .bloco-01 h1 {
    grid-column: 1 / -1;
    max-width: 1040px;
    margin-bottom: 0;
  }

  .bloco-01__headline,
  .bloco-01__benefits,
  .bloco-01__cta,
  .bloco-01__security {
    grid-column: 1;
  }

  .bloco-01__media {
    grid-column: 2;
    grid-row: 2 / span 4;
  }
}

.bloco.bloco-02 {
  min-height: auto;
  padding-top: 34px;
  padding-bottom: 44px;
  color: var(--color-off-white);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 145, 0, 0.16), transparent 26%),
    linear-gradient(180deg, #00071f 0%, #00040f 100%);
  border-top: 1px solid rgba(255, 145, 0, 0.18);
  border-bottom: 1px solid rgba(255, 145, 0, 0.14);
}

.bloco-02__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
  text-align: center;
}

.bloco-02__stat {
  display: grid;
  justify-items: center;
  gap: 7px;
}

.bloco-02__stat strong {
  color: var(--color-orange-main);
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 18px rgba(255, 145, 0, 0.36);
}

.bloco-02__stat span {
  color: var(--color-off-white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
}

.bloco.bloco-03 {
  min-height: auto;
  padding-top: clamp(58px, 7vw, 86px);
  padding-bottom: clamp(58px, 7vw, 92px);
  color: var(--color-off-white);
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 145, 0, 0.1), transparent 30%),
    linear-gradient(180deg, #00040f 0%, #06110d 100%);
  border-bottom: 1px solid rgba(255, 145, 0, 0.12);
}

.bloco-03 h2 {
  margin-bottom: clamp(28px, 4vw, 44px);
  color: var(--color-off-white);
  font-size: clamp(2rem, 4vw, 3.35rem);
  text-align: center;
  text-transform: uppercase;
}

.bloco-03__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.bloco-03__card {
  min-height: 100%;
  padding: 24px 22px 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  color: var(--color-off-white);
  background: var(--color-blue-main);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.28);
}

.bloco-03__stars {
  margin-bottom: 18px;
  color: var(--color-orange-main);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
}

.bloco-03__card blockquote {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.55;
}

.bloco-03__card h3 {
  margin: 0 0 6px;
  color: var(--color-off-white);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.2;
}

.bloco-03__card p {
  max-width: none;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.35;
}

.bloco-03__location {
  color: var(--color-orange-main);
  font-weight: 800;
}

.bloco-03__role {
  margin-top: 10px;
  color: var(--color-off-white);
  font-weight: 500;
}

.bloco.bloco-coaches {
  min-height: auto;
  padding-top: clamp(62px, 8vw, 96px);
  padding-bottom: clamp(62px, 8vw, 96px);
  color: var(--color-off-white);
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 145, 0, 0.12), transparent 30%),
    linear-gradient(180deg, #06110d 0%, #00040f 100%);
  border-bottom: 1px solid rgba(255, 145, 0, 0.12);
}

.bloco-coaches__content {
  display: grid;
  justify-items: center;
}

.bloco-coaches__header {
  max-width: 900px;
  margin-bottom: clamp(30px, 4vw, 48px);
  text-align: center;
}

.bloco-coaches__eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--color-cta-green);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.bloco-coaches h2 {
  margin-bottom: 18px;
  color: var(--color-off-white);
  font-size: clamp(2rem, 4vw, 3.35rem);
  text-transform: uppercase;
}

.bloco-coaches__header p {
  margin: 0 auto;
  color: #ffffff;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  font-weight: 500;
  line-height: 1.55;
}

.bloco-coaches__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
  margin-bottom: clamp(28px, 4vw, 46px);
}

.bloco-coaches__card {
  display: grid;
  grid-template-columns: minmax(150px, 0.44fr) minmax(0, 0.56fr);
  gap: 22px;
  align-items: stretch;
  min-height: 320px;
  padding: 20px;
  border: 1px solid rgba(255, 145, 0, 0.22);
  border-radius: 8px;
  background: rgba(0, 10, 52, 0.72);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.3);
}

.bloco-coaches__photo {
  display: grid;
  place-items: center;
  min-height: 280px;
  overflow: hidden;
  border: 1px dashed rgba(255, 145, 0, 0.62);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 145, 0, 0.16), rgba(182, 255, 0, 0.08)),
    rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

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

.bloco-coaches__bio {
  align-self: center;
}

.bloco-coaches__bio h3,
.bloco-coaches__result h3 {
  margin: 0 0 18px;
  color: var(--color-orange-main);
  font-size: clamp(1.32rem, 2vw, 1.75rem);
  font-weight: 900;
  line-height: 1.15;
}

.bloco-coaches__bio ul,
.bloco-coaches__result ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bloco-coaches__bio li,
.bloco-coaches__result li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  color: #ffffff;
  font-size: clamp(0.92rem, 1.1vw, 1rem);
  font-weight: 700;
  line-height: 1.4;
}

.bloco-coaches__bio li::before,
.bloco-coaches__result li::before {
  content: "✔";
  color: var(--color-cta-green);
  font-weight: 900;
}

.bloco-coaches__result {
  width: min(100%, 900px);
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid rgba(182, 255, 0, 0.24);
  border-radius: 8px;
  background: rgba(33, 45, 23, 0.58);
  text-align: left;
}

.bloco-coaches__result p {
  max-width: none;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  font-weight: 600;
  line-height: 1.55;
}

.bloco-coaches__result p:last-child {
  margin: 22px 0 0;
  color: var(--color-off-white);
  font-weight: 900;
}

.bloco.bloco-04 {
  min-height: auto;
  padding-top: clamp(58px, 7vw, 88px);
  padding-bottom: clamp(58px, 7vw, 88px);
  color: var(--color-off-white);
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 145, 0, 0.11), transparent 32%),
    linear-gradient(180deg, #00040f 0%, #010612 100%);
  border-bottom: 1px solid rgba(255, 145, 0, 0.12);
}

.bloco-04__content {
  display: grid;
  justify-items: center;
  text-align: center;
}

.bloco-04 h2 {
  max-width: 690px;
  margin-bottom: 34px;
  color: var(--color-off-white);
  font-size: clamp(2.05rem, 4.3vw, 3.65rem);
  letter-spacing: 0;
  text-wrap: balance;
}

.bloco-04 h2 span {
  color: var(--color-orange-main);
  text-shadow: 0 0 24px rgba(255, 145, 0, 0.42);
}

.bloco-04__list {
  display: grid;
  gap: 13px;
  width: min(100%, 650px);
}

.bloco-04__item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 70px;
  padding: 16px 22px 16px 18px;
  border: 1px solid rgba(255, 145, 0, 0.32);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(80, 12, 18, 0.74);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  font-size: clamp(0.95rem, 1.35vw, 1.05rem);
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
}

.bloco-04__item::before {
  content: "×";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 145, 0, 0.84);
  border-radius: 50%;
  color: var(--color-orange-main);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
}

.bloco-04__question {
  max-width: 760px;
  margin-top: 42px;
  color: var(--color-off-white);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 900;
  line-height: 1.16;
  text-align: center;
  text-wrap: balance;
}

.bloco-04__question span {
  color: var(--color-orange-main);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
  text-shadow: 0 0 18px rgba(255, 145, 0, 0.42);
}

.bloco.bloco-05 {
  min-height: auto;
  padding-top: clamp(62px, 8vw, 96px);
  padding-bottom: clamp(62px, 8vw, 96px);
  color: var(--color-off-white);
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 145, 0, 0.12), transparent 30%),
    linear-gradient(180deg, #010612 0%, #06110d 100%);
  border-bottom: 1px solid rgba(255, 145, 0, 0.12);
}

.bloco-05__content {
  display: grid;
  justify-items: center;
  text-align: center;
}

.bloco-05__badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 16px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 145, 0, 0.34);
  border-radius: 999px;
  color: var(--color-off-white);
  background: rgba(0, 0, 0, 0.42);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-transform: uppercase;
}

.bloco-05__badge::before {
  content: "★";
  margin-right: 9px;
  color: var(--color-orange-main);
}

.bloco-05__eyebrow {
  margin-bottom: 12px;
  color: var(--color-orange-main);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255, 145, 0, 0.36);
}

.bloco-05 h2 {
  max-width: 820px;
  margin-bottom: 16px;
  color: var(--color-off-white);
  font-size: clamp(2.45rem, 5.5vw, 5rem);
  text-transform: uppercase;
}

.bloco-05__intro {
  max-width: 760px;
  margin-bottom: 12px;
  color: var(--color-off-white);
  font-size: clamp(1.02rem, 1.75vw, 1.22rem);
  font-weight: 700;
  line-height: 1.55;
}

.bloco-05__highlight {
  max-width: 720px;
  margin-bottom: 30px;
  color: var(--color-orange-main);
  font-size: clamp(1.05rem, 1.9vw, 1.3rem);
  font-weight: 900;
  line-height: 1.4;
}

.bloco-05__card {
  width: min(100%, 720px);
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 145, 0, 0.35);
  border-radius: 10px;
  background: rgba(0, 26, 127, 0.66);
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.32);
}

.bloco-05__card p {
  max-width: none;
  margin-bottom: 24px;
  color: #ffffff;
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  font-weight: 800;
  line-height: 1.45;
  text-align: left;
}

.bloco-05__benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
  text-align: left;
}

.bloco-05__benefits span {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--color-off-white);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.35;
}

.bloco-05__benefits span::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 145, 0, 0.9);
  border-radius: 50%;
  color: var(--color-orange-main);
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1;
}

.bloco-05__ready {
  max-width: 680px;
  margin-top: 30px;
  color: var(--color-off-white);
  font-size: clamp(1.35rem, 2.7vw, 2.15rem);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.bloco.bloco-06 {
  min-height: auto;
  padding-top: clamp(62px, 8vw, 96px);
  padding-bottom: clamp(62px, 8vw, 96px);
  color: var(--color-off-white);
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 145, 0, 0.13), transparent 30%),
    linear-gradient(180deg, #06110d 0%, #00040f 100%);
  border-bottom: 1px solid rgba(255, 145, 0, 0.12);
}

.bloco-06__content {
  text-align: center;
}

.bloco-06 h2 {
  max-width: 860px;
  margin-right: auto;
  margin-bottom: 14px;
  margin-left: auto;
  color: var(--color-off-white);
  font-size: clamp(2.45rem, 5.6vw, 5rem);
  text-transform: uppercase;
}

.bloco-06__subtitle {
  max-width: 760px;
  margin-right: auto;
  margin-bottom: 42px;
  margin-left: auto;
  color: var(--color-orange-main);
  font-size: clamp(1rem, 1.55vw, 1.16rem);
  font-weight: 800;
  line-height: 1.45;
}

.bloco-06__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  text-align: left;
}

.bloco-06__card {
  position: relative;
  min-height: 100%;
  padding: 28px 24px 26px;
  border: 1px solid rgba(255, 145, 0, 0.28);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(0, 26, 127, 0.86), rgba(0, 15, 76, 0.86));
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.bloco-06__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(255, 145, 0, 0.13), transparent 36%);
  pointer-events: none;
}

.bloco-06__number,
.bloco-06__card h3,
.bloco-06__card p,
.bloco-06__card ul {
  position: relative;
  z-index: 1;
}

.bloco-06__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 145, 0, 0.78);
  border-radius: 50%;
  color: var(--color-orange-main);
  background: rgba(0, 0, 0, 0.24);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
}

.bloco-06__card h3 {
  margin: 0 0 14px;
  color: var(--color-off-white);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.bloco-06__card p {
  max-width: none;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.45;
}

.bloco-06__card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bloco-06__card li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  align-items: start;
  color: var(--color-off-white);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.bloco-06__card li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 17px;
  margin-top: 1px;
  border: 1px solid rgba(255, 145, 0, 0.86);
  border-radius: 50%;
  color: var(--color-orange-main);
  font-size: 0.7rem;
  font-weight: 900;
}

.bloco.bloco-07 {
  min-height: auto;
  padding-top: clamp(64px, 8vw, 104px);
  padding-bottom: clamp(64px, 8vw, 104px);
  color: var(--color-off-white);
  background:
    radial-gradient(circle at 50% 8%, rgba(182, 255, 0, 0.08), transparent 30%),
    linear-gradient(180deg, #050907 0%, #10180f 48%, #07100b 100%);
  border-bottom: 1px solid rgba(182, 255, 0, 0.12);
}

.bloco-07__content {
  display: grid;
  justify-items: center;
}

.bloco-07__card {
  width: min(100%, 780px);
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid rgba(255, 145, 0, 0.3);
  border-radius: 12px;
  background: rgba(0, 6, 18, 0.76);
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.34);
}

.bloco-07 h2 {
  max-width: 880px;
  margin-right: auto;
  margin-bottom: 18px;
  margin-left: auto;
  color: var(--color-off-white);
  font-size: clamp(2rem, 4.1vw, 3.7rem);
  text-align: center;
  text-transform: uppercase;
}

.bloco-07__story {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.bloco-07__story p {
  max-width: none;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  font-weight: 800;
  line-height: 1.45;
}

.bloco-07__story p:last-child {
  color: var(--color-orange-main);
}

.bloco-07__list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bloco-07__list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--color-off-white);
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  font-weight: 800;
  line-height: 1.35;
}

.bloco-07__list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border: 1px solid rgba(255, 145, 0, 0.9);
  border-radius: 50%;
  color: var(--color-orange-main);
  font-size: 0.78rem;
  font-weight: 900;
}

.bloco-07 h3 {
  margin: 30px 0 16px;
  color: var(--color-orange-main);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 900;
  line-height: 1.15;
}

.bloco-07__list--result {
  padding-top: 2px;
}

.bloco-07__intro {
  max-width: 760px;
  margin: 0 auto clamp(30px, 4vw, 46px);
  color: #f5f7f1;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.bloco-07__compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 860px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
}

.bloco-07__header,
.bloco-07__cell {
  min-height: 62px;
  padding: 16px 20px;
  color: #ffffff;
  font-size: clamp(0.9rem, 1.15vw, 1rem);
  font-weight: 800;
  line-height: 1.28;
}

.bloco-07__header {
  min-height: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  text-transform: uppercase;
}

.bloco-07__header--without,
.bloco-07__cell--without {
  background: #2b211d;
}

.bloco-07__header--with,
.bloco-07__cell--with {
  background: #212d17;
}

.bloco-07__cell--without,
.bloco-07__cell--with {
  border-top: 6px solid #10180f;
}

.bloco-07__header--without {
  color: #ff5a4f;
}

.bloco-07__header--with {
  color: var(--color-cta-green);
}

.bloco.bloco-08 {
  min-height: auto;
  padding-top: clamp(62px, 8vw, 96px);
  padding-bottom: clamp(62px, 8vw, 96px);
  color: var(--color-off-white);
  background:
    radial-gradient(circle at 50% 9%, rgba(255, 145, 0, 0.11), transparent 30%),
    linear-gradient(180deg, #06110d 0%, #00040f 100%);
  border-bottom: 1px solid rgba(255, 145, 0, 0.12);
}

.bloco-08__content {
  display: grid;
  justify-items: center;
  text-align: center;
}

.bloco-08__badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 16px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 145, 0, 0.42);
  border-radius: 999px;
  color: var(--color-orange-main);
  background: rgba(0, 26, 127, 0.44);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.1;
  text-transform: uppercase;
}

.bloco-08__badge::before {
  content: "🎁";
  margin-right: 8px;
}

.bloco-08 h2 {
  max-width: 820px;
  margin-bottom: 14px;
  color: var(--color-off-white);
  font-size: clamp(2.35rem, 5.5vw, 4.8rem);
  text-transform: uppercase;
}

.bloco-08__subtitle {
  max-width: 720px;
  margin-bottom: 38px;
  color: #b9c7df;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  font-weight: 700;
  line-height: 1.45;
}

.bloco-08__accordion {
  display: grid;
  gap: 12px;
  width: min(100%, 760px);
  text-align: left;
}

.bloco-08__item {
  border: 1px solid rgba(255, 145, 0, 0.22);
  border-radius: 10px;
  background: rgba(0, 3, 12, 0.82);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.bloco-08__item.is-open {
  border-color: rgba(255, 145, 0, 0.5);
}

.bloco-08__trigger {
  display: grid;
  grid-template-columns: 1fr auto 18px;
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 17px 20px;
  border: 0;
  color: var(--color-off-white);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.bloco-08__title {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  font-size: clamp(0.98rem, 1.45vw, 1.12rem);
  font-weight: 900;
  line-height: 1.25;
}

.bloco-08__icon {
  margin-right: 12px;
  font-size: 1rem;
  line-height: 1;
}

.bloco-08__free {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--color-cta-green);
  background: rgba(182, 255, 0, 0.13);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.bloco-08__chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-off-white);
  border-bottom: 2px solid var(--color-off-white);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.bloco-08__item.is-open .bloco-08__chevron {
  transform: rotate(225deg);
}

.bloco-08__panel {
  padding: 0 20px 20px 54px;
}

.bloco-08__panel p {
  max-width: none;
  margin: 0;
  color: #d7e0ef;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.55;
}

.bloco-08__value {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  width: min(100%, 760px);
  margin-top: 30px;
  padding: 22px 28px;
  border: 1px solid rgba(255, 145, 0, 0.42);
  border-radius: 14px;
  background: rgba(0, 26, 127, 0.42);
  text-align: left;
}

.bloco-08__value::before {
  content: "🎁";
  color: var(--color-orange-main);
  font-size: 2rem;
  line-height: 1;
}

.bloco-08__value span {
  grid-column: 2;
  color: #d7e0ef;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.bloco-08__value strong {
  grid-column: 2;
  color: var(--color-orange-main);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.bloco-08__value small {
  color: var(--color-off-white);
  font-size: 0.92rem;
  text-transform: none;
}

.bloco.bloco-09 {
  min-height: auto;
  padding-top: clamp(62px, 8vw, 96px);
  padding-bottom: clamp(62px, 8vw, 96px);
  color: var(--color-off-white);
  background:
    radial-gradient(circle at 78% 48%, rgba(255, 145, 0, 0.16), transparent 30%),
    linear-gradient(180deg, #00040f 0%, #06110d 100%);
  border-bottom: 1px solid rgba(255, 145, 0, 0.12);
}

.bloco-09__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.bloco-09__card {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(255, 145, 0, 0.32);
  border-radius: 12px;
  background: rgba(0, 3, 12, 0.76);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.32);
}

.bloco-09 h2 {
  max-width: 620px;
  margin-bottom: 26px;
  color: var(--color-off-white);
  font-size: clamp(2.15rem, 4.8vw, 4.1rem);
  text-transform: uppercase;
}

.bloco-09__list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bloco-09__list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  color: #ffffff;
  font-size: clamp(1rem, 1.55vw, 1.16rem);
  font-weight: 800;
  line-height: 1.4;
}

.bloco-09__list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 1px solid rgba(255, 145, 0, 0.9);
  border-radius: 50%;
  color: var(--color-orange-main);
  font-size: 0.78rem;
  font-weight: 900;
}

.bloco-09__media {
  position: relative;
  display: flex;
  justify-content: center;
}

.bloco-09__media::before {
  content: "";
  position: absolute;
  width: min(82%, 480px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 145, 0, 0.24), transparent 68%);
  filter: blur(16px);
}

.bloco-09__media img {
  position: relative;
  width: min(100%, 520px);
  border: 1px solid rgba(255, 145, 0, 0.28);
  border-radius: 14px;
  box-shadow: 0 30px 62px rgba(0, 0, 0, 0.4);
}

.bloco.bloco-10 {
  min-height: auto;
  padding-top: clamp(62px, 8vw, 96px);
  padding-bottom: clamp(62px, 8vw, 96px);
  color: var(--color-off-white);
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 145, 0, 0.12), transparent 28%),
    linear-gradient(180deg, #06110d 0%, #00040f 100%);
  border-bottom: 1px solid rgba(255, 145, 0, 0.12);
}

.bloco-10__content {
  display: grid;
  justify-items: center;
  text-align: center;
}

.bloco-10 h2 {
  max-width: 880px;
  margin-bottom: 16px;
  color: var(--color-off-white);
  font-size: clamp(2.25rem, 5.4vw, 4.7rem);
  text-transform: uppercase;
}

.bloco-10__subtitle {
  max-width: 680px;
  margin-bottom: 36px;
  color: var(--color-orange-main);
  font-size: clamp(1rem, 1.55vw, 1.16rem);
  font-weight: 800;
  line-height: 1.45;
}

.bloco-10__list {
  display: grid;
  gap: 12px;
  width: min(100%, 700px);
  text-align: left;
}

.bloco-10__item {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 66px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 145, 0, 0.18);
  border-radius: 10px;
  background: rgba(0, 3, 12, 0.78);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.bloco-10__item--featured {
  border-color: rgba(255, 145, 0, 0.62);
  background: rgba(0, 26, 127, 0.44);
}

.bloco-10__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-height: 28px;
  border: 1px solid rgba(255, 145, 0, 0.58);
  border-radius: 999px;
  color: var(--color-orange-main);
  background: rgba(255, 145, 0, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.bloco-10__item strong {
  color: var(--color-off-white);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  font-weight: 900;
  line-height: 1.2;
}

.bloco-10__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #d7e0ef;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
}

.bloco-10__status::before {
  content: "✓";
  color: var(--color-orange-main);
  font-weight: 900;
}

.bloco-10__closing {
  max-width: 780px;
  margin-top: 38px;
  color: var(--color-off-white);
  font-size: clamp(1.55rem, 3.1vw, 2.55rem);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.bloco-10__closing span {
  color: var(--color-orange-main);
  text-shadow: 0 0 20px rgba(255, 145, 0, 0.34);
}

.bloco.bloco-11 {
  min-height: auto;
  padding-top: clamp(62px, 8vw, 96px);
  padding-bottom: clamp(62px, 8vw, 96px);
  color: var(--color-off-white);
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 145, 0, 0.12), transparent 30%),
    linear-gradient(180deg, #00040f 0%, #06110d 100%);
  border-bottom: 1px solid rgba(255, 145, 0, 0.12);
}

.bloco-11__content {
  text-align: center;
}

.bloco-11 h2 {
  max-width: 900px;
  margin-right: auto;
  margin-bottom: 14px;
  margin-left: auto;
  color: var(--color-off-white);
  font-size: clamp(2.25rem, 5.4vw, 4.7rem);
  text-transform: uppercase;
}

.bloco-11__subtitle {
  max-width: 720px;
  margin-right: auto;
  margin-bottom: 38px;
  margin-left: auto;
  color: var(--color-orange-main);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  font-weight: 800;
  line-height: 1.45;
}

.bloco-11__carousel {
  position: relative;
  width: 100%;
}

.bloco-11__viewport {
  overflow: hidden;
}

.bloco-11__track {
  display: flex;
  gap: 18px;
  transition: transform 260ms ease;
  will-change: transform;
}

.bloco-11__card {
  flex: 0 0 calc((100% - 54px) / 4);
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 145, 0, 0.28);
  border-radius: 12px;
  color: var(--color-off-white);
  background: rgba(0, 26, 127, 0.58);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  text-align: left;
}

.bloco-11__card span {
  display: block;
  min-height: 42px;
  margin-bottom: 12px;
  color: var(--color-off-white);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.2;
}

.bloco-11__card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  object-fit: cover;
  object-position: top center;
}

.bloco-11__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 145, 0, 0.58);
  border-radius: 50%;
  background: rgba(0, 3, 12, 0.82);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  transform: translateY(-50%);
}

.bloco-11__arrow::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid var(--color-orange-main);
  border-left: 3px solid var(--color-orange-main);
}

.bloco-11__arrow--prev {
  left: 12px;
}

.bloco-11__arrow--prev::before {
  transform: rotate(-45deg);
}

.bloco-11__arrow--next {
  right: 12px;
}

.bloco-11__arrow--next::before {
  transform: rotate(135deg);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(0, 3, 12, 0.88);
}

.lightbox.is-open {
  display: grid;
}

.lightbox__dialog {
  position: relative;
  width: min(100%, 1080px);
  max-height: 88vh;
  padding: 18px;
  border: 1px solid rgba(255, 145, 0, 0.46);
  border-radius: 14px;
  background: #00040f;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.56);
}

.lightbox__dialog h2 {
  margin: 0 52px 14px 0;
  color: var(--color-off-white);
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  line-height: 1.2;
}

.lightbox__dialog img {
  width: 100%;
  max-height: calc(88vh - 92px);
  border-radius: 10px;
  object-fit: contain;
}

.lightbox__close {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 21;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 145, 0, 0.6);
  border-radius: 50%;
  background: rgba(0, 3, 12, 0.86);
  cursor: pointer;
}

.lightbox__close::before,
.lightbox__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--color-orange-main);
}

.lightbox__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.lightbox__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.bloco.bloco-12 {
  min-height: auto;
  padding-top: clamp(62px, 8vw, 96px);
  padding-bottom: clamp(62px, 8vw, 96px);
  color: var(--color-off-white);
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 145, 0, 0.11), transparent 32%),
    linear-gradient(180deg, #06110d 0%, #00040f 100%);
  border-bottom: 1px solid rgba(255, 145, 0, 0.12);
}

.bloco-12__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.bloco-12__content {
  display: grid;
  justify-items: start;
  text-align: left;
}

.bloco-12 h2 {
  max-width: 760px;
  margin-bottom: 34px;
  color: var(--color-off-white);
  font-size: clamp(2.15rem, 5vw, 4.35rem);
  text-transform: uppercase;
  text-wrap: balance;
}

.bloco-12 h2 span {
  color: var(--color-orange-main);
  text-shadow: 0 0 24px rgba(255, 145, 0, 0.42);
}

.bloco-12__list {
  display: grid;
  gap: 13px;
  width: 100%;
}

.bloco-12__item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 70px;
  padding: 16px 22px 16px 18px;
  border: 1px solid rgba(255, 145, 0, 0.32);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(80, 12, 18, 0.74);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
}

.bloco-12__item::before {
  content: "×";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 145, 0, 0.84);
  border-radius: 50%;
  color: var(--color-orange-main);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
}

.bloco-12__media {
  position: relative;
  display: flex;
  justify-content: center;
}

.bloco-12__media::before {
  content: "";
  position: absolute;
  width: min(82%, 500px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 145, 0, 0.24), transparent 68%);
  filter: blur(16px);
}

.bloco-12__media img {
  position: relative;
  width: min(100%, 520px);
  border: 1px solid rgba(255, 145, 0, 0.28);
  border-radius: 14px;
  box-shadow: 0 30px 62px rgba(0, 0, 0, 0.4);
}

.bloco.bloco-13 {
  min-height: auto;
  padding-top: clamp(62px, 8vw, 96px);
  padding-bottom: clamp(62px, 8vw, 96px);
  color: var(--color-off-white);
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 145, 0, 0.12), transparent 28%),
    linear-gradient(180deg, #00040f 0%, #06110d 100%);
  border-bottom: 1px solid rgba(255, 145, 0, 0.12);
}

.bloco-13__content {
  display: grid;
  justify-items: center;
  text-align: center;
}

.bloco-13 h2 {
  max-width: 880px;
  margin-bottom: 16px;
  color: var(--color-off-white);
  font-size: clamp(2.25rem, 5.4vw, 4.7rem);
  text-transform: uppercase;
}

.bloco-13__subtitle {
  max-width: 700px;
  margin-bottom: 36px;
  color: var(--color-orange-main);
  font-size: clamp(1rem, 1.55vw, 1.16rem);
  font-weight: 800;
  line-height: 1.45;
}

.bloco-13__accordion {
  display: grid;
  gap: 12px;
  width: min(100%, 720px);
  text-align: left;
}

.bloco-13__item {
  border: 1px solid rgba(255, 145, 0, 0.2);
  border-radius: 10px;
  background: rgba(0, 26, 127, 0.62);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.bloco-13__item.is-open,
.bloco-13__item--featured {
  border-color: rgba(255, 145, 0, 0.58);
}

.bloco-13__trigger {
  display: grid;
  grid-template-columns: 46px 1fr 18px;
  gap: 16px;
  align-items: center;
  width: 100%;
  min-height: 66px;
  padding: 14px 18px;
  border: 0;
  color: var(--color-off-white);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.bloco-13__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-height: 28px;
  border: 1px solid rgba(255, 145, 0, 0.58);
  border-radius: 999px;
  color: var(--color-orange-main);
  background: rgba(255, 145, 0, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.bloco-13__title {
  color: var(--color-orange-main);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  font-weight: 900;
  line-height: 1.2;
}

.bloco-13__chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-off-white);
  border-bottom: 2px solid var(--color-off-white);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.bloco-13__item.is-open .bloco-13__chevron {
  transform: rotate(225deg);
}

.bloco-13__panel {
  padding: 0 22px 22px 80px;
}

.bloco-13__panel p {
  max-width: none;
  margin: 0;
  color: #d7e0ef;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.55;
}

.bloco.bloco-14 {
  min-height: auto;
  padding-top: clamp(62px, 8vw, 96px);
  padding-bottom: clamp(62px, 8vw, 96px);
  color: var(--color-off-white);
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 145, 0, 0.14), transparent 30%),
    linear-gradient(180deg, #06110d 0%, #00040f 100%);
  border-bottom: 1px solid rgba(255, 145, 0, 0.12);
}

.bloco-14__content {
  display: grid;
  justify-items: center;
  text-align: center;
}

.bloco-14__badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 16px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 145, 0, 0.42);
  border-radius: 999px;
  color: var(--color-orange-main);
  background: rgba(0, 3, 12, 0.58);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.1;
  text-transform: uppercase;
}

.bloco-14__badge::before {
  content: "☕";
  margin-right: 8px;
}

.bloco-14 h2 {
  max-width: 880px;
  margin-bottom: 34px;
  color: var(--color-off-white);
  font-size: clamp(2.25rem, 5.4vw, 4.7rem);
  text-transform: uppercase;
}

.bloco-14__card {
  display: grid;
  gap: 26px;
  width: min(100%, 760px);
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(255, 145, 0, 0.36);
  border-radius: 14px;
  background: rgba(0, 26, 127, 0.56);
  box-shadow: 0 28px 62px rgba(0, 0, 0, 0.34);
}

.bloco-14__market,
.bloco-14__offer,
.bloco-14__daily {
  display: grid;
  justify-items: center;
}

.bloco-14__market p,
.bloco-14__offer p {
  max-width: none;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1rem, 1.55vw, 1.16rem);
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.bloco-14__prices {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 16px 0;
}

.bloco-14__prices span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 145, 0, 0.48);
  border-radius: 999px;
  color: var(--color-off-white);
  background: rgba(0, 3, 12, 0.45);
  font-size: 1.05rem;
  font-weight: 900;
}

.bloco-14__prices span::before {
  content: "×";
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border: 1px solid rgba(255, 145, 0, 0.82);
  border-radius: 50%;
  color: var(--color-orange-main);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

.bloco-14__offer {
  padding: 26px 18px;
  border: 1px solid rgba(255, 145, 0, 0.36);
  border-radius: 12px;
  background: rgba(0, 3, 12, 0.52);
}

.bloco-14__offer strong {
  margin: 12px 0 6px;
  color: var(--color-orange-main);
  font-size: clamp(2.7rem, 7vw, 5.4rem);
  font-weight: 900;
  line-height: 0.95;
  text-shadow: 0 0 26px rgba(255, 145, 0, 0.34);
}

.bloco-14__offer span {
  color: var(--color-off-white);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  font-weight: 900;
  line-height: 1.2;
}

.bloco-14__daily {
  gap: 8px;
}

.bloco-14__daily span {
  color: #d7e0ef;
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bloco-14__daily strong {
  color: var(--color-off-white);
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  font-weight: 900;
  line-height: 1.1;
}

.bloco-14__daily strong::before {
  content: "☕ ";
  color: var(--color-orange-main);
}

.bloco-14__recover {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(100%, 820px);
  margin-top: 30px;
}

.bloco-14__recover span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 145, 0, 0.46);
  border-radius: 999px;
  color: var(--color-off-white);
  background: rgba(0, 3, 12, 0.38);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.1;
}

.bloco-14__recover span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--color-orange-main);
  font-weight: 900;
}

.bloco.bloco-15 {
  min-height: auto;
  padding-top: clamp(62px, 8vw, 96px);
  padding-bottom: clamp(62px, 8vw, 96px);
  color: var(--color-off-white);
  background:
    radial-gradient(circle at 50% 12%, rgba(182, 255, 0, 0.13), transparent 28%),
    linear-gradient(180deg, #00040f 0%, #06110d 100%);
  border-bottom: 1px solid rgba(255, 145, 0, 0.12);
}

.bloco-15__content {
  display: grid;
  justify-items: center;
  text-align: center;
}

.bloco-15 h2 {
  max-width: 900px;
  margin-bottom: 12px;
  color: var(--color-off-white);
  font-size: clamp(2.15rem, 5.2vw, 4.55rem);
  text-transform: uppercase;
}

.bloco-15__subtitle {
  max-width: 720px;
  margin-bottom: 30px;
  color: var(--color-orange-main);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  font-weight: 800;
  line-height: 1.45;
}

.bloco-15__options {
  display: grid;
  gap: 12px;
  width: min(100%, 780px);
}

.bloco-15__option {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 86px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 145, 0, 0.2);
  border-radius: 12px;
  background: rgba(0, 3, 12, 0.78);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  text-align: left;
}

.bloco-15__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.bloco-15__option.is-selected {
  border-color: rgba(182, 255, 0, 0.92);
  box-shadow: 0 0 28px rgba(182, 255, 0, 0.22);
}

.bloco-15__option--featured {
  border-color: rgba(255, 145, 0, 0.5);
  background: rgba(0, 26, 127, 0.5);
}

.bloco-15__check {
  display: inline-flex;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(245, 245, 245, 0.5);
  border-radius: 50%;
}

.bloco-15__option.is-selected .bloco-15__check {
  border-color: var(--color-cta-green);
  background:
    radial-gradient(circle, var(--color-cta-green) 0 42%, transparent 45%);
}

.bloco-15__details {
  display: grid;
  gap: 5px;
}

.bloco-15__details strong {
  color: var(--color-off-white);
  font-size: clamp(1rem, 1.55vw, 1.16rem);
  font-weight: 900;
  line-height: 1.15;
}

.bloco-15__details small {
  color: #d7e0ef;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
}

.bloco-15__price {
  display: grid;
  justify-items: end;
  gap: 4px;
  min-width: 190px;
}

.bloco-15__price del {
  color: #a8b3c5;
  font-size: 0.82rem;
  font-weight: 800;
}

.bloco-15__price strong {
  color: var(--color-orange-main);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 900;
  line-height: 1;
}

.bloco-15__price small {
  color: var(--color-off-white);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: right;
}

.bloco-15__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 620px);
  min-height: 68px;
  margin-top: 24px;
  padding: 18px 28px;
  border-radius: 10px;
  color: #071000;
  background: var(--color-cta-green);
  box-shadow: 0 0 34px rgba(182, 255, 0, 0.42);
  font-size: clamp(0.96rem, 1.4vw, 1.08rem);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.bloco-15__cta::after {
  content: " →";
}

.bloco-15__security {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 20px;
  margin-top: 18px;
  color: var(--color-off-white);
  font-size: 0.88rem;
  font-weight: 700;
}

.bloco-15__security span {
  display: inline-flex;
  align-items: center;
}

.bloco-15__security span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--color-orange-main);
  font-weight: 900;
}

.bloco.bloco-16 {
  min-height: auto;
  padding-top: clamp(62px, 8vw, 96px);
  padding-bottom: clamp(62px, 8vw, 96px);
  color: var(--color-off-white);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 145, 0, 0.12), transparent 30%),
    linear-gradient(180deg, #06110d 0%, #00040f 100%);
  border-bottom: 1px solid rgba(255, 145, 0, 0.12);
}

.bloco-16__content {
  display: flex;
  justify-content: center;
}

.bloco-16__card {
  display: grid;
  justify-items: center;
  width: min(100%, 760px);
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(255, 145, 0, 0.38);
  border-radius: 16px;
  color: var(--color-off-white);
  background: rgba(0, 26, 127, 0.48);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
  text-align: center;
}

.bloco-16__icon {
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 145, 0, 0.72);
  border-radius: 50%;
  color: var(--color-orange-main);
  background: rgba(255, 145, 0, 0.09);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.bloco-16 h2 {
  max-width: 620px;
  margin-bottom: 22px;
  color: var(--color-off-white);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  text-transform: uppercase;
}

.bloco-16__card p {
  max-width: 620px;
  margin: 0 0 8px;
  color: #ffffff;
  font-size: clamp(1rem, 1.65vw, 1.18rem);
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.bloco-16__card p:last-child {
  margin-bottom: 0;
}

.bloco-16__card strong {
  color: var(--color-orange-main);
  font-weight: 900;
}

.bloco.bloco-17 {
  min-height: auto;
  padding-top: clamp(62px, 8vw, 96px);
  padding-bottom: clamp(62px, 8vw, 96px);
  color: var(--color-off-white);
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 145, 0, 0.13), transparent 30%),
    linear-gradient(180deg, #00040f 0%, #06110d 100%);
  border-bottom: 1px solid rgba(255, 145, 0, 0.12);
}

.bloco-17__content {
  display: grid;
  justify-items: center;
  text-align: center;
}

.bloco-17 h2 {
  max-width: 900px;
  margin-bottom: 18px;
  color: var(--color-off-white);
  font-size: clamp(2.2rem, 5.4vw, 4.65rem);
  text-transform: uppercase;
  text-wrap: balance;
}

.bloco-17__intro {
  max-width: 680px;
  margin-bottom: 22px;
  color: #ffffff;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
}

.bloco-17__pain-list {
  display: grid;
  gap: 11px;
  width: min(100%, 640px);
  margin-bottom: 30px;
}

.bloco-17__pain-list span {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 145, 0, 0.28);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(80, 12, 18, 0.74);
  font-size: clamp(0.98rem, 1.45vw, 1.1rem);
  font-weight: 800;
  line-height: 1.3;
  text-align: left;
}

.bloco-17__pain-list span::before {
  content: "×";
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 145, 0, 0.84);
  border-radius: 50%;
  color: var(--color-orange-main);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

.bloco-17__turn {
  max-width: 760px;
  margin-bottom: 26px;
  color: var(--color-off-white);
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.bloco-17__turn span {
  color: var(--color-orange-main);
  text-shadow: 0 0 20px rgba(255, 145, 0, 0.34);
}

.bloco-17__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 620px);
  min-height: 68px;
  padding: 18px 28px;
  border-radius: 10px;
  color: #071000;
  background: var(--color-cta-green);
  box-shadow: 0 0 34px rgba(182, 255, 0, 0.42);
  font-size: clamp(0.96rem, 1.4vw, 1.08rem);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.bloco-17__cta::after {
  content: " →";
}

.bloco-17__security {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 20px;
  margin-top: 18px;
  color: var(--color-off-white);
  font-size: 0.88rem;
  font-weight: 700;
}

.bloco-17__security span {
  display: inline-flex;
  align-items: center;
}

.bloco-17__security span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--color-orange-main);
  font-weight: 900;
}

.bloco.bloco-18 {
  min-height: auto;
  padding-top: clamp(62px, 8vw, 96px);
  padding-bottom: clamp(62px, 8vw, 96px);
  color: var(--color-off-white);
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 145, 0, 0.12), transparent 30%),
    linear-gradient(180deg, #06110d 0%, #00040f 100%);
  border-bottom: 1px solid rgba(255, 145, 0, 0.12);
}

.bloco-18__content {
  display: grid;
  justify-items: center;
  text-align: center;
}

.bloco-18 h2 {
  max-width: 880px;
  margin-bottom: 14px;
  color: var(--color-off-white);
  font-size: clamp(2.25rem, 5.4vw, 4.7rem);
  text-transform: uppercase;
}

.bloco-18__subtitle {
  max-width: 700px;
  margin-bottom: 36px;
  color: #d7e0ef;
  font-size: clamp(1rem, 1.55vw, 1.16rem);
  font-weight: 800;
  line-height: 1.45;
}

.bloco-18__accordion {
  display: grid;
  gap: 12px;
  width: min(100%, 760px);
  text-align: left;
}

.bloco-18__item {
  border: 1px solid rgba(255, 145, 0, 0.24);
  border-radius: 10px;
  background: rgba(0, 26, 127, 0.58);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.bloco-18__item.is-open {
  border-color: rgba(255, 145, 0, 0.58);
}

.bloco-18__trigger {
  display: grid;
  grid-template-columns: 1fr 18px;
  gap: 16px;
  align-items: center;
  width: 100%;
  min-height: 66px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.bloco-18__question {
  color: var(--color-orange-main);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  font-weight: 900;
  line-height: 1.2;
}

.bloco-18__chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-off-white);
  border-bottom: 2px solid var(--color-off-white);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.bloco-18__item.is-open .bloco-18__chevron {
  transform: rotate(225deg);
}

.bloco-18__panel {
  padding: 0 20px 20px;
}

.bloco-18__panel p {
  max-width: none;
  margin: 0;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.55;
}

.bloco.bloco-19 {
  min-height: auto;
  padding-top: clamp(54px, 7vw, 82px);
  padding-bottom: clamp(44px, 6vw, 70px);
  color: var(--color-off-white);
  background: #000b18;
  border-bottom: 0;
}

.bloco-19__content {
  display: grid;
  justify-items: center;
  text-align: center;
}

.bloco-19 h2 {
  max-width: 680px;
  margin-bottom: 18px;
  color: var(--color-off-white);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  text-transform: uppercase;
}

.bloco-19 p {
  max-width: 620px;
  margin-bottom: 28px;
  color: #d7e0ef;
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}

.bloco-19__links {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.bloco-19__links a {
  color: var(--color-off-white);
  font-size: 0.95rem;
  font-weight: 900;
  text-decoration: none;
}

.bloco-19__links a::before {
  color: var(--color-orange-main);
  margin-right: 8px;
}

.bloco-19__links a[href^="mailto"]::before {
  content: "✉";
}

.bloco-19__links a[href*="instagram"]::before {
  content: "@";
}

.bloco-19 small {
  max-width: 620px;
  color: #748197;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.55;
}

@media (max-width: 720px) {
  .bloco {
    min-height: 420px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .bloco-01 {
    min-height: auto;
    padding-top: 52px;
    padding-bottom: 48px;
  }

  .bloco-01__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .bloco-01__content {
    display: contents;
    max-width: none;
  }

  .bloco-01 h1 {
    font-size: clamp(1.1rem, 5vw, 1.63rem);
    margin-bottom: 0;
  }

  .bloco-01 h1,
  .bloco-01__headline {
    order: 1;
  }

  .bloco-01__media {
    order: 2;
  }

  .bloco-01__cta {
    order: 3;
  }

  .bloco-01__security {
    order: 4;
  }

  .bloco-01__benefits {
    order: 5;
  }

  .bloco-01__benefits {
    gap: 8px;
  }

  .bloco-01__benefits span {
    width: 100%;
  }

  .bloco-01__cta {
    min-height: 66px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .bloco-01__security {
    gap: 10px;
  }

  .bloco.bloco-02 {
    padding-top: 32px;
    padding-bottom: 34px;
  }

  .bloco-02__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
  }

  .bloco-02__stat strong {
    max-width: 150px;
  }

  .bloco.bloco-03 {
    padding-top: 42px;
    padding-bottom: 46px;
  }

  .bloco-03__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bloco.bloco-coaches {
    padding-top: 46px;
    padding-bottom: 50px;
  }

  .bloco-coaches__header {
    text-align: left;
  }

  .bloco-coaches__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bloco-coaches__card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 18px;
  }

  .bloco-coaches__photo {
    min-height: 260px;
  }

  .bloco-coaches__result {
    padding: 22px 18px;
  }

  .bloco.bloco-04 {
    padding-top: 44px;
    padding-bottom: 48px;
  }

  .bloco-04 h2 {
    margin-bottom: 26px;
  }

  .bloco-04__item {
    grid-template-columns: 24px 1fr;
    gap: 12px;
    min-height: 64px;
    padding: 14px 16px;
  }

  .bloco-04__question {
    margin-top: 32px;
  }

  .bloco.bloco-05 {
    padding-top: 46px;
    padding-bottom: 50px;
  }

  .bloco-05__badge {
    max-width: 100%;
    justify-content: center;
    text-align: center;
  }

  .bloco-05__benefits {
    grid-template-columns: 1fr;
  }

  .bloco-05__card p {
    text-align: center;
  }

  .bloco.bloco-06 {
    padding-top: 46px;
    padding-bottom: 50px;
  }

  .bloco-06__subtitle {
    margin-bottom: 28px;
  }

  .bloco-06__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bloco-06__card {
    padding: 24px 20px;
  }

  .bloco.bloco-07 {
    padding-top: 46px;
    padding-bottom: 50px;
  }

  .bloco-07__card {
    padding: 26px 20px;
  }

  .bloco-07 h2 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
  }

  .bloco-07__intro {
    margin-bottom: 26px;
    text-align: left;
  }

  .bloco-07__compare {
    grid-template-columns: 1fr;
    gap: 0;
    border-radius: 8px;
  }

  .bloco-07__header {
    display: none;
  }

  .bloco-07__cell {
    min-height: auto;
    padding: 14px 16px;
  }

  .bloco-07__cell--without {
    border-top: 10px solid #10180f;
  }

  .bloco-07__cell--with {
    border-top: 0;
  }

  .bloco-07__cell--without::before,
  .bloco-07__cell--with::before {
    display: block;
    margin-bottom: 7px;
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .bloco-07__cell--without::before {
    content: "❌ Sem BWP";
    color: #ff5a4f;
  }

  .bloco-07__cell--with::before {
    content: "✅ Com BWP";
    color: var(--color-cta-green);
  }

  .bloco.bloco-08 {
    padding-top: 46px;
    padding-bottom: 50px;
  }

  .bloco-08__subtitle {
    margin-bottom: 28px;
  }

  .bloco-08__trigger {
    grid-template-columns: 1fr 18px;
    gap: 12px;
    padding: 16px;
  }

  .bloco-08__free {
    grid-column: 1;
    grid-row: 2;
    width: fit-content;
    margin-left: 31px;
  }

  .bloco-08__chevron {
    grid-column: 2;
    grid-row: 1;
  }

  .bloco-08__panel {
    padding: 0 16px 18px 47px;
  }

  .bloco-08__value {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 20px 18px;
    text-align: center;
  }

  .bloco-08__value span,
  .bloco-08__value strong {
    grid-column: auto;
  }

  .bloco.bloco-09 {
    padding-top: 46px;
    padding-bottom: 50px;
  }

  .bloco-09__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .bloco-09__card {
    padding: 26px 20px;
  }

  .bloco.bloco-10 {
    padding-top: 46px;
    padding-bottom: 50px;
  }

  .bloco-10__subtitle {
    margin-bottom: 28px;
  }

  .bloco-10__item {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }

  .bloco-10__status {
    grid-column: 2;
  }

  .bloco-10__closing {
    margin-top: 30px;
  }

  .bloco.bloco-11 {
    padding-top: 46px;
    padding-bottom: 50px;
  }

  .bloco-11__subtitle {
    margin-bottom: 28px;
  }

  .bloco-11__track {
    gap: 14px;
  }

  .bloco-11__card {
    flex-basis: 100%;
  }

  .bloco-11__arrow {
    width: 40px;
    height: 40px;
  }

  .bloco-11__arrow--prev {
    left: 8px;
  }

  .bloco-11__arrow--next {
    right: 8px;
  }

  .lightbox {
    padding: 16px;
  }

  .lightbox__dialog {
    padding: 14px;
  }

  .bloco.bloco-12 {
    padding-top: 46px;
    padding-bottom: 50px;
  }

  .bloco-12 h2 {
    margin-bottom: 26px;
  }

  .bloco-12__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .bloco-12__content {
    justify-items: center;
    text-align: center;
  }

  .bloco-12__item {
    grid-template-columns: 24px 1fr;
    gap: 12px;
    min-height: 64px;
    padding: 14px 16px;
  }

  .bloco.bloco-13 {
    padding-top: 46px;
    padding-bottom: 50px;
  }

  .bloco-13__subtitle {
    margin-bottom: 28px;
  }

  .bloco-13__trigger {
    grid-template-columns: 44px 1fr 16px;
    gap: 12px;
    padding: 14px 16px;
  }

  .bloco-13__panel {
    padding: 0 16px 18px 72px;
  }

  .bloco.bloco-14 {
    padding-top: 46px;
    padding-bottom: 50px;
  }

  .bloco-14 h2 {
    margin-bottom: 26px;
  }

  .bloco-14__card {
    gap: 22px;
    padding: 24px 18px;
  }

  .bloco-14__offer {
    padding: 22px 14px;
  }

  .bloco.bloco-15 {
    padding-top: 46px;
    padding-bottom: 50px;
  }

  .bloco-15__subtitle {
    margin-bottom: 24px;
  }

  .bloco-15__option {
    grid-template-columns: 24px 1fr;
    gap: 12px;
    padding: 16px;
  }

  .bloco-15__price {
    grid-column: 2;
    justify-items: start;
    min-width: 0;
  }

  .bloco-15__price small {
    text-align: left;
  }

  .bloco-15__cta {
    min-height: 64px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .bloco.bloco-16 {
    padding-top: 46px;
    padding-bottom: 50px;
  }

  .bloco-16__card {
    padding: 30px 20px;
  }

  .bloco-16__icon {
    width: 62px;
    height: 62px;
    margin-bottom: 20px;
  }

  .bloco.bloco-17 {
    padding-top: 46px;
    padding-bottom: 50px;
  }

  .bloco-17__pain-list span {
    min-height: 54px;
    padding: 13px 16px;
  }

  .bloco-17__cta {
    min-height: 64px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .bloco.bloco-18 {
    padding-top: 46px;
    padding-bottom: 50px;
  }

  .bloco-18__subtitle {
    margin-bottom: 28px;
  }

  .bloco-18__trigger {
    padding: 16px;
  }

  .bloco-18__panel {
    padding: 0 16px 18px;
  }

  .bloco.bloco-19 {
    padding-top: 42px;
    padding-bottom: 44px;
  }
}

@media (min-width: 721px) and (max-width: 1100px) {
  .bloco-03__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bloco-06__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bloco-11__card {
    flex-basis: calc((100% - 36px) / 3);
  }
}
