@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {

  background:
  linear-gradient(
  135deg,
  #041b14 0%,
  #07110d 40%,
  #050505 100%);

  color: #ffffff;

  overflow-x: hidden;

  position: relative;

  isolation: isolate;
}

/* PALAVRAS FUNDO */

.bg-words {

  position: absolute;

  inset: 0;

  overflow: hidden;

  pointer-events: none;

  z-index: 0;
}

.bg-words span {

  position: absolute;

  font-size: clamp(80px, 12vw, 220px);

  font-weight: 900;

  color: rgba(37,211,102,0.04);

  white-space: nowrap;

  letter-spacing: -6px;

  animation: moveWords 20s linear infinite;

  will-change: transform;
}

.bg-words span:nth-child(1){

  top: 18%;
}

.bg-words span:nth-child(2){

  top: 45%;

  animation-duration: 25s;
}

.bg-words span:nth-child(3){

  top: 72%;

  animation-duration: 30s;
}

@keyframes moveWords {

  from {

    transform: translateX(100%);
  }

  to {

    transform: translateX(-120%);
  }
}

/* FUNDO */

body::before {

  content: '';

  position: absolute;

  width: 420px;

  height: 420px;

  background: rgba(37, 211, 102, 0.15);

  border-radius: 50%;

  filter: blur(60px);

  top: -120px;

  left: -120px;

  z-index: -1;
}

body::after {

  content: '';

  position: absolute;

  width: 320px;

  height: 320px;

  background: rgba(37, 211, 102, 0.10);

  border-radius: 50%;

  filter: blur(50px);

  bottom: -100px;

  right: -100px;

  z-index: -1;
}

/* NAVBAR */

nav {

  position: fixed;

  top: 14px;

  left: 50%;

  transform: translateX(-50%);

  width: calc(100% - 24px);

  max-width: 1100px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 14px 22px;

  background: rgba(255,255,255,0.04);

  -webkit-backdrop-filter: blur(14px);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.06);

  border-radius: 18px;

  z-index: 999;

  backface-visibility: hidden;
}

/* LOGO */

.logo-nav {

  font-size: 20px;

  font-weight: 800;

  letter-spacing: -1px;

  color: white;
}

.logo-nav span {

  color: #25D366;
}

nav ul {

  display: flex;

  gap: 28px;

  list-style: none;
}

nav a {

  color: rgba(255,255,255,0.72);

  text-decoration: none;

  transition: 0.3s;
}

nav a:hover {

  color: #25D366;
}

/* MENU */

.menu-toggle {

  display: none;

  font-size: 28px;

  cursor: pointer;

  color: white;
}

/* HERO */

.hero {

  min-height: 100svh;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 30px;

  padding: 90px 24px 40px;

  flex-wrap: wrap;

  position: relative;

  z-index: 2;
}

.hero-text {

  max-width: 560px;
}

/* TITULO PREMIUM */

.logo-title {

  font-size: clamp(46px, 7vw, 78px);

  font-weight: 900;

  line-height: 0.95;

  letter-spacing: -3px;

  margin-bottom: 24px;

  opacity: 0;

  transform: translateX(120px);

  animation: slideRight 1s ease forwards;

  will-change: transform;

  backface-visibility: hidden;

  -webkit-font-smoothing: antialiased;
}

.logo-title span {

  color: #25D366;

  display: inline-block;

  animation: arrowFloat 2s infinite ease-in-out;
}

/* TEXTO */

.hero-description {

  font-size: 20px;

  line-height: 1.9;

  color: rgba(255,255,255,0.72);

  max-width: 520px;

  opacity: 0;

  transform: translateX(120px);

  animation: slideRight 1.2s ease forwards;

  animation-delay: 0.3s;

  will-change: transform;

  backface-visibility: hidden;

  -webkit-font-smoothing: antialiased;
}

/* CORES */

.text-light {

  color: rgba(255,255,255,0.85);
}

.text-green {

  color: #25D366;

  font-weight: 700;
}

/* CAROUSEL */

.carousel {

  width: 100%;

  max-width: 420px;

  overflow: hidden;

  border-radius: 28px;

  background: rgba(255,255,255,0.04);

  border: 1px solid rgba(255,255,255,0.08);

  -webkit-backdrop-filter: blur(10px);

  backdrop-filter: blur(10px);

  box-shadow:
    0 15px 40px rgba(0,0,0,0.4),
    0 0 60px rgba(37,211,102,0.12);

  opacity: 0;

  transform: translateX(120px);

  animation: slideRight 1.2s ease forwards;

  animation-delay: 0.5s;

  padding: 8px;

  will-change: transform;

  backface-visibility: hidden;
}

