:root {
    --oj-orange: #F97316;
    --oj-orange-2: #FB923C;
    --oj-graphite: #0F172A;
    --oj-slate: #334155;
    --oj-muted: #64748B;
    --oj-border: #E5E7EB;
    --oj-soft: #F8FAFC;
    --oj-white: #FFFFFF;

    --radius-12: 12px;
    --radius-16: 16px;
    --radius-20: 20px;
    --radius-24: 24px;

    --shadow-sm: 0 10px 24px rgba(15, 23, 42, .08);
    --shadow-md: 0 18px 60px rgba(15, 23, 42, .14);
    --shadow-or: 0 18px 60px rgba(249, 115, 22, .18);
}

html, body{
    scroll-behavior: smooth;
  }

/* Escopo total */
#oj-landing {
    color: var(--oj-graphite);
    background: var(--oj-white);
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.45;
    overflow-x: hidden;
}

/* Blindagem contra CSS externo */
#oj-landing,
#oj-landing * {
    box-sizing: border-box;

}

#oj-landing img {
    max-width: 100%;
    height: auto;
    display: block;
    z-index: 99999999 !important;
}

#oj-landing a {
    color: inherit;
    text-decoration: none;
}

#oj-landing button {
    font-family: inherit;
}

#oj-landing h1,
#oj-landing h2,
#oj-landing h3,
#oj-landing p {
    margin: 0;
}

#oj-landing h3 {
    font-weight: 700;
}

#oj-landing ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Layout */
#oj-landing .oj-container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 18px;
}

#oj-landing .oj-grid {
    display: grid;
    gap: 22px;
}

/* Topbar / Header */
#oj-landing .oj-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(229, 231, 235, .85);
}

#oj-landing .oj-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 16px;
}

#oj-landing .oj-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

#oj-landing .oj-logo {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    /* background: linear-gradient(135deg, var(--oj-orange) 0%, var(--oj-orange-2) 100%); */
    box-shadow: var(--shadow-or);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    font-size: 14px;
}

#oj-landing .oj-links {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--oj-slate);
    font-weight: 700;
    font-size: 14px;
}

#oj-landing .oj-links a:hover {
    color: var(--oj-orange);
}

#oj-landing .oj-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

#oj-landing .oj-btn {
    border: 1px solid var(--oj-border);
    background: #fff;
    color: var(--oj-graphite);
    padding: 10px 14px;
    border-radius: 14px;
    font-weight: 900;
    font-size: 14px;
    cursor: pointer;
    transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
    white-space: nowrap;
}

#oj-landing .oj-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(249, 115, 22, .4);
    box-shadow: var(--shadow-sm);
}

#oj-landing .oj-btn-primary {
    background: var(--oj-orange);
    border-color: var(--oj-orange);
    color: #fff;
    box-shadow: var(--shadow-or);
}

#oj-landing .oj-btn-primary:hover {
    border-color: #ea6b12;
    background: #ea6b12;
}

/* Mobile menu */
#oj-landing .oj-burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid var(--oj-border);
    background: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

#oj-landing .oj-burger svg {
    display: block;
}

#oj-landing .oj-mobile {
    display: none;
    padding-bottom: 14px;
}

#oj-landing .oj-mobile a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--oj-border);
    margin-top: 10px;
    font-weight: 800;
    color: var(--oj-slate);
    background: #fff;
}

#oj-landing .oj-mobile a:hover {
    border-color: rgba(249, 115, 22, .4);
    color: var(--oj-orange);
}

/* Hero */
#oj-landing .oj-hero {
    padding: 46px 0 42px;
    background:
        radial-gradient(700px 700px at 85% 20%, rgba(249, 115, 22, .16), transparent 60%),
        radial-gradient(700px 700px at 10% 80%, rgba(251, 146, 60, .14), transparent 60%),
        linear-gradient(180deg, #fff 0%, #fff 58%, var(--oj-soft) 100%);
}

#oj-landing .oj-hero-grid {
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
}

