:root {
    /* ── Vylo brand palette (extraída da logo) ── */
    --purple-deep:  #5B18C2;   /* roxo profundo – canto esquerdo da logo */
    --purple-vivid: #6B21D6;   /* roxo vibrante principal               */
    --blue-mid:     #2553C7;   /* azul médio – centro da logo            */
    --cyan:         #0DCDC8;   /* ciano/teal – canto direito da logo     */
    --cyan-light:   #4FE0E8;

    /* Gradiente exato da logo: roxo → azul → ciano */
    --gradient-brand: linear-gradient(135deg, #5B18C2 0%, #2553C7 55%, #0DCDC8 100%);
    /* Versão para hero (mais escuro na base) */
    --gradient-hero:  linear-gradient(135deg, #3D0F8A 0%, #1E3FA8 50%, #0BADA8 100%);
    /* Gradiente do botão primário */
    --gradient-btn:   linear-gradient(135deg, #6B21D6 0%, #0DCDC8 100%);

    --navy:      #0D0A1E;   /* fundo escuro puro                      */
    --navy-mid:  #160F30;
    --white:     #FFFFFF;
    --off-white: #F3F1FF;   /* branco com leve toque roxo             */
    --gray-light:#E5E0F8;
    --gray-text: #6B6890;
    --text-dark: #1A0F3C;

    --font-display: 'Montserrat', sans-serif;
    --font-body:    'DM Sans', sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
  }

  /* ── CURSOR ── */
  .cursor {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--cyan);
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    transition: transform .15s ease;
    mix-blend-mode: screen;
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(13,205,200,.45);
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9998;
    transition: transform .35s cubic-bezier(.22,1,.36,1), width .25s, height .25s, opacity .25s;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 900;
    padding: 0 6%;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
    background: rgba(18, 8, 46, 0.93);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(13,205,200,.15);
    transition: box-shadow .3s;
  }
  nav.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,.45); }

  .nav-logo {
    height: 38px; width: auto;
    display: flex; align-items: center;
  }
  .nav-logo img { height: 58px; width: auto; object-fit: contain; }
  .nav-logo-placeholder {
    height: 38px; width: 110px;
    background: rgba(13,205,200,.12);
    border: 1px dashed rgba(13,205,200,.4);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: .7rem; color: var(--cyan);
    letter-spacing: .08em;
  }

  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-family: var(--font-body); font-size: .85rem; font-weight: 500;
    color: rgba(255,255,255,.75); text-decoration: none;
    letter-spacing: .06em; text-transform: uppercase;
    transition: color .2s;
    position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1.5px; background: var(--cyan);
    transition: width .3s;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-links a:hover::after { width: 100%; }

  .btn-nav {
    padding: 10px 24px;
    background: var(--gradient-btn);
    color: var(--white); font-family: var(--font-body); font-size: .82rem;
    font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
    text-decoration: none; border-radius: 50px;
    box-shadow: 0 4px 20px rgba(107,33,214,.4);
    transition: transform .2s, box-shadow .2s;
  }
  .btn-nav:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(107,33,214,.55); }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
  .hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex; flex-direction: column; justify-content: center;
    padding: 120px 6% 80px;
    position: relative; overflow: hidden;
  }
  .hero-grid-bg {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(13,205,200,.07) 1px, transparent 1px),
      linear-gradient(90deg, rgba(13,205,200,.07) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  }
  .hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .22;
    animation: blobFloat 10s ease-in-out infinite alternate;
  }
  .blob1 { width: 600px; height: 600px; background: #0DCDC8; top: -100px; right: -100px; }
  .blob2 { width: 450px; height: 450px; background: #6B21D6; bottom: -80px; left: -80px; animation-delay: -4s; }
  .blob3 { width: 350px; height: 350px; background: #2553C7; top: 35%; left: 35%; animation-delay: -7s; opacity: .15; }
  @keyframes blobFloat {
    0% { transform: translate(0,0) scale(1); }
    100% { transform: translate(30px,20px) scale(1.06); }
  }

  .hero-inner {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
    max-width: 1260px; margin: 0 auto; width: 100%;
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px;
    background: rgba(13,205,200,.12);
    border: 1px solid rgba(13,205,200,.35);
    border-radius: 50px;
    font-family: var(--font-body); font-size: .75rem; font-weight: 600;
    color: var(--cyan); letter-spacing: .1em; text-transform: uppercase;
    margin-bottom: 28px;
    width: fit-content;
  }
  .hero-badge-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--cyan);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(13,205,200,.7); }
    50% { box-shadow: 0 0 0 7px rgba(13,205,200,0); }
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -.02em;
  }
  .hero-title .accent { color: var(--cyan); }
  .hero-title .accent-purple { color: #C084FC; }

  .hero-desc {
    font-family: var(--font-body); font-size: 1.05rem; font-weight: 300;
    color: rgba(255,255,255,.65); line-height: 1.75;
    max-width: 500px; margin-bottom: 40px;
  }

  .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

  .btn-primary {
    padding: 14px 32px;
    background: var(--gradient-btn);
    color: var(--white); font-family: var(--font-body); font-size: .9rem;
    font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
    text-decoration: none; border-radius: 50px;
    box-shadow: 0 6px 30px rgba(107,33,214,.45);
    transition: transform .2s, box-shadow .2s;
    display: inline-flex; align-items: center; gap: 10px;
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(107,33,214,.6); }

  .btn-ghost {
    padding: 14px 32px;
    background: transparent;
    color: var(--white); font-family: var(--font-body); font-size: .9rem;
    font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
    text-decoration: none; border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,.3);
    transition: border-color .2s, background .2s;
  }
  .btn-ghost:hover { border-color: var(--cyan); background: rgba(13,205,200,.1); }

  .hero-stats {
    display: flex; gap: 32px; margin-top: 48px; flex-wrap: wrap;
  }
  .stat { display: flex; flex-direction: column; gap: 4px; }
  .stat-num {
    font-family: var(--font-display); font-size: 1.9rem; font-weight: 800;
    color: var(--cyan); line-height: 1;
  }
  .stat-label { font-size: .75rem; color: rgba(255,255,255,.5); letter-spacing: .06em; text-transform: uppercase; }
  .stat-divider { width: 1px; background: rgba(255,255,255,.14); align-self: stretch; }

  .hero-visual {
    position: relative;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-img-frame {
    width: 100%; max-width: 520px;
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(13,205,200,.3);
    box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.04);
    position: relative;
    background: rgba(255,255,255,.04);
  }
  .hero-img-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .hero-img-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 12px; color: rgba(13,205,200,.5);
    font-family: var(--font-body); font-size: .8rem; letter-spacing: .05em;
    background: rgba(13,205,200,.04);
  }
  .hero-img-placeholder svg { width: 48px; height: 48px; opacity: .4; }

  .hero-float-card {
    position: absolute;
    background: rgba(20, 8, 50, 0.88);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(13,205,200,.28);
    border-radius: 14px;
    padding: 14px 20px;
    box-shadow: 0 16px 40px rgba(0,0,0,.45);
    animation: cardFloat 5s ease-in-out infinite alternate;
  }
  .hero-float-card.card-a { bottom: -20px; left: -30px; animation-delay: -2s; }
  .hero-float-card.card-b { top: -16px; right: -20px; }
  @keyframes cardFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
  }
  .card-label { font-size: .65rem; color: var(--cyan); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 4px; }
  .card-val { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--white); }
  .card-sub { font-size: .7rem; color: rgba(255,255,255,.45); }

  .card-val img{
    height: 1.1rem;
  }

  /* ── MARQUEE ── */
  .marquee-strip {
    background: var(--gradient-brand);
    padding: 14px 0; overflow: hidden;
    position: relative;
  }
  .marquee-inner {
    display: flex; gap: 0; white-space: nowrap;
    animation: marqueeScroll 22s linear infinite;
  }
  @keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .marquee-item {
    padding: 0 32px;
    font-family: var(--font-display); font-size: .82rem; font-weight: 700;
    color: rgba(255,255,255,.9); letter-spacing: .1em; text-transform: uppercase;
    display: flex; align-items: center; gap: 50px;
  }
  .marquee-item::after { content: '✦'; opacity: .5; }

  /* ── SECTION SHARED ── */
  section { padding: 100px 6%; }
  .section-inner { max-width: 1260px; margin: 0 auto; }

  .section-label {
    display: inline-block;
    font-family: var(--font-body); font-size: .72rem; font-weight: 600;
    color: var(--purple-vivid); letter-spacing: .15em; text-transform: uppercase;
    margin-bottom: 16px;
  }
  .section-title {
    font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800; color: var(--text-dark); line-height: 1.15;
    letter-spacing: -.02em;
  }
  .section-title .accent { color: var(--purple-vivid); }
  .section-title .accent-cyan { color: var(--cyan); }
  .section-desc {
    font-family: var(--font-body); font-size: 1rem; color: var(--gray-text);
    max-width: 560px; margin-top: 16px; line-height: 1.75;
  }

  /* ── ABOUT ── */
  #about { background: var(--off-white); }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }
  .about-tag {
    display: inline-block; padding: 4px 14px;
    background: rgba(107,33,214,.1); border-radius: 50px;
    font-size: .72rem; font-weight: 600; color: var(--purple-vivid);
    letter-spacing: .1em; text-transform: uppercase; margin-bottom: 20px;
  }
  .about-text h2 {
    font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800; color: var(--text-dark); line-height: 1.2; margin-bottom: 24px;
  }
  .about-text p { font-size: .97rem; color: var(--gray-text); line-height: 1.8; margin-bottom: 16px; }
  .about-prop {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 32px;
    border-left: 4px solid var(--purple-vivid);
    box-shadow: 0 4px 20px rgba(107,33,214,.08);
    margin-top: 32px;
  }
  .about-prop h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
  .about-prop p { font-size: .9rem; color: var(--gray-text); line-height: 1.7; margin: 0; }
  .about-visual { position: relative; }
  .about-img-wrap {
    width: 100%; aspect-ratio: 5/4;
    border-radius: 20px; overflow: hidden;
    background: var(--gray-light);
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 20px 60px rgba(107,33,214,.12);
  }
  .about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
  .img-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 10px; color: #aab; font-size: .78rem; letter-spacing: .05em;
  }
  .img-placeholder svg { width: 40px; height: 40px; opacity: .3; }
  .about-badge-ml {
    position: absolute; bottom: -18px; right: -18px;
    background: var(--gradient-brand);
    color: var(--white);
    border-radius: 14px; padding: 16px 22px;
    box-shadow: 0 12px 36px rgba(107,33,214,.4);
    text-align: center;
  }
  .about-badge-ml .badge-icon { font-size: 1.6rem; margin-bottom: 4px; }
  .about-badge-ml .badge-text { font-size: .7rem; color: rgba(255,255,255,.9); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
  .badge-icon img {
    height: 2.1rem;
  }

  /* ── MARKETPLACES ── */
  #marketplaces { background: var(--gradient-hero); position: relative; overflow: hidden; }
  #marketplaces::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(13,205,200,.06) 1px, transparent 1px);
    background-size: 40px 40px;
  }
  .mkt-inner { position: relative; z-index: 2; }
  .mkt-header { text-align: center; margin-bottom: 64px; }
  .mkt-header .section-title { color: var(--white); }
  .mkt-header .section-desc { color: rgba(255,255,255,.5); margin: 16px auto 0; }
  .mkt-cards {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  }
  .mkt-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(0,194,203,.15);
    border-radius: 20px; padding: 36px 24px;
    text-align: center;
    transition: background .3s, border-color .3s, transform .3s;
    cursor: default;
    
  }

  .mkt-card:hover {
    background: rgba(0,194,203,.08);
    border-color: rgba(0,194,203,.4);
    transform: translateY(-6px);
  }
  .mkt-icon {
    width: 64px; height: 64px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin: 0 auto 20px;
    border: 1px solid rgba(255,255,255,.1);
  }
  .mkt-icon.ml { background: rgba(255,230,0,.12); }
  .mkt-icon.amz { background: rgba(255,153,0,.12); }
  .mkt-icon.shp { background: rgba(238,77,45,.12); }
  .mkt-icon.mag { background: rgba(37,99,235,.12); }
  .mkt-name {
    font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
    color: var(--white); margin-bottom: 10px;
  }

  .mkt-icon.ml {
    width: 100px;
    height: 100px;
    border-radius: 8px; 
    overflow: hidden;
  }

  .mkt-icon.ml img{
    width: 100%;
    height: 100%;
    object-fit: contain; 
    background-color: #fff; 
  }

  .mkt-icon.amz {
    width: 100px;
    height: 100px;
    border-radius: 8px; 
    overflow: hidden;
  }

  .mkt-icon.amz img{
    width: 100%;
    height: 100%;
    object-fit: contain; 
    background-color: #fff; 
  }

  .mkt-icon.shp {
    width: 100px;
    height: 100px;
    border-radius: 8px; 
    overflow: hidden;
  }

  .mkt-icon.shp img{
    width: 100%;
    height: 100%;
    object-fit: contain; 
    background-color: #fff; 
  }

  .mkt-icon.mag {
    width: 100px;
    height: 100px;
    border-radius: 8px; 
    overflow: hidden;
  }

  .mkt-icon.mag img{
    width: 100%;
    height: 100%;
    object-fit: contain; 
    background-color: #fff; 
  }

  .mkt-desc { font-size: .82rem; color: rgba(255,255,255,.45); line-height: 1.6; }
  .mkt-tag {
    display: inline-block; margin-top: 16px; padding: 4px 12px;
    border-radius: 50px; font-size: .68rem; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase;
  }
  .mkt-tag.gold { background: rgba(255,230,0,.15); color: #FFE600; }
  .mkt-tag.orange { background: rgba(255,153,0,.15); color: #FF9900; }
  .mkt-tag.red { background: rgba(238,77,45,.15); color: #EE4D2D; }
  .mkt-tag.blue { background: rgba(37,99,235,.15); color: #60A5FA; }

/* ================================================================
   SUBSTITUA o bloco /* ── METHODOLOGY ──  do seu style/style.css
   por este código completo abaixo
   ================================================================ */

/* ── METHODOLOGY ── */
#methodology {
  background: var(--white);
  padding: 100px 6%;
}

/* Cabeçalho centralizado */
.method-header {
  text-align: center;
  margin-bottom: 72px;
}

.method-header .section-desc {
  max-width: 560px;
  margin: 16px auto 0;
}

/* Layout principal: 2 colunas */
.method-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  max-width: 1260px;
  margin: 0 auto;
}

/* ────────────────────────────────────────────
   COLUNA ESQUERDA — Timeline de steps
   ──────────────────────────────────────────── */
.method-steps-col {
  position: sticky;
  top: 100px; /* fica "preso" enquanto a direita rola */
}

.method-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Cada step = track (linha/dot) + card */
.method-step {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

/* Trilha vertical (ponto + linha) */
.mstep-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 24px;
  padding-top: 4px;
}

.mstep-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gradient-btn);
  box-shadow: 0 0 0 4px rgba(107,33,214,.15);
  flex-shrink: 0;
  transition: transform .3s, box-shadow .3s;
  position: relative;
  z-index: 1;
}