.carousel img {

  width: 100%;

  height: auto;

  display: none;

  border-radius: 22px;

  object-fit: contain;
}

.carousel img.active {

  display: block;
}

/* SECTIONS */

section {

  padding: 90px 24px;

  max-width: 1180px;

  margin: auto;

  position: relative;

  z-index: 2;
}

section h2 {

  font-size: clamp(38px, 5vw, 62px);

  margin-bottom: 24px;

  line-height: 1;

  letter-spacing: -3px;
}

section p {

  font-size: 18px;

  line-height: 1.9;

  color: rgba(255,255,255,0.68);

  max-width: 760px;
}

/* CARDS */

.cards {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 24px;

  margin-top: 50px;
}

.card {

  position: relative;

  overflow: hidden;

  background: rgba(255,255,255,0.04);

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 24px;

  padding: 32px;

  -webkit-backdrop-filter: blur(14px);

  backdrop-filter: blur(14px);

  transition: 0.4s ease;

  box-shadow: 0 10px 30px rgba(0,0,0,0.35);

  backface-visibility: hidden;
}

.card:hover {

  transform: translateY(-10px);
}

.card h3 {

  font-size: 24px;

  margin-bottom: 18px;

  color: white;
}

.card p {

  font-size: 16px;

  color: rgba(255,255,255,0.65);

  line-height: 1.8;
}

/* WHATSAPP */

.whatsapp-link {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  margin-top: 35px;

  padding: 18px 30px;

  border-radius: 18px;

  background:
  linear-gradient(
  135deg,
  #25D366,
  #128C7E);

  color: white;

  text-decoration: none;

  font-weight: 700;

  font-size: 16px;

  transition: 0.35s ease;
}

.whatsapp-link:hover {

  transform:
  translateY(-5px)
  scale(1.03);
}

.whatsapp-link i {

  font-size: 20px;
}

/* FOOTER */

footer {

  padding: 70px 24px;

  text-align: center;

  color: rgba(255,255,255,0.45);

  border-top: 1px solid rgba(255,255,255,0.05);

  position: relative;

  z-index: 2;
}

footer strong {

  color: white;
}

/* ANIMAÇÕES */

@keyframes slideRight {

  to {

    opacity: 1;

    transform: translateX(0);
  }
}

@keyframes arrowFloat {

  0% {

    transform: translateY(0);
  }

  50% {

    transform: translateY(-10px);
  }

  100% {

    transform: translateY(0);
  }
}

/* REVEAL */

.reveal {

  opacity: 0;

  transform: translateX(120px);

  transition: 1s ease;

  will-change: transform;

  backface-visibility: hidden;
}

.reveal.active {

  opacity: 1;

  transform: translateX(0);
}

/* RESPONSIVO */

@media (max-width: 900px) {

  .hero {

    text-align: center;

    padding-top: 150px;
  }

  .hero-description {

    margin: auto;
  }

  .carousel {

    width: 100%;

    max-width: 340px;
  }
}

@media (max-width: 768px) {

  nav {

    padding: 16px 18px;
  }

  nav ul {

    display: none;

    flex-direction: column;

    position: absolute;

    top: 85px;

    right: 18px;

    background: rgba(15,23,42,0.95);

    -webkit-backdrop-filter: blur(20px);

    backdrop-filter: blur(20px);

    padding: 20px;

    border-radius: 18px;

    width: 220px;
  }

  nav ul.active {

    display: flex;
  }

  .menu-toggle {

    display: block;
  }

  .logo-title {

    font-size: 48px;

    line-height: 1;

    letter-spacing: -2px;
  }

  .hero-description {

    font-size: 18px;

    line-height: 1.9;
  }

  .carousel {

    width: 100%;

    max-width: 100%;

    padding: 6px;
  }

  .carousel img {

    width: 100%;

    height: auto;

    object-fit: contain;

    border-radius: 18px;
  }

  section {

    padding: 80px 22px;
  }

  section h2 {

    font-size: 42px;
  }

  section p {

    font-size: 17px;
  }
}