@font-face {
  font-family: "MADEOuterSans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/MADEOuterSans.woff2") format("woff2"),
    url("../fonts/MADEOuterSans.woff") format("woff");
}

:root {
  --gold: #d4af37;
  --gold-light: #ffe566;
  --gold-dark: #b8860b;
  --text: #b8b8b8;
  --white: #fff;
  --black: #000;
  --card-max: 643px;
}

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

html,
body {
  margin: 0;
  padding: 0;
  background: var(--black);
  color: var(--white);
  font-family: "MADEOuterSans", sans-serif;
  overflow-x: hidden;
  max-width: 100%;
}

html.lenis,
html.lenis body {
  height: auto;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.04;
  mix-blend-mode: plus-lighter;
  background-image: radial-gradient(at 20% 80%, #fff 1px, transparent 0);
  background-size: 3px 3px;
}

.fairies {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9;
}

.fairy {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 4px;
  height: 4px;
  margin: -2px 0 0 -2px;
  border-radius: 50%;
  background: #ffe082;
  opacity: 0.6;
  box-shadow: 0 0 8px #ffe082;
  animation: fairyMove 55s ease-in-out infinite alternate,
    fairyFade 7s ease-in-out infinite;
}

.fairy:nth-child(2) { animation-duration: 62s, 8s; animation-delay: -8s, -1s; }
.fairy:nth-child(3) { animation-duration: 58s, 7.5s; animation-delay: -14s, -2s; }
.fairy:nth-child(4) { animation-duration: 66s, 8.5s; animation-delay: -20s, -3s; }
.fairy:nth-child(5) { animation-duration: 60s, 9s; animation-delay: -26s, -1.5s; }
.fairy:nth-child(6) { animation-duration: 70s, 7s; animation-delay: -32s, -2.5s; }
.fairy:nth-child(7) { animation-duration: 57s, 7.8s; animation-delay: -38s, -1s; }
.fairy:nth-child(8) { animation-duration: 64s, 9s; animation-delay: -44s, -4s; }

@keyframes fairyMove {
  0% { transform: translate(-40vw, -30vh) scale(0.6); }
  25% { transform: translate(25vw, -20vh) scale(0.85); }
  50% { transform: translate(-20vw, 25vh) scale(0.7); }
  75% { transform: translate(35vw, 30vh) scale(0.9); }
  100% { transform: translate(20vw, -35vh) scale(0.6); }
}

@keyframes fairyFade {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.8; }
}

.hero {
  min-height: 511px;
  background: #000 url("../images/ultrawide.webp") center / cover no-repeat;
  animation: flash 8s infinite ease-in-out;
}

@keyframes flash {
  0%, 10%, 14%, 25%, 40%, 44%, 60%, 70%, 74%, 90%, 100% { filter: brightness(1); }
  12% { filter: brightness(2.2); }
  42% { filter: brightness(1.6); }
  72% { filter: brightness(2); }
}

.ticker {
  overflow: hidden;
  background: #000;
  padding: 20px 0;
  transform: scale(1.02);
  white-space: nowrap;
}

.ticker-track {
  display: inline-block;
  white-space: nowrap;
  color: #706c6c;
  font-size: 1em;
  line-height: 1.3;
  will-change: transform;
}

.welcome-wrap {
  margin-top: -109px;
  padding: 0 20px 18px;
  position: relative;
  z-index: 3;
}

.welcome {
  position: relative;
  max-width: 50%;
  margin: 0 auto -35px;
  padding: 50px 20px;
  text-align: center;
  border: 1px solid #ffffff14;
  border-radius: 10px;
  background: #00000069;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.28),
    inset 0 0 30px rgba(255, 255, 255, 0.03);
  z-index: 22222;
}

.welcome::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #fff 0.5px, transparent 1px);
  background-size: 17px 17px;
  opacity: 0.25;
  pointer-events: none;
  z-index: -1;
}