.mstep-dot--last {
  background: var(--gradient-brand);
  box-shadow: 0 0 0 6px rgba(13,205,200,.2);
}

.mstep-line {
  width: 2px;
  flex: 1;
  min-height: 24px;
  background: linear-gradient(to bottom, rgba(107,33,214,.25), rgba(13,205,200,.15));
  margin-top: 6px;
}

/* Hover no step: dot cresce */
.method-step:hover .mstep-dot {
  transform: scale(1.35);
  box-shadow: 0 0 0 6px rgba(107,33,214,.2);
}

/* Card do step */
.mstep-card {
  background: var(--off-white);
  border: 1.5px solid var(--gray-light);
  border-radius: 18px;
  padding: 20px 22px;
  margin-bottom: 16px;
  flex: 1;
  transition: background .3s, border-color .3s, box-shadow .3s, transform .3s;
  cursor: default;
}

.method-step--last .mstep-card {
  margin-bottom: 0;
}

.method-step:hover .mstep-card {
  background: var(--white);
  border-color: rgba(107,33,214,.3);
  box-shadow: 0 8px 32px rgba(107,33,214,.1);
  transform: translateX(6px);
}

/* Header do card: número + título */
.mstep-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.mstep-num {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 800;
  color: var(--white);
  background: var(--gradient-btn);
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: .04em;
}

