* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  background: url("SUA-IMAGEM-DE-BACKGROUND.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(68, 32, 110, 0.95) 0%,
    rgba(123, 59, 163, 0.85) 50%,
    rgba(255, 90, 165, 0.65) 100%
  );
}

.hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.hero-content {
  max-width: 600px;
  color: #fff;
}

.logo {
  margin-bottom: 20px;
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #ff5aa5;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  background: #ff5aa5;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-button:hover {
  background: #ff2e8b;
  transform: translateY(-2px);
}

/* RESPONSIVO */
@media (max-width: 768px) {
	
  .hero-content {
      margin-top:-40px;
  }
  
	
  .hero h1 {
    font-size: 23px;
  }

  .hero p {
    font-size: 16px;
  }
 
}

/* LOGO */ 

.logo-img {
  width: 220px;
  max-width: 100%;
  height: auto;
  margin-bottom: -5px;
}

.hero-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* IMAGEM DAS LATAS HERO */
.hero-image {
  position: absolute;
  right: 40px;
  bottom: 0;
  top: 0;
  display: flex;
  align-items: center;
}

.hero-image img {
  width: 420px;
  max-width: none;
  height: auto;
}

/* AJUSTE ESPECIAL PARA MOBILE (EFEITO “FORA DA TELA”) */

@media (max-width: 768px) {

  .hero-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-image {
    position: absolute;
    right: -210px;   /* empurra pra fora da tela */
    top: 20%;
    transform: translateY(-50%);
  }

  .hero-image img {
    width: 360px;   /* maior no mobile */
  }

}