#oj-landing .oj-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid #FED7AA;
    background: #FFF7ED;
    color: #9A3412;
    font-weight: 900;
    font-size: 12px;
}

#oj-landing .oj-h1 {
    margin-top: 12px;
    font-size: 46px;
    line-height: 1.04;
    letter-spacing: -0.04em;
    font-weight: 800;
}

#oj-landing .oj-sub {
    margin-top: 14px;
    color: var(--oj-muted);
    font-size: 16.5px;
    line-height: 1.65;
    max-width: 560px;
}

#oj-landing .oj-cta {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

#oj-landing .oj-badges {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

#oj-landing .oj-badge {
    padding: 8px 10px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--oj-border);
    font-weight: 600;
    font-size: 13px;
    color: var(--oj-slate);
}

#oj-landing .oj-badge b {
    color: var(--oj-graphite);
}

/* Mockup window (print) */
#oj-landing .oj-window {
    transform-style: preserve-3d;
    /* transform: rotateY(-10deg) rotateX(3deg); */
    transition: transform .25s ease;
    will-change: transform;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(15, 23, 42, .20);
}

/* Um hover bonito (opcional) */
#oj-landing .oj-tilt-wrap:hover .oj-window {
    transform: rotateY(-6deg) rotateX(2deg) translateY(-2px);
}

/* Dá um brilho leve pra “vidro” */
#oj-landing .oj-window::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, .35) 0%,
            rgba(255, 255, 255, .08) 40%,
            rgba(255, 255, 255, 0) 70%);
    mix-blend-mode: screen;
}

/* “chão”/sombra projetada (opcional, mas fica top) */
#oj-landing .oj-tilt-wrap::after {
    content: "";
    display: block;
    height: 18px;
    margin: 10px 10% 0;
    background: radial-gradient(closest-side, rgba(15, 23, 42, .25), rgba(15, 23, 42, 0));
    filter: blur(8px);
    transform: translateZ(-1px);
    opacity: .8;
}

#oj-landing .oj-window-top {
    background: var(--oj-graphite);
    color: #fff;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

#oj-landing .oj-dots {
    display: flex;
    gap: 7px;
    align-items: center;
}

#oj-landing .oj-dots span {
    width: 10px;
    height: 10px;
    border-radius: 99px;
    display: inline-block;
}

#oj-landing .oj-dots span:nth-child(1) {
    background: #FB7185;
}

#oj-landing .oj-dots span:nth-child(2) {
    background: #FBBF24;
}

#oj-landing .oj-dots span:nth-child(3) {
    background: #34D399;
}

/* Habilita perspectiva no container pai */
#oj-landing .oj-tilt-wrap {
    perspective: 1200px;
    perspective-origin: left center;
    /* dá sensação de virar pra direita */
}


#oj-landing .oj-window-body {
    padding: 0;
    background: linear-gradient(135deg, #FFF7ED 0%, #FFFFFF 45%, #F8FAFC 100%);
}

#oj-landing .oj-print {
    width: 100%;
    object-fit: contain;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
    filter: contrast(1.02) saturate(1.02);
}

.oj-print-no-macos {
    width: 100%;
    object-fit: contain;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
    aspect-ratio: 16/10;
    display: block;
    transform: scale(1.2);
}

/* Container do stack */
#oj-landing .oj-stack{
    position: relative;
    padding: 24px 20px 60px;
    background: linear-gradient(135deg, #FFF7ED 0%, #FFFFFF 45%, #F8FAFC 100%);
    overflow: visible;
}

/* Base comum */
#oj-landing .oj-stack .oj-print{
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 30px 70px rgba(15,23,42,.22);
    transition: transform .3s ease, box-shadow .3s ease;
}

/* Imagem base (fundo) */
#oj-landing .oj-stack .base{
    position: relative;
    z-index: 1;
  }
  
  /* Primeira sobreposição */
  #oj-landing .oj-stack .layer-1{
    position: absolute;
    top: -28px;
    left: 18px;
    width: 92%;
    z-index: 2;
    transform: rotate(-1.5deg);
  }
  
  /* Segunda sobreposição (opcional) */
  #oj-landing .oj-stack .layer-2{
    position: absolute;
    top: -56px;
    left: 36px;
    width: 86%;
    z-index: 3;
    transform: rotate(-3deg);
  }
  
  /* Hover elegante (opcional) */
