/* ===========================
   Alivio Diario — app.css (DEFINITIVO LIMPIO)
=========================== */

:root{
  --bg-0:#050B17;
  --bg-1:#071225;
  --bg-2:#0A1D3A;

  --e-0:#1C6BFF;
  --e-1:#2E9BFF;
  --e-2:#5BCBFF;

  --card: rgba(11, 24, 46, .72);
  --card-2: rgba(9, 18, 36, .62);
  --stroke: rgba(255,255,255,.10);
  --stroke-2: rgba(255,255,255,.07);

  --text:#EAF2FF;
  --muted: rgba(234,242,255,.72);
  --muted-2: rgba(234,242,255,.54);

  --shadow: 0 16px 50px rgba(0,0,0,.55);
  --shadow-soft: 0 10px 30px rgba(0,0,0,.35);

  --r-xl: 28px;
  --r-lg: 22px;
  --r-md: 16px;

  --pad: 18px;
  --pad-lg: 22px;

  --phone-w: 420px;
  --phone-h: 860px;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }

body{
  margin:0;
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 800px at 50% -10%, rgba(46,155,255,.22), transparent 55%),
    radial-gradient(900px 600px at 10% 10%, rgba(28,107,255,.18), transparent 52%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1) 48%, var(--bg-0));
  overflow-x:hidden;
}

.ambient{
  position:fixed;
  inset:-2px;
  pointer-events:none;
  background:
    radial-gradient(900px 700px at 70% 10%, rgba(91,203,255,.14), transparent 55%),
    radial-gradient(900px 700px at 30% 90%, rgba(28,107,255,.10), transparent 60%),
    radial-gradient(1200px 800px at 50% 50%, rgba(0,0,0,.45), transparent 55%);
  filter: blur(2px);
  opacity:1;
}

.shell{
  min-height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px 12px 28px;
}

.device{
  width: min(var(--phone-w), 96vw);
  min-height: min(var(--phone-h), 92vh);
  border-radius: 38px;
  position:relative;
  overflow:hidden;

  background:
    radial-gradient(900px 700px at 50% 0%, rgba(46,155,255,.22), transparent 60%),
    linear-gradient(180deg, rgba(9,18,36,.75), rgba(5,11,23,.85));
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.10);

  display:flex;
  flex-direction:column;

  overflow-x:hidden;
}

.app{
  flex:1;
  overflow:auto;
  -webkit-overflow-scrolling: touch;
  padding: 10px var(--pad) 40px;
  overflow-x:hidden;
}

.app::-webkit-scrollbar{ width: 10px; }
.app::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.10);
  border-radius: 999px;
  border: 3px solid rgba(0,0,0,0);
  background-clip: padding-box;
}
.app::-webkit-scrollbar-track{ background: transparent; }

button{ touch-action: manipulation; }

.topbar{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 12px var(--pad) 8px;
}

.top-actions{
  display:flex;
  gap: 10px;
  margin-left:auto;
}

.pill-title{
  position:relative;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .2px;

  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 24px rgba(0,0,0,.26);
  overflow:hidden;
}
.pill-title .pill-glow{
  position:absolute;
  inset:-40px -80px auto auto;
  width:180px; height:120px;
  background: radial-gradient(circle at 30% 30%, rgba(46,155,255,.45), transparent 60%);
  filter: blur(2px);
  opacity:.9;
}

.icon-btn{
  width: 44px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  box-shadow: var(--shadow-soft);
  color: var(--text);
  display:grid;
  place-items:center;
  cursor:pointer;
  -webkit-tap-highlight-color: transparent;
}
.icon-btn:active{ transform: translateY(1px); }
.icon-btn.close{ width: 40px; height: 34px; }

.icon{ display:block; width:18px; height:18px; position:relative; opacity:.95; }

.i-menu::before,
.i-menu::after,
.i-edit::before,
.i-more::before,
.i-close::before,
.i-close::after,
.i-back::before,
.i-back::after{
  content:"";
  position:absolute;
  left:0; right:0;
  margin:auto;
  background: rgba(234,242,255,.92);
  border-radius: 99px;
}

.i-menu::before{ top:3px; width:18px; height:2px; }
.i-menu::after{ top:8px; width:18px; height:2px; box-shadow: 0 5px 0 rgba(234,242,255,.92); }

.i-edit::before{ width: 14px; height: 3px; top:8px; transform: rotate(-20deg); }

.i-more::before{ width: 4px; height: 4px; top:7px; box-shadow: -7px 0 0 rgba(234,242,255,.92), 7px 0 0 rgba(234,242,255,.92); }

.i-close::before{ width: 18px; height: 2px; top:8px; transform: rotate(45deg); }
.i-close::after{ width: 18px; height: 2px; top:8px; transform: rotate(-45deg); }

