/* Template compartilhado dos screenshots Eskolare
   Tamanho oficial iPhone 6.9" (App Store): 1320 × 2868 px
   ----------------------------------------------------- */

@import url('https://use.typekit.net/ibv2cpi.css');

:root {
  --shot-w: 1320px;
  --shot-h: 2868px;
  --c-sky:   #BFE8F8;
  --c-cream: #F8F4F1;
  --c-blue:  #1F48B1;
  --c-ink:   #0A1B3D;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: #111;
  font-family: "stevie-sans", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.shot {
  width: var(--shot-w);
  height: var(--shot-h);
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 220px 100px 0;
}

/* Headline */
.shot__headline {
  font-size: 160px;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-align: center;
  width: 100%;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.shot__headline em {
  font-style: normal;
  font-weight: inherit;
  opacity: 1;
}

/* Mockup do phone (área para inserir screenshot real do app) */
.shot__phone {
  margin-top: 160px;
  width: 940px;
  aspect-ratio: 9 / 19.5;
  border-radius: 80px;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shot__phone img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Variantes de fundo */
.shot.is-sky   { background: var(--c-sky);   color: #000000; }
.shot.is-cream { background: var(--c-cream); color: #000000; }
.shot.is-blue  { background: var(--c-blue);  color: #fff; }
