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

html, body {
  height: 100%;
}

body {
  font-family: Arial, sans-serif;
  color: #000;
}

/* Hero com fundo */
.hero {
  min-height: 100vh;
  background: url("images/bg-tattoo.svg") no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: flex-start;
  align-items: center;       /* <<< centraliza horizontal */
  padding: 40px;
  position: relative;
}

/* Área do topo */
.top-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 20px;
  margin: 0 auto;            /* <<< centraliza bloco */
  position: relative;
  z-index: 2;
}

/* Logo Tattoo */
.logo {
  width: 40vw;
  max-width: 1000px;
  height: auto;
  margin-left: -530px;   /* manete horizontal */
  margin-top: 50px;      /* manete vertical */
}

/* WhatsApp */
.whatsapp {
  margin-top: 40px;
  margin-left: -395px; /* manete horizontal */
  position: relative;
  z-index: 2;
}

.whatsapp img {
  max-width: 480px;
  height: auto;
}

/* Stores */
.stores {
  margin-top: -10px;
  margin-left: -520px; /* manete horizontal */
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.stores img {
  max-width: 720px;
  height: auto;
}

/* Redes sociais */
.socials {
  margin-top: 0px;
  margin-left: -520px; /* manete horizontal */
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.socials img {
  max-width: 90px;
  height: auto;
}

/* Telefone - Desktop à direita */
.phone {
  position: absolute;
  bottom: 0px;  /* manete vertical */
  right: -700px;   /* manete horizontal */
  width: 40vw;
  max-width: 800px;
  min-width: 300px;
  height: auto;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Transição sumir para baixo */
@media (max-width: 1600px) {
  .phone { opacity: 0.9; transform: translateY(20px); }
}
@media (max-width: 1400px) {
  .phone { opacity: 0.6; transform: translateY(60px); }
}
@media (max-width: 1200px) {
  .phone { opacity: 0.3; transform: translateY(100px); }
}
@media (max-width: 1000px) {
  .phone { opacity: 0.1; transform: translateY(160px); }
}
@media (max-width: 850px) {
  .phone { opacity: 0; pointer-events: none; }
}

/* Responsivo Intermédio (769px–1200px) */
@media (max-width: 1200px) and (min-width: 769px) {
  .top-section,
  .logo,
  .whatsapp,
  .stores,
  .socials {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .logo {
    width: 50vw;          
    max-width: 500px;     
    margin-top: 40px;
  }

  .whatsapp img {
    width: 60vw;
    max-width: 300px;
  }

  .stores img {
    width: 50vw;
    max-width: 280px;
  }

  .socials img {
    width: 8vw;
    max-width: 60px;
  }

  .phone {
    right: -200px;        
    bottom: -300px;       
    width: 35vw;
    max-width: 400px;
  }
}

/* Responsivo Mobile */
@media (max-width: 768px) {
  .hero {
    padding: 5vh 5vw;
    align-items: center;
    text-align: center;
  }

  .top-section {
    align-items: center;
    margin: 0 auto;
  }

  /* Logo */
  .logo {
    width: 100vw;
    max-width: 360px;
    margin-top: 20px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
  }

  /* WhatsApp */
  .whatsapp {
    margin-top: -20px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .whatsapp img {
    width: 90vw;
    max-width: 320px;
  }

  /* Stores */
  .stores {
    align-items: center;
    gap: 15px;
    margin-top: -20px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .stores img {
    width: 105vw;
    max-width: 350px;
  }

  /* Redes sociais */
  .socials {
    justify-content: center;
    gap: 15px;
    margin-top: -20px;
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
  }

  .socials img {
    width: 44vw;
    max-width: 60px;
  }

  /* Phone */
  .phone {
    position: static;
    width: 95vw;
    max-width: 300px;
    margin-top: 10px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
    transform: none;
  }
}

/* Landscape (horizontal) para tablets/mobiles */
@media (orientation: landscape) and (max-width: 1024px) {
  .top-section,
  .logo,
  .whatsapp,
  .stores,
  .socials,
  .phone {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center;
  }

  .logo { max-width: 45vw; }
  .whatsapp img { max-width: 35vw; }
  .stores img { max-width: 30vw; }
  .socials img { max-width: 8vw; }
  .phone { max-width: 40vw; }
}