#oj-landing .oj-window:hover .oj-print{
    /* box-shadow: 0 40px 90px rgba(15,23,42,.28); */
}

#oj-landing section{
    scroll-margin-top: 90px; /* ajuste conforme a altura do header */
}

/* Área composta (onde as 3 imagens se posicionam) */
#oj-landing .oj-composite{
    position: relative;
    background: linear-gradient(
        to bottom,
        #f7f8f9 0%,
        #e9ecef 40%,
        #dadee0 100%
      );
    overflow: visible;
  
    /* cria espaço para os cards de baixo */
    padding-bottom: 20px;
  }
  
  /* Base comum */
  #oj-landing .oj-composite .oj-shot{
    display: block;
    border: 1px solid rgba(229,231,235,.9);
    box-shadow: 10px 20px 20px rgba(0, 0, 0, 0.18);
    background: #fff;
  }
  
  /* 1) IMAGEM BASE (ocupa a largura toda, topo) */
  #oj-landing .oj-shot--base{
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    /* image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges; */
  }
  
  /* 2) CARD GRANDE (abaixo esquerda) */
  #oj-landing .oj-shot--big{
    position: absolute;
    left: 14px;
    bottom: 14px;
  
    width: 68%;          /* controla o tamanho do card grande */
    max-width: 720px;
  
    z-index: 3;
    transform: translateY(15px); /* desce um pouco pra ficar igual ao print */
  }
  
  /* 3) CARD PEQUENO (abaixo direita) */
  #oj-landing .oj-shot--small{
    position: absolute;
    right: 14px;
    bottom: 14px;
  
    width: 42%;
    max-width: 360px;
  
    z-index: 4;
    transform: translateY(-20px); /* fica mais “pra baixo” que o grande */
  }
  
  /* Ajustes responsivos (mobile) — vira pilha organizada */
  @media (max-width: 980px){
    #oj-landing .oj-composite{
      padding-bottom: 18px; /* remove espaço extra */
    }
  
    #oj-landing .oj-shot--big,
    #oj-landing .oj-shot--small{
      position: static;
      width: 100%;
      max-width: none;
      transform: none;
      margin-top: 14px;
    }
  }
  

/* Sections (Projuris-like rhythm) */
#oj-landing .oj-section {
    padding: 64px 0;
}

#oj-landing .oj-section.soft {
    background: var(--oj-soft);
    border-top: 1px solid rgba(229, 231, 235, .85);
    border-bottom: 1px solid rgba(229, 231, 235, .85);
}

#oj-landing .oj-h2 {
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 800;
}

#oj-landing .oj-p {
    margin-top: 12px;
    color: var(--oj-muted);
    font-size: 16.5px;
    line-height: 1.65;
    max-width: 720px;
    font-weight: 400;
}

#oj-landing .oj-split {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 28px;
}

#oj-landing .oj-card {
    border: 1px solid var(--oj-border);
    background: #fff;
    border-radius: var(--radius-20);
    padding: 18px;
    box-shadow: var(--shadow-sm);
}

#oj-landing .oj-list {
    margin-top: 14px;
    display: grid;
    gap: 10px;
    color: var(--oj-slate);
    font-weight: 700;
    font-size: 14.5px;
}

#oj-landing .oj-li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid var(--oj-border);
    background: #fff;
}

#oj-landing .oj-check {
    width: 22px;
    height: 22px;
    border-radius: 99px;
    background: rgba(249, 115, 22, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--oj-orange);
    font-weight: 950;
    flex: 0 0 auto;
    margin-top: 1px;
}

/* Feature grid */
#oj-landing .oj-features {
    margin-top: 22px;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

#oj-landing .oj-feature {
    border: 1px solid var(--oj-border);
    background: #fff;
    border-radius: var(--radius-20);
    padding: 16px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

