/* Kidslandy - folha de estilo unica.
   Paleta e tipografia herdadas do template original (Nunito + Poppins). */

:root {
  --ink: #0c1a40;
  --ink-soft: #2e3c63;
  --muted: #667089;
  --green: #8ec213;
  --green-dark: #74a00c;
  --orange: #fe5c45;
  --yellow: #fcb736;
  --aqua: #00bac7;
  --stroke: #e8ecf3;
  --cream: #fffaf2;
  --paper: #ffffff;
  --shadow-sm: 0 2px 8px rgba(12, 26, 64, .06);
  --shadow: 0 12px 32px rgba(12, 26, 64, .09);
  --shadow-lg: 0 24px 64px rgba(12, 26, 64, .14);
  --r-sm: 12px;
  --r: 20px;
  --r-lg: 32px;
  --wrap: 1180px;
  --sans: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--ink); text-decoration-color: rgba(12, 26, 64, .25); text-underline-offset: 3px; }
a:hover { color: var(--orange); }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 780px; }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.section--cream { background: var(--cream); }
.section--ink { background: var(--ink); color: rgba(255, 255, 255, .82); }
.section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }

.center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: rgba(142, 194, 19, .12);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 18px;
}
.eyebrow--orange { color: var(--orange); background: rgba(254, 92, 69, .1); }
.eyebrow--aqua { color: #04919b; background: rgba(0, 186, 199, .12); }
.lead { font-size: 1.12rem; color: var(--muted); }
.section--ink .lead { color: rgba(255, 255, 255, .72); }
.head { max-width: 720px; margin: 0 auto clamp(36px, 5vw, 60px); text-align: center; }
.head p { margin-bottom: 0; }

/* Botoes */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 8px 20px rgba(254, 92, 69, .3); }
.btn--primary:hover { background: #ef4d36; color: #fff; box-shadow: 0 12px 28px rgba(254, 92, 69, .36); }
.btn--green { background: var(--green); color: #fff; box-shadow: 0 8px 20px rgba(142, 194, 19, .3); }
.btn--green:hover { background: var(--green-dark); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--stroke); }
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { color: var(--orange); }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .6; pointer-events: none; }