.mstep-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin: 0;
}

.mstep-desc {
  font-size: .85rem;
  color: var(--gray-text);
  line-height: 1.65;
  margin-bottom: 14px;
}

/* Tags do step */
.mstep-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mstep-tags span {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(107,33,214,.08);
  color: var(--purple-vivid);
  border: 1px solid rgba(107,33,214,.15);
  transition: background .25s, color .25s;
}

.method-step:hover .mstep-tags span {
  background: rgba(107,33,214,.14);
}

/* ────────────────────────────────────────────
   COLUNA DIREITA — Visual
   ──────────────────────────────────────────── */
.method-visual-col {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Logo badge (fundo branco, logo escura) ── */
.method-logo-badge {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: 18px 18px 0 0;        /* arredonda só em cima */
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -4px 20px rgba(107,33,214,.06);
  min-height: 80px;
}

.method-logo-badge img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.method-logo-fallback {
  display: none;                        /* aparece apenas se img falhar */
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gray-text);
  border: 1.5px dashed var(--gray-light);
  border-radius: 8px;
  padding: 8px 20px;
  width: 100%;
  text-align: center;
}

/* ── Foto — mesmo format do Hero (4/3) ── */
.method-img-frame {
  width: 100%;
  aspect-ratio: 4 / 4;
  overflow: hidden;
  border-radius: 18px;        /* arredonda só embaixo */
  position: relative;
  box-shadow: 0 24px 64px rgba(107,33,214,.18);
  border: 1.5px solid var(--gray-light);
  border-top: 1.5px solid var(--gray-light);                   
}

