:root {
  --bg: #050506;
  --bg-2: #090910;
  --panel: rgba(16, 16, 24, 0.9);
  --panel-2: rgba(25, 17, 36, 0.78);
  --line: rgba(178, 43, 255, 0.38);
  --line-2: rgba(255, 255, 255, 0.1);
  --purple: #8b2cff;
  --purple-2: #c02cff;
  --gold: #f7c84b;
  --gold-2: #d89b22;
  --white: #ffffff;
  --muted: #bdbdcc;
  --dark-text: #090909;
  --green: #26e078;
  --radius: 24px;
  --shadow-purple: 0 0 42px rgba(176, 38, 255, 0.34);
  --shadow-gold: 0 0 30px rgba(247, 200, 75, 0.25);
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(139, 44, 255, 0.26), transparent 34rem),
    radial-gradient(circle at 0% 18%, rgba(247, 200, 75, 0.1), transparent 26rem),
    linear-gradient(180deg, #050506 0%, #07070a 58%, #020203 100%);
  overflow-x: hidden;
  padding-bottom: 78px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.78), transparent 82%);
  z-index: -3;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.container {
  width: min(var(--max), calc(100% - 28px));
  margin-inline: auto;
}

.bg-orb {
  position: fixed;
  z-index: -2;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
}

.orb-one { right: -130px; top: 10%; background: var(--purple-2); }
.orb-two { left: -150px; bottom: 14%; background: var(--gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px max(14px, calc((100vw - var(--max)) / 2));
  background: rgba(5, 5, 6, 0.82);
  border-bottom: 1px solid var(--line-2);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 44px;
  color: var(--dark-text);
  font-size: 23px;
  font-weight: 950;
  background: linear-gradient(135deg, #fff0a6, var(--gold), var(--gold-2));
  clip-path: polygon(50% 0%, 94% 18%, 88% 80%, 50% 100%, 12% 80%, 6% 18%);
  box-shadow: var(--shadow-gold);
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: 0.16em;
}

.brand-name strong {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0.09em;
}

.brand-name small {
  margin-top: 5px;
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
}

.desktop-nav { display: none; }

.top-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--dark-text);
  background: linear-gradient(135deg, #fff0a6, var(--gold), var(--gold-2));
  font-size: 12px;
  font-weight: 950;
  box-shadow: var(--shadow-gold);
}

.hero { padding: 30px 0 22px; }
.hero-grid { display: grid; gap: 18px; align-items: center; }

.ad-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.ad-platforms span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 10, 15, 0.76);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 0 20px rgba(176, 38, 255, 0.16);
}

.meta-logo { color: #ecf7ff; }
.google-logo { color: #fff7d6; }

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 16px;
  font-size: clamp(38px, 11.5vw, 82px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

h1 span {
  display: block;
  color: var(--purple-2);
  text-shadow: 0 0 26px rgba(192, 44, 255, 0.52);
}

.hero-text {
  max-width: 700px;
  color: #f4f4fa;
  font-size: clamp(18px, 5vw, 29px);
  line-height: 1.28;
}

.hero-text strong { color: var(--gold); }

.mobile-mini-offer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 20px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(192, 44, 255, 0.26), transparent 13rem),
    rgba(12, 12, 18, 0.92);
  box-shadow: var(--shadow-purple);
}

.mobile-mini-offer small,
.mobile-mini-offer span {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.mobile-mini-offer strong {
  display: block;
  margin: 3px 0;
  color: var(--gold);
  font-size: 34px;
  line-height: 1;
}

.mobile-mini-offer a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 14px;
  color: var(--dark-text);
  background: linear-gradient(135deg, #fff0a6, var(--gold), var(--gold-2));
  font-weight: 950;
}

.hero-tags {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 4px 0 0;
}

.hero-tags span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line-2);
  border-radius: 16px;
  background: rgba(255,255,255,0.045);
  color: #f5f5f8;
  font-weight: 850;
}

.hero-tags span::before,
.trust-row span::before {
  content: "✓";
  color: var(--gold);
  font-weight: 950;
}

.hero-actions { display: grid; gap: 10px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 15px 22px;
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 950;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
  color: var(--dark-text);
  background: linear-gradient(135deg, #fff0a6 0%, var(--gold) 48%, var(--gold-2) 100%);
  box-shadow: var(--shadow-gold);
}

.btn-dark {
  color: var(--white);
  background: rgba(255,255,255,0.055);
  border: 1px solid var(--line-2);
}

.trust-row {
  display: grid;
  gap: 8px;
  margin-top: 0;
  color: var(--muted);
  font-size: 13px;
}

.trust-row span { display: inline-flex; align-items: center; gap: 8px; }

.hero-visual { display: block; }

.photo-card {
  position: relative;
  max-width: 380px;
  min-height: 300px;
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 65% 30%, rgba(176, 38, 255, 0.28), transparent 18rem),
    rgba(10, 10, 14, 0.85);
  overflow: hidden;
  box-shadow: var(--shadow-purple);
}