#oj-landing .oj-feature:hover {
    border-color: rgba(249, 115, 22, .4);
    box-shadow: var(--shadow-or);
    transition: border-color .4s ease, box-shadow .4s ease !important;
}

#resultados .oj-metric:hover {
    border-color: rgba(249, 115, 22, .4);
    box-shadow: var(--shadow-or);
    transition: border-color .4s ease, box-shadow .4s ease !important;
}

#oj-landing .oj-feature h3 {
    font-weight: 950;
    font-size: 15px;
    letter-spacing: -0.01em;
}

#oj-landing .oj-feature p {
    margin-top: 8px;
    color: var(--oj-muted);
    font-size: 14px;
    line-height: 1.55;
}

/* Metrics */
#oj-landing .oj-metrics {
    margin-top: 18px;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

#oj-landing .oj-metric {
    border: 1px solid var(--oj-border);
    border-radius: var(--radius-20);
    background: #fff;
    padding: 14px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

#oj-landing .oj-metric .v {
    font-weight: 950;
    font-size: 22px;
    letter-spacing: -0.02em;
}

#oj-landing .oj-metric .l {
    margin-top: 4px;
    color: var(--oj-muted);
    font-size: 12.5px;
    font-weight: 800;
}

/* Pricing */
#oj-landing .oj-pricing {
    margin-top: 24px;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

#oj-landing .oj-plan {
    border: 1px solid var(--oj-border);
    border-radius: var(--radius-24);
    background: #fff;
    padding: 18px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#oj-landing .oj-plan.featured {
    border: 2px solid rgba(249, 115, 22, .9);
    box-shadow: var(--shadow-or);
}

#oj-landing .oj-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid #FED7AA;
    background: #FFF7ED;
    color: #9A3412;
    font-weight: 950;
    font-size: 12px;
}

#oj-landing .oj-plan .name {
    font-weight: 950;
    font-size: 16px;
    letter-spacing: -0.02em;
}

#oj-landing .oj-plan .price {
    font-weight: 950;
    font-size: 32px;
    letter-spacing: -0.03em;
    margin-top: 2px;
}

#oj-landing .oj-plan .price span {
    color: var(--oj-muted);
    font-size: 13px;
    font-weight: 850;
}

#oj-landing .oj-plan .desc {
    color: var(--oj-muted);
    font-size: 14px;
    line-height: 1.55;
}

#oj-landing .oj-plan ul {
    margin-top: 8px;
    display: grid;
    gap: 8px;
}

#oj-landing .oj-plan li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--oj-slate);
    font-weight: 800;
    font-size: 13.5px;
    border: 1px solid var(--oj-border);
    background: #fff;
    padding: 10px 12px;
    border-radius: 14px;
}

#oj-landing .oj-plan .bottom {
    margin-top: auto;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* FAQ */
#oj-landing .oj-faq {
    margin-top: 18px;
    display: grid;
    gap: 12px;
}

#oj-landing details {
    border: 1px solid var(--oj-border);
    border-radius: var(--radius-20);
    background: #fff;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

#oj-landing summary {
    cursor: pointer;
    padding: 14px 16px;
    font-weight: 950;
    color: var(--oj-graphite);
    list-style: none;
}

#oj-landing summary::-webkit-details-marker {
    display: none;
}

#oj-landing details .oj-faq-a {
    padding: 0 16px 16px;
    color: var(--oj-muted);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.65;
}

/* CTA final */
#oj-landing .oj-cta-box {
    margin-top: 22px;
    border-radius: var(--radius-24);
    border: 1px solid rgba(249, 115, 22, .25);
    background:
        radial-gradient(700px 700px at 15% 20%, rgba(249, 115, 22, .14), transparent 60%),
        radial-gradient(700px 700px at 85% 80%, rgba(251, 146, 60, .12), transparent 60%),
        linear-gradient(180deg, #fff 0%, #fff 100%);
    padding: 20px;
    box-shadow: var(--shadow-or);
}