.method-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .6s ease;
}

.method-img-frame:hover img {
  transform: scale(1.04);
}

/* Overlay sutil de gradiente sobre a foto */
.method-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 55%,
    rgba(26, 15, 60, .45) 100%
  );
  pointer-events: none;
}

/* ── Card flutuante: métrica ── */
.method-float-card {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: var(--gradient-brand);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 16px 48px rgba(107,33,214,.45);
  animation: methodFloat 5s ease-in-out infinite alternate;
  z-index: 3;
}

.mfc-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.mfc-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.mfc-label {
  font-size: .68rem;
  color: rgba(255,255,255,.7);
  line-height: 1.4;
  margin-top: 3px;
}

/* ── Card flutuante: timeline ── */
.method-timeline-card {
  position: absolute;
  top: 92px;                            /* alinhado com a foto */
  right: -24px;
  background: rgba(18, 8, 46, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(13,205,200,.28);
  border-radius: 16px;
  padding: 16px 20px;
  min-width: 170px;
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
  animation: methodFloat 5s ease-in-out infinite alternate;
  animation-delay: -2.5s;
  z-index: 3;
}

.mtc-label {
  font-size: .62rem;
  color: var(--cyan);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.mtc-val {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}

/* Barra de progresso animada */
.mtc-bar {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,.12);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.mtc-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--gradient-btn);
  border-radius: 4px;
  transition: width 1.8s cubic-bezier(.22,1,.36,1);
}

/* A barra anima quando entra na viewport (classe adicionada pelo JS) */
.mtc-bar-fill.animated {
  width: 78%;
}

.mtc-sub {
  font-size: .66rem;
  color: rgba(255,255,255,.45);
  line-height: 1.4;
}

@keyframes methodFloat {
  0%   { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}


/* ────────────────────────────────────────────
   RESPONSIVO — Methodology
   ──────────────────────────────────────────── */

@media (max-width: 1100px) {
  .method-timeline-card {
    right: -10px;
  }

  .method-float-card {
    left: -10px;
  }
}

@media (max-width: 1024px) {
  .method-body {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Remove sticky em tablet/mobile */
  .method-steps-col {
    position: static;
  }

  /* Cards flutuantes ficam dentro do frame em mobile */
  .method-float-card {
    left: 12px;
    bottom: 12px;
    position: absolute;
  }

  .method-timeline-card {
    right: 12px;
    top: 104px;
    position: absolute;
  }
}

@media (max-width: 768px) {
  #methodology { padding: 70px 5%; }

  .method-header { margin-bottom: 48px; }

  .method-body { gap: 36px; }

  .mstep-card { padding: 16px 18px; }

  /* Cards flutuantes menores */
  .method-float-card {
    padding: 12px 14px;
    gap: 10px;
  }

  .mfc-val { font-size: 1.2rem; }

  .method-timeline-card {
    padding: 12px 14px;
    min-width: 140px;
    top: 96px;
  }

  .mtc-val { font-size: 1.3rem; }
}

@media (max-width: 480px) {
  .method-timeline-card { display: none; } /* esconde em telas muito pequenas */

  .method-float-card {
    left: 8px;
    bottom: 8px;
  }

  .mstep-tags { display: none; } /* limpa em mobile muito pequeno */
}

/* ================================================================
   SUBSTITUA apenas o bloco dos cards de steps no seu style.css
   (do .method-steps até .mstep-tags span inclusive)
   ================================================================ */

.method-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Cada step = track (linha/dot) + card */
.method-step {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

/* Trilha vertical (ponto + linha) */
.mstep-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 24px;
  padding-top: 18px;
}

.mstep-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gradient-btn);
  box-shadow: 0 0 0 4px rgba(107,33,214,.15);
  flex-shrink: 0;
  transition: transform .3s, box-shadow .3s;
  position: relative;
  z-index: 1;
}

