/* ======================
   RESET
====================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ======================
   VARIÁVEIS
====================== */
:root {
  --cinza:   #696969;
  --beige:   #F1EDE9;
  --escuro:  #1c1c1c;
  --claro:   #ede8df;
  --ouro:    #d4920a;
  --titulo:  'Gajraj One', serif;
  --corpo:   'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cinza);
  font-family: var(--corpo);
  color: var(--claro);
}

img   { display: block; width: 100%; }
a     { text-decoration: none; color: inherit; }

/* ======================
   NAVBAR
====================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 24px;
  background: rgba(45, 45, 45, 0.93);
  backdrop-filter: blur(8px);
  font-family: var(--corpo);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.nav-right     { display: flex; gap: 26px; }
.nav-link      { opacity: 0.80; transition: opacity .2s; }
.nav-link:hover{ opacity: 1; }

/* ======================
   PAGE
====================== */
.page {
  max-width: 620px;
  margin: 0 auto;
  padding-top: 38px;
}

/* ======================
   HERO
====================== */
.hero {
  display: flex;
  align-items: stretch;
  margin: 14px 14px 10px;
  gap: 10px;
}

/* Painel bege esquerdo com "125" vertical */
.hero-left {
  width: 90px;
  flex-shrink: 0;
  background: var(--beige);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-number {
  font-family: var(--titulo);
  font-size: 105px;
  line-height: 0.88;
  color: var(--escuro);           /* texto escuro sobre fundo bege */
  letter-spacing: -3px;
  writing-mode: vertical-lr;
  transform: rotate(180deg);      /* lê de baixo pra cima: 1 no topo, 2 no meio, 5 embaixo */
  user-select: none;
}

/* Foto direita */
.hero-right {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  cursor: pointer;
}

.hero-right img {
  height: 300px;
  object-fit: cover;
  object-position: center top;
  background: #555;
  transition: opacity .2s;
}

.hero-right:hover img { opacity: .87; }

/* ======================
   FLASH DAY
====================== */
.flash-wrap { margin: 0 14px 10px; }

.flash-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 305px;
  background: #3a3a3a;
}

.flash-link {
  display: block;
  height: 100%;
  cursor: pointer;
}

.flash-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: opacity .2s;
}

.flash-link:hover .flash-img { opacity: .87; }

.flash-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 20px 22px;
  background: linear-gradient(transparent, rgba(0,0,0,.4));
  text-align: center;
  pointer-events: none;
}

.flash-title {
  font-family: var(--titulo);
  font-size: 66px;
  color: var(--beige);
  letter-spacing: 3px;
  line-height: 1;
}

.flash-sub {
  font-family: var(--corpo);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .22em;
  color: var(--beige);
  margin-top: 5px;
  opacity: .9;
}

/* ======================
   CTA CARD
====================== */
.cta-wrap { margin: 0 14px 10px; }

.cta-card {
  background: var(--beige);
  border-radius: 14px;
  padding: 22px 18px;
  display: flex;
  align-items: center;
  color: var(--escuro);
}

.cta-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
}

.cta-sep {
  width: 1px;
  height: 88px;
  background: rgba(0,0,0,.15);
  flex-shrink: 0;
  margin: 0 6px;
}

.cta-label {
  font-family: var(--titulo);
  font-size: 12px;
  letter-spacing: .02em;
  line-height: 1.2;
}

.cta-value {
  font-family: var(--titulo);
  font-size: 14px;
  line-height: 1.3;
}

.cta-looks {
  font-family: var(--titulo);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}

.btn-eu-quero {
  display: inline-block;
  margin-top: 5px;
  padding: 6px 18px;
  background: #9e9e9e;
  color: #fff;
  font-family: var(--corpo);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  border-radius: 3px;
  transition: background .2s, transform .15s;
}

.btn-eu-quero:hover { background: #6a6a6a; transform: translateY(-1px); }

/* ======================
   VOCÊ A SUA CARA
====================== */
.voce-section {
  text-align: center;
  padding: 28px 14px 14px;
}

.voce-title {
  font-family: var(--corpo);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .18em;
  color: var(--claro);
  margin-bottom: 13px;
}

.dots        { display: flex; justify-content: center; gap: 9px; }
.dot         { width: 26px; height: 26px; border-radius: 50%; }
.dot-w       { background: #ede8df; }
.dot-g       { background: #b4b4b4; }
.dot-b       { background: #1c1c1c; }
.dot-o       { background: #e8a020; }

/* ======================
   GALERIA
====================== */
.gallery {
  padding: 14px 14px 0;
}

.g-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  align-items: start;
}

.g-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Foto escura — col 1 e col 3 */
.g-photo {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.g-dark {
  background: #4a4a4a;
}

/* Foto clara (polaroid bege) — col 2 */
.g-beige {
  background: var(--beige);
  padding: 7px;
}

/* Foto loira levemente deslocada para direita */
.g-offset {
  margin-left: 10px;
}

.g-photo img {
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
  background: #666;
  transition: opacity .2s;
}

.g-photo:hover img { opacity: .85; }

.g-text {
  font-family: var(--corpo);
  font-size: 10.5px;
  font-weight: 400;
  line-height: 1.68;
  color: var(--claro);
  text-align: justify;
}

/* ======================
   FOOTER
====================== */
.footer {
  text-align: center;
  padding: 48px 14px 72px;
}

.footer-title {
  display: inline-block;
  font-family: var(--titulo);
  font-size: 54px;
  color: var(--ouro);
  letter-spacing: 1px;
  transition: opacity .2s;
}

.footer-title:hover { opacity: .8; }

/* ======================
   MOBILE
====================== */
@media (max-width: 480px) {
  .hero-left        { width: 66px; }
  .hero-number      { font-size: 76px; }
  .hero-right img   { height: 220px; }
  .flash-card       { height: 220px; }
  .flash-title      { font-size: 44px; }
  .cta-card         { flex-direction: column; gap: 14px; }
  .cta-sep          { width: 60%; height: 1px; margin: 0; }
  .g-grid           { grid-template-columns: 1fr 1fr; }
  .g-col:nth-child(3){ display: none; }
  .footer-title     { font-size: 36px; }
}