.photo-card picture,
.photo-card img { width: 100%; height: 100%; }

.photo-card img {
  min-height: 300px;
  object-fit: cover;
  object-position: center 34%;
  opacity: .9;
  filter: contrast(1.1) saturate(.78);
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5,5,6,.82) 100%);
}

.visual-chip {
  position: absolute;
  z-index: 2;
  right: 14px;
  display: grid;
  gap: 2px;
  min-width: 120px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(7, 7, 11, .76);
  box-shadow: 0 0 24px rgba(176, 38, 255, .3);
}

.visual-chip span { color: var(--muted); font-size: 12px; }
.visual-chip strong { color: var(--white); font-size: 15px; }
.visual-chip {
  height: fit-content;
}
.chip-one {
  display: none;
  top: auto !important;
  right: 22px;
  bottom: 108px;
  height: auto;
}

.chip-two {
  top: auto !important;
  left: 22px;
  bottom: 28px;
  height: auto;
}

.lead-section { padding: 28px 0 56px; }

.lead-card {
  display: grid;
  gap: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 0%, rgba(247, 200, 75, .13), transparent 20rem),
    radial-gradient(circle at 100% 45%, rgba(192, 44, 255, .2), transparent 22rem),
    rgba(12, 12, 18, .92);
  box-shadow: var(--shadow-purple);
}

.lead-copy h2,
.section-title h2,
.why-card h2,
.investment-card h2,
.final-card h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 8.2vw, 56px);
  line-height: .98;
  letter-spacing: -0.055em;
}

.lead-copy p:not(.eyebrow),
.section-title p:not(.eyebrow),
.why-card p,
.final-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.56;
}

.price-mini {
  display: inline-grid;
  margin: 8px 0 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(0,0,0,.34);
}

.price-mini small { color: var(--muted); font-weight: 800; }
.price-mini strong { color: var(--gold); font-size: 34px; line-height: 1; }
.price-mini span { color: var(--white); font-weight: 850; }
.notice { margin: 0; color: #f2d585 !important; font-size: 13px !important; }

.lead-form {
  display: grid;
  gap: 13px;
  padding: 14px;
  border: 1px solid var(--line-2);
  border-radius: 21px;
  background: rgba(0,0,0,.36);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-weight: 850;
}

.lead-form label span { color: var(--muted); font-weight: 600; }

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 52px;
  padding: 14px 15px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  outline: none;
  color: var(--white);
  background: rgba(3, 3, 6, .84);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(155,53,255,.18);
}

.form-button { width: 100%; margin-top: 2px; }
.form-foot { margin: 0; color: var(--muted); font-size: 12px; text-align: center; }

.included { padding: 58px 0; }
.section-title { max-width: 780px; margin: 0 auto 28px; text-align: center; }
.section-title.compact { margin-bottom: 24px; }



.services-grid{
    display:grid;
    gap:22px;
}

.service-card{
    position:relative;
    overflow:hidden;

    padding:0;

    border-radius:24px;

    border:1px solid rgba(176,38,255,.25);

    background:#111117;

    transition:.35s ease;

    box-shadow:
        0 0 0 rgba(176,38,255,0),
        0 18px 45px rgba(0,0,0,.35);
}

.service-card:hover{

    transform:translateY(-8px);

    border-color:#8b2cff;

    box-shadow:
        0 0 35px rgba(176,38,255,.28),
        0 28px 55px rgba(0,0,0,.45);
}

.service-card img{

    width:100%;
    
    object-fit:cover;
    object-position:center;
    display:block;
    transition:.45s;

    aspect-ratio:1/1;

  

    transition:.5s;
}


.service-card:hover img{

    transform:scale(1.05);

}

.service-content{

    padding:20px;

}

.service-content h3{

    margin-bottom:10px;

    color:#f7c84b;

    font-size:20px;

    line-height:1.2;

}

.service-content p{

    margin:0;

    color:#bdbdcc;

    line-height:1.6;

}

/* brilho */

.service-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        180deg,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,.08) 45%,
        rgba(0,0,0,.82) 100%
    );

    pointer-events:none;

}

/* botão no hover */