.mstep-dot--last {
  background: var(--gradient-brand);
  box-shadow: 0 0 0 6px rgba(13,205,200,.2);
}

.mstep-line {
  width: 2px;
  flex: 1;
  min-height: 16px;
  background: linear-gradient(to bottom, rgba(107,33,214,.25), rgba(13,205,200,.15));
  margin-top: 6px;
}

.method-step:hover .mstep-dot {
  transform: scale(1.4);
  box-shadow: 0 0 0 7px rgba(107,33,214,.22);
}

/* ────────────────────────────────────────────
   CARD SUSPENSO — estado padrão (compacto)
   ──────────────────────────────────────────── */
.mstep-card {
  flex: 1;

  /* visual de "suspenso" */
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: 16px;
  box-shadow:
    0 4px 12px rgba(107,33,214,.07),
    0 1px 3px rgba(0,0,0,.06);

  /* layout interno */
  padding: 16px 20px;
  overflow: hidden;

  /* altura colapsada — só mostra o header */
  max-height: 64px;

  /* transição suave de tudo */
  transition:
    max-height .45s cubic-bezier(.22,1,.36,1),
    padding    .35s ease,
    box-shadow .3s ease,
    border-color .3s ease,
    transform  .3s ease,
    background .3s ease;

  cursor: default;
  will-change: max-height, transform;
}

/* ── Estado expandido (hover) ── */
.method-step:hover .mstep-card {
  max-height: 220px;           /* grande o suficiente para todo o conteúdo */
  padding: 20px 22px;
  background: var(--off-white);
  border-color: rgba(107,33,214,.35);
  box-shadow:
    0 16px 40px rgba(107,33,214,.14),
    0 4px 12px rgba(107,33,214,.08);
  transform: translateX(6px) translateY(-2px);
}

/* ── Header do card: número + título ── */
.mstep-header {
  display: flex;
  align-items: center;
  gap: 12px;
  /* altura fixa para o estado colapsado ser sempre consistente */
  min-height: 32px;
}

.mstep-num {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 800;
  color: var(--white);
  background: var(--gradient-btn);
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: .04em;
}

.mstep-title {
  font-family: var(--font-display);
  font-size: .97rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin: 0;
  /* título sempre visível */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: white-space .1s .2s, overflow .1s .2s, text-overflow .1s .2s;
}

/* Quando expande, o título pode quebrar normalmente */
.method-step:hover .mstep-title {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}

/* ── Descrição — invisível no colapso, aparece no hover ── */
.mstep-desc {
  font-size: .84rem;
  color: var(--gray-text);
  line-height: 1.65;
  margin-top: 12px;
  margin-bottom: 14px;

  /* começa invisível e sem espaço */
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity .35s ease .1s,
    transform .35s ease .1s;
}

.method-step:hover .mstep-desc {
  opacity: 1;
  transform: translateY(0);
}

/* ── Tags — invisíveis no colapso, aparecem no hover ── */
.mstep-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;

  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity .3s ease .2s,
    transform .3s ease .2s;
}

.method-step:hover .mstep-tags {
  opacity: 1;
  transform: translateY(0);
}

