/* Paginas publicas e componentes de layout */

.jxn-main {
    overflow: clip;
}

.jxn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 48px;
    padding: 0 32px;
    border: 0;
    border-radius: 0;
    font-size: 11px;
    font-family: var(--jxn-font-body);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

.jxn-btn-primary {
    background: linear-gradient(135deg, var(--jxn-accent) 0%, var(--jxn-accent-glow) 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.jxn-btn-primary:hover {
    color: #ffffff;
    background: var(--jxn-accent-glow);
}

.jxn-btn-navy {
    background: linear-gradient(135deg, var(--jxn-primary) 0%, var(--jxn-primary-dark) 100%);
    color: #ffffff;
}

.jxn-btn-navy:hover {
    color: #ffffff;
}

.jxn-btn-outline,
.jxn-btn-outline-white {
    background: transparent;
    border: 1.5px solid;
}

.jxn-btn-outline {
    color: var(--jxn-primary);
    border-color: rgba(30, 58, 95, 0.18);
}

.jxn-btn-outline:hover {
    background: var(--jxn-primary);
    color: #ffffff;
    border-color: var(--jxn-primary);
}

.jxn-btn-outline-white {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.26);
}

.jxn-btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

.jxn-btn-whatsapp {
    background: var(--jxn-primary);
    color: var(--jxn-accent);
    border: 1px solid var(--jxn-accent);
    box-shadow: none;
}

.jxn-btn-whatsapp:hover {
    background: var(--jxn-accent);
    color: var(--jxn-primary);
    box-shadow: none;
}

.jxn-btn-lg {
    min-height: 60px;
    padding: 0 40px;
    font-size: 12px;
    border-radius: 0;
}

.jxn-btn-full {
    width: 100%;
}

.jxn-empty {
    padding: 30px;
    border: 1px dashed var(--jxn-border);
    border-radius: 0;
    color: var(--jxn-muted);
    text-align: center;
}

.jxn-section-header {
    margin-bottom: 44px;
    text-align: center;
}

.jxn-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--jxn-accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.jxn-section-eyebrow::before,
.jxn-section-eyebrow::after {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
    opacity: 0.6;
}

.jxn-section-title {
    margin: 0 0 12px;
    font-size: clamp(32px, 4.4vw, 52px);
    line-height: 1.06;
    color: var(--jxn-primary-dark);
    letter-spacing: -0.04em;
}

.jxn-section-subtitle {
    margin: 0 auto;
    max-width: 680px;
    color: var(--jxn-muted);
    font-size: 18px;
    line-height: 1.7;
}

/* Hero principal */
.jxn-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #050b14;
}

.jxn-hero-bg {
    display: none;
}

.jxn-hero>.jxn-container {
    position: relative;
    z-index: 1;
    width: min(100%, 1280px);
    min-height: inherit;
    display: flex;
    align-items: flex-start;
}

.jxn-hero-content {
    max-width: 530px; /* Reduce for desktop to avoid overlapping right side video */
    padding: 40px 0 100px;
}

.jxn-hero-content--measure {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: -1;
}

.jxn-hero-content--measure .jxn-hero-eyebrow,
.jxn-hero-content--measure .jxn-hero-title,
.jxn-hero-content--measure .jxn-hero-subtitle,
.jxn-hero-content--measure .jxn-hero-ctas,
.jxn-hero-content--measure .jxn-hero-trust,
.jxn-hero-content--measure .jxn-hero-stats {
    opacity: 1;
    transform: none;
    animation: none;
}

.jxn-hero-eyebrow,
.jxn-hero-title,
.jxn-hero-subtitle,
.jxn-hero-ctas,
.jxn-hero-trust,
.jxn-hero-stats {
    opacity: 0;
    transform: translateY(24px);
    animation: jxnFadeUp 0.7s ease forwards;
}

.jxn-hero-eyebrow {
    margin-bottom: 24px;
    animation-delay: 0.08s;
}

.jxn-hero-eyebrow-line {
    display: inline-block;
    max-width: min(100%, 680px);
    padding: 10px 0;
    border-bottom: 2px solid var(--jxn-accent);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.65;
    text-transform: uppercase;
}

.jxn-hero-title {
    margin: 0 0 24px;
    font-size: clamp(36px, 5.4vw, 68px);
    line-height: 0.98;
    min-height: calc(4 * 0.98em);
    letter-spacing: -0.06em;
    color: #ffffff;
    animation-delay: 0.16s;
}

.jxn-hero-title mark {
    background: transparent;
    color: var(--jxn-accent);
}