.service-card::after{
      display:none;


    content:"Ver exemplo";

    position:absolute;

    left:50%;

    top:34%;

    transform:translate(-50%,20px);

    padding:12px 24px;

    border-radius:999px;

    border:1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(8px);

    background:rgba(0,0,0,.45);

    color:#fff;

    font-weight:700;

    opacity:0;

    transition:.35s;

}

.service-card:hover::after{

    opacity:1;

    transform:translate(-50%,0);

}

@media(min-width:900px){

    .services-grid{

        grid-template-columns:repeat(3,1fr);

    }

}

@media(max-width:899px){

    .services-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:640px){

    .services-grid{

        grid-template-columns:1fr;

    }

}

.service-card::before,
.investment-card::before,
.lead-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(176,38,255,.8), rgba(247,200,75,.2), transparent);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}





.service-card h3 {
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 18px;
  line-height: 1.16;
}

.service-card p { margin: 0; color: var(--muted); line-height: 1.48; }

.why { padding: 44px 0; }
.why-grid { display: grid; gap: 14px; }
.why-card,
.channel-cards article,
.faq details,
.final-card {
  border: 1px solid var(--line-2);
  border-radius: 22px;
  background: rgba(18, 18, 26, .86);
}

.why-card { padding: 22px; }

.channel-cards { display: grid; gap: 12px; }
.channel-cards article { padding: 18px; }
.channel-cards strong { display: block; margin-bottom: 6px; color: var(--gold); }
.channel-cards span { color: var(--muted); line-height: 1.4; }

.investment { padding: 40px 0 58px; }
.investment-card {
  position: relative;
  display: grid;
  gap: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(176, 38, 255, .22), transparent 18rem),
    rgba(18, 18, 26, .92);
  box-shadow: var(--shadow-purple);
  overflow: hidden;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #f7f7fb;
  font-weight: 760;
}

.check-list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: var(--dark-text);
  background: var(--gold);
  font-weight: 950;
}

.price-box {
  display: grid;
  gap: 6px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(0,0,0,.42);
}

.price-box small,
.price-box p { color: var(--muted); }
.price-box strong { color: var(--purple-2); font-size: clamp(42px, 12vw, 68px); line-height: .95; }
.price-box span { color: var(--white); font-weight: 900; }
.price-box b { margin-top: 5px; color: var(--gold); font-size: 19px; text-transform: uppercase; }
.price-box .btn { margin-top: 10px; }

.investment-warning { width: min(var(--max), calc(100% - 28px)); margin: 12px auto 0; color: var(--muted); text-align: center; font-size: 13px; }

.faq { padding: 48px 0; }
.faq-grid { display: grid; gap: 10px; }
.faq details { padding: 18px 18px; }
.faq summary { cursor: pointer; color: var(--white); font-weight: 900; }
.faq summary::marker { color: var(--gold); }
.faq details p { margin: 12px 0 0; color: var(--muted); line-height: 1.55; }

.final-cta { padding: 34px 0 66px; }
.final-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(247, 200, 75, .15), transparent 18rem),
    rgba(18, 18, 26, .9);
}
.final-card .btn { width: 100%; }

.site-footer {
  padding: 36px 0 90px;
  border-top: 1px solid var(--line-2);
  background: rgba(0,0,0,.32);
}

.footer-grid { display: grid; gap: 22px; color: var(--muted); }
.footer-brand { margin-bottom: 14px; }
.footer-grid strong { color: var(--gold); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; }
.footer-grid p { margin: 8px 0 0; line-height: 1.5; }
.copyright { width: min(var(--max), calc(100% - 28px)); margin: 28px auto 0; padding-top: 18px; border-top: 1px solid var(--line-2); color: #858597; font-size: 13px; }

.float-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 86px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  color: #041409;
  background: #25d366;
  box-shadow: 0 0 28px rgba(37, 211, 102, .46);
  font-size: 26px;
  font-weight: 950;
}

.mobile-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(247,200,75,.2);
  background: rgba(5,5,6,.92);
  backdrop-filter: blur(18px);
}

.mobile-sticky strong { color: var(--gold); font-size: 15px; }
.mobile-sticky a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--dark-text);
  background: linear-gradient(135deg, #fff0a6, var(--gold), var(--gold-2));
  font-size: 13px;
  font-weight: 950;
}