.i-back::before{
  width: 12px; height: 2px; top:8px;
  transform: translateX(-2px) rotate(45deg);
  transform-origin: left center;
}
.i-back::after{
  width: 12px; height: 2px; top:8px;
  transform: translateX(-2px) rotate(-45deg);
  transform-origin: left center;
}

.screen{
  display:none;
  width:100%;
  animation: fadeUp .24s ease-out;
}
.screen.is-active{ display:block; }

@keyframes fadeUp{
  from{ opacity:0; transform: translateY(8px); }
  to{ opacity:1; transform: translateY(0); }
}

.h1{
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.6px;
  margin: 8px 0 8px;
}
.h2{
  font-size: 22px;
  letter-spacing: -0.3px;
  margin: 6px 0 6px;
}
.sub{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.hero{ padding: 8px 2px 12px; }
.hero.compact{ padding-bottom: 10px; }

.card{
  border-radius: var(--r-xl);
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow: var(--shadow-soft);
  padding: var(--pad-lg);
  margin: 10px 0 14px;
  position:relative;
  overflow:hidden;
}
.card.glass{
  background:
    radial-gradient(600px 220px at 50% 0%, rgba(46,155,255,.18), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.card::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  background: radial-gradient(500px 240px at 20% 0%, rgba(91,203,255,.14), transparent 55%);
  opacity:.9;
}

.card-head{
  display:flex;
  gap:10px;
  align-items:center;
  margin-bottom: 14px;
}

.chip{
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--stroke-2);
  background: rgba(255,255,255,.06);
  color: rgba(234,242,255,.92);
}
.chip-blue{
  background: linear-gradient(180deg, rgba(46,155,255,.28), rgba(28,107,255,.18));
  border-color: rgba(46,155,255,.22);
}
.chip-dark{ background: rgba(0,0,0,.18); }

.label{
  font-size: 13px;
  color: rgba(234,242,255,.78);
  margin-bottom: 10px;
  font-weight: 650;
}
.segmented{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}
.seg{
  flex: 1 1 auto;
  min-width: 110px;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: rgba(234,242,255,.90);
  font-weight: 650;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  -webkit-tap-highlight-color: transparent;
}
.seg:active{ transform: translateY(1px); }
.seg.is-selected{
  background: linear-gradient(180deg, rgba(46,155,255,.35), rgba(28,107,255,.20));
  border-color: rgba(46,155,255,.35);
  box-shadow: 0 10px 24px rgba(28,107,255,.18);
}

.btn{
  border:0;
  border-radius: 18px;
  padding: 14px 14px;
  font-weight: 750;
  letter-spacing: .2px;
  cursor:pointer;
  color: rgba(234,242,255,.95);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 26px rgba(0,0,0,.22);
  position:relative;
  overflow:hidden;
  -webkit-tap-highlight-color: transparent;
}
.btn:active{ transform: translateY(1px); }
.btn.full{ width:100%; }

.btn.primary{
  background:
    radial-gradient(220px 90px at 30% 20%, rgba(91,203,255,.55), transparent 55%),
    linear-gradient(180deg, rgba(46,155,255,.60), rgba(28,107,255,.45));
  border-color: rgba(91,203,255,.28);
  box-shadow: 0 18px 40px rgba(28,107,255,.22), 0 14px 30px rgba(0,0,0,.26);
}
.btn.secondary{
  background: rgba(255,255,255,.05);
  color: rgba(234,242,255,.86);
}
.btn.tiny{
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13px;
}
.btn .btn-glow{
  position:absolute;
  inset:-40px -80px auto auto;
  width: 210px;
  height: 120px;
  background: radial-gradient(circle at 20% 25%, rgba(255,255,255,.35), transparent 60%);
  opacity:.35;
  filter: blur(1px);
}

.cta-row{
  margin-top: 16px;
  display:flex;
  gap: 12px;
}
.cta-row .btn{ flex: 1; }

.fineprint{
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted-2);
  line-height: 1.35;
}