.mstep-tags span {
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(107,33,214,.08);
  color: var(--purple-vivid);
  border: 1px solid rgba(107,33,214,.15);
}

  /* ── METHODOLOGY ── */
  /* #methodology { background: var(--white); }
  .method-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .method-steps { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
  .step {
    display: flex; gap: 24px; padding: 28px 0;
    border-bottom: 1px solid var(--gray-light);
    position: relative;
    transition: padding .3s;
  }
  .step:last-child { border-bottom: none; }
  .step-num {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--off-white); border: 1.5px solid var(--gray-light);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: .85rem; font-weight: 800;
    color: var(--gray-text); flex-shrink: 0;
    transition: background .3s, border-color .3s, color .3s;
  }
  .step:hover .step-num { background: var(--gradient-btn); border-color: transparent; color: var(--white); }
  .step-content h4 {
    font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
    color: var(--text-dark); margin-bottom: 8px;
  }
  .step-content p { font-size: .88rem; color: var(--gray-text); line-height: 1.65; }

  .method-visual { position: relative; }
  .method-img-wrap {
    width: 100%; aspect-ratio: 4/5;
    border-radius: 24px; overflow: hidden;
    background: var(--gray-light);
    box-shadow: 0 24px 64px rgba(107,33,214,.15);
  }
  .method-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
  .method-float {
    position: absolute; top: 32px; left: -24px;
    background: var(--gradient-brand); color: var(--white);
    border-radius: 14px; padding: 18px 22px;
    box-shadow: 0 16px 40px rgba(107,33,214,.45);
  }
  .method-float-label { font-size: .65rem; color: rgba(255,255,255,.75); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 4px; }
  .method-float-val { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--white); }
  .method-float-sub { font-size: .7rem; color: rgba(255,255,255,.6); } */

  /* ── DELIVERIES ── */
  #deliveries { background: var(--off-white); }
  .deliv-header { margin-bottom: 56px; }
  .deliv-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .deliv-card {
    background: var(--white);
    border-radius: 20px; padding: 32px 24px;
    border: 1px solid rgba(0,0,0,.07);
    box-shadow: 0 4px 16px rgba(0,0,0,.05);
    transition: transform .3s, box-shadow .3s, border-color .3s;
  }
  .deliv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(107,33,214,.12);
    border-color: var(--purple-vivid);
  }
  .deliv-icon-wrap {
    width: 52px; height: 52px; border-radius: 14px;
    background: linear-gradient(135deg, rgba(107,33,214,.12), rgba(13,205,200,.12));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 20px;
  }
  .deliv-card h4 {
    font-family: var(--font-display); font-size: 1rem; font-weight: 700;
    color: var(--text-dark); margin-bottom: 14px;
  }
  .deliv-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .deliv-card ul li {
    font-size: .82rem; color: var(--gray-text); line-height: 1.55;
    padding-left: 14px; position: relative;
  }
  .deliv-card ul li::before { content: '—'; position: absolute; left: 0; color: var(--purple-vivid); font-size: .7rem; top: 2px; }

  /* ── RESULTS / PROOF ── */
  #results { background: var(--gradient-brand); position: relative; overflow: hidden; }
  .results-bg-circle {
    position: absolute; width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
    top: 50%; left: 50%; transform: translate(-50%,-50%);
    pointer-events: none;
  }
  .results-inner { position: relative; z-index: 2; }
  .results-header { text-align: center; margin-bottom: 64px; }
  .results-header .section-title { color: var(--white); }
  .results-header .section-desc { color: rgba(255,255,255,.6); margin: 16px auto 0; }
  .results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .result-card {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 20px; padding: 40px 32px;
    text-align: center;
    backdrop-filter: blur(6px);
    transition: background .3s, transform .3s;
  }
  .result-card:hover { background: rgba(255,255,255,.16); transform: translateY(-4px); }
  .result-num {
    font-family: var(--font-display); font-size: 3.2rem; font-weight: 800;
    color: var(--white); line-height: 1; margin-bottom: 10px;
    text-shadow: 0 2px 20px rgba(0,0,0,.2);
  }
  .result-label {
    font-size: .85rem; color: rgba(255,255,255,.7); line-height: 1.5;
  }
  .result-label strong { color: var(--white); display: block; margin-bottom: 6px; font-size: 1rem; }

  /* ── RECOGNITION ── */
  #recognition { background: var(--off-white); }
  .recog-inner { display: flex; align-items: center; gap: 80px; }
  .recog-text { flex: 1; }
  .recog-text h2 {
    font-family: var(--font-display); font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    font-weight: 800; color: var(--text-dark); line-height: 1.2; margin-bottom: 20px;
  }
  .recog-text h2 .accent { color: var(--purple-vivid); }
  .recog-text p { font-size: .95rem; color: var(--gray-text); line-height: 1.75; }
  .recog-badge-big {
    flex-shrink: 0;
    width: 220px; height: 220px; border-radius: 50%;
    background: var(--gradient-brand);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 20px;
    box-shadow: 0 20px 60px rgba(107,33,214,.45);
    animation: pulseBadge 3s ease-in-out infinite;
  }
  @keyframes pulseBadge {
    0%,100% { box-shadow: 0 20px 60px rgba(107,33,214,.45), 0 0 0 0 rgba(107,33,214,.2); }
    50%      { box-shadow: 0 20px 60px rgba(107,33,214,.6),  0 0 0 24px rgba(107,33,214,0); }
  }
  .recog-badge-big .rb-icon { font-size: 2.4rem; margin-bottom: 8px; }
  .recog-badge-big .rb-title { font-family: var(--font-display); font-size: .85rem; font-weight: 800; color: var(--white); line-height: 1.2; }
  .recog-badge-big .rb-sub { font-size: .65rem; color: rgba(255,255,255,.75); margin-top: 6px; line-height: 1.4; }
  .rb-icon img{
    height: 2.2rem;
  }

  /* ── CTA ── */
  #cta {
    background: var(--gradient-hero);
    position: relative; overflow: hidden;
    text-align: center;
    padding: 120px 6%;
  }
  #cta::before {
    content: ''; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(0,194,203,.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,194,203,.06) 1px, transparent 1px);
    background-size: 48px 48px;
  }
  .cta-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
  .cta-inner .section-label { color: var(--cyan); }
  .cta-inner h2 {
    font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 800; color: var(--white); line-height: 1.15;
    margin: 16px 0 24px; letter-spacing: -.02em;
  }
  .cta-inner h2 span { color: var(--cyan); }
  .cta-inner p { font-size: 1rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 40px; }
  .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-whatsapp {
    padding: 16px 36px;
    background: #25D366;
    color: var(--white); font-family: var(--font-body); font-size: .9rem;
    font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
    text-decoration: none; border-radius: 50px;
    box-shadow: 0 6px 30px rgba(37,211,102,.35);
    transition: transform .2s, box-shadow .2s;
    display: inline-flex; align-items: center; gap: 10px;
  }
  .btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(37,211,102,.5); }

  /* ── FOOTER ── */
  footer {
    background: #070f22;
    padding: 48px 6% 32px;
    border-top: 1px solid rgba(0,194,203,.1);
  }
  .footer-inner {
    max-width: 1260px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 24px;
  }
  .footer-logo { height: 34px; display: flex; align-items: center; }
  .footer-logo img { height: 34px; width: auto; }
  .footer-logo-placeholder {
    height: 34px; width: 100px;
    background: rgba(0,194,203,.1);
    border: 1px dashed rgba(0,194,203,.3);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: .65rem; color: var(--cyan); letter-spacing: .08em;
  }
  .footer-copy { font-size: .78rem; color: rgba(255,255,255,.3); }
  .footer-links { display: flex; gap: 24px; }
  .footer-links a { font-size: .78rem; color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s; }
  .footer-links a:hover { color: var(--cyan); }

  /* ── MOBILE NAV ── */
  .mobile-menu {
    position: fixed; top: 72px; left: 0; right: 0; z-index: 850;
    background: rgba(13,27,62,.98);
    backdrop-filter: blur(20px);
    padding: 24px 6%;
    display: none; flex-direction: column; gap: 20px;
    border-bottom: 1px solid rgba(0,194,203,.15);
    transform: translateY(-10px); opacity: 0;
    transition: transform .3s, opacity .3s;
  }
  .mobile-menu.open { display: flex; transform: translateY(0); opacity: 1; }
  .mobile-menu a { color: rgba(255,255,255,.8); text-decoration: none; font-size: 1rem; font-weight: 500; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.07); }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .mkt-cards { grid-template-columns: repeat(2, 1fr); }
    .deliv-cards { grid-template-columns: repeat(2, 1fr); }
    .results-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 768px) {
    .nav-links, .btn-nav { display: none; }
    .hamburger { display: flex; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .method-grid { grid-template-columns: 1fr; gap: 40px; }
    .mkt-cards { grid-template-columns: 1fr 1fr; }
    .deliv-cards { grid-template-columns: 1fr; }
    .results-grid { grid-template-columns: 1fr; }
    .recog-inner { flex-direction: column; text-align: center; }
    .footer-inner { flex-direction: column; text-align: center; }
    .hero-stats { justify-content: center; }
  }
  @media (max-width: 480px) {
    section { padding: 70px 5%; }
    .mkt-cards { grid-template-columns: 1fr; }
  }

  /* ── UTILITY ANIMATIONS ── */
  .fade-up { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
  .fade-up.in-view { opacity: 1; transform: translateY(0); }

  .counter-num { display: inline-block; }


/* ──────────────────────────────────────────────
   #SERVICES — Trilhas de Solução
   ────────────────────────────────────────────── */

#services {
  background: var(--white);
  padding: 100px 6%;
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header .section-desc {
  margin: 16px auto 0;
  max-width: 580px;
}

/* Grid dos 3 cards */
.svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  max-width: 1260px;
  margin: 0 auto;
}

/* ── Card base ── */
.svc-card {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: 24px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(107, 33, 214, .12);
  border-color: rgba(107, 33, 214, .35);
}

/* ── Card destaque central (Vylo UP) ── */
.svc-card--featured {
  background: var(--gradient-brand);
  border: none;
  box-shadow: 0 24px 64px rgba(107, 33, 214, .45);
  transform: translateY(-12px);  /* levanta um pouco */
}

.svc-card--featured:hover {
  transform: translateY(-20px);
  box-shadow: 0 32px 72px rgba(107, 33, 214, .6);
  border-color: transparent;
}

/* brilho decorativo no featured */
.svc-featured-glow {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.14) 0%, transparent 70%);
  top: -80px; right: -80px;
  pointer-events: none;
}

