@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html { height: -webkit-fill-available; }
body { height: 100vh; height: -webkit-fill-available; background: #fff; font-family: 'DM Sans', sans-serif; color: #16324F; overflow: hidden; }

:root {
  --blue: #1C6FD6;
  --blue-deep: #0F4D9C;
  --blue-light: #5A9BE0;
  --blue-bg: #EAF2FB;
  --blue-border: #CFE0F5;
  --text: #16324F;
  --text-soft: #6F8FAE;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'DM Sans', sans-serif;
}

#app { width: 100%; max-width: 430px; height: 100vh; height: -webkit-fill-available; margin: 0 auto; position: relative; overflow: hidden; background: #fff; }
.screen { display: none; flex-direction: column; height: 100%; width: 100%; position: absolute; top: 0; left: 0; overflow-y: auto; -webkit-overflow-scrolling: touch; background: #fff; }
.screen.active { display: flex; }

/* HOME */
#s-home { background: linear-gradient(180deg, var(--blue-bg) 0%, #ffffff 60%); align-items: center; padding: calc(40px + env(safe-area-inset-top)) 28px calc(40px + env(safe-area-inset-bottom)); }
#s-home .logo-wrap, #s-quiz .logo-wrap { width: 100%; display: flex; justify-content: center; margin-bottom: 16px; }
#s-home .logo-wrap img { width: 220px; }
#s-home h1 { font-family: var(--serif); font-size: 23px; font-weight: 600; color: var(--text); text-align: center; line-height: 1.4; margin-bottom: 8px; }
#s-home .sub { font-size: 15px; color: var(--text-soft); text-align: center; line-height: 1.6; margin-bottom: 30px; }

/* INSTALL BANNER */
.install-banner { width: 100%; background: #fff; border: 2px solid var(--blue-border); border-radius: 16px; padding: 14px 16px; margin-bottom: 26px; display: flex; align-items: center; gap: 12px; cursor: pointer; transition: all .2s; }
.install-banner:active { background: var(--blue-bg); }
.ib-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--blue-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ib-title { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.ib-sub { font-size: 12px; color: #99AABF; }
.ib-arrow { font-size: 18px; color: var(--blue); flex-shrink: 0; margin-left: auto; }

.install-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15,30,50,.55); z-index: 999; align-items: flex-end; justify-content: center; }
.install-overlay.show { display: flex; }
.install-sheet { width: 100%; max-width: 430px; background: #fff; border-radius: 24px 24px 0 0; padding: 28px 24px calc(28px + env(safe-area-inset-bottom)); animation: slideUp .3s ease; }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.install-sheet h3 { font-family: var(--serif); font-size: 21px; font-weight: 600; color: var(--text); margin-bottom: 6px; text-align: center; }
.is-sub { font-size: 13px; color: var(--text-soft); text-align: center; margin-bottom: 20px; }
.is-step { display: flex; align-items: center; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--blue-bg); }
.is-step:last-of-type { border-bottom: none; }
.is-num { width: 30px; height: 30px; border-radius: 50%; background: var(--blue-bg); color: var(--blue); font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.is-close { width: 100%; background: transparent; border: 2px solid var(--blue-border); color: var(--blue); padding: 14px; border-radius: 50px; font-size: 15px; font-weight: 600; cursor: pointer; font-family: var(--sans); margin-top: 18px; }

/* CAMPOS */
.form-group { width: 100%; margin-bottom: 18px; }
.form-group label { display: block; font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.finput { width: 100%; border: 2px solid var(--blue-border); border-radius: 14px; padding: 16px 18px; font-size: 17px; font-family: var(--sans); color: var(--text); background: #fff; outline: none; transition: border .2s; }
.finput:focus { border-color: var(--blue); }
.input-unit { position: relative; }
.input-unit .finput { padding-right: 48px; }
.input-unit .unit { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); font-size: 13px; color: var(--blue); font-weight: 700; }

.btn-main { width: 100%; background: linear-gradient(135deg, var(--blue), var(--blue-light)); color: #fff; border: none; padding: 18px; border-radius: 50px; font-size: 17px; font-weight: 700; cursor: pointer; font-family: var(--sans); margin-top: 8px; box-shadow: 0 6px 20px rgba(28,111,214,.25); flex-shrink: 0; }
.btn-main:active { opacity: .9; }
.btn-ghost { width: 100%; background: transparent; border: 2px solid var(--blue-border); color: var(--blue); padding: 14px; border-radius: 50px; font-size: 15px; font-weight: 600; cursor: pointer; font-family: var(--sans); }

/* QUIZ */
#s-quiz { background: #fff; }
.qheader { padding: calc(20px + env(safe-area-inset-top)) 26px 0; flex-shrink: 0; }
.prog-bar-wrap { width: 100%; height: 5px; background: var(--blue-bg); border-radius: 10px; margin-bottom: 10px; }
.prog-bar { height: 100%; background: linear-gradient(90deg, var(--blue-light), var(--blue)); border-radius: 10px; transition: width .4s; }
.q-step { font-size: 13px; color: var(--blue); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.qbody { flex: 1; overflow-y: auto; padding: 20px 26px 12px; }
.q-title { font-family: var(--serif); font-size: 25px; font-weight: 600; color: var(--text); line-height: 1.3; margin-bottom: 22px; }
.q-title span { color: var(--blue); }
.sel-group { display: flex; flex-direction: column; gap: 10px; }
.sel-opt { display: flex; align-items: center; gap: 14px; padding: 15px 17px; border: 2px solid var(--blue-border); border-radius: 14px; background: #fff; cursor: pointer; font-size: 15px; color: var(--text); font-family: var(--sans); font-weight: 500; text-align: left; transition: all .2s; }
.sel-opt.sel { border-color: var(--blue); background: var(--blue-bg); color: var(--blue-deep); }
.sel-opt .ico { font-size: 21px; flex-shrink: 0; }
.qfooter { padding: 14px 26px calc(28px + env(safe-area-inset-bottom)); flex-shrink: 0; display: flex; gap: 10px; }
.qfooter .btn-back-q { flex: 0 0 auto; background: #fff; border: 2px solid var(--blue-border); color: var(--text-soft); padding: 15px 18px; border-radius: 50px; font-size: 14px; cursor: pointer; font-family: var(--sans); }
.qfooter .btn-main { margin-top: 0; width: auto; flex: 1; min-width: 0; }

/* LOADING */
#s-loading { align-items: center; justify-content: center; background: linear-gradient(180deg, var(--blue-bg), #fff); padding-top: env(safe-area-inset-top); }
#s-loading img { width: 140px; margin-bottom: 28px; border-radius: 24px; }
.ltxt { font-family: var(--serif); font-size: 21px; font-weight: 500; color: var(--text); text-align: center; max-width: 290px; line-height: 1.6; margin-bottom: 10px; }
.lsub { font-size: 14px; color: var(--text-soft); text-align: center; margin-bottom: 36px; }
.dots { display: flex; gap: 10px; justify-content: center; }
.dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--blue); animation: dot 1.2s infinite ease-in-out; }
.dots span:nth-child(2) { animation-delay: .2s; }
.dots span:nth-child(3) { animation-delay: .4s; }
@keyframes dot { 0%,80%,100% { transform: scale(.5); opacity: .3; } 40% { transform: scale(1); opacity: 1; } }

/* RESULTADO */
#s-result { background: #fff; }
.res-hero { background: linear-gradient(160deg, #0A1F3A 0%, #14407A 55%, var(--blue) 100%); padding: calc(44px + env(safe-area-inset-top)) 26px 30px; text-align: center; flex-shrink: 0; }
.res-hero img { width: 88px; margin-bottom: 16px; border-radius: 20px; filter: drop-shadow(0 4px 14px rgba(0,0,0,.25)); }
.res-hero h2 { font-family: var(--serif); font-size: 25px; font-weight: 500; color: #fff; letter-spacing: 2px; margin-bottom: 6px; }
.res-hero p { font-size: 13px; color: #BBD6F5; letter-spacing: .5px; }
.res-body { padding: 26px 22px 90px; }
.pmsg { background: linear-gradient(135deg, var(--blue-bg), #DCEBFA); border-left: 4px solid var(--blue); border-radius: 0 14px 14px 0; padding: 18px 17px; margin-bottom: 20px; }
.pmsg .p-name { font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--blue-deep); margin-bottom: 6px; }
.pmsg .p-desc { font-size: 14px; color: #2C5580; line-height: 1.6; }
.mc-card { background: #fff; border: 2px solid var(--blue-border); border-radius: 18px; padding: 20px; margin-bottom: 16px; }
.mc-card h3 { font-size: 12px; color: var(--blue); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; font-weight: 700; }
.mbar-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--text); margin-bottom: 5px; }
.mbar-track { height: 8px; background: var(--blue-bg); border-radius: 4px; margin-bottom: 14px; overflow: hidden; }
.mbar-fill { height: 100%; border-radius: 4px; }
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; }
.tag { background: var(--blue); color: #fff; font-size: 13px; font-weight: 600; padding: 8px 15px; border-radius: 20px; }
.tag.alt { background: var(--blue-light); }

/* PROTOCOLO */
#s-proto { background: #F5F9FD; }
.proto-top { background: #fff; padding: calc(18px + env(safe-area-inset-top)) 22px 0; border-bottom: 1px solid var(--blue-border); flex-shrink: 0; }
.proto-top-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.proto-top-row img { width: 42px; height: 42px; border-radius: 10px; }
.proto-top-row h3 { font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--text); }
.proto-top-row p { font-size: 12px; color: var(--blue); font-weight: 600; }
.hamburger-btn { width: 40px; height: 40px; border-radius: 50%; background: var(--blue-bg); border: none; font-size: 18px; color: var(--blue); cursor: pointer; flex-shrink: 0; margin-left: auto; }
.menu-overlay { position: fixed; inset: 0; background: rgba(10,20,40,.45); z-index: 200; opacity: 0; pointer-events: none; transition: opacity .25s; }
.menu-overlay.show { opacity: 1; pointer-events: auto; }
.menu-drawer { position: fixed; top: 0; right: 0; height: 100%; width: 78%; max-width: 300px; background: #fff; z-index: 201; box-shadow: -6px 0 24px rgba(0,0,0,.15); transform: translateX(100%); transition: transform .25s; display: flex; flex-direction: column; }
.menu-drawer.show { transform: translateX(0); }
.menu-drawer-header { display: flex; align-items: center; justify-content: space-between; padding: calc(18px + env(safe-area-inset-top)) 18px 14px; border-bottom: 2px solid var(--blue-border); }
.menu-drawer-header h3 { font-family: var(--serif); font-size: 18px; color: var(--text); }
.menu-close { width: 34px; height: 34px; border-radius: 50%; background: var(--blue-bg); border: none; font-size: 15px; color: var(--blue); cursor: pointer; }
.menu-list { padding: 10px 0; overflow-y: auto; }
.menu-item { display: flex; align-items: center; gap: 12px; padding: 15px 20px; font-size: 15px; font-weight: 600; color: var(--text); cursor: pointer; }
.menu-item span { font-size: 18px; }
.menu-item.sub { padding-left: 40px; font-weight: 500; font-size: 14px; color: var(--text-soft); }
.menu-item.active { color: var(--blue); background: var(--blue-bg); }
.menu-category { padding: 16px 20px 6px; font-size: 11px; font-weight: 700; letter-spacing: .6px; color: var(--blue); text-transform: uppercase; }
.tab-content { flex: 1; overflow-y: auto; }

/* BOAS VINDAS DO PROTOCOLO */
.welcome-proto { padding: 22px 20px; }
.welcome-hero { background: linear-gradient(160deg, #0A1F3A, #14407A); border-radius: 20px; padding: 26px 22px; text-align: center; margin-bottom: 18px; }
.welcome-hero h2 { font-family: var(--serif); font-size: 21px; font-weight: 500; color: #fff; line-height: 1.4; margin-bottom: 10px; }
.welcome-hero p { font-size: 14px; color: #BBD6F5; line-height: 1.7; }
.info-card { background: #fff; border: 2px solid var(--blue-border); border-radius: 16px; padding: 20px; margin-bottom: 14px; }
.info-card h3 { font-size: 12px; color: var(--blue); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.info-row { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--blue-bg); font-size: 14px; color: var(--text); line-height: 1.5; }
.info-row:last-child { border-bottom: none; }
.info-row .iem { font-size: 19px; flex-shrink: 0; margin-top: 1px; }
.warn-box { background: var(--blue-bg); border: 2px solid var(--blue-border); border-radius: 16px; padding: 17px; margin-bottom: 14px; text-align: center; }
.warn-box p { font-size: 14px; color: var(--blue-deep); font-weight: 600; line-height: 1.6; }
.shopping-card { background: #fff; border: 2px solid var(--blue-border); border-radius: 16px; padding: 20px; margin-bottom: 18px; }
.shopping-card h3 { font-size: 12px; color: var(--blue); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.shop-item { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--blue-bg); font-size: 14px; color: var(--text); }
.shop-item:last-child { border-bottom: none; }
.shop-item::before { content: '•'; color: var(--blue); font-size: 18px; flex-shrink: 0; line-height: 1.2; }
.shop-qty { color: var(--blue-deep); font-weight: 600; }

/* DIAS */
.days-wrap { padding: 18px; }
.wk-lbl { font-size: 12px; color: var(--blue); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; margin-top: 8px; }
.days-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; margin-bottom: 4px; }
.day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: #fff; border: 2px solid var(--blue-border); cursor: pointer; transition: all .2s; }
.day .dn { font-family: var(--serif); font-size: 16px; color: var(--text); font-weight: 500; }
.day.done { background: var(--blue-bg); border-color: var(--blue-light); }
.day.done .dn { color: var(--blue); }
.day.today { background: linear-gradient(135deg, var(--blue), var(--blue-light)); border: none; }
.day.today .dn { color: #fff; }

/* CARTÃO DE RECEITA E TREINO */
.rcard { margin: 0 16px 20px; background: #fff; border-radius: 20px; border: 2px solid var(--blue-border); overflow: hidden; }
.rcard-img { width: 100%; height: 130px; display: flex; align-items: center; justify-content: center; font-size: 54px; background: linear-gradient(135deg, var(--blue-bg), #DCEBFA); }
.rcard-body { padding: 20px; }
.rcard-day { font-size: 12px; color: var(--blue); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; }
.rcard-name { font-family: var(--serif); font-size: 21px; color: var(--text); font-weight: 600; margin-bottom: 16px; line-height: 1.2; }
.rsec { margin-bottom: 16px; }
.rsec h4 { font-size: 12px; color: var(--blue); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; margin-bottom: 10px; }
.ingr { display: flex; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--blue-bg); font-size: 14px; color: var(--text); }
.ingr .qty { min-width: 92px; color: var(--blue-deep); font-weight: 600; flex-shrink: 0; }
.step-item { display: flex; gap: 12px; padding: 9px 0; font-size: 14px; color: var(--text); line-height: 1.6; }
.sn { width: 24px; height: 24px; min-width: 24px; border-radius: 50%; background: var(--blue-bg); color: var(--blue); font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.ben-box { background: var(--blue-bg); border-radius: 14px; padding: 15px; margin-top: 4px; }
.ben-box h4 { font-size: 12px; color: var(--blue); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; margin-bottom: 8px; }
.ben-box p { font-size: 13px; color: #2C5580; line-height: 1.6; }
.btn-done { width: 100%; background: linear-gradient(135deg, var(--blue), var(--blue-light)); color: #fff; border: none; padding: 16px; border-radius: 50px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: var(--sans); margin-top: 14px; box-shadow: 0 4px 16px rgba(28,111,214,.2); }
.btn-train { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 15px 16px; background: var(--blue-bg); border: none; border-radius: 14px; cursor: pointer; font-family: var(--sans); margin-top: 4px; }
.btn-train span.t { font-size: 15px; font-weight: 600; color: var(--text); }
.btn-train span.m { font-size: 12px; color: var(--blue); font-weight: 700; }
.session-progress-track { width: 100%; height: 10px; border-radius: 6px; background: var(--blue-bg); overflow: hidden; }
.session-progress-fill { height: 100%; border-radius: 6px; background: linear-gradient(90deg, var(--blue), var(--blue-light)); transition: width .3s ease; }

/* PROGRESSO / PERFIL */
.prog-tab, .prof-tab { padding: 20px; }
.pf-card { background: #fff; border: 2px solid var(--blue-border); border-radius: 16px; padding: 20px; margin-bottom: 14px; }
.pf-card h4 { font-size: 12px; color: var(--blue); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; margin-bottom: 14px; }
.pf-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--blue-bg); }
.pf-row:last-child { border-bottom: none; }
.pf-row .pl { font-size: 14px; color: var(--text-soft); font-weight: 500; }
.pf-row .pv { font-family: var(--serif); font-size: 20px; color: var(--text); font-weight: 500; }
.checklist-row { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text); margin-bottom: 12px; }
.checklist-row input { width: 22px; height: 22px; accent-color: var(--blue); }

/* TREINO */
.game-wrap { text-align: center; padding: 22px 20px calc(30px + env(safe-area-inset-bottom)); }
.game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 22px 0; }
.game-cell { aspect-ratio: 1; border-radius: 20px; background: var(--blue-bg); border: none; cursor: pointer; font-size: 30px; display: flex; align-items: center; justify-content: center; transition: opacity .2s ease, box-shadow .2s ease, filter .2s ease, transform .15s ease; }
.game-cell .cell-icon { font-size: 34px; filter: drop-shadow(0 1px 2px rgba(0,0,0,.3)); pointer-events: none; }
.game-cell.dim { opacity: .3; filter: grayscale(.4); }
.game-cell.lit { box-shadow: inset 0 0 0 6px #FFD54A, inset 0 0 0 12px rgba(255,213,74,.35), 0 8px 18px rgba(0,0,0,.3); filter: brightness(1.25); }
.game-cell.tapped { transform: scale(.86); box-shadow: 0 0 0 5px #fff, 0 0 0 9px var(--blue), 0 10px 18px rgba(0,0,0,.3); filter: brightness(1.12); }
.game-cell.tapped-wrong { transform: scale(.86); box-shadow: 0 0 0 5px #fff, 0 0 0 9px #D64545, 0 10px 18px rgba(0,0,0,.3); filter: brightness(.8) saturate(1.3); }
.game-cell:active { transform: scale(.95); }
.game-cell.wrong { background: #FBE3E0; }
.game-cell.correct { background: #DCF2E4; }
.game-msg { font-size: 16px; font-weight: 600; color: var(--text); min-height: 24px; margin-bottom: 8px; }
.game-score { font-size: 14px; color: var(--text-soft); font-weight: 600; }
.word-pill { display: inline-block; background: var(--blue-bg); color: var(--text); font-size: 16px; padding: 11px 18px; border-radius: 20px; margin: 5px; }
.word-pill.opt { background: #fff; border: 2px solid var(--blue-border); cursor: pointer; }
.word-pill.opt.correct { border-color: #3FA66A; background: #DCF2E4; }
.word-pill.opt.wrong { border-color: #D85A30; background: #FBE3E0; }
.btn-back { width: 40px; height: 40px; border-radius: 50%; background: var(--blue-bg); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 17px; color: var(--blue); flex-shrink: 0; }

/* BIBLIOTECA */
.biblio-tab { padding: 20px; }
.biblio-hero { background: linear-gradient(160deg, #0A1F3A, #14407A); border-radius: 18px; padding: 22px; text-align: center; margin-bottom: 20px; }
.biblio-hero h3 { font-family: var(--serif); font-size: 21px; font-weight: 500; color: #fff; letter-spacing: 1.5px; margin-bottom: 6px; }
.biblio-hero p { font-size: 13px; color: #BBD6F5; }
.ebook-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ebook-card { background: #fff; border: 2px solid var(--blue-border); border-radius: 16px; overflow: hidden; cursor: pointer; transition: all .2s; }
.ebook-card:active { transform: scale(.97); }
.ebook-cover { width: 100%; aspect-ratio: 3/4; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 38px; background: linear-gradient(135deg, var(--blue-bg), #DCEBFA); }
.ebook-info { padding: 12px; }
.ebook-info .etitle { font-family: var(--serif); font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.3; margin-bottom: 4px; }
.ebook-info .esub { font-size: 11px; color: var(--blue); font-weight: 600; }

/* LEITOR DE EBOOK */
#s-ebook { background: #fff; }
.ebook-header { background: #fff; padding: calc(16px + env(safe-area-inset-top)) 20px 16px; border-bottom: 2px solid var(--blue-border); flex-shrink: 0; display: flex; align-items: center; gap: 14px; }
.ebook-header h3 { font-family: var(--serif); font-size: 17px; font-weight: 600; color: var(--text); line-height: 1.3; flex: 1; }
.ebook-body { flex: 1; overflow-y: auto; padding: 22px 20px 40px; }
.ebook-body h1 { font-family: var(--serif); font-size: 23px; font-weight: 600; color: var(--text); line-height: 1.3; margin-bottom: 18px; }
.ebook-body h2 { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--blue); margin: 22px 0 10px; }
.ebook-body p { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 12px; }
.ebook-body ul { padding-left: 0; margin-bottom: 12px; list-style: none; }
.ebook-body ul li { display: flex; gap: 10px; font-size: 14px; color: var(--text); line-height: 1.6; padding: 6px 0; border-bottom: 1px solid var(--blue-bg); }
.ebook-body ul li::before { content: '→'; color: var(--blue); flex-shrink: 0; }
.dl-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; background: var(--blue-bg); border: 2px solid var(--blue-border); color: var(--blue); border-radius: 50px; padding: 14px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: var(--sans); margin-top: 20px; }