@media (min-width: 560px) {
  .hero-tags { grid-template-columns: repeat(3, 1fr); }
  .hero-actions { grid-template-columns: 1fr 1fr; max-width: 570px; }
  .mobile-mini-offer { grid-template-columns: 1fr auto; align-items: center; }
  .lead-form { grid-template-columns: repeat(2, 1fr); }
  .form-button, .form-foot { grid-column: 1 / -1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .channel-cards { grid-template-columns: repeat(3, 1fr); }
  .faq-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  body { padding-bottom: 0; }
  .container { width: min(var(--max), calc(100% - 48px)); }
  .site-header { padding-block: 14px; }
  .desktop-nav { display: flex; align-items: center; gap: 26px; color: var(--muted); font-size: 14px; font-weight: 800; }
  .desktop-nav a:hover { color: var(--gold); }
  .top-whatsapp { min-height: 44px; padding: 12px 18px; font-size: 14px; }
  .hero { padding: 66px 0 52px; }
  .hero-grid { grid-template-columns: 1fr 0.82fr; gap: 18px 52px; }
  .hero-copy { grid-column: 1; grid-row: 1; }
  .hero-visual { grid-column: 2; grid-row: 1 / span 3; align-self: center; }
  .hero-tags { grid-column: 1; grid-row: 2; margin-top: 0; }
  .trust-row { grid-column: 1; grid-row: 3; }
  .mobile-mini-offer { display: none; }
  .hero-actions { margin-top: 6px; }
  .trust-row { grid-template-columns: repeat(3, auto); justify-content: flex-start; gap: 18px; }
  .photo-card { max-width: none; min-height: 520px; }
  .photo-card img { min-height: 520px; object-position: center; }
  .visual-chip { min-width: 150px; padding: 15px; }
  .visual-chip strong { font-size: 20px; }
  .chip-one { top: 26px; }
  .chip-two { top: 120px; right: 52px; }
  .lead-section { padding: 48px 0 78px; }
  .lead-card { grid-template-columns: 0.95fr 1.25fr; gap: 34px; padding: 32px; align-items: center; }
  .lead-form { padding: 22px; }
  .included { padding: 78px 0; }
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .service-card { min-height: 205px; padding: 26px; }
  .why { padding: 68px 0; }
  .why-grid { grid-template-columns: .95fr 1.05fr; align-items: center; gap: 20px; }
  .why-card { padding: 32px; }
  .channel-cards article { min-height: 130px; padding: 22px; }
  .investment { padding: 62px 0 76px; }
  .investment-card { grid-template-columns: 1fr .48fr; align-items: center; padding: 36px; }
  .faq { padding: 64px 0; }
  .final-cta { padding: 52px 0 90px; }
  .final-card { grid-template-columns: .75fr 1fr auto; align-items: center; padding: 34px; }
  .final-card .btn { width: auto; }
  .footer-grid { grid-template-columns: 1.3fr .8fr 1fr; }
  .site-footer { padding-bottom: 38px; }
  .float-whatsapp { bottom: 28px; right: 28px; }
  .mobile-sticky { display: none; }
}

@media (max-width: 420px) {
  .brand-icon { width: 32px; height: 38px; font-size: 20px; }
  .brand-name strong { font-size: 14px; }
  .brand-name small { font-size: 7px; }
  .top-whatsapp { padding: 9px 11px; font-size: 11px; }
  .hero { padding-top: 20px; }
  .hero-grid { gap: 14px; }

  h1 {
    font-size: clamp(36px, 10.8vw, 44px);
    line-height: 0.96;
    letter-spacing: -0.045em;
    white-space: nowrap;
  }

  h1 span { white-space: nowrap; }

  .hero-text { font-size: 17px; margin-bottom: 14px; }
  .mobile-mini-offer { margin: 14px 0; }
  .mobile-mini-offer strong { font-size: 30px; }
  .hero-actions { margin-top: 0; }
  .hero-visual { margin: 4px 0 4px; }
  .photo-card {
    max-width: 342px;
    min-height: 300px;
    margin-inline: auto;
    border-radius: 24px;
    box-shadow: 0 0 34px rgba(176, 38, 255, .34);
  }
  .photo-card img {
    min-height: 300px;
    object-position: center top;
  }
  .visual-chip { padding: 10px 12px; border-radius: 14px; }
  .visual-chip strong { font-size: 14px; }
  .chip-one { right: 14px; bottom: 76px; top: auto; }
  .chip-two { right: 14px; bottom: 16px; top: auto; }
  .hero-tags { margin-top: 4px; }
  .trust-row { margin-top: 2px; }
  .lead-card { padding: 14px; }
  .lead-copy h2, .section-title h2, .why-card h2, .investment-card h2, .final-card h2 { font-size: 30px; }
  .service-card { padding: 20px; }
  .float-whatsapp { width: 50px; height: 50px; bottom: 80px; }
  .mobile-sticky strong { font-size: 13px; }
  .mobile-sticky a { font-size: 12px; padding-inline: 12px; }
}

/* Nova seção: como funciona */
.journey {
  padding: 44px 0;
}

.journey .section-title {
  max-width: 760px;
}

.journey-grid {
  display: grid;
  gap: 14px;
}

.journey-card {
  position: relative;
  min-height: 178px;
  padding: 22px;
  border: 1px solid var(--line-2);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(176, 38, 255, .12), transparent 12rem),
    rgba(18, 18, 26, .86);
  overflow: hidden;
}