.jxn-hero-title-line {
    display: inline;
}

.jxn-hero-title-line.is-accent {
    color: var(--jxn-accent);
}

.jxn-hero-title-line.is-typing {
    padding-right: 4px;
    border-right: 2px solid rgba(255, 255, 255, 0.85);
    animation: jxnCaretBlink 0.9s step-end infinite;
}

.jxn-hero-eyebrow-line.is-typing {
    padding-right: 4px;
    border-right: 2px solid rgba(255, 255, 255, 0.85);
    animation: jxnCaretBlink 0.9s step-end infinite;
}

.jxn-hero-subtitle {
    max-width: 560px;
    margin: 0 0 40px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(17px, 1.45vw, 19px);
    line-height: 1.75;
    min-height: calc(3 * 1.75em);
    animation-delay: 0.26s;
}

.jxn-hero-subtitle-text {
    display: inline;
}

.jxn-hero-subtitle-text.is-typing {
    padding-right: 4px;
    border-right: 2px solid rgba(255, 255, 255, 0.85);
    animation: jxnCaretBlink 0.9s step-end infinite;
}

.jxn-hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation-delay: 0.34s;
}

.jxn-hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    animation-delay: 0.42s;
}

.jxn-hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 600;
}

.jxn-hero-trust-item::before {
    content: "✓";
    width: 22px;
    height: 22px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.18);
    color: #b5f6d2;
    font-size: 12px;
    font-weight: 900;
}

.jxn-hero-stats {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    min-width: 290px;
    padding: 40px;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    animation-delay: 0.5s;
}

.jxn-hero-stat {
    padding: 18px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.jxn-hero-stat:last-child {
    border-bottom: 0;
}

.jxn-hero-stat-number {
    display: block;
    font-size: 44px;
    line-height: 1;
    font-weight: 900;
    color: #8edcff;
    letter-spacing: -0.05em;
}

.jxn-hero-stat-label {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.jxn-scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    animation: jxnBounce 2s ease-in-out infinite;
}

/* Busca */
.jxn-search-section {
    padding: 86px 0;
    background:
        radial-gradient(circle at top center, rgba(14, 165, 233, 0.08), transparent 40%),
        #f8fbff;
}

.jxn-search-bar {
    max-width: 760px;
    margin: 0 auto;
}

.jxn-search-form {
    position: relative;
}

.jxn-search-input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 12px 12px 24px;
    background: #ffffff;
    border: 1px solid rgba(0, 31, 63, 0.12);
    border-radius: 0;
}

.jxn-search-input-wrap:focus-within {
    border-color: var(--jxn-accent);
}

.jxn-search-field {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--jxn-text);
    font-size: 17px;
}

.jxn-search-field::placeholder {
    color: var(--jxn-muted);
}

.jxn-search-submit {
    flex-shrink: 0;
    border-radius: 0;
}

.jxn-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 8;
    display: none;
    overflow: hidden;
    background: #ffffff;
    border-radius: 0;
    border: 1px solid rgba(0, 31, 63, 0.12);
}

.jxn-search-results.active {
    display: block;
}