.frame {
  --espessura: 2px;
  --tamanho: 50px;
  --cor: var(--gold);
  --raio: 10px;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.frame::before,
.frame::after,
.frame span::before,
.frame span::after {
  content: "";
  position: absolute;
  width: var(--tamanho);
  height: var(--tamanho);
  z-index: 2;
}

.frame::before {
  top: -2px;
  left: -2px;
  border-top: var(--espessura) solid var(--cor);
  border-left: var(--espessura) solid var(--cor);
  border-radius: var(--raio) 0 0 0;
}

.frame::after {
  top: -2px;
  right: -2px;
  border-top: var(--espessura) solid var(--cor);
  border-right: var(--espessura) solid var(--cor);
  border-radius: 0 var(--raio) 0 0;
}

.frame span::before {
  bottom: -2px;
  left: -2px;
  border-bottom: var(--espessura) solid var(--cor);
  border-left: var(--espessura) solid var(--cor);
  border-radius: 0 0 0 var(--raio);
}

.frame span::after {
  bottom: -2px;
  right: -2px;
  border-bottom: var(--espessura) solid var(--cor);
  border-right: var(--espessura) solid var(--cor);
  border-radius: 0 0 var(--raio) 0;
}

.welcome h1 {
  margin: 0 0 2px;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.2;
}

.welcome h2 {
  margin: 0 0 8px;
  font-size: 2.4em;
  font-weight: 400;
  line-height: 1.2;
  color: #b9b9b9;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 8px 0 4px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: #111;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.28);
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.socials a:hover {
  transform: scale(1.08);
  box-shadow: 0 0 24px rgba(255, 193, 7, 0.45);
  filter: brightness(1.08);
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px 0 0;
  color: #b9b9b9;
  font-size: 0.8em;
}

.hint svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}

.cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
  padding: 80px 20px 100px;
}

.card {
  position: relative;
  width: min(100%, var(--card-max));
  height: calc(min(100vw - 40px, var(--card-max)) * 411 / 1048);
  min-height: 0;
  display: flex;
  align-items: center;
  border: 1px solid #ffffff2e;
  border-radius: 10px;
  overflow: visible;
  padding: 28px 20px 36px;
  background-color: #000;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  pointer-events: none;
}

.card-hit {
  position: absolute;
  inset: 0;
  bottom: -36px;
  z-index: 5;
  border-radius: 10px;
}

.card-body {
  position: relative;
  z-index: 1;
  width: 49%;
  margin-left: 20px;
}

.card h3 {
  margin: 0 0 12px;
  font-size: 1.6em;
  font-weight: 400;
  line-height: 1.2;
}

.card p {
  margin: 0;
  max-width: 88%;
  color: var(--text);
  font-size: 0.8em;
  line-height: 1.4;
}

.card-whatsapp {
  background-image: url("../images/grupo.webp");
}