.card.hint{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 16px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
}
.hint-title{
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -.2px;
}
.hint-sub{
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.routine-card{ padding: 18px; }
.routine-meta{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.meta-item{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  padding: 12px 12px;
  text-align:center;
}
.meta-k{
  font-size: 12px;
  color: var(--muted-2);
  font-weight: 700;
  letter-spacing: .2px;
}
.meta-v{
  margin-top: 6px;
  font-size: 14px;
  font-weight: 850;
  color: rgba(234,242,255,.95);
}

/* ===========================
   Modal centrado
=========================== */
.modal-backdrop{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding: 22px 14px;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 50;
}
.modal-backdrop.is-open{ display:flex; }

.modal{
  width: min(420px, 92vw);
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(700px 300px at 50% 0%, rgba(46,155,255,.22), transparent 60%),
    linear-gradient(180deg, rgba(9,18,36,.92), rgba(5,11,23,.92));
  box-shadow: 0 24px 70px rgba(0,0,0,.65);
  overflow:hidden;
}
.modal-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.06), transparent);
}
.modal-title{
  font-weight: 900;
  letter-spacing: -.2px;
}
.modal-body{ padding: 16px; }
.steps{
  margin: 0;
  padding: 0;
  list-style:none;
  display:grid;
  gap: 10px;
  color: rgba(234,242,255,.88);
  font-weight: 650;
}
.steps .dot{
  width: 8px;
  height: 8px;
  border-radius: 99px;
  display:inline-block;
  margin-right: 10px;
  background: linear-gradient(180deg, rgba(91,203,255,.85), rgba(28,107,255,.85));
  box-shadow: 0 10px 18px rgba(28,107,255,.18);
  transform: translateY(-1px);
}
.legal{
  margin-top: 14px;
  padding: 12px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  color: rgba(234,242,255,.80);
  font-size: 13px;
  line-height: 1.35;
}

/* ===========================
   Guided player
=========================== */
.player{ padding: 18px; }
.player-top{ margin-bottom: 12px; }
.player-title{
  font-weight: 900;
  letter-spacing: -.2px;
  font-size: 16px;
}
.player-sub{
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.player-visual{
  margin-top: 14px;
  display:flex;
  gap: 14px;
  align-items:stretch;
  justify-content:space-between;
}

/* ===========================
   TIMER
=========================== */
.timer{
  width: 52%;
  min-height: 150px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(260px 140px at 40% 10%, rgba(46,155,255,.26), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  box-shadow: 0 14px 30px rgba(0,0,0,.30);
  display:grid;
  place-items:center;
  position:relative;
  overflow:hidden;

  --p: 0;
}

.timer-ring{
  width: 92px;
  height: 92px;
  border-radius: 999px;
  border: 2px solid rgba(234,242,255,.12);
  box-shadow:
    0 16px 34px rgba(28,107,255,.10),
    inset 0 0 0 10px rgba(28,107,255,.10);
  position:absolute;
}

.timer-ring::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:999px;
  background: conic-gradient(
    rgba(91,203,255,.95) 0turn,
    rgba(46,155,255,.85) calc(var(--p) * 1turn),
    rgba(234,242,255,.10) calc(var(--p) * 1turn),
    rgba(234,242,255,.10) 1turn
  );
  -webkit-mask: radial-gradient(circle, transparent 56%, #000 57%);
  mask: radial-gradient(circle, transparent 56%, #000 57%);
  opacity:.92;
  filter: blur(.15px);
}

.timer-core{
  position:relative;
  text-align:center;
}
.t-big{
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -.4px;
}
.t-small{
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: .24em;
  color: rgba(234,242,255,.68);
  font-weight: 850;
}

.player-actions{
  margin-top: 14px;
  display:flex;
  gap: 12px;
}
.player-actions .btn{ flex:1; }

/* ===========================
   Lista de ejercicios
=========================== */
.list{ margin-top: 12px; }
.list-title{
  margin: 8px 2px 10px;
  font-size: 13px;
  color: rgba(234,242,255,.78);
  font-weight: 800;
}
.exercise{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  box-shadow: 0 10px 22px rgba(0,0,0,.20);
  margin-bottom: 10px;
}
.ex-left{ display:flex; gap: 12px; align-items:center; }
.ex-icon{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background:
    radial-gradient(60px 40px at 30% 20%, rgba(91,203,255,.35), transparent 60%),
    linear-gradient(180deg, rgba(46,155,255,.35), rgba(28,107,255,.22));
  border: 1px solid rgba(91,203,255,.22);
  box-shadow: 0 14px 24px rgba(28,107,255,.16);
}
.ex-name{
  font-weight: 900;
  letter-spacing: -.2px;
  font-size: 14px;
}
.ex-meta{
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}
.chev{
  width: 10px; height: 10px;
  border-right: 2px solid rgba(234,242,255,.55);
  border-bottom: 2px solid rgba(234,242,255,.55);
  transform: rotate(-45deg);
  opacity:.9;
}

.exercise.is-current{
  border-color: rgba(91,203,255,.28);
  background:
    radial-gradient(400px 120px at 30% 0%, rgba(46,155,255,.18), transparent 55%),
    rgba(255,255,255,.06);
  box-shadow:
    0 14px 30px rgba(28,107,255,.12),
    0 10px 22px rgba(0,0,0,.22);
}
.exercise.is-current .chev{
  border-right-color: rgba(91,203,255,.75);
  border-bottom-color: rgba(91,203,255,.75);
}

.mood{ display:grid; gap: 12px; }
.mood-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 16px 14px;
  border-radius: 22px;
}
.emoji{ font-size: 18px; filter: saturate(1.05); }
.soft-cta{
  margin-top: 14px;
  text-align:center;
  color: rgba(234,242,255,.72);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: -.1px;
}

.home-indicator{
  position:absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  border-radius: 99px;
  background: rgba(234,242,255,.18);
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
  opacity:.85;
}

.btn:focus-visible, .seg:focus-visible, .exercise:focus-visible{
  outline: 2px solid rgba(91,203,255,.35);
  outline-offset: 2px;
}

.player{ animation: none; }
.player.is-bump{ animation: bump .18s ease-out; }
@keyframes bump{
  from{ transform: translateY(2px); }
  to{ transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition:none !important; }
}

@media (max-width: 360px){
  .h1{ font-size: 27px; }
  .seg{ min-width: 100px; }
  .device{ border-radius: 34px; }
}

/* =========================
   Exercise video (square) — premium
   ========================= */

.ex-media{
  width: 46%;
  min-height: 150px;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  display:flex;

  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.08),
    0 16px 40px rgba(0,0,0,.35);
}

.ex-media::after{
  content:"";
  position:absolute; inset:-20%;
  background: radial-gradient(circle at 25% 20%, rgba(120,200,255,.18), transparent 55%);
  pointer-events:none;
}

.ex-video{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 20%;
  filter: contrast(1.02) saturate(1.02);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

/* =========================
   QUIZ (modal) — premium
   ========================= */

.quiz-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.06), transparent);
}

