:root {
    --teal: #24E3C6;
    --teal-dim: rgba(36,227,198,0.12);
    --teal-glow: rgba(36,227,198,0.35);
    --dark: #080E1A;
    --dark2: #0D1525;
    --dark3: #111d33;
    --white: #FFFFFF;
    --off-white: #E8EEF5;
    --text-muted: #8A9BB5;
    --border: rgba(36,227,198,0.18);
    --nav-height: 96px;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--dark);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    line-height: 1.7;
  }

  /* ─── SCROLLBAR ─── */
  ::-webkit-scrollbar { width: 5px; }
  ::-webkit-scrollbar-track { background: var(--dark2); }
  ::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 10px; }

  /* ─── NOISE OVERLAY ─── */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 0; opacity: .4;
  }

  /* ─── TYPOGRAPHY ─── */
  h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.15; }

  .section-tag {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--teal); font-family: 'DM Sans', sans-serif; font-weight: 500;
    margin-bottom: 1.2rem;
  }
  .section-tag::before {
    content: ''; display: block; width: 28px; height: 1.5px; background: var(--teal);
  }

  /* ─── NAVIGATION ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 0 6%;
    display: flex; align-items: center; justify-content: space-between;
    height: var(--nav-height);
    transition: all .4s ease;
    border-bottom: 1px solid transparent;
  }

  nav.scrolled {
    background: rgba(8, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
    --nav-height: 84px;
  }

  nav.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
  }

  .nav-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
  }
  .nav-logo img {
    height: 48px; width: auto;
  }

  .nav-links {
    display: flex; gap: 2.5rem; list-style: none;
  }
  .nav-links a {
    color: var(--off-white); text-decoration: none;
    font-size: .88rem; font-weight: 400; letter-spacing: .03em;
    transition: color .2s;
    position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -3px; left: 0; right: 100%;
    height: 1px; background: var(--teal); transition: right .3s ease;
  }
  .nav-links a:hover { color: var(--teal); }
  .nav-links a:hover::after { right: 0; }

  .nav-cta {
    background: var(--teal); color: var(--dark) !important;
    padding: .5rem 1.4rem; border-radius: 3px;
    font-weight: 500 !important; font-size: .85rem !important;
    transition: all .25s !important;
    box-shadow: 0 0 20px var(--teal-glow);
  }
  .nav-cta:hover { background: #1dceb4 !important; transform: translateY(-1px); box-shadow: 0 4px 28px var(--teal-glow) !important; }
  .nav-cta::after { display: none !important; }

  .hamburger {
    display: none; cursor: pointer; flex-direction: column; gap: 5px; background: none; border: none;
    padding: 12px; margin-right: -12px; z-index: 101;
  }
  .hamburger span {
    display: block; width: 24px; height: 2px; background: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ─── HERO ─── */
  #hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    padding-top: 96px;
    padding-bottom: 3rem;
    position: relative; overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background: radial-gradient(ellipse 80% 70% at 60% 50%, rgba(36,227,198,.07) 0%, transparent 70%),
                radial-gradient(ellipse 40% 40% at 85% 20%, rgba(36,227,198,.05) 0%, transparent 60%);
  }

  /* Grid lines bg */
  .hero-grid {
    position: absolute; inset: 0; z-index: 0;
    background-image:
      linear-gradient(rgba(36,227,198,.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(36,227,198,.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 30%, transparent 80%);
  }

  .hero-main {
    flex: 1;
    display: flex; align-items: center; justify-content: space-between; gap: 3rem;
    padding: 0 6%;
  }

  .hero-content { position: relative; z-index: 1; max-width: 600px; flex-shrink: 0; }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid var(--border); border-radius: 100px;
    padding: .38rem 1rem .38rem .5rem;
    font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 2.2rem;
    background: var(--teal-dim);
    animation: fadeUp .8s ease both;
  }
  .hero-badge-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--teal);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--teal-glow); }
    50% { box-shadow: 0 0 0 6px transparent; }
  }

  .hero-headline {
    font-size: clamp(3rem, 6.5vw, 5.8rem);
    font-weight: 600; line-height: 1.05;
    margin-bottom: 1.2rem;
    animation: fadeUp .9s .1s ease both;
  }
  .hero-headline em {
    font-style: italic; color: var(--teal);
    display: block;
  }

  .hero-sub {
    font-size: 1.05rem; color: var(--text-muted); max-width: 520px;
    line-height: 1.75; margin-bottom: 1.8rem;
    animation: fadeUp .9s .2s ease both;
    font-weight: 300;
  }

  .hero-ctas {
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeUp .9s .3s ease both;
  }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--teal); color: var(--dark);
    padding: .9rem 2.2rem; border-radius: 4px;
    font-weight: 600; font-size: .95rem; letter-spacing: .02em;
    text-decoration: none; transition: all .25s;
    box-shadow: 0 4px 32px var(--teal-glow);
    font-family: 'DM Sans', sans-serif;
  }
  .btn-primary:hover { background: #1dceb4; transform: translateY(-2px); box-shadow: 0 8px 40px var(--teal-glow); }
  .btn-primary svg { transition: transform .2s; }
  .btn-primary:hover svg { transform: translateX(4px); }

  .btn-ghost {
    display: inline-flex; align-items: center; gap: 10px;
    border: 1px solid var(--border); color: var(--off-white);
    padding: .9rem 2.2rem; border-radius: 4px;
    font-weight: 400; font-size: .95rem;
    text-decoration: none; transition: all .25s;
    font-family: 'DM Sans', sans-serif;
  }
  .btn-ghost:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-dim); }

  .hero-stats {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
    flex-shrink: 0;
    animation: fadeUp 1s .4s ease both;
  }
  .stat-card {
    background: rgba(13,21,37,.8); border: 1px solid var(--border);
    border-radius: 12px; padding: 1.4rem 1.6rem;
    backdrop-filter: blur(12px); text-align: center;
    min-width: 140px;
    transition: border-color .25s, transform .25s;
  }
  .stat-card:hover { border-color: rgba(36,227,198,.45); transform: translateY(-3px); }
  .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem; font-weight: 700; color: var(--teal); line-height: 1;
    display: block;
  }
  .stat-label { font-size: .72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; margin-top: .5rem; display: block; }

  .hero-scroll {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: var(--text-muted); font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
    animation: fadeIn 1s 1s both;
    z-index: 1;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  .hero-scroll.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .scroll-line {
    width: 1px; height: 40px; background: linear-gradient(to bottom, var(--teal), transparent);
    animation: scrollPulse 2s infinite;
  }
  @keyframes scrollPulse {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }

  /* ─── TRUST STRIP ─── */
  .trust-strip {
    background: var(--dark2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    padding: 1.5rem 6%;
    display: flex; align-items: center; justify-content: center;
    gap: 3rem; flex-wrap: wrap;
  }
  .trust-item {
    display: flex; align-items: center; gap: .8rem;
    color: var(--text-muted); font-size: .85rem;
  }
  .trust-item svg { color: var(--teal); flex-shrink: 0; }

  /* ─── SECTIONS ─── */
  section { padding: 6.5rem 6%; position: relative; }

  .container { max-width: 1200px; margin: 0 auto; }

  .section-header { margin-bottom: 4rem; }
  .section-headline {
    font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 600;
    line-height: 1.15;
  }
  .section-headline span { color: var(--teal); font-style: italic; }

  /* ─── SOBRE ─── */
  #sobre { background: var(--dark2); }

  .sobre-intro {
    display: grid; grid-template-columns: 1fr 1.1fr;
    gap: 4rem; align-items: start;
    margin-bottom: 4rem;
  }
  .sobre-intro-left {}
  .sobre-intro-right {
    padding-top: .5rem;
  }
  .sobre-intro-right p {
    color: var(--text-muted); font-size: .97rem; line-height: 1.95;
    margin-bottom: 1.3rem;
  }
  .sobre-intro-right p strong { color: var(--off-white); font-weight: 500; }

  /* Numbers strip */
  .sobre-numbers {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px; background: var(--border);
    border: 1px solid var(--border); border-radius: 12px;
    overflow: hidden; margin-bottom: 3.5rem;
  }
  .sobre-num-item {
    background: var(--dark3); padding: 1.8rem 1.4rem;
    text-align: center; transition: background .25s;
    position: relative;
  }
  .sobre-num-item:hover { background: rgba(36,227,198,.06); }
  .sobre-num-item::after {
    content: ''; position: absolute; bottom: 0; left: 20%; right: 20%;
    height: 2px; background: var(--teal);
    transform: scaleX(0); transform-origin: center;
    transition: transform .3s ease;
  }
  .sobre-num-item:hover::after { transform: scaleX(1); }
  .sobre-num-val {
    font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 700;
    color: var(--teal); line-height: 1; display: block; margin-bottom: .4rem;
  }
  .sobre-num-label {
    font-size: .75rem; color: var(--text-muted); text-transform: uppercase;
    letter-spacing: .1em; line-height: 1.4;
  }

  /* MVV cards */
  .mvv-row {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .mvv-card {
    background: var(--dark3); border: 1px solid var(--border);
    border-radius: 12px; padding: 2rem 1.8rem;
    transition: border-color .3s, transform .3s;
    position: relative; overflow: hidden;
  }
  .mvv-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(90deg, var(--teal), transparent);
    transform: scaleX(0); transform-origin: left;
    transition: transform .4s ease;
  }
  .mvv-card:hover { border-color: rgba(36,227,198,.4); transform: translateY(-4px); }
  .mvv-card:hover::before { transform: scaleX(1); }

  .mvv-num {
    font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700;
    color: rgba(36,227,198,.1); line-height: 1; margin-bottom: 1rem;
  }
  .mvv-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--teal-dim); display: flex; align-items: center; justify-content: center;
    color: var(--teal); margin-bottom: 1.2rem;
  }
  .mvv-title {
    font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600;
    margin-bottom: .7rem; color: var(--white);
  }
  .mvv-text { font-size: .87rem; color: var(--text-muted); line-height: 1.8; }

  .mvv-tag {
    display: inline-block; margin-top: 1.2rem;
    font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
    color: var(--teal); border: 1px solid var(--border);
    padding: .25rem .7rem; border-radius: 100px;
  }

  /* ─── SERVIÇOS ─── */
  #servicos { background: var(--dark); }

  .servicos-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  .servico-card {
    background: var(--dark2); border: 1px solid var(--border);
    border-radius: 12px; padding: 2.2rem 2rem;
    transition: all .3s; cursor: default; position: relative; overflow: hidden;
  }
  .servico-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 2px; background: var(--teal); transform: scaleX(0); transform-origin: left;
    transition: transform .35s ease;
  }
  .servico-card:hover { border-color: rgba(36,227,198,.4); transform: translateY(-5px); background: var(--dark3); }
  .servico-card:hover::before { transform: scaleX(1); }

  .servico-num {
    font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 700;
    color: rgba(36,227,198,.12); line-height: 1; margin-bottom: .8rem;
    display: block;
  }
  .servico-icon {
    width: 52px; height: 52px; border-radius: 12px;
    background: var(--teal-dim); display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.3rem; color: var(--teal);
  }
  .servico-title { font-size: 1.4rem; font-weight: 600; margin-bottom: .8rem; }
  .servico-text { font-size: .88rem; color: var(--text-muted); line-height: 1.8; }
  .servico-list { list-style: none; margin-top: 1rem; }
  .servico-list li {
    font-size: .84rem; color: var(--text-muted); padding: .3rem 0;
    padding-left: 1.2rem; position: relative;
  }
  .servico-list li::before {
    content: '→'; position: absolute; left: 0; color: var(--teal); font-size: .8rem;
  }

  /* ─── DIFERENCIAIS ─── */
  #diferenciais {
    background: var(--dark);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  }

  .diferenciais-layout {
    display: grid; grid-template-columns: 1fr 1.5fr;
    gap: 5rem; align-items: start;
  }
  .diferenciais-left { position: sticky; top: 100px; }
  .diferenciais-left .section-headline { margin-bottom: 1.5rem; }
  .diferenciais-left p { color: var(--text-muted); line-height: 1.9; margin-bottom: 2rem; font-size: .95rem; }

  /* Diff cards redesign */
  .diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
  .diff-card {
    background: var(--dark2); border: 1px solid var(--border);
    border-radius: 12px; padding: 1.6rem 1.5rem;
    transition: all .3s; position: relative; overflow: hidden;
  }
  .diff-card::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--teal), transparent);
    transform: scaleX(0); transform-origin: left;
    transition: transform .35s ease;
  }
  .diff-card:hover { border-color: rgba(36,227,198,.35); background: var(--dark3); transform: translateY(-3px); }
  .diff-card:hover::after { transform: scaleX(1); }

  .diff-card-icon-wrap {
    width: 46px; height: 46px; border-radius: 10px;
    background: var(--teal-dim); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--teal); margin-bottom: 1.1rem;
    transition: background .3s, border-color .3s;
  }
  .diff-card:hover .diff-card-icon-wrap {
    background: rgba(36,227,198,.2); border-color: rgba(36,227,198,.4);
  }
  .diff-card-title {
    font-family: 'Cormorant Garamond', serif; font-size: 1.22rem; font-weight: 600;
    margin-bottom: .55rem; color: var(--white);
  }
  .diff-card-text { font-size: .83rem; color: var(--text-muted); line-height: 1.75; }

  /* Metrics */
  .metrics-showcase {
    background: var(--dark2); border: 1px solid var(--border); border-radius: 14px;
    padding: 2rem 2.2rem; position: relative; overflow: hidden;
  }
  .metrics-showcase::before {
    content: ''; position: absolute; top: -60px; right: -60px;
    width: 220px; height: 220px; border-radius: 50%;
    background: radial-gradient(circle, rgba(36,227,198,.1), transparent 70%);
    pointer-events: none;
  }
  .metrics-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 1.8rem; padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--border);
  }
  .metrics-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--white); }
  .metrics-badge {
    font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--teal); border: 1px solid var(--border);
    padding: .2rem .65rem; border-radius: 100px; background: var(--teal-dim);
  }
  .metric-row {
    display: flex; align-items: center; gap: 1rem;
    padding: .85rem 0; border-bottom: 1px solid rgba(36,227,198,.07);
  }
  .metric-row:last-child { border-bottom: none; padding-bottom: 0; }
  .metric-name { font-size: .82rem; color: var(--text-muted); min-width: 190px; flex-shrink: 0; }
  .metric-bar-wrap { flex: 1; height: 5px; background: rgba(255,255,255,.05); border-radius: 10px; overflow: hidden; }
  .metric-bar {
    height: 100%; border-radius: 10px;
    background: linear-gradient(90deg, var(--teal), rgba(36,227,198,.5));
    transition: width 1.2s ease;
  }
  .metric-val {
    font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 700;
    color: var(--teal); min-width: 52px; text-align: right; flex-shrink: 0;
  }

  /* ─── DEPOIMENTOS ─── */
  /* ─── DEPOIMENTOS VIDEO ─── */
  #depoimentos { background: var(--dark); }

  .dep-video-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .dep-video-card {
    background: var(--dark2); border: 1px solid var(--border);
    border-radius: 12px; overflow: hidden;
    transition: all .35s;
  }
  .dep-video-card:hover { border-color: rgba(36,227,198,.45); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.4); }

  .dep-video-wrap {
    position: relative; width: 100%; padding-bottom: 56.25%;
    background: var(--dark3); overflow: hidden;
  }
  .dep-video-wrap iframe {
    position: absolute; inset: 0; width: 100%; height: 100%;
    border: none; display: block;
  }
  .dep-thumb {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; transition: transform .4s ease;
  }
  .dep-video-card:hover .dep-thumb { transform: scale(1.04); }

  .dep-thumb-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .dep-thumb-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(8,14,26,.7) 0%, rgba(8,14,26,.4) 100%);
    transition: background .3s;
  }
  .dep-video-card:hover .dep-thumb-gradient { background: linear-gradient(135deg, rgba(8,14,26,.5) 0%, rgba(8,14,26,.2) 100%); }

  .dep-play-center {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; align-items: center; gap: .8rem;
  }
  .dep-play-circle {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--teal);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 28px var(--teal-glow);
    transition: transform .25s, box-shadow .25s;
  }
  .dep-play-circle svg { margin-left: 5px; }
  .dep-video-card:hover .dep-play-circle { transform: scale(1.12); box-shadow: 0 8px 40px var(--teal-glow); }
  .dep-play-label {
    font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
    color: rgba(255,255,255,.85); font-weight: 500;
    background: rgba(0,0,0,.4); padding: .3rem .9rem; border-radius: 100px;
    backdrop-filter: blur(4px);
  }

  .dep-video-info {
    padding: 1.2rem 1.5rem;
    border-top: 1px solid var(--border);
  }
  .dep-video-name {
    font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600;
    color: var(--white); margin-bottom: .25rem;
  }
  .dep-video-role { font-size: .8rem; color: var(--text-muted); }

  @media (max-width: 700px) { .dep-video-grid { grid-template-columns: 1fr; } }

  /* ─── CONTATO ─── */
  #contato { background: var(--dark2); }

  .contato-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: start;
  }
  .contato-left {
    position: sticky;
    top: 120px;
    align-self: start;
  }
  .contato-left h2 { margin-bottom: 0.8rem; }
  .contato-left p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; }

  .contato-info { display: flex; flex-direction: column; gap: 0.8rem; }
  .info-item {
    display: flex; gap: 0.8rem; align-items: center;
    background: none; border: none;
    border-radius: 0; padding: 0.3rem 0;
    text-decoration: none; color: var(--white);
    transition: all .25s;
  }
  .info-item:hover { background: none; transform: translateX(4px); }
  .info-item-icon {
    width: 34px; height: 34px; border-radius: 6px;
    background: var(--teal-dim); display: flex; align-items: center; justify-content: center;
    color: var(--teal); flex-shrink: 0;
  }
  .info-item-label { font-size: .7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .1rem; }
  .info-item-value { font-size: .88rem; font-weight: 500; transition: color 0.2s; }
  .info-item:hover .info-item-value { color: var(--teal); }

  /* ─── FORM ─── */
  .form-card {
    background: var(--dark3); border: 1px solid var(--border);
    border-radius: 12px; padding: 1.5rem;
  }
  .form-title { font-size: 1.35rem; margin-bottom: .3rem; }
  .form-subtitle { font-size: .82rem; color: var(--text-muted); margin-bottom: 1.2rem; }

  .form-group { margin-bottom: 0.8rem; }
  .form-group label {
    display: block; font-size: .75rem; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: .1em; margin-bottom: .35rem;
  }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; background: var(--dark2);
    border: 1px solid var(--border); border-radius: 6px;
    padding: 0.65rem 0.85rem; color: var(--white);
    font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    appearance: none;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-dim);
  }
  .form-group textarea { resize: vertical; min-height: 70px; }
  .form-group select option { background: var(--dark2); }

  .radio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-top: 0.4rem;
  }
  .radio-card {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.65rem 0.9rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    user-select: none;
  }
  .radio-card:hover {
    border-color: rgba(36, 227, 198, 0.4);
    background: var(--teal-dim);
  }
  .radio-card:has(input[type="radio"]:checked) {
    border-color: var(--teal);
    background: var(--teal-dim);
    box-shadow: 0 0 12px var(--teal-glow);
  }
  .radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  .radio-custom {
    width: 14px;
    height: 14px;
    border: 2px solid var(--text-muted);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s ease;
  }
  .radio-custom::after {
    content: '';
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
  }
  .radio-card input[type="radio"]:checked ~ .radio-custom {
    border-color: var(--teal);
  }
  .radio-card input[type="radio"]:checked ~ .radio-custom::after {
    display: block;
  }
  .radio-label {
    font-size: 0.8rem;
    color: var(--off-white);
    font-family: 'DM Sans', sans-serif;
  }
  .form-textarea-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: -0.2rem;
    margin-bottom: 0.4rem;
    line-height: 1.4;
  }
  .form-consent {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.8rem;
    line-height: 1.4;
  }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .form-submit {
    width: 100%; padding: 0.75rem; background: var(--teal); border: none;
    border-radius: 6px; color: var(--dark);
    font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.92rem;
    cursor: pointer; transition: all .25s; letter-spacing: .03em;
    box-shadow: 0 4px 24px var(--teal-glow);
    margin-top: 0.4rem;
  }
  .form-submit:hover { background: #1dceb4; transform: translateY(-2px); box-shadow: 0 8px 32px var(--teal-glow); }

  /* ─── CTA FINAL ─── */
  .cta-final {
    padding: 6rem 6%;
    background: var(--dark);
    text-align: center; position: relative; overflow: hidden;
  }
  .cta-final::before {
    content: '';
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(36,227,198,.1) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-final-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
  .cta-final h2 { font-size: clamp(2rem, 4vw, 3.4rem); margin-bottom: 1.2rem; }
  .cta-final p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 2.5rem; }
  .cta-final-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

  /* ─── SOCIAL ICONS ─── */
  .social-links {
    display: flex; gap: .7rem; margin-top: 1.4rem;
  }
  .social-link {
    width: 40px; height: 40px; border-radius: 8px;
    background: var(--dark3); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); text-decoration: none;
    transition: all .25s;
  }
  .social-link:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-dim); transform: translateY(-2px); }
  .social-link svg { flex-shrink: 0; }

  /* Nav social icons */
  .nav-socials { display: flex; gap: .5rem; align-items: center; }
  .nav-social {
    width: 34px; height: 34px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); text-decoration: none;
    border: 1px solid transparent;
    transition: all .2s;
  }
  .nav-social:hover { color: var(--teal); border-color: var(--border); background: var(--teal-dim); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--dark2); border-top: 1px solid var(--border);
    padding: 3rem 6% 2rem;
  }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem; margin-bottom: 2.5rem;
  }
  .footer-brand p { font-size: .88rem; color: var(--text-muted); line-height: 1.8; margin-top: 1rem; max-width: 280px; }
  .footer-col h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; margin-bottom: 1rem; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
  .footer-col ul a { color: var(--text-muted); text-decoration: none; font-size: .86rem; transition: color .2s; }
  .footer-col ul a:hover { color: var(--teal); }
  .footer-bottom {
    border-top: 1px solid var(--border); padding-top: 1.5rem;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  }
  .footer-copy { font-size: .82rem; color: var(--text-muted); }
  .footer-oab {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .78rem; color: var(--teal);
    border: 1px solid var(--border); border-radius: 100px; padding: .3rem .8rem;
  }

  .whatsapp-float {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 99;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 24px rgba(37,211,102,.4);
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.25s ease;
    opacity: 0;
    pointer-events: none;
    transform: translateY(100px);
  }
  .whatsapp-float.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .whatsapp-float.visible:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.5); }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
  }

  .reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: .1s; }
  .reveal-delay-2 { transition-delay: .2s; }
  .reveal-delay-3 { transition-delay: .3s; }
  .reveal-delay-4 { transition-delay: .4s; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    :root {
      --nav-height: 72px;
    }
    nav.scrolled {
      --nav-height: 64px;
    }
    .nav-logo img {
      height: 40px;
    }
    .hero-main { flex-direction: column; justify-content: center; padding: 0 5%; }
    .hero-stats { display: none; }
    .sobre-intro, .diferenciais-layout, .contato-grid, .footer-top { grid-template-columns: 1fr; gap: 3rem; }
    .sobre-numbers { grid-template-columns: repeat(2, 1fr); }
    .mvv-row { grid-template-columns: 1fr; }
    .nav-links {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: var(--nav-height);
      left: 0;
      right: 0;
      background: rgba(8, 14, 26, 0.98);
      padding: 2.5rem 2rem;
      gap: 1.8rem;
      border-bottom: 1px solid rgba(36, 227, 198, 0.18);
      z-index: 99;
      backdrop-filter: blur(20px);
      
      /* Transição do menu móvel */
      transform: translateY(-20px);
      opacity: 0;
      pointer-events: none;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, top 0.4s ease;
    }
    .nav-links.mobile-open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
    .hamburger { display: flex; }
    .form-row, .radio-grid { grid-template-columns: 1fr; }
    .diff-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .contato-left, .diferenciais-left { position: static; }
    .desktop-only { display: none; }
  }

  @media (max-width: 600px) {
    section { padding: 3.5rem 5%; }
    .hero-headline { font-size: 2.5rem; }
    .hero-sub { font-size: 1rem; margin-bottom: 2rem; }
    .hero-ctas { flex-direction: column; }
    .btn-primary, .btn-ghost { justify-content: center; }
    .cta-final-btns { flex-direction: column; align-items: center; }
    p, .diff-card-text, .mvv-text, .scale-pane-desc { text-align: left !important; }
  }

  @media (max-width: 480px) {
    .sobre-numbers { grid-template-columns: 1fr; }
  }



  /* ─── MÉTODO S.C.A.L.E. ─── */
  #metodo { background: var(--dark2); }

  .metodo-intro {
    display: grid; grid-template-columns: 1fr 1.1fr;
    gap: 4rem; align-items: center; margin-bottom: 4rem;
  }
  .metodo-intro p { color: var(--text-muted); line-height: 1.9; font-size: .97rem; margin-top: 1.2rem; }

  .metodo-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--teal-dim); border: 1px solid var(--border);
    border-radius: 100px; padding: .4rem 1.1rem;
    font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--teal);
    margin-bottom: 1.2rem;
  }

  .scale-method-container {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 3.5rem;
    margin-top: 3rem;
    align-items: center;
  }

  .scale-nav {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    justify-content: center;
    align-self: stretch;
  }

  .scale-btn {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    border-radius: 12px;
    background: var(--dark3);
    border: 1px solid var(--border);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
    outline: none;
  }

  .scale-btn:hover {
    border-color: rgba(36, 227, 198, 0.4);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(36, 227, 198, 0.1);
  }

  .scale-btn.active {
    color: var(--teal);
    border-color: var(--teal);
    background: var(--teal-dim);
    box-shadow: 0 0 20px var(--teal-glow);
    transform: scale(1.05);
  }

  .scale-content-wrapper {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 3rem;
    min-height: 400px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
  }

  .scale-content-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(36, 227, 198, 0.03) 0%, transparent 60%);
    pointer-events: none;
  }

  .scale-content-pane {
    display: none;
  }

  .scale-content-pane.active {
    display: block;
    animation: scalePaneFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  @keyframes scalePaneFadeIn {
    from {
      opacity: 0;
      transform: translateY(16px) scale(0.995);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .scale-pane-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1.5rem;
  }

  .scale-pane-title {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    color: var(--white);
    font-weight: 600;
  }

  .scale-pane-concept {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal-dim);
    border: 1px solid var(--border);
    color: var(--teal);
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
  }

  .scale-pane-concept svg {
    color: var(--teal);
    flex-shrink: 0;
  }

  .scale-pane-desc {
    color: var(--text-muted);
    line-height: 1.95;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
  }

  .scale-deliverables-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.2rem;
    display: block;
    font-weight: 600;
  }

  .scale-deliverables-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .scale-deliverable-item {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-size: 0.95rem;
    color: var(--off-white);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .scale-deliverable-item:hover {
    border-color: rgba(36, 227, 198, 0.4);
    background: var(--dark3);
    transform: translateX(4px);
  }

  .scale-deliverable-item svg {
    color: var(--teal);
    flex-shrink: 0;
  }

  @media (max-width: 900px) {
    .metodo-intro {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .scale-method-container {
      grid-template-columns: 1fr;
      gap: 2.2rem;
    }
    .scale-nav {
      flex-direction: row;
      justify-content: center;
      gap: 12px;
    }
    .scale-btn {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      font-size: 0;
      padding: 0;
      background: rgba(255, 255, 255, 0.15);
      border: 1px solid var(--border);
      box-shadow: none;
      transform: none !important;
    }
    .scale-btn.active {
      background: var(--teal);
      box-shadow: 0 0 10px var(--teal-glow);
      border-color: var(--teal);
    }
    .scale-content-wrapper {
      padding: 1.5rem;
      min-height: auto;
    }
    .scale-pane-desc {
      margin-bottom: 0;
      font-size: 0.95rem;
      line-height: 1.6;
    }
    .scale-pane-header {
      margin-bottom: 1rem;
      padding-bottom: 0.8rem;
    }
    .scale-deliverables-title,
    .scale-deliverables-grid {
      display: none !important;
    }
  }

  /* ─── BLOG ─── */
  #blog { background: var(--dark); }

  .blog-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; margin-bottom: 2.5rem;
  }
  .blog-card {
    background: var(--dark2); border: 1px solid var(--border);
    border-radius: 12px; overflow: hidden;
    transition: all .3s; display: flex; flex-direction: column;
    text-decoration: none; color: inherit;
  }
  .blog-card:hover { border-color: rgba(36,227,198,.4); transform: translateY(-4px); box-shadow: 0 10px 36px rgba(0,0,0,.3); }

  .blog-card-img {
    height: 180px; background: var(--dark3);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .blog-card-img-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--dark3), #0a1628);
  }
  .blog-card-img-icon { position: relative; z-index: 1; color: rgba(36,227,198,.3); }
  .blog-cat {
    position: absolute; top: 1rem; left: 1rem; z-index: 2;
    background: var(--teal); color: var(--dark);
    font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
    padding: .25rem .7rem; border-radius: 100px;
  }

  .blog-card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
  .blog-card-meta { font-size: .74rem; color: var(--text-muted); margin-bottom: .7rem; }
  .blog-card-title {
    font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600;
    line-height: 1.35; margin-bottom: .8rem; color: var(--white);
    transition: color .2s;
  }
  .blog-card:hover .blog-card-title { color: var(--teal); }
  .blog-card-excerpt { font-size: .83rem; color: var(--text-muted); line-height: 1.7; flex: 1; }
  .blog-card-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .8rem; color: var(--teal); margin-top: 1.2rem;
    font-weight: 500; transition: gap .2s;
  }
  .blog-card:hover .blog-card-link { gap: 10px; }

  .blog-cta-wrap { text-align: center; }

  @media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } .metodo-intro { grid-template-columns: 1fr; } .metodo-body-inner { grid-template-columns: 1fr; } }
  @media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }