/* =========================================================
   LP Giovanni — grupo gratuito no Telegram
   Layout espelhado da referência (hero + rodapé legal)
   Breakpoints: desktop | <=1024px tablet | <=767px mobile
   ========================================================= */

:root {
  --bg:        #0F1610;
  --green:     #9FE500;
  --green-dark:#8ACB00;
  --white:     #FFFFFF;
  --gray-text: #B0B4B0;
  --gray-legal:#A4A4A4;
  --cta:       #9FE500;
  --cta-text:  #0F1610;
  --container: 1140px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
p { margin: 0; }
h1 { margin: 0; font-weight: 400; }
a { color: inherit; }

:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  display: flex;
  padding: 80px 0;
  background-color: var(--bg);
  overflow: hidden;
  z-index: 2;
}

/* foto do Giovanni ocupando o lado direito, dissolvendo no fundo */
.hero-photo {
  position: absolute;
  inset: 0 0 0 auto;
  width: 58%;
  pointer-events: none;
  user-select: none;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 16%;
  filter: brightness(.86) contrast(1.06) saturate(.98);
  -webkit-mask-image: radial-gradient(ellipse 72% 86% at 56% 44%, #000 42%, rgba(0,0,0,.4) 68%, transparent 88%);
          mask-image: radial-gradient(ellipse 72% 86% at 56% 44%, #000 42%, rgba(0,0,0,.4) 68%, transparent 88%);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(15,22,16,.72) 26%, rgba(15,22,16,.18) 58%, rgba(15,22,16,.42) 100%),
    linear-gradient(180deg, rgba(15,22,16,.35) 0%, transparent 30%, rgba(15,22,16,.55) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
}

.hero-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 50%;
}

/* ---- tipografia do hero ---- */
.kicker {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2em;
  color: var(--green);
}
.kicker-2 { font-size: 38px; }

.title {
  margin-top: 10px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 120px;
  font-weight: 400;
  line-height: .8em;
  color: var(--white);
}

.lead {
  max-width: 420px;
  margin: 32px 0 24px;
  font-size: 20px;
  font-weight: 400;
  color: var(--gray-text);
}

/* ---- botão ---- */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 440px;
  margin-top: 30px;
  padding: 20px 40px;
  background-color: var(--cta);
  border: 1px solid var(--cta);
  border-radius: 12px;
  color: var(--cta-text);
  font-family: inherit;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  text-wrap: balance;
  box-shadow: 0 0 21px -6px var(--cta);
  animation: pisca 1.5s infinite;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}
.btn:hover,
.btn:focus {
  background-color: var(--green-dark);
  border-color: var(--green-dark);
  color: #000000;
}

@keyframes pisca {
  0%, 100% { box-shadow: 0 0 21px -6px var(--cta); }
  50%      { box-shadow: 0 0 34px 2px rgba(159, 229, 0, .55); }
}

.micro {
  width: 100%;
  max-width: 440px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  color: var(--gray-text);
}

/* =========================================================
   RODAPÉ LEGAL
   ========================================================= */
.legal {
  position: relative;
  z-index: 2;
  padding: 20px 0;
  background-color: var(--bg);
  border-top: 1px solid #0000001C;
}
.legal-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}
.legal-icon {
  flex: none;
  display: block;
  width: 40px;
  height: 40px;
  color: var(--gray-legal);
}
.legal-icon svg { width: 100%; height: 100%; }

.legal-text p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5em;
  color: var(--gray-legal);
}
.legal-links { margin-top: 6px; }
.legal-links a { text-decoration: underline; text-underline-offset: 2px; }
.legal-links a:hover { color: var(--white); }
.legal-links span { margin: 0 6px; }

/* =========================================================
   TABLET  (<= 1024px)
   ========================================================= */
@media (max-width: 1024px) {
  :root { --container: 1024px; }

  .hero { padding: 80px 40px; }

  .btn {
    max-width: 520px;
    align-self: center;
  }
  .micro {
    max-width: 520px;
    align-self: center;
  }

  .legal { padding: 20px 60px; }
}

/* =========================================================
   MOBILE  (<= 767px)
   ========================================================= */
@media (max-width: 767px) {
  :root { --container: 767px; }

  .hero {
    padding: 280px 24px 60px;
  }

  /* foto no topo, ocupando a área reservada pelo padding */
  .hero-photo {
    inset: 0 0 auto 0;
    width: 100%;
    height: 360px;
  }
  .hero-photo img {
    object-position: 50% 12%;
  }
  .hero-photo::after {
    background:
      linear-gradient(180deg, rgba(15,22,16,.28) 0%, rgba(15,22,16,.1) 34%, rgba(15,22,16,.78) 76%, var(--bg) 100%),
      linear-gradient(90deg, rgba(15,22,16,.55) 0%, transparent 30%, transparent 70%, rgba(15,22,16,.55) 100%);
  }

  .hero-col { width: 100%; }

  .kicker   { font-size: 28px; }
  .kicker-2 { font-size: 24px; }
  .title    { font-size: 79px; }
  .lead     { font-size: 16px; }

  .btn {
    max-width: 320px;
    margin-top: 0;
    padding: 16px;
    border-radius: 8px;
    font-size: 18px;
    align-self: flex-start;
  }
  .micro {
    max-width: 320px;
    align-self: flex-start;
  }

  .legal {
    padding: 20px;
  }
  .legal-inner {
    flex-wrap: wrap;
    row-gap: 24px;
  }
  .legal-text p { font-size: 10px; }
}

/* ---- telas bem estreitas (<= 360px) ---- */
@media (max-width: 360px) {
  .hero { padding: 250px 18px 48px; }
  .hero-photo { height: 320px; }
  .title    { font-size: 64px; }
  .kicker   { font-size: 24px; }
  .kicker-2 { font-size: 20px; }
  .btn      { font-size: 16px; }
}
