/* ==========================================================================
   1 Spray Paint — "The World Wide Graffiti Cartel"
   Página inicial (em construção)
   ========================================================================== */

:root{
  --black: #000000;
  --white: #ffffff;
  --serif: Georgia, 'Times New Roman', Times, serif;
  --sans: Arial, Helvetica, sans-serif;
}

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

html, body{
  width: 100%;
  background: var(--black);
  color: var(--white);
}

body{
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{
  display: block;
  max-width: 100%;
}

/* ----------------------------------------------------------------------
   Header
   ---------------------------------------------------------------------- */

.site-header{
  background: var(--black);
  width: 100%;
  padding: 1.6rem clamp(1.2rem, 4vw, 3rem);
  display: flex;
  align-items: center;
}

.site-header .logo{
  height: clamp(42px, 6.3vw, 63px);
  width: auto;
}

/* ----------------------------------------------------------------------
   Hero — vídeo de fundo com as caixas de texto sobrepostas
   ---------------------------------------------------------------------- */

.hero{
  position: relative;
  width: 100%;
  height: 78vh;
  min-height: 420px;
  max-height: 900px;
  overflow: hidden;
  background: var(--black);
}

.hero-video{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.hero-overlay{
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.box{
  position: absolute;
  left: 26.8%;
  width: 54.6%;
  min-width: 280px;
  height: auto;
}

.box-top{
  top: 24.72%;
}

.box-bottom{
  top: 58.43%;
}

/* ----------------------------------------------------------------------
   Footer
   ---------------------------------------------------------------------- */

.site-footer{
  background: var(--black);
  width: 100%;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.2rem, 4vw, 3rem) clamp(3rem, 7vw, 5rem);
}

.footer-top{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem 1.5rem;
}

.brand-headline{
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.01rem, 4.43vw, 3.64rem);
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: var(--white);
  white-space: nowrap;
}

.specs-list{
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  line-height: 1.9;
  color: var(--white);
}

.specs-list li{
  position: relative;
  padding-left: 1.2em;
}

.specs-list li::before{
  content: "\2022";
  position: absolute;
  left: 0;
}

.footer-bottom{
  margin-top: clamp(3rem, 8vw, 6rem);
}

.contact-title{
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.2rem);
}

.quote{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  margin-bottom: 1.4rem;
}

.soon{
  font-family: var(--serif);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.45;
  max-width: 16ch;
}

/* ----------------------------------------------------------------------
   Responsivo — tablets
   ---------------------------------------------------------------------- */

@media (max-width: 900px){
  .brand-headline{
    white-space: normal;
  }
}

/* ----------------------------------------------------------------------
   Responsivo — celulares
   ---------------------------------------------------------------------- */

@media (max-width: 640px){

  .hero{
    height: 46vh;
    min-height: 260px;
  }

  .box{
    left: 6%;
    width: 88%;
    min-width: 0;
  }

  .box-top{
    top: 30.05%;
  }

  .box-bottom{
    top: 56.65%;
  }

  .footer-top{
    flex-direction: column;
    gap: 2.2rem;
  }

  .specs-list{
    line-height: 1.8;
  }
}

@media (max-width: 380px){
  .hero{
    height: 40vh;
    min-height: 220px;
  }
}

/* ----------------------------------------------------------------------
   Acessibilidade — respeita preferência de movimento reduzido
   ---------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce){
  .hero-video{
    animation: none;
  }
}