/* Badge "mais popular" */
.svc-popular {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(255,255,255,.2);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.3);
}

/* ── Topo do card (ícone + badge) ── */
.svc-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.svc-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(107,33,214,.1), rgba(13,205,200,.1));
  border: 1px solid rgba(107,33,214,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.svc-icon-wrap img {
  width: 38px; height: 38px;
  object-fit: contain;
}

.svc-icon-fallback {
  font-size: 1.4rem;
  display: none; /* só aparece quando img falha via onerror */
  align-items: center; justify-content: center;
  width: 100%; height: 100%;
}

.svc-icon-wrap--light {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.3);
}

/* Badges de subtítulo */
.svc-badge {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

.svc-badge--start {
  background: rgba(107,33,214,.1);
  color: var(--purple-vivid);
}

.svc-badge--prime {
  background: rgba(255,255,255,.2);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.3);
}

.svc-badge--vip {
  background: rgba(13,205,200,.1);
  color: var(--cyan);
  border: 1px solid rgba(13,205,200,.25);
}

/* ── Título do plano ── */
.svc-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: 0;
}

.svc-title--light { color: var(--white); }

/* ── Bloco perfil ── */
.svc-profile {
  background: var(--off-white);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.svc-profile--light {
  background: rgba(255,255,255,.12);
}

.svc-profile-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--purple-vivid);
}