.jxn-search-result-pill {
    flex-shrink: 0;
    padding: 6px 10px;
    border-radius: 0;
    background: rgba(14, 165, 233, 0.1);
    color: var(--jxn-accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.jxn-search-result-copy strong {
    display: block;
    margin-bottom: 2px;
    font-size: 15px;
}

.jxn-search-result-copy span {
    display: block;
    color: var(--jxn-muted);
    font-size: 13px;
}

.jxn-search-empty {
    padding: 18px 20px;
    color: var(--jxn-muted);
    font-size: 14px;
}

/* Cidades / marquee */
.jxn-marquee-strip {
    overflow: hidden;
    padding: 16px 0;
    background: linear-gradient(135deg, var(--jxn-primary-dark), var(--jxn-primary));
}

.jxn-marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: jxnMarquee 100s linear infinite;
}

.jxn-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0 24px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.jxn-marquee-dot {
    width: 6px;
    height: 6px;
    border-radius: 0;
    background: var(--jxn-accent-glow);
}

/* Categorias */
.jxn-category-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.jxn-category-card {
    position: relative;
    min-height: 220px;
    padding: 40px 30px;
    border-radius: 0;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    overflow: hidden;
}

.jxn-category-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: var(--cat-cor, var(--jxn-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.24s ease;
}

.jxn-category-card:hover {
    transform: translateY(-8px);
    border-color: var(--jxn-accent);
}

.jxn-category-card:hover::before {
    transform: scaleX(1);
}

.jxn-cat-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.jxn-cat-card-name {
    color: var(--jxn-primary-dark);
    font-size: 16px;
    font-weight: 800;
}

.jxn-cat-card-count {
    color: var(--jxn-muted);
    font-size: 13px;
}

.jxn-cat-card-arrow {
    margin-top: auto;
    color: var(--cat-cor, var(--jxn-accent));
    font-size: 13px;
    font-weight: 800;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.jxn-category-card:hover .jxn-cat-card-arrow {
    opacity: 1;
    transform: translateY(0);
}

/* Servicos */
.jxn-services-main-section {
    padding: 86px 0;
    background: linear-gradient(180deg, #f7fbff 0%, #f8fafc 100%);
}

.jxn-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 0;
    border: 1px solid rgba(30, 58, 95, 0.08);
    background: rgba(255, 255, 255, 0.92);
    color: var(--jxn-primary);
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
}

.jxn-filter-btn:hover,
.jxn-filter-btn.active {
    background: var(--jxn-primary);
    color: #ffffff;
    border-color: var(--jxn-primary);
}

.jxn-count {
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.14);
    font-size: 12px;
}

.jxn-filter-btn:not(.active) .jxn-count {
    background: rgba(30, 58, 95, 0.06);
}

.jxn-services-grid {
    display: grid;
    gap: 24px;
}

.jxn-services-grid .jxn-service-card[hidden] {
    display: none !important;
}

.jxn-services-more-wrap {
    margin-top: 28px;
    text-align: center;
}

.jxn-services-more-sign {
    font-size: 16px;
    line-height: 1;
    font-weight: 900;
}

.jxn-services-all-wrap {
    margin-top: 40px;
    display: flex;
    justify-content: flex-end;
}

.jxn-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.jxn-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jxn-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.jxn-service-card {
    background: #ffffff;
    border: 1px solid rgba(0, 31, 63, 0.08);
    border-bottom: 2px solid transparent;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.jxn-service-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--jxn-accent);
}

.jxn-card-image-wrap {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.jxn-card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.jxn-service-card:hover .jxn-card-image-wrap img {
    transform: scale(1.08);
}

.jxn-card-image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--jxn-primary);
}

.jxn-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-radius: 0;
    font-size: 11px;
    font-family: var(--jxn-font-body);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--jxn-accent);
}

.jxn-badge-cat {
    position: relative;
    margin-bottom: 12px;
}

.jxn-card-body {
    padding: 40px;
}

.jxn-card-title {
    margin: 0 0 16px;
    font-family: var(--jxn-font-headline);
    font-size: 26px;
    line-height: 1.2;
    color: var(--jxn-primary);
}

.jxn-card-title a {
    color: inherit;
    text-decoration: none;
}

.jxn-card-title a:hover {
    color: var(--jxn-accent);
}

.jxn-card-seo-title {
    margin: 0;
    min-height: 44px;
    color: var(--jxn-muted);
    font-size: 14px;
    line-height: 1.7;
}

.jxn-card-footer {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 31, 63, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.jxn-card-link-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--jxn-primary);
    font-family: var(--jxn-font-body);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.jxn-card-link-cta .jxn-cta-arrow {
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: var(--jxn-accent);
}

.jxn-service-card:hover .jxn-card-link-cta .jxn-cta-arrow {
    transform: translateX(5px);
}

.jxn-service-card:hover .jxn-card-link-cta {
    color: var(--jxn-accent);
}

.jxn-card-city {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--jxn-muted);
    font-size: 13px;
}

.jxn-btn-orcamento {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 0;
    border: 0;
    background: var(--jxn-primary);
    color: #ffffff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
}

.jxn-btn-orcamento:hover {
    background: var(--jxn-accent);
}

/* Bloco sanfona da home */
.jxn-services-accordion-section {
    padding: 86px 0;
    background: #001f3f;
}

.jxn-services-accordion-section .jxn-section-title {
    color: #ffffff;
}

.jxn-services-accordion-section .jxn-section-eyebrow {
    color: rgba(245, 191, 83, 0.95);
}

.jxn-home-accordion {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
}