/* Navegacao */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--stroke);
}
.nav__inner { display: flex; align-items: center; gap: 20px; height: 76px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; font-size: 1.35rem; color: var(--ink); text-decoration: none; letter-spacing: -.02em; }
.logo__mark { width: 38px; height: 38px; border-radius: 12px; background: var(--yellow); display: grid; place-items: center; }
.logo__mark img { width: 22px; }
.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a { font-family: var(--display); font-weight: 500; font-size: .95rem; color: var(--ink-soft); text-decoration: none; }
.nav__links a:hover { color: var(--orange); }
.nav__side { display: flex; align-items: center; gap: 14px; }
.langs { display: flex; gap: 4px; background: #f3f5f9; border-radius: 999px; padding: 4px; }
.langs a { font-family: var(--display); font-size: .78rem; font-weight: 600; text-transform: uppercase; color: var(--muted); text-decoration: none; padding: 5px 10px; border-radius: 999px; }
.langs a.is-on { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.nav__toggle { display: none; background: none; border: 0; font-size: 1.6rem; color: var(--ink); cursor: pointer; padding: 4px 8px; }

@media (max-width: 940px) {
  .nav__links { display: none; position: absolute; top: 76px; left: 0; right: 0; background: #fff; flex-direction: column; gap: 0; padding: 8px 24px 20px; border-bottom: 1px solid var(--stroke); box-shadow: var(--shadow); }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 12px 0; border-bottom: 1px solid var(--stroke); }
  .nav__toggle { display: block; margin-left: auto; }
  .nav__side .btn { display: none; }
}

/* Hero */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #fffaf2 0%, #ffffff 100%); padding: clamp(48px, 6vw, 84px) 0 clamp(56px, 7vw, 96px); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.hero h1 { margin-bottom: .45em; }
.hero__note { font-size: .95rem; color: var(--muted); margin-top: 20px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero__art { position: relative; }
.hero__art img { width: 100%; filter: drop-shadow(0 24px 48px rgba(12, 26, 64, .12)); }
.hero__blob { position: absolute; inset: auto; z-index: 0; }
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; } .hero__art { order: -1; max-width: 420px; margin: 0 auto; } }

.trustbar { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--stroke); }
.trustbar span { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 600; font-size: .88rem; color: var(--ink); }
.trustbar span::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.trustbar span:nth-child(2)::before { background: var(--orange); }
.trustbar span:nth-child(3)::before { background: var(--aqua); }
.trustbar span:nth-child(4)::before { background: var(--yellow); }

/* Grelhas genericas */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card h3, .card h4 { margin-bottom: .4em; }
.card p { color: var(--muted); font-size: .98rem; margin: 0; }
.card__icon { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 18px; }
.card__icon img { width: 28px; }
.i-green { background: rgba(142, 194, 19, .14); }
.i-orange { background: rgba(254, 92, 69, .12); }
.i-aqua { background: rgba(0, 186, 199, .12); }
.i-yellow { background: rgba(252, 183, 54, .16); }

/* Areas do programa */
.area { display: flex; flex-direction: column; height: 100%; }
.area__top { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.area__name { font-family: var(--display); font-weight: 700; font-size: 1.12rem; color: var(--ink); margin: 0; }
.area__sub { font-size: .86rem; color: var(--green-dark); font-weight: 700; margin: 2px 0 0; }
.area__units { margin: 16px 0 0; padding: 16px 0 0; border-top: 1px dashed var(--stroke); list-style: none; }
.area__units li { display: flex; gap: 10px; font-size: .9rem; color: var(--muted); padding: 5px 0; }
.area__units b { font-family: var(--display); color: var(--ink); font-weight: 600; white-space: nowrap; }
.tag-lock { display: inline-block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); background: #f1f3f8; border-radius: 999px; padding: 4px 10px; }

/* Passos */
.steps { counter-reset: step; display: grid; gap: 20px; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 8px; }
.step__n { counter-increment: step; font-family: var(--display); font-weight: 700; font-size: 1.1rem; width: 46px; height: 46px; border-radius: 14px; background: var(--ink); color: #fff; display: grid; place-items: center; margin-bottom: 16px; }
.step__n::before { content: counter(step); }
.step h4 { margin-bottom: .35em; }
.step p { font-size: .96rem; color: var(--muted); margin: 0; }

/* Numeros */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
@media (max-width: 620px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat__n { font-family: var(--display); font-weight: 700; font-size: clamp(2rem, 4vw, 2.9rem); color: var(--yellow); line-height: 1; }
.stat__t { font-size: .92rem; color: rgba(255, 255, 255, .7); margin-top: 8px; }

/* Planos */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
@media (max-width: 980px) { .plans { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }
.plan {
  position: relative;
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.plan--best { border: 2px solid var(--orange); box-shadow: var(--shadow-lg); }
@media (min-width: 981px) { .plan--best { transform: scale(1.035); } }
.plan__flag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; font-family: var(--display); font-weight: 700; font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; padding: 7px 18px; border-radius: 999px; white-space: nowrap; }
.plan__tag { font-family: var(--display); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--aqua); }
.plan__name { font-family: var(--display); font-size: 1.7rem; font-weight: 700; color: var(--ink); margin: 6px 0 8px; }
.plan__sub { font-size: .96rem; color: var(--muted); min-height: 3.2em; }
.plan__price { display: flex; align-items: baseline; gap: 10px; margin: 20px 0 4px; }
.plan__amount { font-family: var(--display); font-weight: 700; font-size: 2.7rem; color: var(--ink); line-height: 1; letter-spacing: -.03em; }
.plan__was { font-size: 1.05rem; color: var(--muted); text-decoration: line-through; }
.plan__once { font-size: .88rem; color: var(--green-dark); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.plan__save { display: inline-block; margin-top: 10px; background: rgba(142, 194, 19, .14); color: var(--green-dark); font-weight: 700; font-size: .85rem; border-radius: 999px; padding: 5px 12px; }
.plan__list { list-style: none; margin: 22px 0; padding: 22px 0 0; border-top: 1px solid var(--stroke); display: grid; gap: 11px; flex: 1; }
.plan__list li { display: flex; gap: 11px; font-size: .96rem; color: var(--ink-soft); align-items: flex-start; }
.plan__list li::before { content: ""; flex: 0 0 20px; height: 20px; margin-top: 2px; border-radius: 50%; background: rgba(142, 194, 19, .16) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2374a00c' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat; }
.plan__foot { margin-top: 14px; text-align: center; font-size: .84rem; color: var(--muted); }
.plan__foot span { display: block; }

/* Garantia */
.guarantee { display: grid; grid-template-columns: 130px 1fr; gap: 28px; align-items: center; background: #fff; border: 2px dashed var(--green); border-radius: var(--r-lg); padding: clamp(24px, 4vw, 40px); }
@media (max-width: 700px) { .guarantee { grid-template-columns: 1fr; text-align: center; } .guarantee img { margin: 0 auto; width: 100px; } }
.guarantee h2 { font-size: clamp(1.4rem, 2.6vw, 2rem); }

/* Testemunhos */
.quote { background: #fff; border: 1px solid var(--stroke); border-radius: var(--r); padding: 26px; box-shadow: var(--shadow-sm); }
.quote p { font-size: 1rem; color: var(--ink-soft); margin-bottom: 18px; }
.quote__who { display: flex; align-items: center; gap: 12px; }
.quote__av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: var(--display); font-weight: 700; color: #fff; font-size: 1rem; background: var(--aqua); }
.quote__n { font-family: var(--display); font-weight: 700; font-size: .96rem; color: var(--ink); }
.quote__r { font-size: .84rem; color: var(--muted); }
.stars { color: var(--yellow); letter-spacing: 2px; margin-bottom: 12px; font-size: .95rem; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--stroke); border-radius: var(--r-sm); overflow: hidden; }
.faq summary { cursor: pointer; padding: 20px 54px 20px 22px; font-family: var(--display); font-weight: 600; color: var(--ink); position: relative; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--orange); line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq details > div { padding: 0 22px 22px; color: var(--muted); font-size: .98rem; }

/* CTA final */
.cta-final { background: var(--ink); border-radius: var(--r-lg); padding: clamp(36px, 6vw, 68px); text-align: center; color: rgba(255, 255, 255, .78); position: relative; overflow: hidden; }
.cta-final h2 { color: #fff; }
.cta-final .lead { max-width: 620px; margin: 0 auto 28px; }

/* Rodape */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .66);
  padding: clamp(48px, 6vw, 76px) 0 28px;
  font-size: .94rem;
  line-height: 1.7;
}
.footer a { color: rgba(255, 255, 255, .78); text-decoration: none; }
.footer a:hover, .footer a:focus-visible { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer .logo { color: #fff; margin-bottom: 14px; }
.footer__h {
  color: #fff;
  font-family: var(--display);
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 0 0 16px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }

.footer__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.6fr) repeat(3, minmax(150px, 1fr));
  gap: 40px 32px;
  align-items: start;
}
.footer__brand { max-width: 340px; }
.footer__tagline { color: rgba(255, 255, 255, .6); font-size: .92rem; margin-bottom: 18px; }
.footer__contact { display: grid; gap: 8px; }
.footer__contact a { font-family: var(--display); font-weight: 600; }
.footer__col ul li { line-height: 1.4; }

.footer__seller {
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.footer__seller-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 12px 32px;
  font-size: .88rem;
  color: rgba(255, 255, 255, .62);
}
.footer__seller-grid p { margin: 0; }
.footer__seller-grid strong { color: rgba(255, 255, 255, .9); }
.footer__note { color: rgba(255, 255, 255, .44); font-size: .82rem; margin: 14px 0 0; }

.footer__bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: grid;
  gap: 10px;
}
.footer__copy { font-size: .86rem; color: rgba(255, 255, 255, .7); margin: 0; }
.footer__bottom .footer__note { margin: 0; }

@media (max-width: 1020px) {
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 28px; }
  .footer__brand { grid-column: 1 / -1; max-width: 520px; }
  .footer__seller-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .footer { text-align: left; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .footer__brand { max-width: none; }
  .footer__seller-grid { grid-template-columns: 1fr; gap: 14px; }
  .footer__col ul { gap: 12px; }
  .footer__col ul a { display: inline-block; padding: 2px 0; }
}

/* Banner de cookies */
.cookies { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90; background: #fff; border: 1px solid var(--stroke); border-radius: var(--r); box-shadow: var(--shadow-lg); padding: 18px 20px; display: none; gap: 16px; align-items: center; max-width: 720px; margin: 0 auto; }
.cookies.is-on { display: flex; flex-wrap: wrap; }
.cookies p { font-size: .9rem; color: var(--muted); margin: 0; flex: 1 1 260px; }
.cookies__btns { display: flex; gap: 10px; flex: 0 0 auto; }
.cookies .btn { padding: 10px 20px; font-size: .9rem; }
@media (max-width: 520px) {
  .cookies { flex-direction: column; align-items: stretch; }
  .cookies__btns { display: grid; grid-template-columns: 1fr 1fr; }
}

/* Paginas de texto (legais, contacto) */
.doc { max-width: 780px; margin: 0 auto; }
.doc h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: .3em; }
.doc h2 { font-size: 1.3rem; margin-top: 2em; }
.doc__meta { color: var(--muted); font-size: .9rem; margin-bottom: 2.5em; }
.doc ul, .doc ol { padding-left: 22px; color: var(--ink-soft); }
.doc li { margin-bottom: .5em; }
.doc table { width: 100%; border-collapse: collapse; margin: 1.5em 0; font-size: .94rem; }
.doc th, .doc td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--stroke); vertical-align: top; }
.doc th { font-family: var(--display); color: var(--ink); }
.callout { background: var(--cream); border-left: 4px solid var(--yellow); border-radius: 0 var(--r-sm) var(--r-sm) 0; padding: 18px 22px; margin: 1.5em 0; font-size: .96rem; }

/* Pagina de obrigado e area de membros */
.panel { background: #fff; border: 1px solid var(--stroke); border-radius: var(--r-lg); padding: clamp(26px, 4vw, 44px); box-shadow: var(--shadow); }
.panel--center { text-align: center; max-width: 660px; margin: 0 auto; }
.badge-ok { width: 76px; height: 76px; border-radius: 50%; background: rgba(142, 194, 19, .14); display: grid; place-items: center; margin: 0 auto 22px; }
.badge-ok svg { width: 36px; stroke: var(--green-dark); }
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; text-align: left; counter-reset: c; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; }
.checklist li::before { counter-increment: c; content: counter(c); flex: 0 0 26px; height: 26px; border-radius: 50%; background: var(--ink); color: #fff; font-family: var(--display); font-size: .82rem; font-weight: 700; display: grid; place-items: center; }
.access-link { display: block; word-break: break-all; background: #f5f7fb; border: 1px dashed var(--stroke); border-radius: var(--r-sm); padding: 14px 16px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .82rem; color: var(--ink-soft); margin: 18px 0; }

.bands { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 780px) { .bands { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .bands { grid-template-columns: 1fr; } }
.band { border: 1px solid var(--stroke); border-radius: var(--r); padding: 18px; background: #fff; cursor: pointer; text-align: left; font-family: inherit; transition: border-color .16s ease, transform .16s ease; }
.band:hover { border-color: var(--orange); transform: translateY(-2px); }
.band.is-on { border-color: var(--orange); background: rgba(254, 92, 69, .05); }
.band__n { font-family: var(--display); font-weight: 700; color: var(--ink); }
.band__s { font-size: .86rem; color: var(--muted); }

.unit { border: 1px solid var(--stroke); border-radius: var(--r); background: #fff; overflow: hidden; }
.unit__head { display: flex; align-items: center; gap: 14px; padding: 18px 20px; background: #fbfcfe; border-bottom: 1px solid var(--stroke); }
.unit__head h3 { margin: 0; font-size: 1.05rem; }
.unit__area { font-size: .8rem; text-transform: uppercase; letter-spacing: .07em; font-weight: 700; color: var(--aqua); }
.unit__lessons { list-style: none; margin: 0; padding: 8px 20px 16px; }
.unit__lessons li { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--stroke); font-size: .95rem; }
.unit__lessons li:last-child { border-bottom: 0; }
.play { flex: 0 0 32px; height: 32px; border-radius: 50%; background: rgba(0, 186, 199, .12); display: grid; place-items: center; }
.play svg { width: 12px; fill: var(--aqua); }
.dur { margin-left: auto; font-size: .82rem; color: var(--muted); white-space: nowrap; }
.locked { opacity: .55; }

.notice { border-radius: var(--r); padding: 16px 20px; font-size: .95rem; margin-bottom: 20px; }
.notice--warn { background: rgba(252, 183, 54, .14); border: 1px solid rgba(252, 183, 54, .4); color: #7a5406; }
.notice--err { background: rgba(254, 92, 69, .1); border: 1px solid rgba(254, 92, 69, .35); color: #a32a17; }

.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* Acrescentos da segunda versao */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--r-sm) 0;
  font-family: var(--display);
  font-weight: 600;
}
.skip:focus { left: 0; color: #fff; }

:focus-visible { outline: 3px solid var(--aqua); outline-offset: 2px; border-radius: 4px; }

.buy-consent {
  max-width: 640px;
  margin: 24px auto 0;
  text-align: center;
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.6;
}
.buy-consent + .buy-consent { margin-top: 8px; }
.buy-consent a { color: var(--ink); }

.small { font-size: .88rem; color: var(--muted); }
.left { text-align: left; }
.plain { list-style: none; padding: 0; margin: 20px 0; display: grid; gap: 8px; }

.panel--center hr { border: 0; border-top: 1px solid var(--stroke); margin: 28px 0; }

.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 28px 0; }
@media (max-width: 640px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-grid .callout { margin: 0; }
.contact-grid h2 { margin: 0 0 8px; font-size: 1rem; }
.contact-grid p { margin: 0 0 6px; }

.doc__more { margin-top: 3em; padding-top: 1.6em; border-top: 1px solid var(--stroke); }
.doc__more h2 { font-size: 1rem; margin-top: 0; }
.doc__more ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 18px; }
.doc__more a { font-size: .92rem; }

.plan__price { align-items: baseline; }
.plan__was s { text-decoration: line-through; }
.plan__foot span { display: block; }