/* Footer */
#oj-landing .oj-footer {
    padding: 40px 0;
    border-top: 1px solid rgba(229, 231, 235, .9);
    color: var(--oj-muted);
    background: #fff;
}

#oj-landing .oj-footer a:hover {
    color: var(--oj-orange);
}

/* Responsive */
@media (max-width: 980px) {

    #oj-landing .oj-hero-grid,
    #oj-landing .oj-split {
        grid-template-columns: 1fr;
    }

    #oj-landing .oj-h1 {
        font-size: 40px;
    }

    #oj-landing .oj-links {
        display: none;
    }

    #oj-landing .oj-burger {
        display: flex;
    }

    #oj-landing .oj-actions .oj-btn {
        padding: 10px 12px;
    }

    #oj-landing .oj-features {
        grid-template-columns: 1fr;
    }

    #oj-landing .oj-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    #oj-landing .oj-pricing {
        grid-template-columns: 1fr;
    }
}

/* Card maior */
#oj-landing .oj-cta-box--big{
    padding: 34px;              /* mais “respiro” */
    min-height: 220px;          /* aumenta tamanho geral */
  }
  
  /* Topo: texto + imagem */
  #oj-landing .oj-cta-top{
    margin-top: -50px;
    margin-bottom: -50px;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 18px;
    align-items: center;
  }
  
  /* Tipografia do card (um pouco maior) */
  #oj-landing .oj-cta-title{
    margin-top: 10px;
    font-weight: 850;
    font-size: 28px;
    letter-spacing: -0.02em;
  }
  
  #oj-landing .oj-cta-sub{
    margin-top: 10px;
    color: var(--oj-muted);
    font-weight: 600;
    font-size: 15.5px;
    line-height: 1.65;
    max-width: 680px;
  }
  
  /* Imagem no lugar dos botões */
  #oj-landing .oj-cta-media{
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  #oj-landing .oj-cta-media img{
    width: 100%;
    max-width: 360px;      /* controla tamanho da imagem */
    height: auto;
    margin-top: 40px;
  }
  
  /* Botões descidos (agora ficam embaixo do conteúdo) */
  #oj-landing .oj-cta-actions{
    margin-top: 0;
    display: flex;
    gap: 10px;
    justify-content: flex-start;  /* ou flex-end se quiser */
    flex-wrap: wrap;
  }
  
  /* Responsivo: vira coluna e centraliza */
  @media (max-width: 980px){
    #oj-landing .oj-cta-box--big{
      padding: 22px;
      min-height: auto;
    }
  
    #oj-landing .oj-cta-top{
      grid-template-columns: 1fr;
    }
  
    #oj-landing .oj-cta-media{
      justify-content: flex-start;
      margin-top: 10px;
    }
  
    #oj-landing .oj-cta-media img{
      max-width: 100%;
    }
  }
  
 /* ============================
   MOBILE FIXES (append only)
   ============================ */