.jxn-home-acc-item {
    border: 1px solid rgba(191, 221, 255, 0.6);
    background: rgba(0, 23, 52, 0.25);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.jxn-home-acc-head {
    margin: 0;
}

.jxn-home-acc-trigger {
    width: 100%;
    min-height: 62px;
    padding: 0 18px;
    border: 0;
    background: rgba(5, 26, 57, 0.74);
    color: #f5bf53;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(16px, 1.1vw, 20px);
    font-family: var(--jxn-font-body);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-align: left;
    cursor: pointer;
}

.jxn-home-acc-trigger:hover {
    background: rgba(5, 26, 57, 0.9);
}

.jxn-home-acc-trigger::after {
    content: "+";
    margin-left: auto;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    color: rgba(245, 191, 83, 0.9);
}

.jxn-home-acc-item.is-open .jxn-home-acc-trigger::after {
    content: "−";
}

.jxn-home-acc-dash {
    width: 16px;
    height: 2px;
    background: currentColor;
    display: inline-block;
    opacity: 0.95;
}

.jxn-home-acc-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.42s ease, opacity 0.3s ease;
}

.jxn-home-acc-item.is-open .jxn-home-acc-panel {
    max-height: 2200px;
    opacity: 1;
}

.jxn-home-acc-content {
    padding: 20px 20px 16px;
    border-top: 1px solid rgba(191, 221, 255, 0.45);
}

.jxn-home-acc-content p {
    margin: 0 0 14px;
    color: rgba(237, 244, 255, 0.92);
    font-size: 16px;
    line-height: 1.55;
}

.jxn-home-acc-content p:last-child {
    margin-bottom: 0;
}

.jxn-home-acc-content strong {
    color: #f5bf53;
}

/* Processo, stats, depoimentos, blog */
.jxn-process-section {
    padding: 86px 0;
    background: #ffffff;
}

.jxn-process-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.jxn-process-steps::before {
    content: "";
    position: absolute;
    left: 12.5%;
    right: 12.5%;
    top: 36px;
    height: 2px;
    border-radius: 0;
    background: linear-gradient(90deg, rgba(14, 165, 233, 0.08), rgba(14, 165, 233, 0.34), rgba(14, 165, 233, 0.08));
}

.jxn-process-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 12px;
}

.jxn-step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--jxn-primary);
    color: var(--jxn-accent);
    font-family: var(--jxn-font-headline);
    font-style: italic;
    font-size: 28px;
    font-weight: 800;
}

.jxn-step-title {
    margin: 0 0 8px;
    font-size: 19px;
    color: var(--jxn-primary-dark);
}

.jxn-step-desc {
    margin: 0;
    color: var(--jxn-muted);
    font-size: 15px;
    line-height: 1.75;
}

.jxn-stats-strip {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--jxn-primary-dark) 0%, var(--jxn-primary) 100%);
}

.jxn-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}

.jxn-stat-item {
    padding: 12px 20px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.jxn-stat-item:last-child {
    border-right: 0;
}

.jxn-stat-number {
    display: block;
    color: #8edcff;
    font-size: clamp(42px, 5vw, 58px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.jxn-stat-label {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 14px;
}

.jxn-testimonials-section {
    padding: 86px 0;
    background:
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.12), transparent 22%),
        linear-gradient(180deg, #0a1628 0%, #102340 100%);
}

.jxn-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.jxn-testimonial-card {
    padding: 40px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.jxn-testimonial-stars {
    color: #fbbf24;
    letter-spacing: 0.16em;
    margin-bottom: 12px;
}

.jxn-testimonial-quote {
    color: #8edcff;
    font-size: 42px;
    line-height: 1;
    margin-bottom: 14px;
}

.jxn-testimonial-text {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.8;
}

.jxn-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.jxn-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--jxn-accent), var(--jxn-accent-glow));
    color: #ffffff;
    font-weight: 900;
}

.jxn-testimonial-name {
    display: block;
    color: #ffffff;
    font-weight: 800;
}

.jxn-testimonial-location {
    display: block;
    color: rgba(255, 255, 255, 0.56);
    font-size: 13px;
}

.jxn-blog-section {
    padding: 86px 0;
    background: #f8fafc;
}

.jxn-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.jxn-blog-card {
    display: flex;
    flex-direction: column;
    border-radius: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
}


.jxn-blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--jxn-accent);
}

.jxn-blog-card-img-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.jxn-blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.jxn-blog-card:hover .jxn-blog-card-img {
    transform: scale(1.06);
}

