:root {
  --bg: #03040c;
  --bg-soft: #080a16;
  --card: #0d1020;
  --card-2: #101426;
  --text: #f7f7fb;
  --muted: #a7a9bb;

  --purple: #7d2cff;
  --purple-light: #a242ff;
  --orange: #ff7617;
  --blue: #1595ff;
  --green: #22c55e;

  --border: rgba(255, 255, 255, .09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at 85% 4%, rgba(46, 73, 255, .12), transparent 24%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 42px));
  margin: auto;
}


/* CABEÇALHO */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3, 4, 12, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  margin-right: auto;
}

.brand img {
  width: 112px;
  height: 66px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 600;
}

nav a:hover {
  color: var(--purple-light);
}

.whatsapp-top {
  margin-left: 24px;
  border: 1px solid var(--green);
  padding: 9px 18px;
  border-radius: 9px;
  color: white;
  font-size: 11px;
  line-height: 1.3;
}

.menu-button {
  display: none;
  background: transparent;
  border: 0;
  color: white;
  font-size: 28px;
}


/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 32px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 32%, rgba(121, 44, 255, .17), transparent 35%),
    radial-gradient(circle at 95% 38%, rgba(255, 118, 23, .10), transparent 26%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 38px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

h1 {
  margin: 0 0 20px;
  font-family: Orbitron, Inter, sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.purple {
  color: var(--purple-light);
}

.orange {
  color: var(--orange);
}

.hero-description {
  max-width: 510px;
  color: #d2d4df;
  font-size: 17px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple), #3f52ff);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, .28);
}

.hero-image img {
  width: 100%;
  display: block;
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(100px);
  opacity: .28;
}

.orb-one {
  width: 320px;
  height: 320px;
  background: var(--purple);
  right: 10%;
  top: -120px;
}

.orb-two {
  width: 230px;
  height: 230px;
  background: var(--orange);
  right: -80px;
  bottom: 80px;
}

.benefits {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
  border: 1px solid var(--border);
  background: rgba(10, 13, 27, .92);
  border-radius: 14px;
}

.benefit {
  min-height: 105px;
  padding: 20px 22px;
  display: flex;
  gap: 15px;
  align-items: center;
  border-right: 1px solid var(--border);
}

.benefit:last-child {
  border-right: none;
}

.benefit strong,
.benefit small {
  display: block;
}

.benefit strong {
  font-size: 13px;
}

.benefit small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.benefit-icon {
  font-size: 30px;
}

.purple-text {
  color: var(--purple-light);
}

.orange-text {
  color: var(--orange);
}

.blue-text {
  color: var(--blue);
}


/* SEÇÕES */

.section {
  padding: 76px 0;
}

.dark-section {
  background: #060812;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading.center {
  text-align: center;
}

.section-heading h2,
.about h2,
.contact-box h2 {
  margin: 0;
  font-family: Orbitron, Inter, sans-serif;
  font-size: clamp(27px, 3vw, 38px);
}

.section-heading p,
.about p,
.contact-box p {
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step {
  position: relative;
  min-height: 220px;
  padding: 28px 24px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
}

.purple-border {
  border: 1px solid rgba(125, 44, 255, .48);
}

.orange-border {
  border: 1px solid rgba(255, 118, 23, .48);
}

.blue-border {
  border: 1px solid rgba(21, 149, 255, .48);
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--purple);
  font-weight: 800;
}

.orange-bg {
  background: #9d4d0b;
}

.blue-bg {
  background: #145b8c;
}

.step h3 {
  margin: 20px 0 9px;
  font-size: 14px;
  color: var(--purple-light);
}

.orange-border h3 {
  color: var(--orange);
}

.blue-border h3 {
  color: var(--blue);
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}


/* SERVIÇOS */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service {
  min-height: 105px;
  display: flex;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--card);
}

.service > span {
  font-size: 30px;
}

.service h3 {
  margin: 0 0 6px;
  font-size: 13px;
  color: var(--purple-light);
}

.service:nth-child(2n) h3 {
  color: var(--orange);
}

.service:nth-child(3n) h3 {
  color: var(--blue);
}

.service p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}


/* ANTES E DEPOIS */

.before-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.before-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--card);
}

.before-card h3 {
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px 16px;
  font-size: 14px;
}

.photo-placeholder {
  height: 220px;
  padding: 12px;
  display: flex;
  align-items: end;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.08), transparent 30%),
    linear-gradient(135deg, #292c35, #10131c);
}

.photo-placeholder.after {
  background:
    radial-gradient(circle at center, rgba(21,149,255,.17), transparent 33%),
    linear-gradient(135deg, #151a2c, #090b14);
}

.photo-placeholder span {
  padding: 5px 8px;
  border-radius: 5px;
  background: var(--purple);
  font-size: 10px;
  font-weight: 800;
}

.photo-placeholder.after span {
  background: var(--orange);
}


/* SOBRE */

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  color: var(--orange);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .13em;
}

.about-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-benefits div {
  min-height: 130px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--card);
}

.about-benefits strong,
.about-benefits span {
  display: block;
}

.about-benefits strong {
  color: var(--purple-light);
  font-size: 13px;
}

.about-benefits span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}


/* CONTATO */

.contact-section {
  padding: 40px 0 60px;
}

.contact-box {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 35px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(125, 44, 255, .65);
  border-right-color: var(--blue);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(125,44,255,.10), rgba(21,149,255,.06));
}

.contact-box small {
  color: var(--purple-light);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-info strong,
.contact-info span {
  display: block;
}

.contact-info strong {
  font-size: 12px;
}

.contact-info span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
}


/* WHATSAPP */

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 150;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25D366;
  color: white;
  font-size: 28px;
  font-weight: 800;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
}


/* RODAPÉ */

footer {
  padding: 44px 0 22px;
  border-top: 1px solid var(--border);
  background: #020309;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr 1fr;
  gap: 38px;
}

.footer-brand img {
  width: 150px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 12px;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-grid strong {
  margin-bottom: 6px;
  font-size: 12px;
}

.footer-grid a,
.footer-grid span {
  color: var(--muted);
  font-size: 11px;
}

.copyright {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: #737589;
  font-size: 11px;
}


/* RESPONSIVO */

@media (max-width: 950px) {

  .menu-button {
    display: block;
  }

  nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: #090b16;
    border: 1px solid var(--border);
    border-radius: 13px;
  }

  nav.open {
    display: flex;
  }

  .whatsapp-top {
    display: none;
  }

  .hero-grid,
  .about,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .hero-image {
    order: -1;
  }

  .benefits,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .benefit:nth-child(2) {
    border-right: none;
  }

  .before-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {

  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding-top: 45px;
  }

  h1 {
    font-size: 42px;
  }

  .benefits,
  .steps,
  .services-grid,
  .about-benefits,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .benefit {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .benefit:last-child {
    border-bottom: none;
  }

  .section {
    padding: 60px 0;
  }

  .photo-placeholder {
    height: 170px;
  }
}
