:root{
  --bg: #0c0c0c;
  --text: #ffffff;
  --muted: #d9d9d9;
  --line: rgba(255,255,255,0.35);
}

*{ box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body{
  font-family: "Montserrat", sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* ====== HERO ====== */
.hero{
  position: relative;
  min-height: 100vh;
  background: url("Imagens/tatoo_02.png") center/cover no-repeat;
  display: grid;
  grid-template-rows: auto 1fr;
}

.hero__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 0;
}

/* ====== LOGO ====== */
.header{
  position: relative;
  z-index: 2;
  padding: 30px 60px;
}

.brand{
  color: var(--text);
  text-decoration: none;
  font-family: "Great Vibes", cursive; /* fonte estilo caligrafia */
  font-size: 2.8rem;
  line-height: 1.2;
}

/* ====== CONTEÚDO ====== */
.content{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 6vw;
}

/* Subdivisão da marca em duas partes 

.brand__top{
  font-family: "Playfair Display", serif;
  font-size: clamp(18px, 2.2vw, 28px);
  letter-spacing: 2px;
}

.brand__bottom{
  font-family: "Playfair Display", serif;
  font-size: clamp(18px, 2.2vw, 28px);
  letter-spacing: 6px;
}

*/


/* ====== Conteúdo em duas colunas ====== */
.content{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: min(6vw, 64px);
  padding: 4vh 6vw 6vh;
}

/* Coluna esquerda */
.left{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  max-width: 720px;
}

.title{
  margin: 2vh 0 24px;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-size: clamp(38px, 8vw, 80px);
  line-height: 0.95;
}

.social{
  display: flex;
  gap: 22px;
  margin: 10px 0 26px;
}

.social__icon{
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid var(--text);
  color: var(--text);
  transition: transform .2s ease, background .2s ease;
}
.social__icon:hover{ transform: translateY(-2px); background: rgba(255,255,255,.1); }
.social__icon svg{ width: 20px; height: 20px; fill: currentColor; }

.tagline{
  max-width: 46ch;
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 18px);
  margin: 0 0 22px;
}

.subtagline{
  font-weight: 700;
  font-size: clamp(15px, 1.4vw, 20px);
  text-transform: none;
}

/* Coluna direita */
.right{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.right__title{
  font-weight: 700;
  font-size: clamp(18px, 2vw, 26px);
  margin: 0 0 22px;
}

.menu{
  width: min(520px, 90%);
  display: flex;
  flex-direction: column;
}

.menu__item{
  position: relative;
  padding: 18px 0;
  text-decoration: none;
  color: var(--text);
  font-size: clamp(18px, 1.7vw, 28px);
  font-weight: 700;
  letter-spacing: .5px;
  border-bottom: 1px solid var(--line);
  transition: opacity .2s ease, transform .2s ease;
}
.menu__item:first-child{ border-top: 1px solid var(--line); }
.menu__item:hover{ opacity: .85; transform: translateX(4px); }

/* ====== Responsividade ====== */
@media (max-width: 980px){
  .content{
    grid-template-columns: 1fr;
    padding-top: 3vh;
  }
  .right{
    margin-top: 20px;
  }
  .menu__item{
    font-size: clamp(18px, 4.8vw, 24px);
  }
}

/* Blog CSS - Variáveis específicas do blog */
:root{
  --blog-ink: #111111;       /* texto principal */
  --blog-paper: #ffffff;     /* fundo branco */
  --blog-muted: #6b6b6b;     /* texto leve */
  --blog-line: #e9e9e9;      /* linhas sutis */
  --blog-panel: #0f0f12;     /* cabeçalho escuro */
}

/* ====== CONTÊINER GERAL ====== */
.story{
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
}

.frame{
  width: min(96vw, 700px);
  background: var(--blog-paper);
  box-shadow: 0 10px 40px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
}

/* ====== CABEÇALHO ESCURO ====== */
.story .header{
  background: var(--blog-panel);
  color: #fff;
  text-align: center;
  padding: 50px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.chip{
  display: inline-block;
  background: #fff;
  color: var(--blog-ink);
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 0.6em 1.2em;
  border-radius: 999px;
}

.story .mark{
  margin: 0;
  font-weight: 800;
  font-size: clamp(30px, 6vw, 64px);
  letter-spacing: .06em;
  line-height: 1;
  color: #fff;
}

.story h3.mark{
  font-size: clamp(16px, 3vw, 24px);
  font-weight: 600;
  opacity: 0.8;
  margin-top: 8px;
}

/* ====== CONTEÚDO PRINCIPAL ====== */
.story .main{
  padding: clamp(24px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--blog-paper);
  color: var(--blog-ink);
}

.story .kicker{
  margin: 0;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: clamp(16px, 2.2vw, 22px);
  color: var(--blog-ink);
}

.story .text{
  display: grid;
  gap: 16px;
  border-top: 1px solid var(--blog-line);
  border-bottom: 1px solid var(--blog-line);
  padding: 20px 0;
}

.story .text p{
  margin: 0;
  color: var(--blog-muted);
  font-size: clamp(14px, 1.8vw, 18px);
  text-align: justify;
}

.story .foot{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.story .handle{
  color: var(--blog-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ====== IMAGENS DO BLOG ====== */
.blog-image{
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 48px;
  margin: 16px auto;
  display: block;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

/* ====== RESPONSIVO ====== */
@media (max-width: 520px){
  .header{
    padding: 40px 20px 50px;
  }
  .mark{
    font-size: clamp(26px, 8vw, 52px);
  }
  .blog-image{
    max-width: 100%;
  }
}