.jxn-blog-card-cat {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 16px;
    border-radius: 0;
    background: var(--jxn-primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.jxn-blog-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 24px;
}

.jxn-blog-card-date {
    display: block;
    margin-bottom: 10px;
    color: var(--jxn-muted);
    font-size: 13px;
}

.jxn-blog-card-title {
    margin: 0 0 12px;
    color: var(--jxn-primary-dark);
    font-size: 20px;
    line-height: 1.3;
}

.jxn-blog-card-excerpt {
    margin: 0;
    color: var(--jxn-muted);
    font-size: 15px;
    line-height: 1.8;
    flex: 1 1 auto;
}

.jxn-blog-card-link {
    margin-top: 20px;
    color: var(--jxn-accent);
    text-decoration: none;
    font-weight: 800;
}

/* Cidades */
.jxn-cities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.jxn-city-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(30, 58, 95, 0.08);
    color: var(--jxn-primary);
    font-size: 14px;
    font-weight: 700;
}

/* Paginas internas */
.jxn-page-hero {
    padding: 96px 0 70px;
    text-align: center;
}

.jxn-page-hero-dark {
    background:
        radial-gradient(circle at top center, rgba(56, 189, 248, 0.12), transparent 26%),
        linear-gradient(135deg, var(--jxn-primary-dark) 0%, var(--jxn-primary) 100%);
    color: #ffffff;
}

.jxn-page-hero-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 165, 233, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.jxn-page-title {
    margin: 0 0 12px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.04;
    color: #ffffff;
    letter-spacing: -0.04em;
}

.jxn-page-subtitle {
    max-width: 620px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    line-height: 1.7;
}

.jxn-steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 34px;
}

.jxn-step-dot {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 700;
}

.jxn-step-dot span {
    width: 32px;
    height: 32px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    font-size: 13px;
}

.jxn-step-active {
    color: #ffffff;
}

.jxn-step-active span {
    background: var(--jxn-accent);
}

.jxn-step-line {
    width: 42px;
    height: 1px;
    background: rgba(255, 255, 255, 0.18);
}

.jxn-orcamento-layout {
    padding-top: 60px;
    padding-bottom: 90px;
}

.jxn-about-story {
    padding: 86px 0;
    background: #ffffff;
}

.jxn-about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.jxn-about-copy {
    color: var(--jxn-muted);
    font-size: 16px;
    line-height: 1.9;
}

.jxn-about-copy p {
    margin: 0 0 18px;
}

.jxn-about-aside {
    display: grid;
    gap: 28px;
}

.jxn-about-panel {
    padding: 40px;
    border-radius: 0;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    border: 1px solid rgba(30, 58, 95, 0.08);
    box-shadow: 0 24px 45px rgba(15, 23, 42, 0.05);
}

.jxn-contact-form-shell,
.jxn-contact-card {
    padding: 40px;
    border-radius: 0;
    background: #ffffff;
    border: 1px solid rgba(0, 31, 63, 0.05);
    box-shadow: 0 30px 60px rgba(0, 31, 63, 0.04);
}

.jxn-contact-form-shell h2,
.jxn-contato-info-title {
    margin: 0 0 12px;
    font-family: var(--jxn-font-headline);
    color: var(--jxn-primary);
    font-size: 32px;
}

.jxn-contact-form-shell>p,
.jxn-contato-info-subtitle {
    margin: 0 0 32px;
    color: var(--jxn-muted);
}

.jxn-contact-cards {
    display: grid;
    gap: 20px;
}

.jxn-contact-card {
    display: flex;
    gap: 20px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.jxn-contact-card-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 160, 89, 0.1);
    color: var(--jxn-accent);
}

.jxn-contact-card strong {
    display: block;
    margin-bottom: 4px;
    color: var(--jxn-primary-dark);
}

.jxn-contact-card a,
.jxn-contact-card span {
    color: var(--jxn-text);
    text-decoration: none;
}

.jxn-contact-card small {
    display: block;
    margin-top: 6px;
    color: var(--jxn-muted);
}

.jxn-form-group {
    margin-bottom: 18px;
}

.jxn-form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--jxn-primary-dark);
    font-size: 14px;
    font-weight: 700;
}

.jxn-form-input {
    width: 100%;
    min-height: 54px;
    padding: 14px 0;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid rgba(0, 31, 63, 0.15);
    outline: 0;
    background: transparent;
    color: var(--jxn-primary);
    font-size: 16px;
    font-family: var(--jxn-font-body);
    transition: all 0.3s ease;
}

.jxn-form-input:focus {
    border-color: var(--jxn-accent);
    padding-left: 10px;
}

textarea.jxn-form-input {
    min-height: 140px;
    resize: vertical;
}

.jxn-contact-form-actions {
    margin-top: 28px;
}