.quiz-step{
  font-weight: 900;
  letter-spacing: -.2px;
  font-size: 13px;
  color: rgba(234,242,255,.85);
}

.quiz-progress{
  flex:1;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  overflow:hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}

.quiz-bar{
  height:100%;
  width:0%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(91,203,255,.95), rgba(28,107,255,.85));
  box-shadow: 0 10px 24px rgba(28,107,255,.18);
  transition: width .25s ease;
}

.quiz-body{
  padding: 16px;
}

.quiz-title{
  font-weight: 950;
  letter-spacing: -.3px;
  font-size: 16px;
  margin: 0 0 6px;
}

.quiz-sub{
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.quiz-options{
  display:grid;
  gap: 10px;
  margin-top: 10px;
}

.btn.quiz-opt{
  text-align:left;
  justify-content:flex-start;
  border-radius: 18px;
  padding: 14px 14px;
}

.btn.quiz-opt.is-selected{
  background:
    radial-gradient(260px 90px at 30% 20%, rgba(91,203,255,.45), transparent 60%),
    linear-gradient(180deg, rgba(46,155,255,.45), rgba(28,107,255,.22));
  border-color: rgba(91,203,255,.35);
  box-shadow: 0 18px 40px rgba(28,107,255,.14), 0 12px 26px rgba(0,0,0,.22);
}

.quiz-actions{
  margin-top: 14px;
  display:flex;
  gap: 10px;
}
.quiz-actions .btn{ flex: 1; }

.quiz-actions .btn:disabled{
  opacity: .45;
  cursor: not-allowed;
}

/* =========================================================
   ✅ ADD-ON: soporte para nuevos modales (sin cambiar el look)
   - .quiz-head (tu HTML actual lo usa)
   - links del modal "Más"
   - selección de botones en "Editar" (ya cubierto, pero lo dejamos seguro)
========================================================= */

.quiz-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}

.link{
  color: rgba(91,203,255,.95);
  text-decoration: none;
  font-weight: 800;
}
.link:active{ opacity:.9; }
.link:focus-visible{
  outline: 2px solid rgba(91,203,255,.35);
  outline-offset: 2px;
  border-radius: 10px;
}

/* Si quieres que los bloques del modal "Más" se sientan clicables */
.modal .card.glass{
  transition: transform .12s ease, border-color .12s ease;
}
.modal .card.glass:active{
  transform: translateY(1px);
}
:root{
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --app-top: calc(var(--safe-top) + 16px);
  --app-bottom: calc(var(--safe-bottom) + 16px);
}

/* La base: que SIEMPRE haya margen arriba/abajo en móvil */
body{
  padding-top: var(--app-top);
  padding-bottom: var(--app-bottom);
}

/* Si tienes un contenedor principal, mejor aún:
   intenta que se centre y nunca se pegue arriba */
.app, .app-wrap, .container, main{
  min-height: calc(100vh - var(--app-top) - var(--app-bottom));
  display: flex;
  flex-direction: column;
  justify-content: center; /* centra vertical suave */
}
/* ===== MOBILE: pantalla completa, sin “marco de móvil” ===== */
@media (max-width: 520px), (pointer: coarse) {
  .shell{
    padding: 0 !important;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .device{
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;

    min-height: 0 !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;

    /* evita recortes raros */
    overflow: hidden;
  }

  /* opcional: respeta notch / barra home */
  .app{
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
  }
}