.journey-card.featured {
  border-color: rgba(247, 200, 75, .24);
  background:
    radial-gradient(circle at 0% 0%, rgba(247, 200, 75, .14), transparent 15rem),
    rgba(18, 18, 26, .9);
}

.journey-card.featured-purple {
  border-color: var(--line);
  box-shadow: 0 0 28px rgba(176, 38, 255, .18);
}

.journey-card .step {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 15px;
  border-radius: 999px;
  color: var(--dark-text);
  background: linear-gradient(135deg, #fff0a6, var(--gold), var(--gold-2));
  font-weight: 950;
  box-shadow: var(--shadow-gold);
}

.journey-card h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.journey-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

/* Animação suave ao rolar */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 560px) {
  .journey-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .journey { padding: 68px 0; }
  .journey-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .journey-card { min-height: 232px; padding: 26px; }
  .journey-card h3 { font-size: 24px; }

  /* Corrige os chips no desktop: sem esticar e sem cobrir o rosto */
  .chip-one {
    top: auto !important;
    right: 24px;
    bottom: 124px;
    height: auto;
  }

  .chip-two {
    top: auto !important;
    right: 24px;
    bottom: 38px;
    height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* =========================================================
   CORREÇÃO FINAL — CARDS COM IMAGENS NA SEÇÃO "INCLUSO"
   Mantém as imagens card1, card2, card3, card4, card5 e card6
   ocupando o topo do card sem serem esmagadas por regras antigas.
   ========================================================= */

.included .services-grid {
  display: grid;
  gap: 22px;
}

.included .service-card {
  position: relative;
  min-height: unset !important;
  padding: 0 !important;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(176, 38, 255, .25);
  background: #111117;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.included .service-card:hover {
  transform: translateY(-8px);
  border-color: var(--purple);
  box-shadow: 0 0 35px rgba(176,38,255,.28), 0 28px 55px rgba(0,0,0,.45);
}

.included .service-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 24px 24px 0 0;
  transition: transform .5s ease;
}

.included .service-card:hover img {
  transform: scale(1.05);
}

.included .service-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  background: #111117;
}

.included .service-content h3,
.included .service-card h3 {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 20px;
  line-height: 1.2;
}

.included .service-content p,
.included .service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.included .service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  padding: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.05) 45%, rgba(0,0,0,.38) 100%);
  mask: none;
}

.included .service-card::after {
  content: "Ver exemplo";
  position: absolute;
  left: 50%;
  top: 34%;
  z-index: 3;
  transform: translate(-50%, 20px);
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  background: rgba(0,0,0,.48);
  color: #fff;
  font-weight: 800;
  opacity: 0;
  white-space: nowrap;
  transition: opacity .35s ease, transform .35s ease;
}

.included .service-card:hover::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (min-width: 900px) {
  .included .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
}

@media (min-width: 560px) and (max-width: 899px) {
  .included .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 559px) {
  .included .services-grid {
    grid-template-columns: 1fr;
  }

  .included .service-card::after {
    display: none;
  }
}


/* =========================================================
   AJUSTE REAL — imagens menores nos cards da seção Incluso
   ========================================================= */
.included .services-grid{
  display:grid !important;
  grid-template-columns:repeat(3, 1fr) !important;
  gap:22px !important;
}

.included .service-card{
  padding:0 !important;
  min-height:auto !important;
  overflow:hidden !important;
}

.included .service-card img{
  width:100% !important;
  max-height:210px !important;
  aspect-ratio:auto !important;
  object-fit:cover !important;
  object-position:center center !important;
  display:block !important;
}

.included .service-content{
  padding:18px 20px 20px !important;
}

.included .service-card::after{
  top:105px !important;
}

@media (max-width:899px){
  .included .services-grid{
    grid-template-columns:repeat(2, 1fr) !important;
  }

  .included .service-card img{
    max-height:180px !important;
  }

  .included .service-card::after{
    top:90px !important;
  }
}

@media (max-width:559px){
  .included .services-grid{
    grid-template-columns:1fr !important;
  }

  .included .service-card img{
    max-height:150px !important;
  }

  .included .service-card::after{
    display:none !important;
  }
}