/* Arquivos / categorias publicas */
.jxn-archive-hero {
    padding: 86px 0 54px;
    background:
        radial-gradient(circle at top center, rgba(56, 189, 248, 0.1), transparent 24%),
        linear-gradient(135deg, var(--jxn-primary-dark) 0%, var(--jxn-primary) 100%);
    color: #ffffff;
}

.jxn-archive-copy {
    max-width: 760px;
}

.jxn-archive-copy p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    line-height: 1.75;
}

.jxn-archive-body {
    padding: 56px 0 86px;
}

/* Animacoes */
.jxn-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.jxn-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.jxn-reveal-delay-1 {
    transition-delay: 0.08s;
}

.jxn-reveal-delay-2 {
    transition-delay: 0.16s;
}

.jxn-reveal-delay-3 {
    transition-delay: 0.24s;
}

.jxn-reveal-delay-4 {
    transition-delay: 0.32s;
}

@keyframes jxnFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes jxnBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

@keyframes jxnMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes jxnCaretBlink {

    0%,
    49% {
        border-right-color: rgba(255, 255, 255, 0.85);
    }

    50%,
    100% {
        border-right-color: transparent;
    }
}

@media (min-width: 1024px) {
    .jxn-hero-bg {
        background-attachment: fixed;
    }
}

