@font-face{
  font-family:"Bw Modelica SS02";
  src:url("assets/BwModelicaSS02-Medium.otf") format("opentype");
  font-weight:500;
  font-style:normal;
}

:root {
  --bg: #B6CCC3;
  --text: #626267;
  --text-dark: #4F5054;
  --white: #FFFFFF;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  overflow: hidden;
  font-family: "Bw Modelica SS02", -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
}

/* TV LG em pé, navegador landscape: canvas vertical girado para esquerda */
.stage {
  position: absolute;
  width: 100vh;
  height: 100vw;
  top: 100vh;
  left: 0;
  transform-origin: top left;
  transform: rotate(-90deg);
  background: linear-gradient(180deg, #BBD1C8 0%, var(--bg) 58%, #AEC6BB 100%);
  overflow: hidden;
}

.bg-mark { display: none !important; }

.logo {
  position: absolute;
  z-index: 10;
  top: 4.8vw;
  left: 50%;
  width: 30vh;
  max-height: 12vw;
  transform: translateX(-50%);
  object-fit: contain;
}

.screen {
  position: absolute;
  inset: 0;
  z-index: 2;
  transition: opacity 650ms ease, transform 650ms ease, filter 650ms ease;
}

.hidden {
  opacity: 0;
  transform: translateY(14px) scale(.992);
  pointer-events: none;
  filter: blur(1.2px);
}

.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.exiting {
  opacity: 0;
  transform: translateY(-14px) scale(.992);
  filter: blur(1.2px);
}

/* Lista principal */
.screen-list {
  top: 34vw;
  left: 7vh;
  right: 5vh;
  height: auto;
}

.screen-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.screen-list li {
  position: relative;
  margin: 0 0 2.05vw;
  padding-left: 5vh;
  font-size: 5.55vh;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.12vh;
  color: var(--text);
  transition: opacity 420ms ease, transform 420ms ease, color 420ms ease;
}

.screen-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -0.2vw;
  font-size: 5.35vh;
}

.screen-list li.dim {
  opacity: .62;
  color: #626267;
}

.screen-list li.highlight {
  opacity: 1;
  color: #48494D;
  transform: translateX(1.2vh);
}

.screen-area { display: none; }

/* Card */
.profile {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 23.2vw;
}

.card {
  width: 68vh;
  min-height: 56vw;
  border-radius: 5.8vh;
  background: var(--white);
  padding: 2.25vh 2.25vh 2.35vw;
  box-shadow:
    0 1.8vw 4.2vw rgba(55, 70, 65, .14),
    0 1px 0 rgba(255,255,255,.55) inset;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.photo-frame {
  width: 63.5vh;
  height: 45.5vh;
  border-radius: 4.8vh;
  overflow: hidden;
  background: #f4f4f4;
  flex: 0 0 auto;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.018);
  animation: photoZoom 9.5s ease-in-out infinite alternate;
  opacity: 1;
}

.photo-frame img[data-photo="clara.jpg"] { object-position: 51% 38%; }
.photo-frame img[data-photo="ana-laura.jpg"] { object-position: 52% 42%; }
.photo-frame img[data-photo="bruna.jpg"] { object-position: 50% 25%; }
.photo-frame img[data-photo="patricia.jpg"] { object-position: 50% 35%; }
.photo-frame img[data-photo="leticia.jpg"] { object-position: 50% 25%; }
.photo-frame img[data-photo="gabriela.jpg"] { object-position: 50% 34%; }

.tag {
  margin-top: 1.15vw;
  padding: .58vw 2.25vh;
  border-radius: 999px;
  background: #EEF4F1;
  border: 1.5px solid #C8D7D0;
  color: #6D7F77;
  font-size: 2.45vh;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .03vh;
}

#name {
  width: 100%;
  margin: 1.28vw 0 .45vw;
  text-align: center;
  color: #626267;
  font-size: 4.95vh;
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.08vh;
  white-space: nowrap;
}

#register {
  min-height: 2.8vw;
  color: #626267;
  font-size: 2.8vh;
  line-height: 1.16;
  font-weight: 500;
  letter-spacing: .10vh;
  text-align: center;
  white-space: pre-line;
}

#items {
  width: 100%;
  margin: 1.25vw 0 0;
  padding: 0 0.7vh 0 4.8vh;
}

#items li {
  color: #626267;
  font-size: 2.95vh;
  line-height: 1.30;
  font-weight: 500;
  margin-bottom: .62vw;
  padding-left: .45vh;
  white-space: pre-line;
  overflow-wrap: normal;
  word-break: normal;
}

@keyframes photoZoom {
  from { transform: scale(1.018); }
  to { transform: scale(1.052); }
}