.svc-profile-label--light { color: rgba(255,255,255,.75); }

.svc-profile p {
  font-size: .85rem;
  color: var(--gray-text);
  line-height: 1.6;
  margin: 0;
}

.svc-profile--light p { color: rgba(255,255,255,.75); }

/* ── Lista de entregas ── */
.svc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.svc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.svc-list--light li { color: rgba(255,255,255,.9); }

.svc-check {
  width: 16px; height: 16px;
  color: var(--purple-vivid);
  flex-shrink: 0;
  margin-top: 1px;
}

.svc-list--light .svc-check { color: var(--cyan-light); }

/* ── Rodapé do card: suporte ── */
.svc-support {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-text);
  padding-top: 4px;
  border-top: 1px solid var(--gray-light);
}

.svc-support--light {
  color: rgba(255,255,255,.6);
  border-top-color: rgba(255,255,255,.15);
}

/* ── CTA do card ── */
.svc-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  background: var(--gradient-btn);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(107,33,214,.3);
  transition: transform .2s, box-shadow .2s;
}

.svc-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(107,33,214,.5);
}

.svc-cta--light {
  background: var(--white);
  color: var(--purple-deep);
  box-shadow: 0 6px 24px rgba(0,0,0,.2);
}

.svc-cta--light:hover {
  box-shadow: 0 10px 32px rgba(0,0,0,.3);
}

/* ── CTA inferior da seção ── */
.svc-bottom-cta {
  margin-top: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.svc-bottom-cta p {
  font-size: .97rem;
  color: var(--gray-text);
}

.svc-bottom-cta strong { color: var(--text-dark); }


/* ──────────────────────────────────────────────
   #TEAM — Barra rolante da equipe
   ────────────────────────────────────────────── */

#team {
  background: var(--white);
  padding: 80px 0 90px;
  overflow: hidden;
}

.team-header {
  padding: 0 6%;
  margin-bottom: 52px;
}

.team-header .section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
}

/* Typewriter wrapper */
.team-typewriter-wrap {
  display: inline-block;
  min-width: 220px;
  text-align: left;
  position: relative;
}

.team-typewriter {
  color: var(--purple-vivid);
  border-right: 3px solid var(--purple-vivid);
  padding-right: 4px;
  animation: blink-caret .75s step-end infinite;
  white-space: nowrap;
}

@keyframes blink-caret {
  0%, 100% { border-color: var(--purple-vivid); }
  50%       { border-color: transparent; }
}

/* ── Container da barra rolante ── */
.team-strip-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Faixas de fade nas bordas */
.team-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.team-fade--left {
  left: 0;
  background: linear-gradient(to right, var(--off-white) 0%, transparent 100%);
}

.team-fade--right {
  right: 0;
  background: linear-gradient(to left, var(--off-white) 0%, transparent 100%);
}

/* ── A faixa em si ── */
.team-strip {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: teamScroll 30s linear infinite;
  padding: 8px 0 16px;
}

.team-strip:hover { animation-play-state: paused; }

@keyframes teamScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* desloca metade = 1 set completo */
}

/* ── Card de cada membro ── */
.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 200px;
  flex-shrink: 0;
  cursor: default;
}

.team-img-wrap {
  width: 160px;
  height: 190px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--gray-light);
  box-shadow: 0 8px 28px rgba(107,33,214,.1);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  background: var(--gray-light);
}

.team-member:hover .team-img-wrap {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 18px 40px rgba(107,33,214,.22);
  border-color: var(--purple-vivid);
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Placeholder quando não há imagem */
.team-img-placeholder {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(107,33,214,.08), rgba(13,205,200,.08));
  color: var(--gray-text);
  flex-direction: column;
  gap: 8px;
}

.team-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
}

.team-name {
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.team-role {
  font-size: .75rem;
  color: var(--purple-vivid);
  font-weight: 500;
  letter-spacing: .03em;
}


/* ──────────────────────────────────────────────
   RESPONSIVO — Services & Team
   ────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .svc-cards {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* Vylo UP (featured) perde o lift em tablet */
  .svc-card--featured {
    transform: none;
    grid-column: span 2;      /* ocupa linha inteira no tablet */
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }

  .svc-card--featured:hover { transform: translateY(-8px); }
}

@media (max-width: 768px) {
  #services { padding: 70px 5%; }

  .svc-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .svc-card--featured {
    grid-column: span 1;
    max-width: 100%;
    transform: none;
  }

  .team-header .section-title {
    flex-direction: column;
    gap: 6px;
    font-size: 1.5rem;
  }

  .team-typewriter-wrap {
    min-width: 0;
    text-align: center;
  }

  .team-member { width: 160px; }

  .team-img-wrap {
    width: 130px;
    height: 155px;
  }

  .team-fade { width: 60px; }
}

@media (max-width: 480px) {
  .svc-card { padding: 28px 22px 24px; }

  .team-member { width: 140px; }

  .team-img-wrap {
    width: 112px;
    height: 136px;
  }

  .team-strip { gap: 14px; }
}

  