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



:root {
 
  --header-h: 84px;

}

html, body {
      overscroll-behavior-y: auto;
  overscroll-behavior-x: none;
      width: 100%;
  max-width: 100%;
  overflow-x: hidden;

  background: #050505;
  color: #f2f2f2;
  font-family: Inter, system-ui, sans-serif;
}

/* TEXTURA */
body::before {
  content: "";
 
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* ================= HEADER ================= */
header {
 
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

/* Logo */
.logo img {
  height: 64px;
  display: block;
}

/* ================= NAV DESKTOP ================= */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.desktop-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color .3s;
}

.desktop-nav a:hover {
  color: var(--accent);
}

/* ================= BOTÃO MOBILE ================= */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 12vh 6vw 6vw;
  display: flex;
  align-items: flex-end;
}

.hero h1 {
  font-size: clamp(64px, 10vw, 180px);
  line-height: 0.9;
  font-weight: 800;
}

.hero span {
  display: block;
}

/* TEXTO */
.manifesto {
  padding: 6vw;
  max-width: 900px;
  font-size: 15px;
  color: #aaa;
}

/* SEÇÕES */
.section {
  padding: 6vw 0;
  position: relative;
}

.section-label {
  position: absolute;
  left: 6vw;
  top: 0;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #666;
}




/* STRIP */


.strip {
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE / Edge antigo */
}

.strip::-webkit-scrollbar {
  display: none; /* Chrome, Safari, mobile */
}
.strip {
  position: relative;

  display: flex;
  gap: 8px;

  width: 100%;
  padding: 4vh 6vw; /* ISSO RESOLVE O DESKTOP */

  overflow-x: auto;
  overflow-y: hidden;

  scrollbar-width: none;
  -ms-overflow-style: none;

  scroll-snap-type: x proximity;
}

.strip::-webkit-scrollbar {
  display: none;
}


.strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.strip a:hover img {
  transform: scale(1.05);
}

/* IDENTIDADE */
.identity {
  padding: 8vw 6vw;
}

.identity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}


.identity-item img {
  width: 100%;
  height: auto;
  display: block;
}

.identity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;

  max-width: 1200px;   /* ← CONTROLE DE TAMANHO */
  margin: 0 auto;      /* ← centraliza */
}


.identity-item a {
  text-decoration: none; /* tira o sublinhado */
  color: inherit;        /* tira o azul */
}


.identity-item {
  width: 100%;
}

.identity-item a {
  display: block;
  width: 100%;
}

.identity-item img {
  width: 100%;
  height: auto;
  display: block;
}





@media (max-width: 768px) {
  .page-transition {
    pointer-events: none !important;
    touch-action: none;
  }
}


@media (max-width: 540px) {
  .identity-grid {
    grid-template-columns: 1fr;
  }
}


/* MOBILE */
@media (max-width: 768px) {
  .strip {
    padding: 4vh 4vw;
  }

 
  .identity-grid {
    grid-template-columns: 1fr;
  }
  


.strip a {
  flex: 0 0 auto;
  width: clamp( 49vw, 260px);
  height: 42vh;
}


.strip a:hover img {
  transform: scale(1.03);
}

.hero {
  min-height: 10vh;
  padding: 12vh 6vw 6vw;
  display: flex;
  align-items: flex-end;
}

.hero h1 {
  font-size: clamp(60px, 10vw, 10px);
  line-height: 0.9;
  font-weight: 800;
}


}




/* =========================
   ENTRADA ANIMADA (EDITORIAL)
========================= */

.strip {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.strip.is-visible {
  opacity: 1;
  transform: translateY(0);
}



.page-transition {
  position: fixed;
  inset: 0;
  background: #050505;
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  transition: opacity .6s ease;
}

.page-transition.active {
  opacity: 1;
  pointer-events: all;
}

body {
  touch-action: pan-y;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}


/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu {
     position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: rgba(0,0,0,.95);
    transform: translateX(100%);
    transition: transform .4s ease;
    padding: calc(var(--header-h) + 20px) 20px;
    z-index: 1100;
  }

  .menu.active {
    transform: translateX(0);
  }

  .menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .close-btn {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 2.2rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
  }

  .card {
    grid-template-columns: 1fr;
  }
}
/* =====================================================
   FIX DEFINITIVO — INSTAGRAM WEBVIEW + MOBILE
===================================================== */


/* Header estável (Instagram bug fix) */
header {
 
  will-change: transform;
  backface-visibility: hidden;
}

/* Menu mobile só existe no mobile */
.menu {
  display: none;
}

@media (max-width: 768px) {
  .menu {
    display: block;
    height: var(--real-vh);
  }
}

/* Evita animação durante resize (estralo) */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}

/* Instagram dispara resize falso — trava animação */
@media (max-width: 768px) {
  .menu,
  header,
  .desktop-nav {
    transition-property: transform, opacity;
  }
}

/* Nunca mostrar menu-toggle fora do mobile */
@media (min-width: 769px) {
  .menu-toggle {
    display: none !important;
  }

  .menu {
    transform: translateX(100%) !important;
  }
}

/* Previne abertura acidental ao redimensionar */
.menu:not(.active) {
  pointer-events: none;
}

.menu.active {
  pointer-events: auto;
}






/* ===========================
   FOOTER (FIXADO CORRETAMENTE)
=========================== */
.footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 2rem 1.5rem;
  flex-shrink: 0;
}

.footer .social img {
  width: 24px;
  margin: 0 6px;
  filter: invert(1);
  opacity: 0.8;
  transition: 0.2s;
}

.footer .social img:hover {
  opacity: 1;
}

.footer-links {
  list-style: none;
  margin: 1rem 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 11px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}
.footer-p{
font-size: 11px;
}