@media (max-width: 1120px) {
    .jxn-hero {
        /* Permite que o texto desça normalmente sem sobrar espaço embaixo */
        min-height: 0 !important;
    }

    .jxn-hero>.jxn-container {
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
    }

    .jxn-hero-content {
        position: relative;
        z-index: 1;
        isolation: isolate;
        margin: 0 auto;
        padding-top: calc(min(56.25vw, 55vh) + 20px);
        padding-bottom: 70px;
        text-align: center;
    }

    .jxn-hero-subtitle {
        max-width: 34ch;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 32px;
        font-size: clamp(15px, calc(12.8px + 0.45vw), 18px);
        line-height: 1.6;
        /* Pré-reserva 6 linhas para o texto não causar resize ao digitar. */
        min-height: calc(6 * 1.6em);
    }

    .jxn-hero-title {
        /* Em telas pequenas o texto quebra em até 4 linhas: pré-reserva. */
        min-height: calc(4 * 0.98em);
    }

    .jxn-hero-title br:nth-of-type(1),
    .jxn-hero-title br:nth-of-type(3) {
        display: none;
    }

    .jxn-hero-title>.jxn-hero-title-line:nth-child(3),
    .jxn-hero-title>.jxn-hero-title-line:nth-child(7) {
        margin-left: 0.22em;
    }

    .jxn-hero-ctas,
    .jxn-hero-trust {
        justify-content: center;
    }

    .jxn-hero-trust-item {
        justify-content: center;
    }

    .jxn-hero-eyebrow-line,
    .jxn-hero-title,
    .jxn-hero-subtitle,
    .jxn-hero-trust-item {
        text-shadow: none;
    }

    .jxn-hero-stats {
        position: static;
        margin: 0 auto 40px;
        transform: none;
    }

    .jxn-category-nav,
    .jxn-cols-3,
    .jxn-cols-4,
    .jxn-process-steps,
    .jxn-stats-grid,
    .jxn-testimonials-grid,
    .jxn-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .jxn-about-story-grid,
    .jxn-contato-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .jxn-home-accordion {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .jxn-hero>.jxn-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .jxn-hero-content {
        /* Inicia o texto logo abaixo do vídeo */
        padding-top: calc(min(56.25vw, 55vh) + 20px);
        padding-bottom: 70px;
    }

    .jxn-hero-title {
        font-size: clamp(30px, 7vw, 44px);
    }

    .jxn-hero-subtitle {
        max-width: 30ch;
        font-size: clamp(14px, calc(11.6px + 0.7vw), 17px);
        line-height: 1.58;
        /* 30ch → mais quebras de linha; pré-reserva 7 linhas. */
        min-height: calc(7 * 1.58em);
    }

    .jxn-steps-indicator {
        flex-wrap: wrap;
        gap: 10px;
    }

    .jxn-step-line {
        display: none;
    }
}

@media (max-width: 680px) {
    .jxn-container {
        padding: 0 18px;
    }

    .jxn-hero-content {
        padding-top: calc(min(56.25vw, 50vh) + 10px);
        padding-bottom: 70px;
    }

    .jxn-hero-eyebrow {
        margin-bottom: 14px;
    }

    .jxn-hero-eyebrow-line {
        font-size: 10px;
        letter-spacing: 0.16em;
        line-height: 1.45;
    }

    .jxn-hero-title {
        margin-bottom: 12px;
        font-size: clamp(28px, 8vw, 36px);
        min-height: calc(2 * 0.98em);
    }

    .jxn-search-input-wrap {
        flex-wrap: wrap;
        border-radius: 0;
        padding: 18px;
        background: #ffffff;
        border: 1px solid rgba(0, 31, 63, 0.1);
    }

    .jxn-services-all-wrap {
        justify-content: center;
    }

    .jxn-search-submit {
        width: 100%;
    }

    .jxn-category-nav,
    .jxn-cols-2,
    .jxn-cols-3,
    .jxn-cols-4,
    .jxn-process-steps,
    .jxn-stats-grid,
    .jxn-testimonials-grid,
    .jxn-blog-grid {
        grid-template-columns: 1fr;
    }

    .jxn-hero-ctas,
    .jxn-hero-trust,
    .jxn-card-footer,
    .jxn-footer-top-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .jxn-hero-trust {
        margin-top: 18px;
        padding-top: 16px;
        gap: 12px;
    }

    .jxn-card-footer {
        align-items: stretch;
    }

    .jxn-btn-orcamento {
        width: 100%;
    }

    .jxn-page-hero {
        padding: 84px 0 56px;
    }

    .jxn-hero-subtitle {
        max-width: 28ch;
        margin-bottom: 22px;
        font-size: clamp(14px, calc(11.6px + 0.9vw), 17px);
        line-height: 1.52;
        min-height: auto;
    }

    .jxn-home-acc-trigger {
        font-size: 18px;
        min-height: 56px;
        padding: 0 14px;
        gap: 8px;
    }

    .jxn-home-acc-content {
        padding: 18px 14px 14px;
    }

    .jxn-home-acc-content p {
        font-size: 15px;
        line-height: 1.6;
    }
}

@media (min-width: 681px) and (max-width: 900px) {
    .jxn-hero {
        min-height: auto;
    }

    .jxn-hero>.jxn-container {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-left: 20px;
        padding-right: 20px;
    }

    .jxn-hero-content {
        width: min(100%, 760px);
        max-width: none;
        padding-top: calc(min(56.25vw, 55vh) + 20px);
        padding-bottom: 80px;
    }

    .jxn-hero-eyebrow {
        margin-bottom: 16px;
    }

    .jxn-hero-eyebrow-line {
        max-width: 100%;
        font-size: 11px;
        line-height: 1.45;
    }

    .jxn-hero-title {
        margin-bottom: 14px;
        font-size: clamp(38px, 6.7vw, 50px);
        min-height: calc(2 * 0.98em);
    }

    .jxn-hero-subtitle {
        max-width: 36ch;
        margin-bottom: 22px;
        font-size: clamp(18px, calc(14.4px + 0.7vw), 20px);
        line-height: 1.5;
        min-height: auto;
    }

    .jxn-hero-ctas {
        gap: 12px;
    }

    .jxn-hero-ctas .jxn-btn-lg {
        min-height: 62px;
        padding: 0 40px;
        font-size: 12px;
    }

    .jxn-hero-trust {
        gap: 16px 18px;
        margin-top: 20px;
        padding-top: 18px;
    }

    .jxn-hero-trust-item {
        font-size: 15px;
    }

    .jxn-scroll-indicator {
        bottom: 18px;
    }
}

@media (min-width: 769px) and (max-width: 820px) {
    .jxn-hero-content {
        padding-top: calc(56.25vw + 20px);
    }
}

@media (max-width: 480px) {
    .jxn-hero-content {
        padding-top: calc(min(56.25vw, 45vh) + 10px);
        padding-bottom: 60px;
    }

    .jxn-hero-eyebrow-line {
        font-size: 9px;
        line-height: 1.4;
    }

    .jxn-hero-title {
        font-size: clamp(26px, 8.5vw, 32px);
        margin-bottom: 10px;
    }

    .jxn-hero-subtitle {
        max-width: 25ch;
        margin-bottom: 20px;
        font-size: clamp(14px, calc(12.2px + 0.75vw), 16px);
        line-height: 1.5;
    }

    .jxn-hero-trust {
        margin-top: 16px;
        padding-top: 14px;
        gap: 10px;
    }

    .jxn-scroll-indicator {
        bottom: 14px;
    }
}

@media (min-width: 901px) and (max-width: 1024px) {
    .jxn-hero-content {
        width: min(100%, 860px);
        max-width: none;
        padding-top: calc(min(56.25vw, 55vh) + 20px);
        padding-bottom: 80px;
    }

    .jxn-hero-eyebrow {
        margin-bottom: 18px;
    }

    .jxn-hero-eyebrow-line {
        max-width: 100%;
        font-size: 13.5px;
        line-height: 1.45;
    }

    .jxn-hero-title {
        margin-bottom: 14px;
        font-size: clamp(56px, 5.9vw, 66px);
        min-height: calc(2 * 0.98em);
    }

    .jxn-hero-subtitle {
        max-width: 38ch;
        margin-bottom: 24px;
        font-size: clamp(20px, calc(15.8px + 0.45vw), 22px);
        line-height: 1.5;
        min-height: auto;
    }

    .jxn-hero-ctas .jxn-btn-lg {
        min-height: 64px;
        padding: 0 44px;
        font-size: 13px;
    }

    .jxn-hero-trust {
        gap: 18px 22px;
        margin-top: 20px;
        padding-top: 18px;
    }

    .jxn-hero-trust-item {
        font-size: 15px;
    }
}

/* ══════════════════════════════════════════════════════════════
   HERO FRAME ANIMATION — isolated wheel-intercepted component
   Touches: .jxn-frame-anim, .jxn-frame-anim__canvas,
            .jxn-hero-pin > .jxn-hero > .jxn-container (mobile only)
   To remove: delete these rules + the wrapper div + the script block
   ══════════════════════════════════════════════════════════════ */

/* ── Pin wrapper: transparent wrapper, normal document flow ── */
/* No height override, no positioning tricks. The page stays    */
/* still during animation via wheel event interception in JS,   */
/* not via CSS scroll space or position:fixed/sticky hacks.     */
.jxn-hero-pin {
    /* intentionally empty */
}

.jxn-frame-anim {
    position: absolute;
    inset: 0 0 0 50%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    contain: layout style;
    will-change: contents;
}

@media (min-width: 1121px) {
    .jxn-frame-anim::after {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient(90deg, #050b14 0%, rgba(5, 11, 20, 0) 35%);
    }
}

.jxn-frame-anim__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    will-change: transform;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

/* Comportamento Mobile / Tablet (Igual ao JS antigo) */
@media (max-width: 1119px) {
    .jxn-frame-anim__canvas {
        object-fit: contain !important;
        /* Impede que o vídeo seja cortado/ampliado exageradamente */
        object-position: top center !important;
        /* Alinha o vídeo no topo, evitando que fique atrás dos textos de baixo */
    }
}

/* ══════════════════════════════════════════════════════════════
   MOBILE / TABLET — auto-play, full hero background
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1120px) {

    /* Animation covers the full hero as a background layer.     */
    /* Gradient fades it to transparent toward the bottom so     */
    /* the hero text/CTAs remain readable.                       */
    .jxn-frame-anim {
        /* Dimensões fixas desde o primeiro paint — evita CLS.
           Não depende da altura do hero pai (que oscila durante
           carregamento de fontes e animação typewriter). */
        top: 0;
        left: 0;
        right: 0;
        bottom: auto;
        width: 100%;
        height: 100vh;
        height: 100svh;
        /* svh = small viewport height; estável mesmo
                             com barra do browser aparecendo/sumindo    */
        max-width: 100vw;
        overflow: hidden;
    }
}

/* Correção especial solicitada para tablets modo paisagem e Nest Hubs (e.g. 1024x600) */
@media (max-width: 1120px) and (orientation: landscape) {
    .jxn-hero>.jxn-container {
        flex-direction: row !important;
        justify-content: flex-start !important;
    }

    .jxn-hero-content {
        width: 50% !important;
        max-width: 50vw !important;
        padding-top: 60px !important;
        padding-bottom: 60px !important;
        text-align: left !important;
    }

    .jxn-hero-eyebrow,
    .jxn-hero-title,
    .jxn-hero-subtitle,
    .jxn-hero-ctas,
    .jxn-hero-trust,
    .jxn-hero-stats {
        text-align: left !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    .jxn-frame-anim {
        top: 0 !important;
        bottom: 0 !important;
        left: 50% !important;
        right: 0 !important;
        width: 50% !important;
        height: 100% !important;
        inset: 0 0 0 50% !important;
    }

    .jxn-frame-anim__canvas {
        object-fit: cover !important;
        object-position: left center !important;
    }

    .jxn-frame-anim::after {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient(90deg, #050b14 0%, rgba(5, 11, 20, 0) 35%);
    }
}