@media (max-width: 768px){

    /* 1) CONTAINER: um pouco mais de respiro lateral */
    #oj-landing .oj-container{
      padding: 0 14px;
    }
  
    /* 2) HEADER / NAV: evitar quebrar e deixar usável */
    #oj-landing .oj-nav{
      padding: 10px 0;
      gap: 10px;
      flex-wrap: wrap;              /* ✅ permite quebrar linha no mobile */
    }
  
    #oj-landing .oj-brand{
      gap: 8px;
      max-width: 70%;
    }
  
    #oj-landing .oj-logo{
      width: 36px;
      height: 36px;
      border-radius: 12px;
    }
  
    /* botão burger sempre visível no mobile (você já faz em 980px, mas aqui reforça) */
    #oj-landing .oj-burger{
      display: flex;
    }
  
    /* ações do header: empilhar e reduzir tamanho */
    #oj-landing .oj-actions{
      width: 100%;
      display: flex;
      gap: 10px;
      justify-content: flex-start;
      flex-wrap: wrap;
    }
  
    #oj-landing .oj-actions .oj-btn{
      flex: 1 1 auto;
      justify-content: center;
      text-align: center;
      padding: 10px 12px;
      border-radius: 14px;
    }
  
    /* 3) HERO: tipografia e espaçamentos */
    #oj-landing .oj-hero{
      padding: 28px 0 26px;
    }
  
    #oj-landing .oj-h1{
      font-size: 32px;
      line-height: 1.08;
    }
  
    #oj-landing .oj-sub{
      font-size: 15px;
      line-height: 1.6;
      max-width: 100%;
    }
  
    /* 4) PRINT WINDOW: adaptar para tela pequena */
    #oj-landing .oj-window{
      border-radius: 14px !important;
    }
  
    #oj-landing .oj-window-top{
      padding: 10px 12px;
      gap: 10px;
    }
  
    #oj-landing .oj-window-top div{
      font-size: 12px !important;  /* reduz o texto "OfficeJuris • ..." */
      font-weight: 700 !important;
    }
  
    #oj-landing .oj-dots span{
      width: 9px;
      height: 9px;
    }
  
    /* 5) MUITO IMPORTANTE:
          Seu .oj-print está com object-fit duplicado e aspect-ratio fixo.
          No mobile, vamos priorizar NÃO cortar e não "forçar" ratio. */
    #oj-landing .oj-window-body .oj-print,
    #oj-landing .oj-composite .oj-shot,
    #oj-landing .oj-stack .oj-print{
      object-fit: contain !important;
    }
  
    #oj-landing .oj-window-body .oj-print{
      aspect-ratio: auto !important; /* ✅ evita crop/estouro em telas pequenas */
    }
  
    /* 6) z-index das imagens (CRÍTICO)
          Você tem z-index altíssimo em todas as imgs.
          Aqui neutraliza só dentro de prints/janelas pra não sobrepor menu/cards. */
    #oj-landing .oj-window img,
    #oj-landing .oj-composite img,
    #oj-landing .oj-stack img{
      z-index: auto !important;
      position: relative;
    }
  
    /* 7) COMPOSITE (3 prints): já tem regra em 980px, mas reforça no mobile */
    #oj-landing .oj-composite{
      overflow: visible;
    }
  
    #oj-landing .oj-shot--big,
    #oj-landing .oj-shot--small{
      position: static !important;
      width: 100% !important;
      max-width: none !important;
      transform: none !important;
      margin-top: 12px !important;
    }
  
    /* 8) SECTIONS / ritmo */
    #oj-landing .oj-section{
      padding: 44px 0;
    }
  
    #oj-landing .oj-h2{
      font-size: 26px;
      line-height: 1.12;
    }
  
    #oj-landing .oj-p{
      font-size: 15px;
      max-width: 100%;
    }
  
    /* 9) METRICS e grids: reduzir estouro */
    #oj-landing .oj-metrics{
      grid-template-columns: 1fr !important;
    }
  
    /* 10) DEPOIMENTOS: (você não colou o CSS dessa seção, então vou blindar por IDs e nomes comuns) */
    #oj-landing #depoimentos .oj-grid,
    #oj-landing .oj-depoimentos .oj-grid,
    #oj-landing .oj-testimonials,
    #oj-landing .oj-testimonials .oj-grid{
      grid-template-columns: 1fr !important;
    }
  
    #oj-landing #depoimentos .oj-card,
    #oj-landing .oj-depoimentos .oj-card,
    #oj-landing .oj-testimonials .oj-card{
      padding: 14px !important;
    }
  
    /* evitar texto “vazar” em telas pequenas */
    #oj-landing #depoimentos,
    #oj-landing .oj-depoimentos,
    #oj-landing .oj-testimonials{
      overflow-wrap: anywhere;
    }
  
    /* 11) CTA BOX com imagem: virar coluna e centralizar melhor */
    #oj-landing .oj-cta-top{
      grid-template-columns: 1fr !important;
    }
  
    #oj-landing .oj-cta-media{
      justify-content: flex-start !important;
    }
  
    #oj-landing .oj-cta-title{
      font-size: 22px !important;
      line-height: 1.18;
    }
  }
   