.card-whatsapp::before {
  background: linear-gradient(244deg, #0000 31%, #000000fa 81%);
}

.card-nichos {
  background-image: url("../images/bannernichos.webp");
}

.card-nichos::before {
  background: linear-gradient(244deg, #0000 38%, #000000e6 82%);
}

.card-marketing {
  background-image: url("../images/pcagc.webp");
}

.card-marketing::before {
  background: linear-gradient(244deg, #0000 31%, #000000fa 81%);
}

.card-mentoria {
  background-image: url("../images/mentoriacard.webp");
}

.card-mentoria::before {
  background: linear-gradient(244deg, #0000 34%, #000000e8 84%);
}

.card-mentoria::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background-image: radial-gradient(circle, #fff 0.5px, transparent 1px);
  background-size: 17px 17px;
  opacity: 0.25;
  pointer-events: none;
}

.card-viral {
  background-image: url("../images/bannerconteudobirallinks.webp");
}

.card-viral::before {
  background: linear-gradient(266deg, #0000 52%, #000 80%);
  opacity: 0.5;
}

.card-viral h3 {
  color: var(--gold);
  font-size: 1.8em;
}

.btn {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 55%;
  border: 0;
  border-radius: 100px;
  padding: 21px 20px;
  color: #111;
  font: 400 1em/1 "MADEOuterSans", sans-serif;
  cursor: pointer;
  transform: translate(-50%, 50%);
  transition: 0.5s all;
}

.btn::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 160%;
  bottom: 0;
  transform: translateX(-50%) skew(-25deg);
  pointer-events: none;
  filter: blur(4px);
  animation: shine 3s infinite ease-in-out;
}

.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  border-radius: 5px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.btn:hover,
.card:hover .btn {
  transform: translate(-50%, 50%) scale(1.05);
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn-gold {
  background: radial-gradient(57.68% 100% at 47.82% 0%, #ffd54f 0%, #ffc107 45%, #b8860b 100%);
  box-shadow: 0 -27px 80px rgba(255, 193, 7, 0.28);
}

.btn-gold::before {
  background: linear-gradient(10deg, #fff9c4 12.81%, transparent 66.66%);
}

.btn-gold::after {
  border: 5px solid rgba(255, 193, 7, 0.25);
}

.btn-green {
  background: radial-gradient(57.68% 100% at 47.82% 0%, #b6ff4a 0%, #8cff2e 45%, #42b900 100%);
  box-shadow: 0 -27px 80px rgba(140, 255, 46, 0.28);
}

.btn-green::before {
  background: linear-gradient(10deg, #e9ffd4 12.81%, transparent 66.66%);
}

.btn-green::after {
  border: 5px solid rgba(182, 255, 74, 0.25);
}

.btn-blue {
  background: radial-gradient(57.68% 100% at 47.82% 0%, #7ee8ff 0%, #2ea8ff 45%, #0a5ad4 100%);
  box-shadow: 0 -27px 80px rgba(46, 168, 255, 0.32);
}

.btn-blue::before {
  background: linear-gradient(10deg, #d6f7ff 12.81%, transparent 66.66%);
}

.btn-blue::after {
  border: 5px solid rgba(46, 168, 255, 0.28);
}

@keyframes shine {
  0%, 100% { left: -10%; opacity: 0; }
  20% { opacity: 1; }
  48% { left: 110%; opacity: 1; }
  51% { opacity: 0; }
}

.deg {
  display: inline-block;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(90deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
}

.deg-green {
  display: inline-block;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(90deg, #b6ff4a 0%, #8cff2e 50%, #5dcc00 100%);
}

.deg-blue {
  display: inline-block;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(90deg, #7ee8ff 0%, #2ea8ff 50%, #0a6bff 100%);
}

.site-footer {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-top: 5px solid var(--gold);
  background: #161319;
  color: var(--text);
  font-size: 0.8em;
  line-height: 1.4;
}

.site-footer .deco {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 61%;
  max-width: 95%;
  pointer-events: none;
}

@media (min-width: 1920px) {
  .hero { min-height: 526px; }
}

@media (max-width: 1366px) {
  .hero { min-height: 357px; }
}

@media (max-width: 767px) {
  .hero {
    min-height: 399px;
    background-image: url("../images/mobilelinks-2.webp");
    background-position: top center;
    padding: 20px 20px 0;
  }

  .ticker-track { font-size: 0.8em; }

  .welcome-wrap {
    margin-top: -226px;
    padding: 0 20px;
  }

  .welcome {
    max-width: none;
    margin-bottom: 60px;
    padding: 30px 20px;
    background: rgba(8, 8, 12, 0.72);
  }

  .welcome h1 { font-size: 0.9em; }
  .welcome h2 { font-size: 1.6em; }

  .cards { padding: 60px 15px 90px; gap: 80px; }

  .card {
    height: auto;
    aspect-ratio: auto;
    min-height: 0;
    align-items: flex-end;
    justify-content: center;
    padding: 42% 16px 52px;
    background-color: #000;
    background-image: none;
  }

  .card::before,
  .card.card-whatsapp::before,
  .card.card-nichos::before,
  .card.card-mentoria::before {
    inset: auto;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 1048 / 411;
    border-radius: 10px 10px 0 0;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    -webkit-mask-image: linear-gradient(to bottom, #000 88%, transparent);
    mask-image: linear-gradient(to bottom, #000 88%, transparent);
  }

  .card.card-whatsapp::before {
    background-image: url("../images/grupo.webp");
  }

  .card.card-nichos::before {
    background-image: url("../images/bannernichos.webp");
  }

  .card.card-mentoria::before {
    background-image: url("../images/mentoriacard.webp");
  }

  .card-body {
    width: 100%;
    margin: 0;
    text-align: center;
  }

  .card p { max-width: none; }

  .btn { width: 80%; max-width: 359px; font-size: 0.8em; }

  .site-footer {
    justify-content: center;
    text-align: center;
  }

  .site-footer .deco { width: 100%; max-width: 1000px; }
}
